@font-face {
    font-family: f1;
    src: url('font/tt0037m_.ttf')
}
html {
    font-size: 100%;
    width: 100%;
    outline: none;
    min-height: 100%;
    position: relative;
}

body {
    background: #fff;
    font-family:  Source Han Sans CN, "Microsoft Yahei", "寰蒋闆呴粦", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #373737;
    text-align: left;
    margin: auto;
    width: 100%;
    /*min-width: 1300px;*/
    outline: none; 
}

body,
div,
p,
input,
a,
span,
img,
ul,
li,
textarea,
select,
button {
    outline: none;
}

a,
a:hover {
    color: #373737;
    text-decoration: none;
}

html {
    font-size: 100%;
    width: 100%;
    outline: none;
}

body,
div,
p,
span,
ul,
li,
a,
input,
textarea {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

img {
    border: none;
}

p {
    margin: 0;
}

.boxShadow {
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
}


/* gShow */

.gShow {
    opacity: 0;
}

@keyframes mymove {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes mymove
/* Safari and Chrome */

{
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fontFadeIn {
    animation: 3s ease 0s 1 normal none running fontMove;
    -webkit-animation: 3s ease 0s 1 normal none running fontMove;
}

@keyframes fontMove {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fontMove
/* Safari and Chrome */

{
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/* scaleImg */

.scaleImg {
    overflow: hidden;
    display: block;
    background-color: #eee;
}

.scaleImg img {
    transition-duration: .6s;
    -webkit-transition-duration:.6s; 
    display: block;
}

.scaleImg:hover img {
    transform: scale(1.1);
    /* filter: grayscale(0); */
}


/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    animation: 10s infinite alternate bannerMove;
    -webkit-animation: 10s infinite alternate bannerMove;
    display: block;
}

@keyframes bannerMove {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes bannerMove
/*Safari and Chrome*/

{
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.1, 1.1);
    }
}


/* content */

.content {
    width: 1200px;
    margin: 0 auto;
}
.lTop{
    margin-top: 100px;
    background-color: #f7f7f7;
}
/* header */
header{
    height: 100px;
    position: fixed;
    background-color:rgba(255,255,255,.7);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .5s;
    -webkit-transition: .5s;
    border-bottom: 1px solid #CCCCCC;
}
.index header{
    border-bottom: 0;
}
header .logo{
    margin-top: 27.5px;
}
header .tabs>li{
    margin-left: 60px;
    position: relative;
    float: left;
    padding: 42px 0;
}
header .tabs>li:first-child{
    margin-left: 0;
}
header .tabs>li>a{
    display: block;
    line-height: 16px;
    overflow: hidden;
    height: 16px;
    text-align: center;
    font-size: 16px;
}
header .tabs>li>a>span{
    display: block;
    transition: .5s;
    -webkit-transition: .5s;
}
header .tabs>li::before{
    content: "";
    position: absolute;
    top: 22px;
    height: 0;
    width: 1px;
    left: 50%;
    margin-left: -.5px;
    background-color: #142e85;
    transition: .5s;
    -webkit-transition: .5s;
}
header .tabs>li::after{
    content: "";
    position: absolute;
    bottom: 22px;
    height: 0;
    width: 1px;
    left: 50%;
    margin-left: -.5px;
    background-color: #142e85;
    transition: .5s;
    -webkit-transition: .5s;
}
header .tabs>li:hover>a>span,
header .tabs>li.active>a>span{
    transform: translateY(-16px);
    -webkit-transform: translateY(-16px);
    color: #142e85;
}
header .tabs>li:hover::before,
header .tabs>li:hover::after,
header .tabs>li.active::before,
header .tabs>li.active::after{
    height: 14px;
}
header .tabs>li ul{
    position: absolute;
    top: 100px;
    background-color: #fff;
    box-shadow:0px 0px 20px 1px rgba(0, 0, 0, 0.11);
    width: 240px;
    line-height: 44px;
    text-align: center;
    left: 50%;
    margin-left: -120px;
    display: none;
}
header .tabs>li ul a{
    position: relative;
    padding-bottom:3px;
    transition: .5s;
    -webkit-transition: .5s;
}
header .tabs>li ul a::before{
    content: "";
    position: absolute;
    -moz-transition: width .3s;
    -o-transition: width .3s;
    -webkit-transition: width .3s;
    transition: width .3s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 0;
    height: 1px;
    content: '';
    background-color: #1F368F;
}
header .tabs>li ul a:hover{
    color: #1F368F;
}
header .tabs>li ul a:hover::before{
    width: 100%;
}
header .tabs>li:hover ul{
    display: block;
    animation: .5s navsShow;
    -webkit-animation: .5s navsShow;
}
@keyframes navsShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes navsShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
header .search{
    margin-top: 39.5px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #666666;
    position: relative;
    overflow: hidden;
}
header .search .icon{
    display: block;
    cursor: pointer;
}
header .search input{
    border: 0;
    border-bottom: 1px solid #666666;
    background-color: transparent;
    height: 21px;
    width: 0px;
    padding: 0;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
header .search button{
    border: 0;
    background-color: transparent;
    height: 21px;
    cursor: pointer;
    position: absolute;
    padding: 0;
    width: 30px;
    text-align: center;
    top: 0;
    left: 170px;
    color: #666666;
    transition: all 0s ease-out 0s;
    -webkit-transition: all 0s ease-out 0s;
    opacity: 0;
}
header .search.active input{
    width: 160px;
    margin-right: 12px;
    opacity: 1;
}
header .search.active button{
    opacity: 1;
    transition: all .2s ease-out .5s;
    -webkit-transition: all .2s ease-out .5s;
}
header.mobile{
    background-color: #fff;
}
.index header.mobile{
    box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
}
/* home */
.home_1 .swiper-slide-next{
    z-index: 2;
}
.home_1 .swiper-slide-active{
    z-index: 99;
}
.home_1 .swiper-slide-active .mImg img{
    transform: scale(1);
}
.home_1 .swiper-slide img{
    display: block;
    width: 100%;
}
.home_1 .swiper-slide>img{
    opacity: 0;
}
.home_1 .swiper-slide .mImg img{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}
.home_1 .swiper-slide-prev{
    z-index: 9;
}
@keyframes hBannerR {
    from {
        transform:  scale(1.5);
        clip: rect(0,100vw,100vh,100vw);
        filter: blur(20px);
    }
    to {
        transform:  scale(1);
        clip: rect(0,100vw,100vh,0);
        filter: blur(0);
    }
}
@-webkit-keyframes hBannerR
{
    from {
        -webkit-transform:  scale(1.5);
        -webkit-clip: rect(0,100vw,100vh,100vw);
        -webkit-filter: blur(20px);
    }
    to {
        -webkit-transform:  scale(1);
        -webkit-clip: rect(0,100vw,100vh,0);
        -webkit-filter: blur(0);
    }
}
/* @keyframes hBannerL {
    from {
        transform:  scale(1.5);
        clip: rect(0,0,100vh,0);
        filter: blur(20px);
    }
    to {
        transform:  scale(1);
        clip: rect(0,100vw,100vh,0);
        filter: blur(0);
    }
} */
.home_1 .swiper-slide .info{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    margin-left: -600px;
    color: #fff;
    opacity: 0;
    transform: translate(-80px,0);
    -webkit-transform: translate(-80px,0);
    transition: all .6s ease-out;
    -webkit-transition: all .6s ease-out;
    margin-top: -107px;
}
.home_1 .swiper-slide .info .tit1{
    font-size: 66px;
    font-weight: bold;
    letter-spacing: 5px;
    line-height: 80px;
    margin-bottom: 7px;
}
.home_1 .swiper-slide .info .tit2{
    font-size: 90px;
   /* font-weight: bold;*/
    letter-spacing:10px;
    line-height: 90px;
    margin-bottom: 15px;
}
.home_1 .swiper-slide .info .txt{
    letter-spacing: 10px;
    line-height: 40px;
    margin-bottom: 30px;
}
.home_1 .swiper-slide .info .btn{
    color: #fff;
    display: block;
    line-height: 54px;
    border-radius: 35px;
    width: 180px;
    text-align: center;
    background-color: #0acbff;
}
.home_1 .swiper-slide-active .info{
    opacity: 1;
    transform: none;
    -webkit-transform: none;
}
.home_1 .swiper-pagination{
    bottom: 60px;
}
.home_1 .swiper-pagination-bullet{
    width: 210px;
    background-color: transparent;
    position: relative;
    margin: 0 !important;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    height: 21px;
    color: #fff;
    opacity: .4;
    margin-left: -1px !important;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_1 .swiper-pagination-bullet::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 12px;
    background-color: #fff;
}
.home_1 .swiper-pagination-bullet::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 12px;
    background-color: #fff;
}
.home_1 .swiper-pagination-bullet-active{
    opacity: 1;
}
.home .title{
    text-align: center;
    color: #142e85;
}
.home .title .titEn{
    font-size: 72px;
    line-height: 72px;
    font-family: f1;
}
.home .title .tit{
    font-size: 36px;
    line-height: 36px;
    margin-top: 20px;
}
.home_2{
    padding: 80px 0;
    background: url(../images/icon_08.png) no-repeat center 80px;
}
.home_2 .title{
    padding-top: 20px;
    margin-bottom: 60px;
}
.home_2 .swiper{
    position: relative;
    padding: 0 70px;
    transition: all 1s ease-out 0s;
    transform: translateY(80px);
    opacity: 0;
}
.home_2 .swiper.showdiv{
    opacity: 1;
    transform: translateY(0px);
}
.home_2 .swiper-container{
    position: initial;
    padding-bottom: 30px;
}
.home_2 .swiper-slide{
    text-align: center;
}
.home_2 .swiper-slide .info{
    margin-bottom: 20px;
}
.home_2 .swiper-slide .info .name{
    line-height: 20px;
    font-size: 20px;
    margin-bottom: 20px;
}
.home_2 .swiper-slide .info .txt{
    line-height: 30px;
    color: #999999;
  	height:90px;
}
.home_2 .swiper-slide .bgImg{
    display: block;
    margin: 0 auto;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_2 .swiper-slide-active::before,
.home_2 .swiper-slide-next::before{
    content: "";
    position: absolute;
    bottom: 40px;
    right: -60px;
    width: 1px;
    height: 170px;
    background-color: #D9D9D9;
}
.home_2 .swiper-slide:hover .bgImg{
    box-shadow:0px 0px 20px 1px rgba(0, 0, 0, 0.11);
}
.home_2 .swiper-button-btn{
    width:50px;
    height:50px;
    background-color:rgba(0,0,0,.2);
    border-radius: 50%;
    background-size: 14px 26px;
    margin-top: -25px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_2 .swiper-button-prev{
    left: 0;
    background-image: url(../images/icon_05.png);
}
.home_2 .swiper-button-next{
    right: 0;
    background-image: url(../images/icon_06.png);
}
.home_2 .swiper-button-btn:hover{
    background-color: #142e85;
}
.home_3{
    padding: 110px 0 20px 0;
    background-color: #f7f7f7;
}
.home_3 .title{
    text-align: right;
    margin-bottom: 50px;
}
.home_31 .item{
    width: 560px;
    margin-bottom: 40px;
    position: relative;
    transition: all 1s ease-out 0s;
    transform: translate(-80px,80px);
    opacity: 0;
}
.home_31 .item:nth-of-type(2n+1){
    float: right;
    transform: translate(80px,80px);
}
.home_31 .item.showdiv{
    opacity: 1;
    transform: none;
}
.home_31 .item>img{
    display: block;
}
.home_31 .item .info{
    background-color: #fff;
    padding: 20px 40px 26px 40px;
}
.home_31 .item .info .times{
    line-height: 14px;
    color: #999999;
    margin-bottom: 12px;
}
.home_31 .item .info .times .right{
    color: #4572D3;
}
.home_31 .item .info .txt{
    font-size: 16px;
    line-height: 24px;
}
.home_31 .item .info .txt2{
    margin-top: 7px;
    color: #999999;
    line-height: 24px;
}
.home_31 .item>a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.home_31 .item>a::before{
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border:1px solid rgba(69, 114, 211, 1);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_31 .item:hover{
    box-shadow:0px 0px 39px 1px rgba(0, 0, 0, 0.11);
}
.home_31 .item:hover>a::before{
    opacity: 1;
}
.home_32{
    margin-top: 60px;
    overflow: hidden;
}
.home_32 .clearfix{
   display: flex;
}
.home_32 img{
    display: block;
    width: 90%;
    margin: 0 5%;
    float: left;
}
.home_4{
    padding: 100px 0;
    background: url(../images/img_05.jpg) no-repeat center center;
    background-size: 1920px auto;
}
.home_4 .content{
    opacity: 0;
    transition: all 1s ease-out 0s;
    transform: translate(-80px,0);
}
.home_4.showdiv .content{
    opacity: 1;
    transform: none;
}
.home_4 .tit{
    color: #fff;
    font-size: 32px;
    letter-spacing:10px;
    line-height: 54px;
    margin-bottom: 30px;
}
.home_4 a{
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 1);
    display: inline-block;
    line-height: 54px;
    text-align: center;
  	padding: 0 33px 0 22px;
  	color:#fff;
  	font-size: 18px;
  	position: relative;
  	width: 64px;
    overflow: hidden;
    transition: .5s;
}
.home_4 a span{
	opacity: 0;
}
.home_4 a:hover span{
  	opacity:1;
    transition: .2s .5s;
}
.home_4 a img{
    width: 11px;
    height: 21px;
  	position: absolute;
    right: 22px;
    top: 17px;
}
.home_4 a:hover{
	width:136px;
    padding: 0 40px 0 22px;
}
.home_5{
    padding: 120px 0;
}
.home_5 .title{
    text-align: left;
    margin-bottom: 60px;
}
.home_5 .swiper{
    position: relative;
    border-top: 2px solid #142e85;
    opacity: 0;
    transition: all 1s ease-out 0s;
    transform: translate(0,80px);
}
.home_5 .swiper.showdiv{
    opacity: 1;
    transform: none;
}
.home_5 .swiper-container{
    position: initial;
}
.home_5 .swiper-slide{
    text-align: center;
    padding: 20px 0 30px 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .swiper-slide img{
    display: block;
    margin: 0 auto;
}
.home_5 .swiper-slide img:nth-child(2){
    display: none;
}
.home_5 .swiper-slide span{
    margin-top: 20px;
    font-size: 20px;
    line-height: 20px;
    display: block;
}
.home_5 .swiper-slide:hover{
    background-color: #142e85;
}
.home_5 .swiper-slide:hover img:nth-child(1){
    display: none;
}
.home_5 .swiper-slide:hover img:nth-child(2){
    display: block;
}
.home_5 .swiper-slide:hover span{
    color: #fff;
}
.home_5 .swiper-button-btn{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 0;
    top: -76px;
    background-size: 7px 14px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .swiper-button-prev{
    left: auto;
    right: 54px;
    background-image: url(../images/icon_05.png);
}
.home_5 .swiper-button-next{
    right: 0;
    background-image: url(../images/icon_06.png);
}
.home_5 .swiper-button-btn:hover{
    background-color: #142e85;
}
/* footer */
footer .top{
    background-color: #04082B;
}
footer .top_1{
    padding: 100px 0;
    width: 50%;
    color: #fff;
    background: url(../images/img_06.jpg) no-repeat center;
    background-size: 960px auto;
}
footer .top_1>div{
    width: 600px;
    padding-right: 130px;
    opacity: 0;
    transition: all 1s ease-out 0s;
    transform: translate(-80px,0);
}
footer .top_1>div.showdiv{
    opacity: 1;
    transform: none;
}
footer .top_1 .tit{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 44px;
    font-weight: bold;
}
footer .top_1 .txt{
    font-size: 22px;
    line-height: 48px;
    margin-bottom: 68px;
}
footer .top_1 a{
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 1);
    display: inline-block;
    line-height: 54px;
    text-align: center;
  	padding: 0 33px 0 22px;
  	color:#fff;
  	font-size: 18px;
  	position: relative;
  	width: 64px;
    overflow: hidden;
    transition: .5s;
}
footer .top_1 a:hover{
	width: 136px;
    padding: 0 40px 0 22px;
}
footer .top_1 a span{
	opacity: 0;
}
footer .top_1 a:hover span{
  	opacity:1;
    transition: .2s .5s;
}
footer .top_1 a img{
    width: 11px;
    height: 21px;
    position: absolute;
    right: 22px;
    top: 17px;
}
footer .top_2{
    width: 50%;
    padding-bottom: 55px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
footer .top_2>div{
    width: 600px;
    padding-left: 90px;
    padding-top: 100px;
    opacity: 0;
    transition: all 1s ease-out 0s;
    transform: translate(80px,0);
}
footer .top_2>div.showdiv{
    opacity: 1;
    transform: none;
}
footer .top_2 ul{
    float: left;
    margin-right: 60px;
}
footer .top_2 ul:last-child{
    margin-right: 0;
}
footer .top_2 ul li a{
    color: #fff;
    line-height: 36px;
}
footer .top_2 ul li:first-child{
    margin-bottom: 35px;
}
footer .top_2 ul li:first-child a{
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
}
footer .top_2  .share{
    margin-top: 80px;
    width: auto;
    padding: 0;
    width: 600px;
}
footer .top_2  .share a{
    width:56px;
    height:56px;
    border:1px solid rgba(255, 255, 255, 1);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    line-height: 54px;
    text-align: center;
    float: left;
    margin-left: 16px;
    opacity: .4;
}
footer .top_2  .share a img{
    vertical-align: middle;
}
footer .top_2 .icon{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -16%;
    z-index: -1;
}
footer .bottom{
    line-height: 88px;
    background-color: #00031F;
    color:rgba(255,255,255,.3);
}
footer .bottom a{
    color:rgba(255,255,255,.3);
}
.scrollDiv,
.scrollDivX{
    transition: .2s;
    -webkit-transition:.2s; 
}
/* pContent */
.pContent{
    background-color: #f7f7f7;
}
.pHeader{
    padding: 100px 0 130px 0;
    text-align: center;
    background: url(../images/images/bn1.jpg) no-repeat center;
    background-color: #fff;
    transition: .5s;
    -webkit-transition:.5s; 
}
.pHeader .tit{
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
    color: #000000;
}
.pHeader .titEn{
    margin-bottom: 40px;
    color: #142e85;
    font-size: 16px;
    line-height: 16px;
}
.pHeader .txt{
    font-size: 16px;
    line-height: 16px;
    color: #666666;
}
/* about */
.about_1{
    padding: 60px 0 50px 0;
}
.about_1 img{
    display: block;
    width: 100%;
}
.about_2{
    padding-bottom: 74px;
}
.about_2 .list{
    margin-bottom: 50px;
}
.about_2 .item{
    width: 25%;
    text-align: center;
}
.about_2 .item .icon{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    margin: 0 auto 20px auto;
    width:74px;
    height:74px;
    border:1px solid rgba(192, 192, 192, 1);
    border-radius:50%;
    line-height: 72px;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_2 .item .icon img{
    vertical-align: middle;
}
.about_2 .item .info{
    border-right: 1px solid #D9D9D9;
}
.about_2 .item .info p:first-child{
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 7px;
}
.about_2 .item .info p:last-child{
    color: #999999;
    line-height: 14px;
}
.about_2 .item:last-child .info{
    border-right: 0;
}
.about_2 .item:hover .icon{
    transform: rotateY(180deg)
}
.about_2 .txt{
    color: #333333;
    line-height: 30px;
    text-indent: 28px;
}
/* product */
.product .list{
    padding: 80px 0 20px 0;
}
.product .item{
    width: 370px;
    margin-right: 45px;
    margin-bottom: 60px;
    transition: .5s;
    -webkit-transition: .5s;
    background-color: #fff;
    padding: 30px 0 60px 0;
    position: relative;
}
.product .item:nth-of-type(3n){
    margin-right: 0;
}
.product .item .tit{
    line-height: 14px;
    color: rgba(20, 46, 133, .4);
    text-align: right;
    padding: 0 45px;
    position: relative;
}
.product .item .tit::before{
    content: "";
    left: 45px;
    right: 110px;
    height: 1px;
    background:rgba(30,80,174,.4);
    position: absolute;
    top: 6.5px;
}
.product .item .mImg{
    width: 220px;
    height: 250px;
    object-fit: contain;
}
.product .item img{
    display: block;
    margin: 18px auto 20px auto;
    padding:20px;
}
.product .item .name{
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.product .item .btn{
    position: absolute;
    right: 0;
    bottom: 0;
    width:60px;
    height:60px;
    background:#142E85;
    line-height: 58px;
    text-align: center;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.product .item .btn img{
    vertical-align: middle;
}
.product .item:hover{
    box-shadow:0px 0px 39px 1px rgba(0, 0, 0, 0.11);
}
/* productDetail */
.productDetail_1{
    background-color: #fff;
}
.productDetail_11{
   width: 450px;
   padding-top: 230px;
}
.productDetail_11 .name{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
}
.productDetail_11 .model{
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #142e85;
}
.productDetail_11 .txt{
    line-height: 14px;
    color: #666666;
    line-height: 28px;
}
.productDetail_12{
    width: 750px;
    height: 650px;
    position: relative;
    overflow: hidden;
}
.productDetail_12::after{
    content: "";
    display: block;
    position: absolute;
    width:750px;
    height:750px;
    background:#FCFCFC;
    border-radius:50%;
    top: -50px;
    left: 0;
    z-index: 1;
}
.productDetail_12::before{
    content: "";
    display: block;
    position: absolute;
    width:567px;
    height:567px;
    background:rgba(249,249,249,1);
    border-radius:50%;
    top: 41.5px;
    left: 91.5px;
    z-index: 2;
}
.productDetail_12 .icon{
    position: absolute;
    z-index: 3;
    width: 454px;
    height: 454px;
    top: 98px;
    left: 148px;
}
.productDetail_12 .mImg{
    width:382px;
    height:382px;
    z-index: 9;
    left: 184px;
    top: 134px;
    position: absolute;
    background:rgba(238,238,238,1);
    border-radius:50%;
    text-align: center;
    line-height: 380px;
}
.productDetail_12 img{
    vertical-align: middle;
}
.productDetail_2{
    padding: 80px 0;
    background-color: #EEEEEE;
}
.productDetail_21{
    width: 620px;
}
.productDetail_22{
    width: 580px;
    padding-left: 80px;
    padding-top: 60px;
}
.productDetail .title{
    font-size: 30px;
    line-height: 30px;
    color: #142e85;
}
.productDetail .title span{
    color: #142e85;
    opacity: .3;
    font-size: 16px;
    margin-left: 15px;
}
.productDetail_22 .name{
    font-size: 20px;
    line-height: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.productDetail_22 .txt{
    color: #666666;
    line-height: 36px;
}
.productDetail_22 .btn{
    margin-top: 40px;
}
.productDetail_22 .btn .apply{
    width:150px;
    height:44px;
    background:rgba(30,80,174,1);
    border-radius:22px;
    text-align: center;
    line-height: 44px;
    color: #fff;
    font-size: 16px;
}
.productDetail_22 .btn .apply img{
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 7px;
}
.productDetail_22 .btn .right{
    line-height: 40px;
    font-size: 16px;
    color: #142e85;
}
.productDetail_22 .btn .right a{
    display: inline-block;
    width:40px;
    height:40px;
    background:rgba(30,80,174,1);
    border-radius:20px;
    text-align: center;
    line-height: 38px;
    margin-left: 12px;
}
.productDetail_22 .btn .right a img{
    vertical-align: middle;
}
.productDetail_3{
    padding: 80px 0 60px 0;
    background-color: #fff;
}
.productDetail_3 .title{
    margin-bottom: 30px;
}
.productDetail_3 li{
    line-height: 70px;
    background-color: #F7F7F7;
    font-size: 16px;
}
.productDetail_3 li>span,
.productDetail_3 li a{
    text-align: center;
    width: 25%;
}
.productDetail_3 li:nth-of-type(2){
    background-color: #fff;
}
.productDetail_3 li a{
    color: #142e85;
}
.productDetail_3 li a span{
    width:34px;
    height:34px;
    background:rgba(30,80,174,1);
    border-radius:50%;
    margin-left: 12px;
    line-height: 34px;
    display: inline-block;
    text-align: center;
}
.productDetail_3 li a span img{
    vertical-align: middle;
    margin-top: -2px;
}
.productDetail_4{
    padding-bottom: 40px;
    background-color: #fff;
}
.productDetail_4 .title{
    margin-bottom: 30px;
}
.productDetail_4 ul li{
    line-height: 70px;
    font-size: 16px;
    text-align: center;
}
.productDetail_4 ul li:first-child{
    font-weight: bold;
    color: #fff;
    background-color: #142e85;
}
.productDetail_4 li:nth-of-type(2n){
    background-color: #F7F7F7;
}
.productDetail_4 ul li span{
    width: 33.333%;
    text-align: center;
}
.productDetail_5{
    background-color: #F7F7F7;
    padding: 110px 0 80px 0;
}
.productDetail_5 .title{
    margin-bottom: 30px;
}
.productDetail_51{
    width: 600px;
}
.productDetail_51 img{
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.productDetail_52{
    width: 600px;
}
.productDetail_52 a{
    width: 300px;
    position: relative;
}
.productDetail_52 a img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.productDetail_52 a p{
    position: absolute;
    bottom: 0;
    text-align: right;
    left: 0;
    width: 100%;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0 16px;
    line-height: 36px;
    color: #fff;
}
/* news */
.news .list{
    padding: 80px 0 0 0;
}
.news .list .item{
    width: 370px;
    margin-right: 45px;
    margin-bottom: 50px;
    transition: .5s;
    -webkit-transition: .5s;
    position: relative;
}
.news .list .item:nth-of-type(3n){
    margin-right: 0;
}
.news .list .item .scaleImg img{
    width: 100%;
    height: 198px;
    object-fit: cover;
}
.news .list .item .info{
    padding: 30px;
    background-color: #fff;
}
.news .list .item .info .times{
    line-height: 14px;
    color: #999999;
    margin-bottom: 16px;
}
.news .list .item .info .times .right{
    color: #142e85;
}
.news .list .item .info .name{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.news .list .item .info .txt{
    color: #999999;
    font-size: 12px;
    line-height: 24px;
    height: 48px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .list .item a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.news .list .item a::before{
    content: "";
    position: absolute;
    border:1px solid rgba(20, 46, 133, 1);
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
}
.news .list .item:hover a{
    opacity: 1;
}
/* newsDetail */
.newsDetail .list{
    width: 900px;
    padding: 150px 0 80px 0;
}
.newsDetail .list .crumbs{
    font-size: 12px;
    color: #999999;
    margin-bottom: 35px;
}

.newsDetail .list .crumbs a{
    font-size: 12px;
    color: #999999;
    margin-bottom: 35px;
}

.newsDetail .list .name{
    font-size: 30px;
    line-height: 48px;
    color: #142e85;
    margin-bottom: 15px;
}
.newsDetail .list .times{
    color: #999999;
    line-height: 14px;
    padding-bottom: 40px;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 40px;
}
.newsDetail .list .txt img{
    width: 100%;
    display: block;
    /*margin: 5px auto 28px auto;*/
}
.newsDetail .list .txt p{
    font-size: 15px;
    line-height: 1.8em;
    padding: 6px 0;
    /*text-indent: 28px;*/
    color: #666666;
}
.newsDetail .share{
    margin-top: 50px;
    line-height: 20px;
    color: #666666;
}
.newsDetail .share a{
    line-height: 18px;
    display: inline-block;
    margin-left: 12px;
}
.newsDetail .share a img{
    vertical-align: middle;
}
.newsDetail_2{
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #CCCCCC;
}
.newsDetail_2 .left a{
    display: block;
    line-height: 28px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.newsDetail_2 .left a:hover{
    color: #142e85;
}
.newsDetail_2 .right{
    line-height: 34px;
    font-size: 16px;
    color: #142e85;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsDetail_2 .right span{
    width:34px;
    height:34px;
    background:#142e85;
    border-radius:17px;
    text-align: center;
    line-height: 34px;
    display: inline-block;
    margin-left: 7px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}
.newsDetail_2 .right span img{
    vertical-align: middle;
}
.text-secondary{
    text-align: center;
}
/* culture */
.culture .center{
    padding: 60px 0 10px 0;
}
.culture_1{
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(30,80,174,.13);
}
.culture_1 span{
    font-size: 22px;
    color: #999999;
    line-height: 22px;
    padding-bottom: 26px;
    position: relative;
    width: 160px;
    text-align: center;
    transition: .5s;
    -webkit-transition: .5s;
    cursor: pointer;
}
.culture_1 span::before{
    content: "";
    position: absolute;
    width:0;
    height:4px;
    background:rgba(30,80,174,1);
    left:0;
    bottom: -1px;
    transition: .5s;
    -webkit-transition: .5s;
}
.culture_1 span.active,
.culture_1 span:hover{
    color: #142e85;
}
.culture_1 span.active::before,
.culture_1 span:hover::before{
    width: 160px;
}
.culture_2>div{
    display: none;
}
.culture_2>div.show{
    display: block;
}
.culture_2 .rows{
    margin-bottom: 70px;
}
.culture_2 .rows_1{
    width: 464px;
}
.culture_2 .rows_1 img{
    width: 100%;
    display: block;
    height: 310px;
    object-fit:cover;
}
.culture_2 .rows_2{
    width: 736px;
    padding-left: 51px;
    padding-top: 20px;
}
.culture_2 .rows_2 .times{
    line-height: 28px;
    color: #999999;
    font-size: 18px;
    margin-bottom: 35px;
    display: inline-block;
    transition: .5s;
    -webkit-transition: .5s;
}
.culture_2 .rows_2 .times span:first-child{
    margin-right: 16px;
    padding-right: 16px;
    position: relative;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.culture_2 .rows_2 .times span:first-child::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #142e85;
}
.culture_2 .rows_2 .name{
    line-height: 26px;
    font-size: 24px;
    margin-bottom: 26px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    transition: .5s;
    -webkit-transition: .5s;
}
.culture_2 .rows_2 .txt{
    line-height: 32px;
    color: #999999;
    margin-bottom: 24px;
}
.culture_2 .rows_2 .btn{
    width: 150px;
    height: 44px;
    border-radius:22px;
    text-align: center;
    color: #fff;
    line-height: 44px;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #ccc;
    color: #999999;
    transition: .5s;
    -webkit-transition: .5s;
}
.culture_2 .rows:nth-of-type(2n) .rows_1{
    float: right;
}
.culture_2 .rows:nth-of-type(2n) .rows_2{
    text-align: right;
    padding-left: 0;
    padding-right: 51px;
}
.culture_2 .rows:hover .rows_2 .times{
    color: #142e85;
}
.culture_2 .rows:hover .rows_2 .times:first-child span{
    color: #142e85;
}
.culture_2 .rows:hover .rows_2 .name{
    color: #142e85;
}
.culture_2 .rows:hover .rows_2 .btn{
    color: #fff;
    background-color:#142e85;
    border-color: #142e85; 
}
/* contact */
.contact_1 iframe{
    display: block;
    height: 600px;
    width: 50%;
}
.contact_1 .info{
    height: 600px;
    width: 50%;
    /* background: url(../images/img_20.jpg) no-repeat center center; */
    background-size: 960px 600px;
}
.contact_1 .info .center{
    /*padding-left: 220px;*/
    width: 50%;
    margin:0 auto;
    margin-top: 150px;
}
.contact_1 .info .name{
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 40px;
}
.contact_1 .info .txt{
    font-size: 16px;
    line-height: 36px;
    color: #fff;
    position: relative;
    padding-left: 80px;
}
.contact_1 .info .txt span{
    position: absolute;
    left: 0;
    top: 0;
}
.contact_1 .info .qrCode{
    margin-top: 10px;
}
.contact_1 .info .qrCode>div{
    margin-right: 40px;
    color: #fff;
    line-height: 14px;
}
.contact_1 .info .qrCode>div p{text-align:center;}
.contact_1 .info .qrCode>div img{
    display: block;
    width: 100px;
    margin-bottom: 10px;
}
.contact_2{
    padding: 80px 0;
}
.contact_2 .tit{
    font-size: 30px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 32px;
}
.contact_2 .txt{
    color: #999999;
    line-height: 14px;
}
.contact_2 .fGroup{
    margin-top: 50px;
    width: 360px;
    margin-right: 60px;
    border-bottom: 1px solid #999999;
    font-size: 16px;
    position: relative;
    padding-left: 112px;
    padding-bottom: 12px;
}
.contact_2 .fGroup:nth-of-type(3n){
    margin-right: 0;
}
.contact_2 .fGroup label{
    position: absolute;
    left: 0;
    color: #999999;
    line-height: 21px;
    top: 0;
}
.contact_2 .fGroup label span{
    color: #FF0000;
}
.contact_2 .fGroup input{
    width: 100%;
    display: block;
    border: 0;
    /*background-color: transparent;*/
    height: 40px;
    font-size: 16px;
}
.contact_2 .fGroup select{
    height: 40px;
    width: 100%;
    font-size: 16px;
    line-height: 40px;
    border: 0;
    /*background-color: transparent;*/
}
.contact_2 .fGroup select option:first-child{
    /*display: none;*/
}
.contact_2 button{
    width:200px;
    height:58px;
    background:#142e85;
    border-radius:29px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border: 0;
    margin-top: 40px;
    cursor: pointer;
}

.xzwh .pages{
    padding-bottom: 60px;
}
.pages {
    margin-top: 10px;
    text-align: center;
}

.pages>div.clearfix {
    display: inline-block;
}

.pages a {
    float: left;
    line-height: 38px;
    border: 1px solid #E5E5E5;
    margin-left: 10px;
    padding: 0 15px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}

.pages a:first-child {
    margin-left: 0;
}

.pages a:hover,.pages a.page-num-current {
    border-color: #142e85 ;
    background-color: #142e85;
    color:#fff;
}


/* partner */
.partner .center{
    padding: 80px 0 60px 0;
}
.partner .item{
    position: relative;
    width: 380px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.partner .item:nth-of-type(3n){
    margin-right: 0;
}
.partner .item .bg{
    display: block;
    width: 100%;
    height: 250px;
    object-fit:cover;
}
.partner .item a{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s;
    -webkit-transition: .5s;
    background-color: rgba(0,0,0,.65);
    line-height: 250px;
    text-align: center;
}
.partner .item a>div{
    line-height: initial;
    position: absolute;
    transform: translateY(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    max-width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
}
.partner .item a .icon{
    vertical-align: middle;
}
.partner .item a .txt{
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    opacity: 0;
    height: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.partner .item a::before{
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    border:1px solid rgba(255, 255, 255, .2);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.partner .item:hover a{
    background-color: #142e85;
}
.partner .item:hover a .txt{
    opacity: 1;
    height: 16px;
    margin-top: 20px;
}
.partner .item:hover a::before{
    opacity: 1;
}
@media screen and (max-width: 1500px){
  .pHeader{
  	padding:70px 0 100px 0;
  }
}




/* team */
.team{
    background-color: #fff;
}
.team .center{
    padding: 100px 0 60px 0;
    position: relative;
}
.team .rows{
    width: 910px;
    /*margin-bottom: 90px;*/
    /*margin-left: 0px !important;*/
    margin: 0px auto 90px !important;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.team .rows .icon{
    width: 160px;
    height: 160px;
    border-radius: 4px;
}
.team .rows .info{
    width: 750px;
    padding-left: 40px;
    padding-top: 13px;
}
.team .rows .info .zym{
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  font-family: Source Han Sans CN;
  position: relative;
  padding: 20px;
  width: max-content;
  max-width: calc(100% - 60px);
}
/*.team .rows .info .zym span{*/
/*  font-size: 80px;*/
/*  font-weight: 400;*/
/*  color: #666666;*/
/*  font-family: Source Han Sans CN;*/
/*}*/
.team .rows .info .zym::before{
    display: inline-block;
    content: '“';
    position: absolute;
    top: 5px;
    left: -10px;
  font-size: 28px;
  font-weight: 400;
  color: #1F368F;
  font-family: Source Han Sans CN;
}
.team .rows .info .zym::after{
    display: inline-block;
    content: '”';
    position: absolute;
    bottom: -10px;
    right: -10px;
  font-size: 28px;
  font-weight: 400;
  color: #1F368F;
  font-family: Source Han Sans CN;
}
.team .rows .info .name{
    font-size: 28px;
    line-height: 28px;
    color: #142E85;
    margin-bottom: 5px;
}
.team .rows .info .position{
    font-size: 16px;
    line-height: 16px;
    color: #666666;
    margin-bottom: 24px;
}
.team .rows .info .position span{
    color: #AAAAAA;
    margin-left: 12px;
    padding-left: 10px;
    border-left: 1px solid #AAAAAA;
}
.team .rows .info .txt{
    line-height: 26px;
    color: #666666;
}
.team .center .bg1{
    position: absolute;
    left: 0;
    top: 100px;
    width: 93px;
}
.team .center .bg2{
    position: absolute;
    right: 0;
    bottom: 100px;
    width: 110px;
}

/* distributor */
.distributor .centers{
    padding-top: 80px;
}
.distributor .title{
    text-align: center;
}
.distributor .title .titEn{
    font-size: 16px;
    color: #1F368F;
    line-height: 16px;
    margin-bottom: 15px;
}
.distributor .title .tit{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #202020;
}
.distributor .title .txt{
    color: #888;
    line-height: 26px;
}
.distributor .list{
    margin-top: 60px;
}
.distributor .item{
    width: 270px;
    margin-right: 40px;
    background-color: #fff;
    text-align: center;
    padding-top: 38px;
    padding-bottom: 20px;
    position: relative;
}
.distributor .item:nth-of-type(4n){
    margin-right: 0;
}
.distributor .item img{
    width: 55px;
    height: 55px;
    margin: 0 auto;
}
.distributor .item .nums{
    position: relative;
}
.distributor .item .nums span{
    color: #1F368F;
    font-size: 102px;
    opacity: .05;
    display: block;
}
.distributor .item .nums p{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    line-height: 26px;
    font-size: 16px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.distributor .formFra{
    padding: 110px 0;
    background-color: #fff;
    margin-top: 80px;
}
.distributor .formFra .content{
    width: 900px;
}
.distributor .formFra .tit{
    font-size: 32px;
    line-height: 56px;
    margin-bottom: 60px;
}
.distributor .fra{
    margin-bottom: 40px;
}
.distributor .fra .fTit{
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}
.distributor .fra select{
    width: 100%;
}
.distributor .select2-container--default .select2-search--inline .select2-search__field{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.select2-container--default .select2-selection--multiple{
    border: 0;
    border-bottom: 2px solid #999999;
    border-radius: 0;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
    border: 0;
    border-bottom: 2px solid #142e85;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color: #142e85;
    border-color: #142e85;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 10px;
    cursor: default;
    border-radius: 4px;
    line-height: 30px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
}
.distributor .fra .fInput{
    width: calc(50% - 15px);
    position: relative;
    border-bottom: 2px solid #999999;
    margin-bottom: 30px;
}
.distributor .fra .fInput:nth-of-type(2n){
    float: right;
}
.distributor .fra .fInput input{
    border: 0;
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding-left: 82px;
}
.distributor .fra .fInput label{
    position: absolute;
    left: 0;
    top:0;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    color: #999;
}
.distributor .fra .radio .type{
    margin-right: 28px;
    font-size: 16px;
    line-height: 40px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    cursor: pointer;
    vertical-align: top;
    color: #999;
} 
.distributor .fra .radio .type::before {
    position: absolute;
    top: 11px;
    left: 0;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    content: '';
    border: 2px solid #1F368F;
    border-radius: 50%;
}
.distributor .fra .radio .type::after{
    position: absolute;
    top: 15px;
    left: 4px;
    box-sizing: border-box;
    width: 7px;
    height: 7px;
    content: '';
    border-radius: 50%;
}
.distributor .fra .radio .type.active{
    color: #333;
}
.distributor .fra .radio .type.active::after{
    background-color: #1F368F;
}
.distributor .fra .fInput.nums{
    width: 100%;
    margin-top: 30px;
}
.distributor .fra .fInput.txt,
.distributor .fra .fInput.select{
    width: 100%;
    float: none;
    padding-top: 40px;
}
.distributor .fra .fInput textarea{
    width: 100%;
    border: 0;
    font-size: 16px;
    font-family: "";
    resize: none;
}
.select2-container--default .select2-selection--single{
    border: 0;
    font-size: 16px;
    color: #999;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    display: none;
}
.select2-search--dropdown{
    padding: 0;
    border-top: 2px solid #999999;
}
.distributor .formFra button{
    font-size: 16px;
    line-height: 50px;
    display: block;
    min-width: 160px;
    height: 50px;
    margin-top: 20px;
    padding: 0 35px;
    cursor: pointer;
    text-align: center;
    letter-spacing: .1em;
    color: #fff;
    border: 0;
    border-radius: 50px;
    outline: 0;
    background-color: #1F368F;
    margin-left: auto;
}

@media only screen and (max-width:760px) {
    .content{
       width: 100%;
    }
    .lTop{
       margin-top: 80px;
    }
    .pHeader{
       /*height: 220px;*/
       padding: 30px 0;
    }
    .pHeader .tit{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .pHeader .titEn{
        font-size: 14px;
        margin: 5px auto 10px;
    }
    .pHeader .txt{
        font-size: 12px;
        line-height: 20px;
    }
    .about_1{
        padding: 30px 0;
    }
    .about_2{
        width: 95%;
    }
    .about_2 .list{
        margin-bottom: 20px;
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .about_2 .item{
        margin-right: 10px;
        margin-bottom: 10px;
        width: calc((100% - 10px) / 2);
    }
    .about_2 .item:nth-of-type(2n){
        margin-right: 0px;
    }
    .about_2 .item .info{
        border: none;
    }
    .about_2 .item .icon{
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }
    .about_2 .item .icon img{
        max-width: 50%;
        max-height: 70%;
    }
    .about_2 .item .info p:first-child{
        font-size: 12px;
    }
    .about_2 .item .info p:last-child{
        font-size: 12px;
    }
    .about_2 .txt p,
    .about_2 .txt span{
        font-size: 12px !important;
        line-height: 22px !important;
    }
    .about_2 .txt img{
        max-width: 100% !important;
    }
    .about_2 .txt .ic-list{
        display: flex !important;
        display: -webkit-flex !important;
        flex-wrap: wrap !important;
        -webkit-flex-wrap: wrap !important;
    }
    .about_2 .txt .ic-list span{
        margin-right: 10px !important;
        margin-bottom: 10px !important;
        width: calc((100% - 10px) / 2) !important;
    }
    .about_2 .txt .ic-list span:nth-of-type(2n){
        margin-right: 0px !important;
    }
    .i5-indexInnerBox .my-buddy-swiper a img{
    width: 80px;
    height: 70px;
    padding: 20px;
    object-fit: contain;
    }
    .partner .item{
        width: 100%;
    }
    .product .item{
        width: 95%;
        margin: 0 0 15px 0;
    }
    .product .list{
        padding: 30px 15px;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
    }
    .product .item .mImg{
        width: 200px;
        height: 180px;
    }
    .newsDetail .list{
        width: 95%;
        padding: 30px 0;
    }
    .newsDetail .list .name{
        font-size: 16px;
    }
    .newsDetail .list .crumbs{
        margin-bottom: 15px;
    }
    .newsDetail .list .txt p{
        font-size: 12px !important;
    }
    .newsDetail_2 .left a{
        font-size: 12px;
    }
    .news .list{
        padding: 30px 0;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
    }
    .news .list .item{
        width: 95%;
        width: 95%;
        margin: 0 0 15px 0;
    }
    .contact_1{
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
        margin-top: 30px;
    }
    .contact_1 iframe{
        width: 100%;
        height: 300px;
    }
    .contact_1 .info{
        width: 100%;
        height: 450px;
    }
    .contact_1 .info .center{
        width: 95%;
        margin-top: 50px;
    }
    .contact_1 .info .name{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .contact_1 .info .txt,
    .contact_1 .info .txt span{
        font-size: 12px;
    }
    .contact_1 .info .qrCode{
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        -webkit-justify-content: center;
    }
    .contact_1 .info .qrCode>div{
        margin-right: 0px;
    }
    .contact_1 .info .qrCode>div:last-of-type{
        margin-left: 15px;
    }
    .contact_2{
        padding: 30px 0;
        width: 95%;
    }
    .contact_2 .tit{
        font-size: 18px;
    }
    .contact_2 .fGroup{
        width: 100%;
    }
    .contact_2 .fGroup{
        margin-top: 20px;
    }
    .contact_2 .fGroup label{
        font-size: 14px;
    }
    .contact_2 .fGroup input{
        font-size: 12px;
    }
    .contact_2 .fGroup select{
        font-size: 12px;
    }
    .contact_2 .fGroup:last-of-type{
        margin-bottom: 20px;
    }
    .contact_2 button{
        float: unset;
        width: 120px;
        height: 38px;
        font-size: 14px;
        display: block;
        margin: 0 auto 0;
    }
    .contact_2 .clearfix{
        /*display: flex;*/
        /*display: -webkit-flex;*/
        /*flex-direction: column;*/
        /*-webkit-flex-direction: column;*/
        /*align-items: center;*/
        /*-webkit-align-items: center;*/
    }
   .pHeader{
    /*background: none;*/
    /*background-image: url(../images/images/bn1.jpg);*/
    background-size: cover;
    }
    .xzwh .content{
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .xzwh .content .item{
        margin-right: 10px;
        margin-bottom: 10px;
        width: calc((100% - 10px) / 2);
    }
    .xzwh .content .item .bg{
        height: 180px;
    }
    .xzwh .content .item:nth-of-type(2n){
        margin-right: 0px;
    }
    .xzwh .center{
        width: 95%;
    }
    .partner .item a .icon{
       width: 50%;
    }
    .partner .item a .txt{
        font-size: 14px;
    }
}
