/*-----------------[初始化]--------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0; padding:0; }
table{border-collapse:collapse; border-spacing:0; } 
fieldset,img{border:0; }
ol,ul{list-style:none; }
caption,th{text-align:left; } 
q:before,q:after{content:''; } 
abbr,acronym{border:0; } 
a{text-decoration:none; } 
.clear{clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0; }
.l,.col-l,.col_l,.col-c,.col_c{float:left; }
 .r,.col-r,.col_r,dt span,.ul-txt li span,.ul_txt li span{float:right; } .c{clear:both; } 
.dn{display:none; }  
*,*:before,*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); 
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {color: #333;font-size: 14px;line-height: 1.5;font-family: 'Microsoft Yahei',"PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;-webkit-font-smoothing: antialiased;}
img {max-width: 100%;border: none;}
input,textarea,select {font-size: 14px;color: #333;font-family: 'Microsoft Yahei',"PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;border: none;}
input[type='submit'],input[type='reset'],input[type='button'],input[type='radio'],input[type='checkbox'],select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
::-webkit-input-placeholder {color: #999;}
::-moz-placeholder {color: #999;}
::-ms-input-placeholder {color: #999;}
select::-ms-expand {display: none;}
a {color: #333;text-decoration: none;}
@font-face {
    /*font-family: Heavy;*/
    /*src:url('../font/SourceHanSerifSC-Heavy.otf'); */
}
.img-cover{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*布局*/
body{padding-top: 160px;}
.wp {margin: 0 auto;width: 1400px;}

/*******************************
    -------[=头部]-------
********************************/
.header{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header .title{
    overflow: hidden;
    background:#434343;
    color:#fff;
    line-height: 40px;
    font-size: 12px;
}
.header.fixed{
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.logo{
    float: left;
    overflow: hidden;
     height: 120px;
    background: url(../images/logo.svg) no-repeat center;
    width: 309px;
    background-size: 100% auto;
        text-indent: -1000em;
}
.logo img{
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

.nav:after{
    content: '';
    display: block;
    clear:both;
    visibility: hidden;
    width: 100%;
    height: 0;
}
.nav {
    float: right;
}
.nav ul{
    float: left;
}
.nav li{
    float: left;
    position: relative;
    padding:  0;
}
.nav  .v1{
    font-size: 16px;
    color:#222;
    display: block;
    line-height: 120px;
    padding: 0 30px;
    text-align: center;
}
.nav li:hover .v1{
    color:#305BC4;
}
.nav li .sub{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    
    z-index: 9;
    padding: 10px 0;
    background-color: #305BC4;
}
.nav li .sub a{
    display: block;
    font-size: 14px;
    padding-left: 20px;
    color:#fff;
    line-height: 35px;
}
.nav li .sub a:hover{
    background-color: #fff;
    color:#305BC4;
}

.nav .phone{
    float: left;
    font-size: 14px;
    color:#666;
    position: relative;
    margin-top: 30px;
    padding-left: 72px;
    background: url(../images/ico1.png) no-repeat left 20px center;
}
.nav .phone span{
    font-size: 24px;
    color:#333;
    font-family: Impact;
}
.nav .phone::after{
    content:'';
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    background: #848484;
    top: 50%;
    margin-top: -10px;
    left: 0;
}

/*******************************
    -------[=导航]-------
********************************/
.menuBtn{
    display: none;
    position: fixed;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}
.menuBtn b{display: block;height: 4px;background-color: #417AB7;
    margin: 4px 0;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}
.menuBtn.open{}
.menuBtn.open b{display: none;margin: 0;position: absolute;left: 0px;top: 50%;margin-top: -5px;width: 30px;}
.menuBtn.open b:first-child{display: block;
    transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
}
.menuBtn.open b:last-child{display: block;
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
}
/*******************************
    -------[=底部]-------
********************************/

/*******************************
    -------[=公用]-------
********************************/
 .g-tit{
        text-align: center;
        margin-bottom: 36px;
    }
    .g-tit .cn{
        font-weight: bold;
        font-size: 36px;
        color:#333;
        line-height: 1.1;
        margin-top: -35px;
        position: relative;
        padding-bottom: 24px;
        margin-bottom: 26px;
    }
    .g-tit .cn::after{
        content:'';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 34px;
        height: 4px;
        background: #385BB4;
        margin:0 auto;
    }
    .g-tit .en{
        font-size: 48px;
        color:#ECECEC;
        font-family: 'Impact';
        text-transform: uppercase;
    }
    .g-tit .desc{
        font-size: 15px;
        color:#999999;
    }
    .g-more a {
    display: block;
    margin: 0 auto;
    width: 156px;
    height: 46px;
    border: 1px solid #D2D2D2;
    text-align: center;
    line-height: 44px;
    font-size: 14px;
    color: #999999;
}
.banner img{
    display: block;
}
.banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets{
    top: auto;
    right:0;
    left:0;
    bottom:30px;
    text-align: center;
  }
.banner.swiper-container .swiper-pagination-bullet{width:16px;height:16px;background:#fff;font-size:0;cursor:pointer;border: none;border-radius: 50%;opacity:1;display: inline-block;margin:0  10px !important;float: none;}
.banner.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active{width: 20px;
height: 20px;background:url(../images/ban-row.png) no-repeat;}

 /**row1***/
    .row1{
        padding-bottom: 58px;
        padding-top: 44px;
        overflow: hidden;
    }

    .g-img{
        height: 300px;
        background:#000 url(../images/g-img.jpg) no-repeat ;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
        margin-bottom: 20px;
        padding:38px 42px 0;
    }
     .g-img .txt{
        width: 360px;
        overflow: hidden;
     }
    .g-img .tit{
        font-size: 24px;
        color:#fff;
        font-weight: bold;
        border-bottom: 1px solid #fff;
        padding-bottom: 11px;
        margin-bottom: 13px;
     }
     .g-img .desc{
        font-size: 14px;
        color:#fff;
        line-height: 1.71;
        margin-bottom: 28px;
     }
     .ul-img{
        overflow: hidden;
        margin:0 -14px;
     }
     .ul-img li{
        float: left;
        width: 25%;
     }
     .ul-img .con{
        display: block;
        overflow: hidden;
        margin:0 14px;
        font-size: 18px;
        color:#FFFFFF;
        line-height: 21px;
        text-align: center;
        height: 83px;
        font-weight: bold;
        padding-top: 20px;
        background: url(../images/img.png) no-repeat;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
     }
    .m-slider1 .l{
        width: 300px;
        margin-right: 30px;
        box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e7e7e7;
    }
    .m-slider1 .r{
        float: none;
        overflow: hidden;
    }
    .m-slider1 .r .img img{
        display: block;
        margin-bottom: 20px;
    }
    .g-title1{
        background:url(../images/bg1.jpg) no-repeat;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
        color:#fff;
        font-size: 14px;
        padding: 30px 40px 29px;
        text-transform: uppercase;
    }
    .g-title1 p:first-child{
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    .m-slider1 .l .more{
        display: block;
        font-size: 18px;
        color:#fff;
        padding:0 40px ;
        line-height: 60px;
        background: #305BC4;
    }

   .zd{
    padding: 0 28px;
    overflow: hidden;
}
.zd dl{
   display: block;
   background: url(../images/pro-xian.png) no-repeat bottom;
}
.zd dl:last-child{
    background: none;
}

.zd dt a{
    font-size: 18px;
    line-height: 70px;
    color:#222;
    display: block;
    text-transform: uppercase;
    background: url(../images/pro-ico.png) no-repeat right center;
    cursor: pointer;
    transition:all .3s;
}
.zd dt a:hover{
    color:#E60619;
}
.zd dl:hover dd{
    display: block;
    padding-bottom: 23px;
}
.zd dd{
    display: none;
    
}
.zd dd a{
    display: block;
    font-size: 16px;
    color:#fff;
    line-height: 2.25;
}
.zd dd a:hover{
    color:#E60619;
}
.g-pictxt1{
    margin-bottom: 20px;
    overflow: hidden;
    background: url(../images/pic12.jpg) no-repeat;
    background-size: cover;
}
.g-pictxt1 .txt{
    overflow: hidden;
    padding:33px 49px 63px;
}
.g-pictxt1 .txt .tit{
    font-size: 24px;
    color:#fff;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 14px;
    width: 359px;
    border-bottom: 1px solid #B28D05;
}
.g-pictxt1 .txt .desc{
    font-size: 14px;
    color:#fff;
    line-height: 1.71;
}
.ul-list1{
    overflow: hidden;
}
.ul-list1 .con{
    display: block;
    overflow: hidden;
}
.ul-list1 .pic{
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    height: 0;
    border:1px solid #eee;
}
.ul-list1 .pic img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    transition:all .3s;
}
.ul-list1 li:hover .pic img{
    transform:scale(1.05, 1.05);
}
.ul-list1 .tit{
    text-align: center;
    font-size: 14px;
    color:#666666;
    line-height: 41px;background-color: #EEEEEE;
}
.ul-list1 li:hover .tit{
    color:#ec0005;
}
.g-more a{
    display: block;
    margin:0 auto;
    width: 156px;
    height: 46px;
    border: 1px solid #D2D2D2;
    text-align: center;
    line-height: 44px;
    font-size: 14px;
    color:#999999;
}


.row-5{
    overflow: hidden;
    position: relative;
    color:#fff;
    padding-top: 18px;
    padding-bottom: 18px;
}
.row-5::after{
    content:'';
    display: block;
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
    bottom: 0;z-index: -1;
    height: 100%;
    background: url(../images/bg3.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.row-5::before{
    content:'';
    display: block;
    position: absolute;
    width: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    background: url(../images/bg4.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.row-5 .w50{
    width: 50%;
    float: left;
    overflow: hidden;
}
.ul-list3 li{
    float: left;
    width: 25%;
    text-align: center;
    font-size: 14px;
    color:#FFFFFF;
}
.ul-list3 li img{
    display: block;
    margin:0 auto 10px;
}
.ul-list3 .tit{
    font-size: 22px;
    line-height: 1.3;
    color:#FFC000;
    text-align: center;
    font-weight: bold;
    margin-bottom: 4px;
}
.g-txt1 .tit{
    font-size: 26px;
    color:#FFFFFF;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 7px;
}
.g-txt1 .en{
    font-size: 10px;
    color:rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    padding-bottom: 9px;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.g-txt1 .en::after{
    content:'';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.59);
}
.g-txt1 .desc{
    font-size: 15px;
    color:#FFFFFF;
    margin-bottom: 21px;
}
.g-txt1 a{
    width: 113px;
    height: 28px;
    border: 1px solid #FFFFFF;
    border-radius: 14px;
    font-size: 14px;
    color:#FFFFFF;
    text-align: center;
    line-height: 26px;
    display: block;
}
.g-txt1 a:hover{
    background-color: #305BC4;
    border-color: #305BC4;
    color:#fff;
}
.g-txt1{
    padding-top: 10px;
}
.row4{
    padding-top: 54px;
    padding-bottom: 20px;
    overflow: hidden;
    background: url(../images/bg5.jpg) no-repeat;
    background-size: cover;
}
.g-tab2 .box{
    overflow: hidden;
}
.ul-tab{
    float: left;
    width: 334px;
}
.ul-tab li{
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}
.ul-tab .on .con::after{
    content:'';
    display: block;
    position: absolute;
    right: -10px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: url(../images/ico31.png) no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.ul-tab .con{
    display: block;
    margin-right: 30px;
    height: 100px;
    padding-left: 34px;
    position: relative;
      background: url(../images/bg6.jpg) no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.ul-tab .icon{
    width: 60px;
    height: 100px;
    float: left;
    margin-right: 16px;
    background-repeat: no-repeat;
    background-position: center center;
}
.ul-tab .txt{
    overflow: hidden;
    padding-top: 25px;  
}
.ul-tab  .en{
    font-size: 14px;
    color:#666666;
    text-transform: uppercase;
}
.ul-tab .cn{
    font-size: 20px;
    color:#333333;
    display: block;
    font-weight: bold;
}
.ul-tab .on .cn{
    color:#fff;
}
.ul-tab .on .en{
    color:#fff;
}
.ul-tab .on .con{
    background: #305BC4;
}

.tab1{
    height: 430px;
    overflow: hidden;
}
.tab1 .pic{
    height: 100%;
    float: left;
    overflow: hidden;
    width:calc(100% - 320px);
}
.tab1 .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tab1 .txt{
    overflow: hidden;
    width: 312px;
    height: 100%;
    background: url(../images/bg8.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color:#fff;
    padding: 42px 22px;
}
.tab1 .txt .tit{
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10px;
}
.tab1 .txt .en{
      padding-bottom: 17px;
    margin-bottom: 34px;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
}
.tab1 .txt .en::after{
    content:'';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background: #FFFFFF;
}
.tab1 .txt .desc{
    font-size: 14px;
    line-height: 2.14;
    margin-bottom: 25px;
    display: -webkit-box;  
    overflow: hidden;  
    text-overflow: ellipsis;  
    word-break: break-all;  
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 4;
}
.tab1 .txt a{
    display: block;
    width: 138px;
    height: 42px;
    background: #FAAF1D;
    border-radius: 21px;
    font-size: 14px;
    color:#EDEDED;
    text-align: center;
    line-height: 42px;
}
 .row7{
    padding-bottom: 58px;
    padding-top: 76px;
}
.g-about{
    overflow: hidden;
}
.g-about .g-tit{
    margin-bottom: 41px;
}
.g-about .txt{
   overflow: hidden;
   padding-right: 151px;
}
.g-about .pic{
    float: right;
}
.g-about .g-tit{
    text-align: left;
}
.g-about .g-tit .cn{
    padding-bottom: 20px;
}
.g-about .g-tit .en{
    font-size: 48px;
}
.g-about .g-tit .cn::after{
    margin:0;
}
.g-about .g-tit::after{
    margin:0;
}
.g-about .desc{
    font-size: 16px;
    color:#333333;
    line-height: 1.86;
    margin-bottom: 54px;
}
.g-about a.more{
    display: block;
    width: 150px;
    height: 40px;
    background: #305BC4;
    border-radius: 20px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.ul-link a{
    display: block;
    float: left;
    width: 200px;
    height: 100px;
    border:1px solid #bfbfbf;
    margin-right: 20px;
}
.ul-link a.on{
    background: url(../images/bg9.jpg) no-repeat;
    border:none;
    background-size: cover;
}
.ul-link a.on .nub,
.ul-link a.on .tit,
.ul-link a.on .en{
    color:#fff;
}
.ul-link a .nub{
    float: left;
    padding-left: 15px;
    font-size: 42px;
    color:#b0b0b0;
    line-height: 98px;
    margin-right: 20px;
}
.ul-link a:last-child{
    margin-right: 0;
}
.ul-link .title{
    overflow: hidden;
    padding-top: 30px;
}
.ul-link .tit{
    font-size: 18px;
    color:#666666;
    line-height: 1.2;
}
.ul-link .en{
    font-size: 11px;
    color:#999999;
    letter-spacing: -1px;
    text-transform: uppercase;
}    

.row5{
    overflow: hidden;
    padding: 28px 0 40px;
    background-color: #F7F7F7;
}

.slider3.swiper-container{
    margin-bottom: 40px;
}
.slider3  a{
    display: block;
}
.slider3 .pic{
    overflow: hidden;
    position: relative;
    height: 0;
    padding-top: 75%;
      border:1px solid #eee;
}
.slider3 .pic img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top: 0;
    object-fit: contain;
}
.slider3 .tit{
    text-align: center;
    background-color: #E60619;
    color:#fff;
    font-size: 14px;
    line-height: 45px;
}


.row-8{
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 68px;
}
.row-8 .top{
    overflow: hidden;
    margin-bottom: 26px;
}
.row-8 .title{
    overflow: hidden;
    font-size: 36px;
    color:#333333;
    padding-bottom: 13px;
    position: relative;
    float: left;
}
.row-8 .title::after{
    content:'';
    display: block;
    position: absolute;
    width: 30px;
    height: 5px;
    bottom: 0;
    background-color: #305BC4;
}
.ul-tab1{
    overflow: hidden;
    float: right;
    margin-bottom: 37px;
}
.ul-tab1 li{
 display: block;
 float: left;
 margin:0 15px;
}
.ul-tab1 li span{
    display: block;
    width: 174px;
    height: 40px;
    background-color: #f7f7f7;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color:#333333;
    cursor: pointer;
    transition:all .3s;
}
.ul-tab1 li.on span,
.ul-tab1 li:hover span{
    background-color: #305BC4;
    color:#fff;
}
.ul-wt a{
    display: block;
    background: #f8f8f8;
    overflow: hidden;
}
.ul-wt .pic{
    position: relative;
    padding-top: 52%;
    overflow: hidden;
    height: 0;
    background-color: #fff;
}
.ul-wt .pic img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.ul-wt .txt{
    padding: 28px 20px 0;

}
.ul-wt .more{
    border-top: 1px solid #dfdfdf;
    color:#747474;
    line-height: 68px;
    font-size: 14px;
    background: url(../images/pic14-2.jpg) no-repeat right center;
}
.ul-wt .time{
    font-size: 14px;
    color:#333333;
    margin-bottom: 15px;
    display: block;
}
.ul-wt .tit{
    font-size: 24px;
    color:#333333; 
    margin-bottom: 31px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}
.ul-wt .desc{
    font-size: 14px;
    color:#777777;
    line-height: 1.8;
    display: -webkit-box;  
    overflow: hidden;  
    text-overflow: ellipsis;  
    word-break: break-all;  
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
}

/**links***/
.links{
    overflow: hidden;
    background-color: #424242;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 28px 0 16px;
}
.links .name{
    float: left;
    margin-right: 50px;
}
.links .link{
    overflow: hidden;
}
.links .link a{
    font-size: 14px;
    color:#ABABAB;
    line-height: 37px;
    margin-right: 34px;
}
/**footer**/
.footer{
 overflow: hidden;
}
.footer .top{
    background: #424242;
    overflow: hidden;
    padding: 42px 0 26px;
}
.footer .tit{
    color:#FFFFFF;
    font-size: 18px;
    margin-bottom: 36px;
}
.fd-form{
    float: left;
    margin-right: 60px;
}
.fd-form .w140{
    width: 140px;
}
.fd-form .w180{
    width: 180px;
}
.fd-form .w350{
    width: 440px;
}
.fd-form .box{
    overflow: hidden;
}
.fd-form .item{
    overflow: hidden;
    float: left;
    margin-right: 40px;
}
.fd-form .item .inp-box{
    height: 37px;
    overflow: hidden;
}
.fd-form .item .inp{
    display: block;
    width: 100%;
    height: 32px;
    background: none;
    color:#fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.fd-form .item .inp::placeholder{
    color:#fff;
}
.fdnav{
    overflow: hidden;
    margin-bottom: 50px;
}
.fdnav  dl{
    float: left;
    margin-right: 110px;
}
.fdnav  dl:last-child{
    margin-right: 0;
}
.fdnav  dl dd a,.fdnav  dl dd span{
    display: block;
    font-size: 14px;
    line-height: 2.29;
    color:#A5A5A5;
}
.fd-form .btn input{
    display: block;
    width: 88px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color:#fff;
    cursor: pointer;
}
.fd-desc{
    overflow: hidden;
}
.fd-desc  .desc{
    font-size: 14px;
    color:#A5A5A5;
    line-height: 2.29;
    margin-bottom: 21px;
}
.fd-desc  .qr{
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
.fd-desc  .qr img{
    display: block;
    width: 114px;

}


.copy{
    font-size: 14px;
    color:#898989;
    line-height: 38px;
    background-color: #363636;
}
.copy a{
  font-size: 14px;
  color:#898989;
}


#floatBottom{width:100%;height:53px;background:#8a8a8a;position:fixed;left:0;bottom:0;z-index:99;display: none;}
#floatBottom a{width:33.333%;height:53px;display:block;float:left;position:relative;font-size: 14px;color:#fff;text-align: center;padding-bottom: 4px;}
#floatBottom a img{
    display: block;
    margin:4px auto 2px;
    height: 25px;
}
#floatBottom .ewm{width:87px;height:83px;position:absolute;bottom:55px;left:50%;margin-left:-45px;display:none;}
#floatBottom .ewm img{width:100%;height:100%;display:block;}

.prod-list{
    margin:30px 0;
}

.row-1{
    overflow: hidden;
    padding: 3vw 0;
}
 .sg_ul .swiper-slide{
    padding: 0 15px;
 }
 .sg_ul{margin-top:43px;background:#FFF;overflow:hidden;padding:32px 0 44px;position:relative;z-index:1;}
 .sg_ul i{display:block;width:150px;height:150px;line-height:150px;background-repeat:no-repeat;background-position:center center;background-size:100% 100%;margin:0 auto;font-size:46px;font-weight:bold;color:#02409f;font-style:normal;font-family:Arial;text-align:center;}
 .sg_ul i.icon1{background-image:url(../images/sg_bg1.jpg);}
 .sg_ul i.icon2{background-image:url(../images/sg_bg2.jpg);}
 .sg_ul i.icon3{background-image:url(../images/sg_bg3.jpg);}
 .sg_ul i.icon4{background-image:url(../images/sg_bg4.jpg);}
 .sg_ul i.icon5{background-image:url(../images/sg_bg5.jpg);}
 .sg_ul i.icon6{background-image:url(../images/sg_bg6.jpg);}
 .sg_ul p{font-size:14px;line-height:24px;color:#62748e;text-align: center;}
 .sg_ul p:first-of-type{font-size:18px;height:28px;line-height:28px;font-weight:bold;color:#04152c;margin-bottom:6px;margin-top:24px;}

.row-2{
    overflow: hidden;
    padding: 3vw 0;
    background: #F8F9FD;
}
 .ul-hn{
    overflow: hidden;
    margin:0 -10px;
}
.ul-hn li{
    width: 33.333%;
    float: left;
}
.ul-hn .con{
    margin:0 10px;
}
.ul-hn .num{
    margin:0 auto;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 32px;
    color:#fff;
    border-radius: 50%;
    background: #305BC4;
    position: relative;
    z-index: 2;
}
.ul-hn .box{
    margin-top: -40px;
    border:1px solid #eee;
    text-align: center;
    padding: 60px 20px 20px;
    height: 240px;
}
.ul-hn .box .tit{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.ul-hn .box .desc{
    font-size: 14px;
    line-height: 1.5;
}

.gc-list{
    width: 25%;
    float: right;
    width:25%;
    margin-bottom: 10px;
}
.gc-list .p_img{
    margin: 10px 10px 0;
}
.gc-list .bg{
    text-align: center;
}
@media only screen and (max-width: 1600px) {
    .wp{width: 1300px;}
    .nav li .v1{padding: 0 15px;}
    .ul-link a{width: 30%;margin-right: 3%;}
    .ul-link a .nub{font-size: 30px;}
    
}
@media only screen and (max-width: 1430px) {
   .wp {margin: 0 auto;width:1100px;}
    .footer .wp{width: 1160px;}
    .fd-about{width: 400px;margin-right: 20px;}
    .fd-about .tel span{font-size: 16px;}
    .fd-form .w140{width: 100px;}
    .fd-form .w180{width: 120px;}
    .fd-form .w350{width: 200px;}
    .footer .tit{margin-bottom: 15px;}
    .fdnav dl{margin-right: 50px;}
    .nav .phone{display: none;}
    .row-5 .wp{width: auto;}
    .row-5 .w50{padding: 0 30px;}
    .g-about .pic{width: 400px;}
    .g-about .txt{padding-right: 50px;}
   


}
@media only screen and (max-width: 1230px) {
    .nav .v1{font-size: 14px;margin:0 5px;}
    .wp,.footer .wp{width: auto;padding: 0 15px;} 
    .header .title{display: none;}
    body{padding: 60px 0 53px;}
    #floatBottom{display: block;}
    .header{height: 60px;box-shadow: 0 3px 3px rgba(0,0,0,0.3);}
    .logo{line-height: 60px;height: 60px;margin-top: 0px;width: 150px;}
    #floatBottom{display: block;}
    .menuBtn{display: block;}
    .nav{
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 999;
        overflow: hidden;
        background: none;
        width: auto;
        float: none;
        padding: 0;
        display: none;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    }
    .nav .wp{padding: 0;}
    .nav ul{
        float: none;
        margin: 0;
        padding: 10px 0;
        background-color: #fffeff;
    }
    .nav li{float: none;width: auto;margin:0;}
    .nav li .sub{position: static;}
    .nav li .sub a{padding-left: 20px;text-align: left;}
    .nav .v1{height: 60px;line-height: 60px;text-align: left;color:#333;padding-left: 10px;border-bottom: 1px solid #eee;width: auto;}
    .nav li:last-child .v1{border-bottom: none;}
    .nav li i {
        display: block;
        width: 40px;
        height: 40px;
        background-position: center center;
          position: absolute;
          right: 0;
          top: 0;
        z-index: 9;
        background: url(../images/sel.png) no-repeat center center;
    }
    .nav li .sub{position: static;padding-left: 0;box-shadow: none;width: auto;}
    .nav li .sub a{float: none;line-height: 30px;}
    .nav .v1{height: 40px;line-height: 40px;text-align: left;padding-left: 10px;margin:0;}

    #floatBottom{display: block;}
    .copy, .copy a{line-height: 45px;font-size: 12px;}
    .fd-form{margin-right: 30px;}
    .fd-about .l{display: none;}
    .fd-about .tel span{font-size: 20px;}
    .fd-about .desc .tit{display: none;}
    .fd-about .item{margin-bottom: 15px;}
    .fd-about .item:last-child{margin-bottom: 0;}
    .links .name{float: none;margin-right: 0;text-align: center;margin-bottom: 0px;}
    .links{padding: 15px 0 10px;}
    .links .link span{display: none;}
    .links .link a{display: block;width: 20%;float: left;text-align: center;margin-right: 0;}
     .g-tit .en{font-size: 36px;}
    .g-tit .cn{font-size: 24px;padding-bottom: 20px;}
    .row1,.row4,.row7,.row-8{padding: 30px 0;}
    
    .g-txt1 .tit{font-size: 24px;}

    

}
@media only screen and (max-width: 1023px) {
    .fdnav{display: none;}
    .fd-desc .qr{display: block;}
    .fd-desc .qr img{float: left;margin-right: 15px;}
    .banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets{bottom:5px;}
    .row-5 .w50{float: none;width: auto;background: url(../images/bg3.jpg) no-repeat;background-size: cover;padding:20px 15px;height: auto;}
    .ul-list3 li{padding-top: 0;}
    .row-5 .w50:last-child{background-image: url(../images/bg4.jpg);}
    .row-5::before,.row-5::after{display: none;}
    .ul-tab{width: auto;float: none;margin:0 -5px; height: auto;overflow: hidden;}
    .ul-tab .con{margin:0 5px;}
    .ul-tab li{width: 25%;float: left;}
    .ul-tab .on a::after{display: none;}
    .ul-tab .icon{display: none;}
    .ul-tab .con{padding: 0;text-align: center;}
    .tab1{height: auto;clear:left;}
    .tab1 .txt{width: auto;height: auto;}
    .tab1 .pic{width: auto;float: none;height: 300px;}
    .ul-tab .cn{font-size: 12px;}
    .ul-tab .en{display: none;}
    .ul-tab .con{height: auto;padding: 0;line-height: 40px;}
    .ul-tab .txt{padding-top: 0px;}
    .ul-tab .on .con::after{display: none;}
    .g-about .pic{display: none;}
    .m-slider1 .l{width: auto;float: none;margin-right: 0;margin-bottom: 15px;}
    .zd dt a,.zd dl{background: none;}
    .zd dl{width: 33.333%;float: left;text-align: center;}
    .m-slider1 .l .more{display: none;}
    .row-8 .title{float: none;text-align: center;}
    .row-8 .title{margin-bottom: 20px;}
    .row-8 .title::after{margin:0 auto;left: 0;right: 0;}
    .ul-link{display: none;}
    .g-about .txt{padding-right: 0;}
    .zd{padding: 0;}
    .fd-form{float: none;margin-bottom: 20px;}
    .ul-tab1{float: none;text-align: center;margin-bottom: 15px;}
    .ul-tab1 li{display: inline-block;float: none;}
    .row-8 .title{font-size: 26px;}
    .g-about .g-tit .en{font-size: 28px;}
    .g-about a.more{margin-bottom: 0;}
    .g-about .desc{font-size: 14px;margin-bottom: 20px;}
     .ul-hn li{width: auto;float: none;}
     .row-5{padding: 0;}
}
@media only screen and (max-width: 960px) {
.g-pro .desc a{width: 25%;}

}

/*Common For Max 480*/
@media only screen and (max-width: 767px) {
     .ul-list3 li{width: 50%;margin-bottom: 15px;}
.fd-form .item{float: none;margin-right: 0;margin-bottom: 15px;}
.fd-form .w140,.fd-form .w180,.fd-form .w350{width: auto;}
.ul-tab li{width: 50%;}
.tab1 .txt {padding: 15px;}
.tab1 .txt .en{padding-bottom: 10px;margin-bottom: 10px;}
.tab1 .txt .tit,.ul-list3 .tit,.g-txt1 .tit{font-size: 18px;}
.zd dt a{font-size: 12px;line-height: 45px;border-bottom: 1px solid #eee;border-right: 1px solid #eee;}
.g-title1{padding: 10px 15px;}
.g-title1 p:first-child{font-size: 20px;}
.g-tit .cn{margin-bottom: 12px;}
 .ul-wt .tit{font-size: 20px;margin-bottom: 6px;}   
 .ul-tab1 li span{width: 150px;}

}
@media only screen and (max-width: 500px) {
   .ul-tab1 li{margin:0;}
   .row-8 .top{margin-bottom: 0;}
   .g-tit .en{font-size: 28px;}
   .g-tit .cn{font-size: 22px;margin-top: -20px;}
   .row-8 .title{font-size: 22px;}
   .row4{padding-bottom: 0;}
   .g-about .g-tit{margin-bottom: 20px;}
}

.g-pro{
    overflow: hidden;
    margin:20px 0 30px ;
}
.g-prod{
    margin-top: 30px;
    overflow: hidden;
}
.g-prod .left{
    width: 320px;
    float: left;
    margin-right: 40px;
}
.g-prod .info{
    overflow: hidden;
    padding: 0 10px;
}
.g-prod .left .title{
    background-color: #3E4B55;
    color:#fff;
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
}
.ul-pact a{
    line-height: 45px;
    padding-left: 20px;
    color:#333;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid #eee;
    transition:all .3s;
}
.ul-hot a{
    display: block;
    font-size: 14px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    padding-left: 20px;
    transition:all .3s;
}
.ul-pact a:hover,
.ul-hot a:hover{
    background: #417AB7;
    color:#fff;
    padding-left: 30px;
}
.mb30{
    margin-bottom: 30px;
    border:1px solid #eee;
    border-bottom: none;
}
.g-prod .left  .p3 {
    margin-bottom: 30px;
}

.g-prod .left  .p3 ul{
     background: #3E4B55;
     border-top: 1px solid rgba(255, 255, 255, 0.3);
    color:#fff;
    font-size: 14px;
    line-height: 1.7;
    padding: 20px;
}

@media only screen and (max-width: 1230px) {
    .g-prod .left{width: 260px;margin-right: 20px;}
    #floatBottom{display: block;}
}
@media only screen and (max-width: 1023px) {
    .g-prod .left{width: auto;float: none;margin-right: 0;}
    .g-prod .left .p2,.g-prod .left .p3{display: none;}
    .ul-pact{overflow: hidden;}
    .ul-pact li{width: 50%;float: left;}
    .g-tit2 .desc i{display: none;  }
    .g-tit2 .cn{font-size: 20px;}

}
@media only screen and (max-width: 767px) {
    .ul-pact a{text-align: center;padding-left: 0;font-size: 14px;}
    .g-prod .left .title{padding-left: 0;text-align: center;}
}