﻿@charset "utf-8";

html { width: 100%; height: 100%; }
body { font-size: 12px; font-family: "微软雅黑", Arial, Helvetica, sans-serif; /* min-height: 101vw; */ }
.clearfix:after { content: ""; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
* { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
img { border: none; display: block; }
i,
em { font-style: inherit; }
.clear { clear: both; }
a { color: #000; text-decoration: none; }
a:hover { color: #7fcd61; }
*:focus { outline: none; }
.fl { float: left !important; }
.fr { float: right !important; }
.one-txt-cut { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.txt-cut { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; /* -webkit-line-clamp: 2; */ }


.header{ width: 100%; float: left; }
.header .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content{ width: 80%; margin: 0 auto; }
.header .logo{
    max-width: 200px;
}
.pc_nav{
    width: calc(100% - 200px);
    padding-left: 7%;
    box-sizing: border-box;
}
.header .lanage{ float: right; font-size: 14px; color: #999; line-height: 90px; }
.header .lanage a{ color: #999; margin: 0 5px; }
.header .lanage a:hover{ color: #7fcd61; }
.header .nav{ 
    width: 82%; 
}
.header .nav ul{ width: 100%; float: left; display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex; -webkit-box-pack:justify; -webkit-justify-content:space-between; -ms-flex-pack:justify; justify-content:space-between; }
.header .nav li{ float: left; margin-top: 5px; }
.header .nav li a{ font-size: 16px; line-height: 82px; display: block; color: #000000; }
.header .nav li a:hover{ border-bottom: 3px solid #7fcd61; }
.header .nav li.active a{ border-bottom: 3px solid #7fcd61; }
.mobile_nav_right{ display: none; float: right; width: 23px; margin: 18px 0px; }
.mobile_nav_right span { display: block; width: 100%; height: 2px; background-color: #295095; -webkit-transition: all ease .3s; -o-transition: all ease .3s; -moz-transition: all ease .3s; transition: all ease .3s; }
.mobile_nav_right span:nth-child(2) { margin: 5px 0; }
.mobile_nav_right.ac .line1 { transform: rotate(45deg) translate(2.5px, 5px); }
.mobile_nav_right.ac .line2 { opacity: 0; }
.mobile_nav_right.ac .line3 { transform: rotate(-45deg) translate(5px, -8px); }


.crumbs{
    display: flex;
    justify-content: flex-end;
    margin-bottom:30px;
}
.crumbs .item {
    color: #9b9b9b;
    font-size: 16px;
    padding: 10px 24px;
    box-sizing: border-box;
    margin-right:20px;
}
.crumbs .item:last-child {
    margin-right:0;
}
.crumbs .item:hover{
    background:#3671cf;
    color:#fff;
    border-radius:20px;
}
.crumbs .item.active{
    background:#3671cf;
    color:#fff;
    border-radius:20px;
}



.add-listpro{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 50px;
}
.add-listpro .box {
   width: 22.6%;
    height: 240px;
    position: relative;
    margin-right: 3.2%;
    margin-bottom:40px;
}
.add-listpro .box:nth-child(4n){
    margin-right:0;
}
.add-listpro .box .pic {
    width: 100%;
    height: 100%;
}
.add-listpro .box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.add-listpro .box .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    z-index: 9;
    background: rgba(54,113,207,0.9);
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}
.add-listpro .box .text h3 {
    font-size: 16px;
    padding-top: 70px;
    padding-bottom: 12px;
}
.add-listpro .box .text .io {
    padding: 10px 24px;
    box-sizing: border-box;
    border: 1px solid #fff;
    margin-top: 20px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
}
.add-listpro .box:hover .text {
    opacity: 1;
    height: 100%;
}

.banner{ clear: both; width: 100%; float: left; }
/*.banner img{max-width: 100%;float: left;}*/

.banner img { display: block; width: 100%; }
.banner img.h-img{
    display: none;
}
.index-banner .advice{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index-banner .advice.adviceone{
    display: flex;
    align-items: center;
}
.index-banner .advice.adviceone .advice-box{
    max-width: 808px;
    margin-left: auto;
    padding-right: 45px;
    box-sizing: border-box;
}
.index-banner .advice.adviceone .tit{
    font-size: 48px;
    font-weight: bold;
    color: #152c8b;
}
.index-banner .advice.adviceone .desc{
    color: #333333;
    font-size: 20px;
    line-height: 2;
    margin-top: 25px;
}
.index-banner .advice.adviceone .desc p{
    position: relative;
    padding-left: 28px;
    box-sizing: border-box;
}
.index-banner .advice.adviceone .desc p::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}

.index-banner .advice.advicetwo .content{
    display: flex;
    justify-content: center;
}
.index-banner .advice.advicetwo .advice-box{
    width: 660px;
    height: 225px;
    text-align: center;
    background: rgba(255,255,255,.35);
    padding: 15px;
    box-sizing: border-box;
    margin-top: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.index-banner .advice.advicetwo .advice-box::before{
    content: "";
    display: block;
   position: absolute;
   border: 1px solid #fff;
   width: calc(100% - 30px);
   top: 15px;
   height: calc(100% - 30px);
   left: 15px;
}
.index-banner .advice.advicetwo .tit{
    font-size: 44px;
    font-weight: bold;
    color: #152c8b;
    line-height: 1;
    margin-top:10px;
}
.index-banner .advice.advicetwo .desc{
    color: #bae0ae;
    font-size: 30px;
}

.banner .swiper-pagination-bullet { width: 60px; height: 4px; background: #fff; opacity: 1; border-radius: 0; }
.banner .swiper-pagination-bullet-active { background: #204295; }
.banner .btnbox { width: 1630px; max-width: 96%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 15; }
.banner .swiper-button-next,
.banner .swiper-container-rtl .swiper-button-prev { background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
.banner .swiper-button-prev,
.banner .swiper-container-rtl .swiper-button-next { background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction { bottom: 40px; }

.company{ clear: both; width: 100%; float: left; background: #f8f9fb; padding: 70px 0; }
.comp_mod1{ width: 100%; float: left; display: flex;align-items:center; }
.comp_mod1 .img{ float: left; }
.comp_mod1 .info{ margin-left: 3%; }
.comp_mod1 .info h5{ font-size: 37px; color: #525252; }
.comp_mod1 .info span{ font-size: 24px; color: #525252; }
.comp_mod1 .info p{ font-size: 14px; color: #999999; margin: 20px 0; line-height: 25px; }
.comp_mod1 .info a{ width: 134px; height: 43px; background: #3770d0; text-align: center; font-size: 14px; color: #ffffff; float: left; line-height: 43px; border-radius: 5px; }
.comp_mod2{ width: 100%; float: left; margin-top: 35px; }
.comp_mod2 ul{ width: 100%; float: left; }
.comp_mod2 ul li{ width: 25%; float: left; text-align: center; border-right: 1px solid #e3e5ec; }
.comp_mod2 ul li span{ display: block; font-size: 16px; color: #326dcf; }
.comp_mod2 ul li span em{ font-size: 48px; }
.comp_mod2 ul li p{ display: block; font-size: 18px; color: #333333; }
.comp_mod2 ul li:last-child{border: 0;}

.product{ clear: both; width: 100%; float: left; padding-top: 70px; }
.title{ width: 100%; float: left; }
.title_con{ /* width: 482px; */ background: url(../img/tit_bg.png) no-repeat center bottom; margin: 0 auto; overflow: hidden; }
.title_con span{ display: block; font-size: 34px; font-weight: bold; color: #333333; text-align: center; }
.title_con p{ display: block; font-size: 14px; color: #666666; text-align: center; margin-bottom: 20px; margin-top: 10px; }
.pro_list{ width: 100%; float: left; margin-top: 50px; }
.pro_list li{ width: 25%; float: left; text-align: center; padding: 0 35px; padding-top: 6.0vw; padding-bottom: 19.0vw; }
.pro_list li span{ font-size: 32px; color: #ffffff; display: block; margin-bottom: 1.2vw; }
.pro_list li p{ font-size: 14px; color: #ffffff; line-height: 25px; }
.pro_list li.pro_1{ background: url(../img/index_img2.jpg) no-repeat bottom center; background-size: cover; }
.pro_list li.pro_2{ background: url(../img/index_img3.jpg) no-repeat bottom center; background-size: cover; }

.pro_list .ipro_con{ width: 100%; float: left; position: relative; }
.pro_list .ipro_con .swiper-container{ width: 85%; }
.pro_list .ipro_con .swiper-container img{ max-width: 100%; display: block; margin: 0 auto; }
.pro_list .ipro_con .swiper-container span{ display: block; text-align: center; font-size: 16px; color: #666666; line-height: 40px; }
.pro_list .ipro_con .swiper-container span a { color: #666666; }
.pro_list .swiper-button-next{ width: 42px; height: 83px; background: url(../img/jiangtou2.png) no-repeat; margin-top: -42px; }
.pro_list .swiper-button-prev{ width: 42px; height: 83px; background: url(../img/jiangtou1.png) no-repeat; margin-top: -42px; }


.yfyy{ clear: both; width: 100%; float: left; padding: 100px 0; }
.yfyy_con{ width: 100%; float: left; display: flex; }
.yfyy_con .yfyy_img{ width: 50%; float: left; }
.yfyy_con .yfyy_img img{ max-width: 100%; }
.yfyy_con .yfyy_info{ width: 50%; float: left; background: #f8f9fb; padding: 0 4.0vw; display: flex; align-items: center; }
.yfyy_con .yfyy_info h5{ font-size: 36px; color: #333333; }
.yfyy_con .yfyy_info span{ font-size: 23px; color: #333333; }
.yfyy_con .yfyy_info p{ font-size: 14px; color: #999999; margin-top:1.5vw; line-height: 25px; text-align: justify;
 display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
}
.yfyy_con .yfyy_info a{ width: 134px; height: 43px; background: #3770d0; text-align: center; font-size: 14px; color: #ffffff; float: left; line-height: 43px; border-radius: 5px; margin-top: 4.0vw; }
.yfyy_con.yfyy_con2 .yfyy_img{ float: right; }
.news{ clear: both; width: 100%; float: left; background: #f8f9fb; padding: 60px 0; }
.news_list{ width: 100%; float: left; margin-top: 50px; }
.news_list ul{ width: 100%; float: left; }
.news_list ul li{ width:23.5%; float: left; margin-right: 2%; position: relative; }
.news_list ul li:last-child{margin-right: 0;}
.news_list ul li .time{ position: absolute; top: 0; left: 10%; background: url(../img/news_bg1.png) no-repeat; width: 63px; height: 70px; font-size: 14px; color: #ffffff; text-align: center; }
.news_list ul li .time em{ display: block; font-size: 24px; margin-top: 4px; margin-bottom: -2px; }
.news_list ul li .news_img{ width: 100%; float: left; }
.news_list ul li .news_img .img{ width: 100%; float: left; }
.news_list ul li .news_info{ width: 100%; float: left; border: 1px solid #dfe2e9; background: #FFFFFF; padding: 0 15px; }
.news_list ul li .news_info .news_mod1{ width: 100%; float: left; }
.news_list ul li .news_info .news_mod1 h5{ font-size: 16px; color: #161616; line-height: 40px; width: 100%; overflow: hidden;white-space: nowrap;text-overflow: ellipsis; margin-top: 5px; font-weight: 200;}
.news_list ul li .news_info .news_mod1 p{ width: 100%; float: left; font-size: 14px; color: #999999; line-height: 20px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news_list ul li .news_info .news_mod2{ width: 100%; float: left; border-top: 1px solid #e8e9ee; line-height: 35px; font-size: 14px; color: #666666; margin-top: 20px; }
.news_list ul li .news_info .news_mod2 img{ float: right; margin-top: 9px;width:initial; }
.news_list ul li a{display: block;}
.news_list ul li a:hover .news_info .news_mod1 h5{color: #7FCD61;}
.foot{ clear: both; width: 100%; float: left; background: #283443; }
.foot>.content {
    display:flex;align-items:center;justify-content:space-between;  padding: 60px 0;
}
.foot .foot_nav{     
  
    max-width: 1005px;
    display: flex;
    justify-content: space-between;
    width: 67%;
}

.foot .foot_nav dl dt{width: 100%;float: left;font-size: 16px;font-weight: bold;color: #999;margin-bottom: 20px;}
.foot .foot_nav dl dd{ display: block; }
.foot .foot_nav dl dd a{font-size: 14px;line-height: 25px;color: #999;}
.foot .foot_ewm{  display: flex; max-width:225px; }
.foot .foot_ewm .foot_info{ text-align: right; font-size: 14px; color: #68717b; margin-right: 10px; margin-top: 78px; }
.foot .foot_ewm .foot_info p{ text-align: right; font-size: 14px; color: #68717b; margin-top: 5px; }
.foot_bottom{ width: 100%; float: left; border-top: 1px solid #2e3948; padding:13px 0; }
.foot_bottom span{ font-size: 13px; color: #68717b; float: left; line-height: 24px; }
.foot_bottom span a{ color: #68717b; }
.foot_bottom .icps { float:right; }


/*****************************研发中心********************/
.banner{
    position:relative;
}
.yfzx_banner .advice{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
}
.yfzx_banner span{ font-size: 48px; font-weight: bold; color: #3671cf; display: block; }
.yfzx_banner p{ font-size: 26px; color: #3671cf; margin-top: 5px; display: block; }
.yfzx_banner i{width: 70px;height: 8px;margin-top: 25px;background: #3671cf;display: inline-block;}
.sysjs{ clear: both; width: 100%; float: left; padding: 70px 0; }
.sysjs .sysjs_con{ width: 100%; float: left; margin-top: 60px; display: flex; }
.sysjs .sysjs_con .sysjs_left{ float: left; margin-right: 5%; font-size: 14px; line-height: 25px; color: #666666; }
.sysjs .sysjs_con .sysjs_right{ float: right; }
.sysjs .sysjs_con .sysjs_left ul{ width: 100%; float: left; margin-top: 40px; display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex; -webkit-box-pack:justify; -webkit-justify-content:space-between; -ms-flex-pack:justify; justify-content:space-between; }
.sysjs .sysjs_con .sysjs_left ul li{ float: left; text-align: center; }
.sysjs .sysjs_con .sysjs_left ul li span{ display: block; text-align: center; height: 75px; margin-bottom: 10px; }
.sysjs .sysjs_con .sysjs_left ul li span img{ display: inline-block; margin: 0 auto; }
.sbjs{ clear: both; width: 100%; float: left; background: #f8f9fb; padding: 70px 0; }
.sbjs .sbjs_list{ width: 100%; float: left; margin-top: 20px; }
.sbjs .sbjs_list ul{ width: 100%; float: left; }
.sbjs .sbjs_list ul li{ width: 22%; float: left; margin-right: 4%; overflow: hidden;margin-top:40px; }
.sbjs .sbjs_list ul li a{ display: inline-block; position: relative; cursor:unset; }
.sbjs .sbjs_list ul li a>img{ height: 100%; max-width: 100%; }
.sbjs .sbjs_list ul li:nth-child(4n){ margin-right: 0; }
.sbjs .sbjs_list ul li .info1{ position: absolute; left: 0; bottom: 0; background: url(../img/yfzx_bg1.png) no-repeat; background-size: auto 100%; font-size: 16px; color: #ffffff; padding: 0 30px; padding-top: 50px; padding-bottom: 25px; right: 0; }
.sbjs .sbjs_list ul li .info2{ position: absolute; left: 0; bottom: 0; background: url(../img/yfzx_bg2.png) no-repeat; background-size: cover; right: 0; padding: 0 30px; padding-top: 50px; padding-bottom: 25px; display: none; }
.sbjs .sbjs_list ul li .info2 span{ font-size: 16px; font-weight: bold; color: #FFFFFF; margin-bottom: 5px; display: block; }
.sbjs .sbjs_list ul li .info2 p{ width: 70%; font-size: 14px; color: #FFFFFF; line-height: 25px; }
.sbjs .sbjs_list ul li .info2 img{ position: absolute; right: 30px; bottom: 30px; width:40px; height: 40px; }
.sbjs .sbjs_list ul li:hover .info1{ display: none; }
.sbjs .sbjs_list ul li:hover .info2{ display: block; }
.oemrk{ clear: both; width: 100%; float: left; padding: 70px 0; }
.oemrk .oemrk_con{ width: 100%; float: left; margin-top: 70px; position: relative; }
.oemrk .oemrk_con .swiper-container{ width: 85%; }
.oemrk .oemrk_con .swiper-container img{ max-width: 100%; display: block; margin: 0 auto; }
.oemrk .oemrk_con .swiper-container span{ display: block; text-align: center; font-size: 16px; color: #666666; }
.oemrk .swiper-button-next{ width: 42px; height: 83px; background: url(../img/jiangtou2.png) no-repeat; margin-top: -42px; }
.oemrk .swiper-button-prev{ width: 42px; height: 83px; background: url(../img/jiangtou1.png) no-repeat; margin-top: -42px; }
.syszp{ clear: both; width: 100%; float: left; padding: 70px 0; background: #f8f9fb; }
.syszp_con{ width: 100%; float: left; margin-top: 70px; position: relative; }
.syszp_con img{width: 100%;float: left;}
.syszp_con .gallery-top { height: 80%; width: 100%; }
.syszp_con .gallery-thumbs { height: 20%; box-sizing: border-box; padding: 10px 0; }
.syszp_con .gallery-thumbs .swiper-slide { width: 25%; height: 100%; opacity: 1; }
.syszp_con .gallery-thumbs .swiper-slide-active { opacity: 1; }
.syszp_con .gallery-thumbs span{display: none;}
.syszp_con .gallery-thumbs .swiper-slide-thumb-active span{ display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.syszp_con .gallery-thumbs .swiper-slide-thumb-active span img{ width: 100%; height: 100%; }

.ctupload{width: 100%;height: 50px; float:left;padding-left:42px;background:url(../img/icon-download.png) no-repeat 15px 17px #f0f0f0;margin: 40px 0 0 0;cursor: pointer;}
.ctupload .upload_tit{ width:70%; height:50px; float:left; line-height:50px; color:#666; overflow:hidden; word-break:keep-all; white-space:nowrap; text-overflow:ellipsis; }
.ctupload .upnumber{ padding:0 15px; line-height:50px; color:#999; float:right; }
.ctupload:hover{  background:url(../img/icon-download.png) no-repeat 15px 17px #f5f5f5; }


/*****************************关于我们********************/
.gywm_banner{ width: 100%; float: left; /* background: url(../img/gywm_banner.jpg) no-repeat center center; background-size: cover; */ }
.gywm_banner span{ font-size: 48px; font-weight: bold; color: #FFFFFF; margin-top: 90px; display: block; }
.gywm_banner p{ font-size: 26px; color: #FFFFFF; margin-top: 5px; display: block; }
.gywm_banner i{ width: 70px; height: 8px; margin-top: 45px; background: #FFFFFF; display: inline-block; margin-bottom: 240px; }
.about_us{ clear: both; width: 100%; float: left; padding: 80px 0; }
.about_us .about_us_left>div{
    max-height: 396px;
    overflow-y: auto;
    padding-right: 15px;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background:#eee;
}

::-webkit-scrollbar-thumb {
       background: #3671cf;
}

.about_us .about_us_left{ width: 48%; float: left; }
.about_us .about_us_right{ width: 48%; float: right; }
.about_us .about_us_left h5{ font-size: 36px; color: #333333; }
.about_us .about_us_left span{ font-size: 24px; color: #333333; margin-bottom: 15px; display: block; }
.about_us .about_us_left p{ font-size: 14px; color: #666666; line-height: 28px; /* text-align: justify; */ padding-bottom: 5px;}
.about_us .about_us_right .video{ width:100%; float: left; position: relative; }
.about_us .about_us_right .video img{ width:100%; float: left; }
.about_us .about_us_right .video .bofang{ width: 98px; height: 98px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.about_us .about_us_right .info{ width: 100%; float: left; display: flex; }
.about_us .about_us_right .info li{ width: 50%; float: left;text-align: center; font-size: 14px; color: #ffffff; padding: 30px 0; line-height: 26px; }
.about_us .about_us_right .info li span{font-weight: bold;}
.gchj{ clear: both; width: 100%; float: left; background: #f8f9fb; padding: 80px 0; }
.gchj .gchj_con{ width: 100%; float: left; margin-top: 35px; }
.gchj .gchj_con ul{ width: 100%; float: left; text-align: center; }
.gchj .gchj_con ul li{ width: 158px; height: 52px; text-align: center; line-height: 52px; font-size: 16px; display: inline-block; border: 1px solid #cccccc; margin: 0 15px; }
.gchj .gchj_con ul li.active{ color: #FFFFFF; background: #3870d1; border: 1px solid #3870d1; }
.gchj .gchj_con .gcsz,.gchj .gchj_con .qyxc{ width: 100%; float: left; margin-top: 35px; position: relative; }
.gchj .swiper-container{ width: 85%; }
.gchj .swiper-button-next{ width: 42px; height: 83px; background: url(../img/jiangtou2.png) no-repeat; margin-top: -42px; }
.gchj .swiper-button-prev{ width: 42px; height: 83px; background: url(../img/jiangtou1.png) no-repeat; margin-top: -42px; } 
.gchj .qyxc{display: none;}
.gchj img{max-width: 100%;display: block;margin: 0 auto;}
.sccj{ clear: both; width: 100%; float: left; background: #f8f9fb; padding: 80px 0; }
.sccj .sccj_con{ width: 100%; float: left; margin-top: 70px; display: flex; }
.sccj_left{ width: 50%; float: left; }
.sccj_left ul{ width: 100%; height: 100%; }
.sccj_left ul li{ width: 100%; float: left; height: 50%; padding-left: 20%; position: relative; display: flex; align-items: center; padding-right: 5%; }
.sccj_left ul li .img img{ border-radius: 100%; }
.sccj_left ul li .info{ float: left; margin-left: 5%; }
.sccj_left ul li .info>div{
    max-height: 124px;
    overflow-y: auto;
    max-width: 88%;
}
.sccj_left ul li .info span{ display: block; font-size: 16px; color: #3671cf; margin-bottom: 10px; }
.sccj_left ul li .info p{ display: block; font-size: 14px; color: #666666; line-height: 25px; max-width: 96%; }

.sccj_left ul li.active{ background: #FFFFFF; }
.sccj_right{ width:40%; float: left; height: 480px;
    overflow: hidden;
    position: relative; }
.sccj_right .sccj_img{ width: 100%; float: left; display: none; }
.sccj_right .sccj_img img{     
    max-width: 10000px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .4s; }


/*产品中心*/
.banner-two span{ color: #3671cf; }
.banner-two p{ opacity: 0; }
.banner-two i{ opacity: 0; }

.fp-box-1{ padding-top: 70px; }
.fp-box-1 .title1 h3{ font-size: 32px; color: #3671cf; padding-bottom: 18px; border-bottom: 5px solid #c8c8c8; position: relative; }
.fp-box-1 .title1 h3::after{ content: ""; display: block; width: 22%; height: 5px; position: absolute; left: 0; bottom: -5px; background-color: #3671CF; }
.fp-box-1 .box{ width: 100%; padding: 30px 40px; box-sizing: border-box; border: 1px solid #d3d3d3; }
.fp-box-1 .box .left{ width: 37%; float: left; }
.fp-box-1 .box .left .pic{ width: 470px; height: 444px; overflow: hidden; }
.fp-box-1 .box .left .pic img{ width: 100%; height: 100%; object-fit: cover; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }
.fp-box-1 .box .left .pic img:hover{ transform:scale(1.1);-webkit-transform:scale(1.1);  /*兼容-webkit-引擎浏览器*/-moz-transform:scale(1.1); }
.fp-box-1 .box .right{ width: 63%; float: right; padding-top: 70px; padding-right: 20px; box-sizing: border-box; position: relative; }
.fp-box-1 .box .right h3{ font-size: 24px; color: #181818; font-weight: normal; padding-bottom: 25px; border-bottom: 2px dashed  #b4b4b4; }
.fp-box-1 .box .right .pt{ width: 100%; margin-top: 28px; font-size: 14px; color: #727272; line-height: 30px; text-align: justify; }
.fp-box-1 .box .right .io{ width: 127px; height: 42px; background-color: #3671cf; color: #fff; display: inline-block; position: absolute; right: 20px; top: 400px; text-align: center; line-height: 42px; font-size: 14px; }

.fp-box-2{ margin-top: 75px; }
.fp-box-2 .title2{ width: 315px; height: 70px; margin: 0 auto; background: url(../img/titlee.png) no-repeat  center; background-size: 100% auto; }
.fp-box-2 .title2 h3{ font-size: 32px; color: #3671cf; text-align: center; padding-bottom: 10px; }
.fp-box-2 .title2 span{ font-size: 14px; color: #9c9c9c; text-align: center; display: block; }

.fp-box-2 .pt-details{ width: 100%; margin: 60px 0 100px; font-size: 14px; color: #727272; line-height: 30px; text-align: justify; }
.fp-box-2 .pt-details img{ width: 100%; height: auto; margin: 30px auto; object-fit: cover; }

.fp-box-3{ padding-top: 90px; }
.fp-box-3 .head h3{ display: inline-block;float: left; font-size: 36px; color: #3671cf; font-weight: normal; }
.fp-box-3 .head .text1{ float: right; }
.fp-box-3 .head .text1 a{ font-size: 16px; color: #9b9b9b; padding: 10px 24px; line-height: 65px; margin-left: 20px;}
.fp-box-3 .head .text1 a:hover{ background-color: #3671cf; color: #fff; border-radius: 20px; }
.fp-box-3 .head .text1 a.hover{ background-color: #3671cf; color: #fff; border-radius: 20px; }

.fp-box-4{ margin-top: 70px; }
.fp-box-4 ul{ margin-left: -17px; margin-right: -17px; }
.fp-box-4 ul li{ width: 25%; float: left; padding: 0 17px; margin-bottom: 25px; }
.fp-box-4 ul li .box{ height: 320px; position: relative; background-color: #d6dcda; }
.fp-box-4 ul li span{ display: block; font-size: 16px; color: #3671cf; padding: 10px 0; }
.fp-box-4 ul li .box .pic{ width: 100%; height: 100%; }
.fp-box-4 ul li .box .pic img{ width: 100%; height: 100%; object-fit: cover; }
.fp-box-4 ul li .box .text{ width: 100%; height: 0%; position: absolute; top: 0; left: 0; z-index: 2; opacity: 0; box-sizing: border-box; text-align: center; color: #fff; background: rgba(54,113,207,0.9); -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }
.fp-box-4 ul li .box .text h3{ font-size: 16px; padding-bottom: 10px; padding-top: 110px; }
.fp-box-4 ul li .box .text .io{ display: inline-block; padding: 10px 20px; border: 1px solid #fff; color: #fff; margin-top: 20px; }
.fp-box-4 ul li:hover .box .text{ opacity: 1; height: 100%; }
.fp-box-4 ul li .box .text .io:hover{ border: 1px solid #7fcd61; }
/*  */


.banner-2 span,.banner-2 p{ color: #fff; }
.banner-2 i{ background-color: #fff; }

.fp-box-5{ margin-top: 65px; }
.bussies-add .lists{
    display:flex;
    align-items:flex-start;
    flex-wrap:wrap;
}
.fp-box-5 .box{ width: 22%; height: 240px; position: relative;margin-right:4%;margin-bottom:40px; }
.fp-box-5 .box:nth-child(4n){
    margin-right:0;
}
.fp-box-5 .box .pic{ width: 100%; height: 100%; }
.fp-box-5 .box .pic img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-box-5 .box .tit{
    font-size: 16px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #666;
}
.fp-box-5 .box .text{ position: absolute; top: 0; left: 0; width: 100%; height: 0%; z-index: 9; background: rgba(54,113,207,0.9); color: #ffffff; text-align: center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; opacity: 0; }
.fp-box-5 .box .text h3{ font-size: 16px; padding-top: 70px; padding-bottom: 12px; }
.fp-box-5 .box .text .io{ padding: 10px 24px; box-sizing: border-box; border: 1px solid #fff; margin-top: 20px; display: inline-block; font-size: 14px; color: #fff; }
.fp-box-5 .box:hover .text{ opacity: 1; height: 100%;}
.fp-box-5 { position: relative; padding-bottom: 100px; }
.fp-box-5 .swiper-button-next.swiper-button-white { background: url(../img/riii.png) no-repeat; width: 50px; height: 50px; position: absolute; top: 95%; left: 51.5%; border: 1px solid #dadada; background-position-x: 45%; background-position-y: 45%; z-index: 999; background-color: #3671cf; }
.fp-box-5 .swiper-button-next.swiper-button-disabled{ opacity: 1; cursor: auto; background: url(../img/riii2.png) no-repeat; background-position-x: 45%; background-position-y: 45%; pointer-events: none; background-color: #fff; }
.fp-box-5 .swiper-button-prev.swiper-button-white{ background: url(../img/leff2.png) no-repeat; width: 50px; height: 50px; position: absolute; top: 95%; left: 45%; border: 1px solid #dadada; background-position-x: 45%; background-position-y: 45%; z-index: 999; background-color: #3671cf; }
.fp-box-5 .swiper-button-prev.swiper-button-disabled{ opacity: 1; cursor: auto; background: url(../img/leff.png) no-repeat; background-position-x: 45%; background-position-y: 45%; pointer-events: none; background-color: #fff; }


.heaa{ width: 100%; height: 100px; }

.fp-box-6 ul{ margin-left: -18px; margin-right: -18px; margin-top: 65px; 
   display: flex;
   flex-wrap: wrap;
}
.fp-box-6 ul li{ padding: 0 18px; float: left; width: 25%; margin-bottom: 35px; }
.fp-box-6 ul li .pic{ position: relative; width: 100%; height: 218px; overflow: hidden; }
.fp-box-6 ul li .pic img{ width: 100%; height: 100%; display: block; object-fit: cover; }
.fp-box-6 ul li .text{ padding: 20px; border: 1px solid #dcdcdc; }
.fp-box-6 ul li .text h3{ font-size: 16px; color: #161616; padding-bottom: 12px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
.fp-box-6 ul li .text p{ font-size: 14px; color: #999999; line-height: 24px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.fp-box-6 ul li .text .foot1{ position: relative; margin-top: 20px; padding-top: 20px; border-top: 1px solid #dcdcdc; }
.fp-box-6 ul li .text .foot1 span{ font-size: 14px; color: #666666; }
.fp-box-6 ul li .text .foot1 .io{ position: absolute; right: 0; top: 20px; width: 25px; display: inline-block; height: 17px; background: url(../img/jiantou.png) no-repeat center; background-size: 100% auto; }
.fp-box-6 ul li .pic .lp{ position: absolute; left: 15%; top: -3px; width: 60px; height: 75px; background: url(../img/kl1.png) no-repeat center; background-size: 100% auto; }
.fp-box-6 ul li .pic .lp h3{ margin-top: 20%; font-size: 16px; color: #FFFFFF; text-align: center; }
.fp-box-6 ul li .pic .lp span{ font-size: 14px; color: #fff; text-align: center; display: block; }



/*  */
.content-1{ max-width: 1139px; margin: 0 auto; }
.fp-box-7{ margin-top: 88px; }
.fp-box-7 ul{ margin-left: -18px; margin-right: -18px; margin-top: 90px; }
.fp-box-7 ul li{ padding: 0 18px; width: 33.33%; float: left; }
.fp-box-7 ul li .box{ width: 100%; height: 227px; position: relative; border: 1px solid #3671cf; padding-top: 70px; box-sizing: border-box; }
.fp-box-7 ul li .box h3{ font-size: 24px; color: #333333; text-align: center; padding-bottom: 25px; }
.fp-box-7 ul li .box span{ display: block; text-align: center; font-size: 14px; color: #666666; }
.fp-box-7 ul li .box .io{ display: inline-block; width: 90px; height: 90px; position: absolute;top: -45px; left: 50%; margin-left: -45px; }


.fp-box-8{ margin-top: 100px; }
.fp-box-8 ul{ margin-left: -18px; margin-right: -18px; margin-top: 90px; box-sizing: border-box; }
.fp-box-8 ul li{ padding: 0 18px; width: 33.33%; float: left; }
.fp-box-8 ul li .box{ width: 100%; position: relative; background-color: #f0f0f0; padding-left: 20px; box-sizing: border-box; box-sizing: border-box; height: 43px; }
.fp-box-8 ul li .box span{ display: inline-block;width: 25%; float: left; line-height: 43px; font-size: 14px; color: #333333; }
.fp-box-8 ul li .box span i{ color: #fe0000; }
.fp-box-8 ul li .box  input{ width: 75%; float: left; height: 100%; border: none; background-color: #f0f0f0; }
.fp-box-8 textarea{ width: 100%; height: 140px; border: 1px solid #d8d8d8; margin-top: 40px; margin-bottom: 55px; resize: none; padding: 15px; font-family: "微软雅黑", Arial, Helvetica, sans-serif;font-size: 14px; }
.fp-box-8 .io{ width: 140px; height: 40px; display: block; margin: 0 auto; text-align: center; background-color: #3671cf; line-height: 40px; color: #fff; font-size: 14px; margin-bottom: 100px; border: none; }
.ditu>div{ width: 100%; height: 472px; }

.fp-box-7-two ul li .box{ border: none; }

.fp-box-9{ width: 100%; margin-top: 90px; padding: 110px; background-color: #f7f8f9; }
.fp-box-9 .box{ margin-top: 100px; width: 100%; background-color: #fff; padding:0 35px; }
.fp-box-9 .box ul{ padding: 30px 0; margin-bottom: 100px; }
.fp-box-9 .box ul li{ width: 100%; height: 50px; border-bottom: 1px solid #f3f4f9; font-size: 14px; color: #666666; text-align: center; line-height: 50px; }
.fp-box-9  .box ul li span{ display: inline-block; width: 35%; float: left; text-align: center; box-sizing: border-box; }
.fp-box-9  .box ul li i{ display: inline-block; width: 25%; float: left; }
.fp-box-9  .box ul li b{ display: inline-block; width: 25%; font-weight: normal; float: left; }
.fp-box-9  .box ul li b a{ display: inline-block; width: 15%; float: left; }
.fp-box-9 .box{ padding-bottom: 70px; }
.fp-box-9 .box ul li:nth-child(1){ background-color: #f5f5f5; font-weight: bold; }
.fp-box-9 .box .io{ width: 125px; height: 35px; line-height: 35px; color: #fff; display: block; margin: 0 auto ; background-color: #3671cf; text-align: center; }


.fp-box-10{ width: 100%; padding: 78px 0 60px 0; background-color: #f2f2f2; text-align: center; }
.fp-box-10 h3{ font-size: 32px; color: #333; text-align: center; padding-bottom: 10px; }
.fp-box-10 h4{font-size: 30px;color: #333;text-align: center;padding-bottom: 30px;}
.fp-box-10 span{ display: inline-block; text-align: center; margin: 0 20px; font-size: 14px; color: #999999; margin-bottom: 20px; }
.fp-box-10 .io{ display: inline-block; text-align: center; margin: 0 20px; font-size: 14px; color: #999999; }
.fp-box-11{ padding: 80px 0; }
.fp-box-11 .text{ width: 100%; font-size: 14px; color: #666666; line-height: 28px; padding-bottom: 50px; border-bottom: 1px solid #E0E0E0;} 
.fp-box-11 .text img{ text-align: center; display: inline-block; max-width: 100%; }
.fanye{ background-color: #f2f2f2; text-align: center; font-size: 24px; line-height: 24px; padding: 10px 0; }
.fanye a:hover{ color: #3671cf; }


.fp-box-12{ width: 100%; margin-top: 90px; padding: 110px; background-color: #f7f8f9; }
.fp-box-12 .box{ width: 100%; background-color: #fff; }
.fp-box-12 .box ul{ padding: 30px 0; margin-bottom: 100px; }
.fp-box-12 .box ul li{ width: 100%; height: 50px; border-bottom: 1px solid #f3f4f9; font-size: 14px; color: #666666; text-align: center; line-height: 50px; }
.fp-box-12 .box ul li span{ display: inline-block; width: 35%; float: left; text-align: center; padding-left: 20px; box-sizing: border-box; }
.fp-box-12 .box ul li i{ display: inline-block; width: 25%; float: left; }
.fp-box-12 .box ul li b{ display: inline-block; width: 25%; font-weight: normal; float: left; }
.fp-box-12 .box ul li b a{ display: inline-block; width: 15%; float: left; }
.fp-box-12 .box ul li:nth-child(1){ background-color: #f5f5f5; font-weight: bold; }
.fp-box-12 .box .io{ width: 125px; height: 35px; line-height: 35px; color: #fff; display: block; margin: 0 auto ; background-color: #3671cf; text-align: center; }


.nJoinDetailed-cnt { padding: 50px; -moz-box-shadow: 0 0 40px 0 rgba(51,51,51,.05); -webkit-box-shadow: 0 0 40px 0 rgba(51,51,51,.05); box-shadow: 0 0 40px 0 rgba(51,51,51,.05); }
.nJoinDetailed-cnt__h1 { padding-bottom: 50px; line-height: 1; font-size: 24px; font-weight: bold; color: #333333; }
.nJoinDetailed-cnt__sj { line-height: 1; font-size: 14px; color: #666666; }
.nJoinDetailed-cnt__sj span { padding-right: 50px; }
.nJoinDetailed-cnt__sj span:nth-child(2) { padding-right: 0; }
.nJoinDetailed-cnt__line { margin: 40px 0; height: 1px; background-color: #E0E0E0; }
.nJoinDetailed-cnt__tit { padding-bottom: 20px; line-height: 30px; font-size: 14px; font-weight: bold; color: #666666; }
.nJoinDetailed-cnt__txt { padding-bottom: 50px; line-height: 28px; font-size: 14px; text-align: justify; color: #666666; }

.pagepn { width:100%; height:auto; padding:21px 0; border-top:1px #e6e6e6 solid; margin:30px 0; }
.pagepn a { width:88px; height:28px; text-align:center; line-height:28px; border:1px #d6d7dc solid; display:block; float:left; font-size:14px; color:#909090; margin-right:20px; border-radius:28px; -moz-border-radius:28px; -webkit-border-radius:28px; }
.pagepn a:hover { border:1px #7fcd61 solid; color:#fff; background-color:#7fcd61; }
.back-btn { float:right !important; margin-right:0px !important; }



/*产品中心*/
.promenu-wap { display:none;}

.met_section{position:relative;/* padding:40px 0 50px; */}
.met_section aside{position:relative;float:left;width:230px;}
.met_section article{float:left;margin-left:-230px;width:100%;}
.met_section article .met_article{margin-left: 250px;}
.met_section_asidenone article{float:none;margin-left:0;}
.met_section_asidenone article .met_article{margin-left:0;}
.met_section aside section{/* border:1px solid #ddd; */}
.met_section aside section h2{padding:0 20px;height:60px;/* border-bottom:1px solid #ddd; */font-size:18px;line-height:60px;font-size: 30px;color: #3671cf;}
.met_section aside .met_aside_list{padding: 20px 0;}
.met_section aside .met_aside dl dt{height:40px;line-height:40px;}
.met_section aside .met_aside dl dt a{display:block;padding:0 20px;color:#333;font-size: 14px;}
.met_section aside .met_aside dl dt a:hover{background:#efefef;}
.met_section aside .met_aside dl dt.on{background:#efefef; border-left:4px solid #7fcd61;}
.met_section aside .met_aside dl dd{padding:6px 0 6px 0;}
.met_section aside .met_aside dl dd a{display:block;padding-left:40px;height:35px;color:#333;font-weight:normal;line-height:35px;}
.met_section aside .met_aside dl dd .on a,.met_aside dl dd a:hover{background:#efefef;}
.met_section aside .met_related{margin-top:20px;}
.met_section aside .met_related ul{padding:20px;}
.met_section aside .met_related li{margin-bottom:8px;list-style:none;}
.met_article_head{position:relative; height:60px;border-bottom:1px solid #ddd;line-height:60px;}
.met_article_head .met_position{position:absolute;top:0;right:10px;color:#aaa; font-size: 14px;}
.met_article_head .met_position a{color:#999; font-size: 14px;}
.met_article_head h1{color:#555;font-weight:normal;font-size: 14px;}
.met_section_sehed{padding-top:0;}
.met_section_head{height:50px;color:#aaa;font-size:12px; line-height:50px; }
.met_section_head a{color:#999; }
.met_section_head a:hover{color:#e9280c;}

.met_clear{clear:both}
.met_none{display:none}
.met_hidden{visibility:hidden}
.met_fl{float:left}
.met_fr{float:right}
.met_editor{line-height:2}
.met_editor ul,.met_editor ol{padding:0 0 0 25px;margin:0}
.met_editor a{color:#1c57c4}
.met_editor a:hover{text-decoration:underline}
.met_editor img{max-width:100%;height:auto!important;}
.met_editor blockquote{padding-top:5px;padding-bottom:5px;padding-left:15px;border-left:4px solid #ddd}
.met_editor hr{display:block;padding:0;border:0;height:0;border-top:1px solid #ddd;margin:20px 0;-webkit-box-sizing:content-box;box-sizing:content-box}
.met_editor .metvideobox{ text-align:center; visibility:hidden; margin:10px auto; }
.met_editor .video-js{ max-width:100%; }
.met_editor table{width:100%!important;margin-bottom:1.6rem;border-spacing:0!important;border-collapse:collapse!important;padding:0!important;border:0; font-size: 14px; color: #666666;}
.met_editor table td{border:1px solid #ddd!important}
.met_editor table>tbody>tr>td{padding:.7rem;line-height:1.6;vertical-align:top;border-top:1px solid #ddd}
.met_editor table>thead>tr>th{vertical-align:bottom;border-bottom:1px solid #ddd}
.met_editor #page_break .collapse{display:none}
.met_editor #page_break .num{padding:10px 0;text-align:center}
.met_editor #page_break .num li{display:inline;margin:0 2px;padding:3px 5px;border:1px solid #ccc;background-color:#fff;color:#666;text-align:center;cursor:pointer;font-family:Arial;font-size:12px;overflow:hidden}
.met_editor #page_break .num li.on{background-color:#ccc;color:#fff;font-weight:bold}

.met_module1{padding: 20px 0;}



/*分页*/
.page-fy { line-height: 1; text-align: center; font-size: 0; padding: 50px 0;}
.page-fy span { display: inline-block; padding: 8px 10px !important; margin: 0 6px; background-color: #3671cf !important; border: 1px solid #3671cf !important; font-size: 14px !important; color: #ffffff !important; border-radius: 5px; }
.page-fy a { display: inline-block; padding: 8px 10px; margin: 0 6px; background-color: #ffffff; border: 1px solid #bdbdbd; color: #999999; font-size: 14px; border-radius: 5px; }
.page-fy a:hover { background-color: #3671cf; border: 1px solid #3671cf; color: #ffffff; }


/* 上下页 */
.pagesx { margin: 28px 0 0; }
.pagesx li { padding: 0 32px; width: 500px; line-height: 24px; font-size: 14px; }
.pagesx li.prev { text-align: left; background: url(../img/icon-16.png) no-repeat left center; background-size: 20px 21px; }
.pagesx li.next { text-align: right; background: url(../img/icon-17.png) no-repeat right center; background-size: 20px 21px; }
.pagesx li a { color: #666666; }
.pagesx li a:hover { color: #AB150B; }

.lists-hide{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.text1.add-pro{
    display:none;
}
@media only screen and (max-width: 1800px) { 
	.fp-box-1 .box .left .pic { width: 430px; }
}

@media only screen and (max-width: 1600px) { 
	.fp-box-1 .box .left .pic { width: 400px; }
	.fp-box-4 ul li .box { height: 274px; }


    .index-banner .advice.adviceone .advice-box{
        max-width: 675px;
    }
    .index-banner .advice.adviceone .tit{
        font-size: 56px;
    }
    .index-banner .advice.adviceone .desc{
        font-size: 23px;
    }

    .index-banner .advice.advicetwo .tit{
        font-size: 54px;
    }
    .index-banner .advice.advicetwo .desc{
        font-size: 28px;
    }
    .index-banner .advice.advicetwo .advice-box{
        width: 566px;
        height: 192px;
    }

    .about_us .about_us_left>div{
        max-height: 348px;
    }

}

@media only screen and (max-width: 1500px) { 
    .sccj_left ul li .info p{line-height: 20px;font-size: 12px;}
	.sccj_left ul li .info span{font-size: 14px;}
	.fp-box-1 .box .right { width: 50%; }
	.fp-box-4 ul li .box { height: 290px; }
}
@media only screen and (max-width: 1480px) { 
    .index-banner .advice.adviceone .advice-box{
        max-width: 626px;
    }
    .index-banner .advice.adviceone .tit{
        font-size: 52px;
    }
    .index-banner .advice.adviceone .desc{
        font-size: 21px;
    }

    .index-banner .advice.advicetwo .tit{
        font-size: 50px;
    }
    .index-banner .advice.advicetwo .desc{
        font-size: 26px;
    }
    .index-banner .advice.advicetwo .advice-box{
        width: 523px;
        height: 178px;
    }
}
@media only screen and (max-width: 1366px) { 
    .index-banner .advice.adviceone .advice-box{
        width: 577px;
    }
    .index-banner .advice.adviceone .tit {
        font-size: 48px;
    }
    .index-banner .advice.adviceone .desc{
        font-size: 20px;
    }
    .index-banner .advice.adviceone .desc p{
        padding-left: 22px;
    }
    .index-banner .advice.adviceone .desc p::before{
        width: 7px;
        height: 7px;
    }
    .sccj_left ul li .img img{
        max-width: 150px;
    }
} 
@media only screen and (max-width: 1200px) { 
	.fp-box-1 .box .left .pic { width: 340px; }
	.fp-box-9 { margin-top: 30px; padding: 10px; }
	.fp-box-4 ul li { width: 33.33%; }
	.fp-box-6 ul li { width: 33.33%; }
	.content{width: 88%;}
	.header .logo img{width: 150px;}
	.header .nav li a{font-size: 14px;line-height: 60px;}
	.header .lanage{line-height: 67px;}
	.comp_mod1 .img{width: 45%;}
	.comp_mod1 .info{width:52%;float: left;}
	.comp_mod1 .img img{max-width: 100%;float: left;}
	.comp_mod1 .info p{margin: 15px 0;line-height: 20px;}
	.comp_mod2 ul li span{font-size: 14px;}
	.comp_mod2 ul li span em{font-size: 38px;}
	.comp_mod2 ul li p{font-size: 16px;}
	.yfyy_con .yfyy_info{padding: 0 2.0vw;}
	.yfyy_con .yfyy_info p{margin-top: 1.0vw;}
	.yfyy_con .yfyy_info a{margin-top: 2.0vw;}
	.yfyy_con .yfyy_info h5{font-size: 30px;}
	.yfyy_con .yfyy_info span{font-size: 16px; display: none;}
	.news_list ul li{margin-right: 1%;width: 24.25%;}
	
	.sysjs .sysjs_con{display: inherit;}
	.sysjs .sysjs_con .sysjs_left{width: 100%;margin-bottom: 50px;}
	.sysjs .sysjs_con .sysjs_right{width: 100%;float: left;text-align: center;}
	.sysjs .sysjs_con .sysjs_right img{display: inline-block;margin: 0 auto;max-width: 100%;}
	
	.about_us .about_us_left{width: 100%;}
	.about_us .about_us_right{width: 100%;margin-top: 30px;}
	.sccj_left ul li{padding-left: 14%;}
	.sccj_right{width: 44%;}
    .index-banner .advice.adviceone .advice-box{
        width: 555px;
    }
    .index-banner .advice.adviceone .tit {
        font-size: 44px;
    }
    .index-banner .advice.adviceone .desc{
        font-size: 16px;
    }

    .index-banner .advice.advicetwo .tit{
        font-size: 40px;
        margin-top: 20px;
    }
    .index-banner .advice.advicetwo .desc{
        font-size: 20px;
    }
    .index-banner .advice.advicetwo .advice-box{
        width: 426px;
        height: 149px;
    }
    .sccj_left ul li .img img {
        max-width: 120px;
    }
}

@media only screen and (max-width: 1300px) { 
	.fp-box-4 ul li .box { height: 213px; }
	.text h3 { font-size: 16px; padding-bottom: 10px;  }
	.fp-box-4 ul li .box .text .io { margin-top: 5px!important; }
	.fp-box-8 ul { 	margin-left: -0px; margin-right: -0px; margin-top: 50px; }
	.content-1 { padding: 0 20px; }
}
@media only screen and (max-width: 1024px) { 
    .pc_nav{
        padding-left: 3%;
    }
    .index-banner .advice.adviceone .tit {
        font-size: 37px;
    }
    .index-banner .advice.adviceone .advice-box{
        padding-right: 0;
        width: 473px;
    }


    .index-banner .advice.advicetwo .tit{
        font-size: 37px;
    }
    .index-banner .advice.advicetwo .desc{
        font-size: 16px;
    }
    .index-banner .advice.advicetwo .advice-box{
        width: 396px;
        height: 149px;
    }
}
@media only screen and (max-width: 960px) {
    .foot>.content{
        display:none;
    }
}
@media only screen and (max-width: 850px) { 

	.fp-box-10 { width: 100%; padding: 20px; background-color: #f2f2f2; text-align: center; }
	.fanye { font-size: 16px; line-height: 22px; padding: 10px 0; }
	.fp-box-10 h3 { font-size: 18px; padding-bottom: 10px; }
	.fp-box-10 span { margin: 0 10px; font-size: 12px; margin-bottom: 10px; }
	
	.content{width: 92%;}
	.header{position: fixed;top: 0;left: 0;z-index: 99;background: #FFFFFF;}
	.banner{margin-top: 55px;}
	.pc_nav{display: none;}
	.mobile_nav_right{display: block;}
	.header .logo{margin: 10px 0;}
	.pc_nav{ 	position: fixed;margin-top:0;left: 0;top: 52px;bottom: 0;z-index: 99;background: #FFFFFF; }
	.fp-box-9 .box ul li i { width: 18%;display:none; }
	.fp-box-9 .box ul li b { width: 25%; }
	.fp-box-9 .content-1 { padding: 0px; }
	.fp-box-9 .box ul li em { width: 18%; }
	.fp-box-9 .box { padding: 0 ; }
	.fp-box-9 .box ul li{ 	font-size: 12px; }
	.fp-box-9 .box ul li span { width: 25%; float: left; }
	.fp-box-9 .box { margin-top: 30px; }
	.fp-box-9 .box ul { padding: 30px 0; margin-bottom: 30px; }
	.header .nav{width: 92%;}
	.header .nav ul{display: inherit;}
	.header .nav li{width: 100%;margin-top: 0;border-bottom: 1px solid #e5e5e5;}
	.header .lanage{width: 96%;float: left;margin-left: 4%;}
	.header .nav li.active a{border-bottom: 0;}
	.header .nav li.active{border-bottom: 1px solid #7FCD61;}
	.comp_mod1 .info{width: 100%;margin-left: 0;}
    .comp_mod1 .info p{margin: 15px 0;line-height: 1.875;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 10;}
	.comp_mod1 .img{width: 100%;margin-bottom: 20px; display:none;}
	.comp_mod1{display: inherit;}
	.company{padding: 40px 0;}
	.comp_mod2 ul li span em{font-size: 24px;}
	.comp_mod2 ul li span{font-size: 12px;}
	.comp_mod2 ul li p{font-size: 14px;margin-top:10px;}
    .comp_mod2 ul li{
        margin-bottom: 20px;
    }
    .comp_mod2 ul li:nth-child(2n) {
        border-right:none;
    }
	.comp_mod2{margin-top: 20px;}
	.pro_list li{width: 50%;padding: 0 15px;padding-top: 6.0vw;padding-bottom: 19.0vw;}
	.title_con{width: 100%;}
	.pro_list li span{font-size: 26px;margin-bottom: 2.0vw;}
	.product{padding-top: 40px;}
	.yfyy_con{display: inherit;}
	.yfyy_con .yfyy_img{width: 100%;}
	.yfyy_con .yfyy_info{width: 100%;margin: 10px 0;padding: 30px 20px;}
	.yfyy{padding: 25px 0;}
	.news_list ul li{margin-right: 0;width: 100%;margin-bottom: 15px;}
	.foot .foot_nav dl{width: 33.33%;margin-right: 0;}
	.foot .foot_ewm{width: 100%;float: left;margin-bottom: 20px;}
	.foot_bottom .icps { display:none; }
	
	.yfzx_banner span,.gywm_banner span{font-size: 20px;;}
	.yfzx_banner p,.gywm_banner p{font-size: 14px;}
	.yfzx_banner i,.gywm_banner i{margin-top: 20px;width: 50px;height: 4px;}
	.oemrk .swiper-button-next{right: -5px;}
	.oemrk .swiper-button-prev{left: -5px;}
	.sbjs .sbjs_list ul li{width: 100%;margin-right: 0;margin-bottom: 15px;}
	.sbjs .sbjs_list ul li a>img{height: auto;width: 100%;}
	.sbjs .sbjs_list ul li:last-child{width: 100%;}
	
	.about_us{padding: 40px 0;}
	.gchj .swiper-button-next{right: -5px;}
	.gchj .swiper-button-prev{left: -5px;}
	.sccj_left{width: 100%;}
	.sccj_right{width: 100%;height:242px;}

	.sccj .sccj_con{display: inherit;margin-top: 20px;}
	.sccj_left ul li{padding: 30px 15px;}
	.sccj_left ul li .img img{width: 85px;}
    .jiantou{
        display:none;
    }
	.fp-box-1 .box .left { width: 100%; float: none; }
	.fp-box-1 .box .right { width: 100%; float: none; }
    .sccj_left ul li .info>div{
        max-width: 100%;
        max-height: 83px;
    }
    .title_con p{
        max-width: 80%;
        margin: 10px auto 20px;
    }
    .oemrk .oemrk_con .swiper-container span{
        margin-top:20px;
    }
    .swiper-button-next, .swiper-button-prev{
        width: 36px!important;
        height: 56px!important;
        margin-top: -28px;
    }
    .swiper-button-prev {
        background: url(../img/jiangtou1.png) no-repeat center/cover!important;
    }
    .swiper-button-next{
        background: url(../img/jiangtou2.png) no-repeat center/cover!important;
    }
	.fp-box-1 .box .left .pic { width: 100%; height: 244px; }
	.fp-box-1 .box .left .pic img{ 	width: 100%; height: 100%; object-fit: cover; }
	.fp-box-1 .box { width: 100%; margin-top: 20px; padding: 15px; box-sizing: border-box; border: 1px solid #d3d3d3; }
	.fp-box-1 { padding-top: 30px; }
	.fp-box-1 .title1 h3 { font-size: 18px; padding-bottom: 12px; border-bottom: 3px solid #c8c8c8; }
	.fp-box-1 .title1 h3::after { height: 3px; bottom: -3px; }
	.fp-box-1 .box .right { padding-bottom: 50px; padding-top: 50px; }
	.fp-box-1 .box .right .io { right: 20px; top:auto; bottom: 0; line-height: 35px; }
	.fp-box-3 .head .text1 { float: left; width: 100%; }
	.fp-box-3 { padding-top: 20px; }
	.fp-box-3 .head h3 { float: none; width: 100%; font-size: 22px; padding-bottom: 10px; }
	.fp-box-3 .head .text1 a { font-size: 12px; padding: 3px 7px; line-height: 35px; margin-left: 0; margin-right: 20px;}
	.fp-box-4 { margin-top: 30px; }
	.fp-box-4 ul li { width: 50%; padding: 0 10px; }
	.fp-box-4 ul li .box { height: 160px; }
	.fp-box-4 ul li .box .text h3 { font-size: 13px; padding-bottom: 5px; padding-top: 10px; }
	.fp-box-4 ul li .box .text p { font-size: 12px; color: #fff; line-height: 16px; }
	.fp-box-4 ul li .box .text .io { padding: 5px 10px; margin-top: 5px; }
	.fp-box-4 ul{ margin-left: -10px; margin-right: -10px; }
	.fp-box-4 ul li span { font-size: 14px; padding: 5px 0; }
	.fp-box-5 .swiper-button-next.swiper-button-white { background: url(../img/riii.png) no-repeat; width: 50px; height: 50px; position: absolute; top: 95%; left: 53%; border: 1px solid #dadada; background-position-x: 45%; background-position-y: 45%; z-index: 9; background-color: #3671cf; }
	.fp-box-5 .swiper-button-prev.swiper-button-white{ 	background: url(../img/leff2.png) no-repeat; width: 50px; height: 50px; position: absolute; top: 95%; left: 31%; border: 1px solid #dadada; background-position-x: 45%; background-position-y: 45%; z-index: 9; background-color: #3671cf; }
	
	.heaa { width: 100%; height: 30px; }
	.fp-box-5 { margin-top: 20px; padding-bottom: 20px; }
	.fp-box-5 .box .text h3 , .fp-box-5 .box .text p{ display: none; }
	.fp-box-5 .box .text .io { padding: 5px 15px; margin-top: 0; }
	.fp-box-6 ul li { width: 100%; padding: 0 10px; }
	/*.fp-box-6 ul li .pic { height: 130px; }*/
	.fp-box-6 ul li .text { padding: 0 15px; }
	.fp-box-6 ul li .text p { line-height: 25px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;display:none; }
    .fp-box-6 ul li .text h3{
        line-height:40px;
        padding-top:5px;
        padding-bottom:0;
    }
    .fp-box-6 ul li .text .foot1{
        margin-top:0;
        padding:15px 0;
    }
	.fp-box-8 { margin-top: 30px; }
	.fp-box-7 ul li .box { height: 140px; padding-top: 45px; }
	.fp-box-7 ul li .box .io { display: inline-block; width: 50px; height: 50px; position: absolute; top: -25px;  left: 50%; margin-left: -25px; }
	.fp-box-7 ul li .box .io img{ 	width: 100%; height: 100%; }
	.title_con span { font-size: 22px; }
	.fp-box-7 { margin-top: 30px; }
	.fp-box-7 ul li { padding: 0 18px; width: 100%; float: none; margin-bottom: 50px; }
	.fp-box-8 ul li { padding: 0px; width: 100%; float: none; margin-bottom: 20px; }
	.fp-box-8 .io { margin-bottom: 40px; }
	.fp-box-8 textarea { margin-top: 20px; margin-bottom: 25px; }
	.fp-box-9 .box ul li span { display: inline-block; width: 40%; float: left; text-align: center; box-sizing: border-box; }
	
	.fp-box-12 { margin-top: 30px; padding:20px 0;}
	.nJoinDetailed-cnt__h1 { padding-bottom: 30px; }
	.nJoinDetailed-cnt__sj span { padding-right: 0; padding-top: 10px; display: block;}
	.back-btn { display:none !important;}
	
	
	
	.promenu-wap { display:unset; }
	.met_section aside { display:none; }
	.met_article_head { display:none; }
	.met_section article { margin-left:0; }
	.met_section article .met_article { margin-left:0; }

    .ctupload .upload_tit{ width:100%; }
	.ctupload .upnumber{ display:none; }
    .index-banner .advice.adviceone .tit{
        font-size: 18px;
       text-align: right;
    }
    .index-banner .advice.adviceone .desc{
        display: none;
    }
    .index-banner .advice.adviceone .advice-box{
        width: 100%;
        text-align: center;
        max-width: 80%;
    }
    .index-banner .advice.advicetwo .tit{
        font-size: 20px;
    }
    .index-banner .advice.advicetwo .desc{
       display: none;
    }
    .index-banner .advice.advicetwo .advice-box{
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .foot_bottom span{
        line-height: 1.5;
        text-align:center;
    }
    .news {
        padding: 30px 0;
    }
    .banner .swiper-pagination{
        bottom:15px!important;
    }
    .banner .swiper-pagination-bullet{
        width:25px;
        height:2px;
    }

    .banner .swiper-button-next,  .banner .swiper-button-prev{
        width:14px;
        height:22px;
       margin-top: -11px;
       display:none!important;
    }
    .add-pro.text1 a{
        font-size:14px;
        color:#666;
        display:inline-block;
        margin:5px 15px 5px 0
    }


    .text1.add-pro{
        overflow-x: auto;
        display:block;
    }
     .text1.add-pro .box{
        display: flex;
        align-items: baseline;
        width: 2550px;
    }
    .add-pro.text1 a {
        font-size: 14px;
        color: #666;
        display: inline-block;
        margin: 5px 12px 5px 0;
    }
     .add-pro.text1 a:last-child{
         margin-right:0;
     }
     .crumbs{
         justify-content:center;
         margin-bottom: 15px;
     }
     .crumbs .item{
         font-size:12px;
         padding: 3px 7px;
     }
     .met_module1 {
        padding: 0;
    }
     .add-procon{
         padding-bottom:30px!important;
         padding-top:20px!important
     }
     .met_editor table{
         margin-bottom:0;
     }
     .add-procon .met_module1{
         overflow-x:auto;
         margin-top:25px;
     }
     .met_editor table{
         width:860px!important;
     }
     .promenu-wap h3{
          font-size: 22px;
          color: #3671cf;
          font-weight: normal;
     }
     .add-procon ::-webkit-scrollbar {
         display:none;
     }
    .add-procon ::-webkit-scrollbar-track {
         display:none;
    }
    .add-procon ::-webkit-scrollbar-thumb {
         display:none;
    }
    .fp-box-6 ul{
        margin-top:20px;
    }
    .fp-box-5 .box{
        width:100%;
        margin-bottom:0;
        margin-right:0;
        height:auto;
    }
    .fp-box-5 .box .pic{
        height:240px;
        overflow:hidden;
        position:relative;
    }
   
    .fp-box-5 .box:hover .text {
        opacity: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fp-box-11 .text{
        text-align:center;
        padding-top:30px;
        padding-bottom: 30px;
    }
    .pagesx li {
        max-width:49%;
    }
    .pagesx{
        margin:30px 0;
    }
    .add-listpro{
        margin-top: 0;
        margin-top:25px;
    }
    .page-fy{
        padding:0;
    }
    .add-listpro .box {
        width: 48%;
        height: 126px;
        margin-right: 4%;
        margin-bottom: 20px;
    }
    .add-listpro .box:nth-child(2n){
        margin-right:0;
    }
    .sccj_left ul li .info p{
        max-width: 94%;
    }
    .sccj{
        padding: 30px 0;
    }

    .oemrk {
         padding: 30px 0;
    }
    .oemrk .oemrk_con{
        margin-top: 20px;
    }
    .gchj {
         padding: 30px 0;
    }
    .gchj .gchj_con .gcsz, .gchj .gchj_con .qyxc {
        margin-top:20px;
    }
    .gchj .gchj_con{
        margin-top:0;
    }
    .about_us .about_us_right .info {
        flex-wrap:wrap;
    }
    .about_us .about_us_right .info li {
        width:100%;      

    }
    .syszp{
        padding: 30px 0;
    }
    .syszp_con{
        margin-top:20px;
    }
    .sbjs{
         padding: 30px 0;
    }
    .sbjs .sbjs_list ul li{
        margin-top:0;
        margin-bottom:20px;
    }
    .sysjs{
        padding: 30px 0;
    }
    .sysjs .sysjs_con{
        margin-top:20px;
    }
    .sysjs .sysjs_con .sysjs_left ul li span img{
        height:50px;
    }
    .sysjs .sysjs_con .sysjs_left ul li span{
         height:50px;
    }
    .fp-box-6 ul li{
        margin-bottom:20px;
    }
    .fp-box-7 ul{
        margin-top:50px;
    }
    .fp-box-7 ul li .box h3{
        padding-bottom:10px;
    }
    .nJoinDetailed-cnt{
        padding: 30px 20px;
    }
    .nJoinDetailed-cnt__h1{
        padding-bottom:20px;
    }
    .nJoinDetailed-cnt__line{
        margin:20px 0;
    }
    .nJoinDetailed-cnt__txt{
        padding-bottom:20px;
    }
    .content-1 {
        max-width:100%;
    }
    .fp-box-11 .text img {
        display:block;
    }
    .fp-box-10{
        padding:20px 0;
    }
    .pagepn{
        display:flex;
        justify-content:center;
    }

    .pagepn a:last-child{
        margin-right:0;
    }
    .add-pro.text1 a.hover{
        color:#3671cf;
    }

    .comp_mod1 .info h5{
        font-size:20px;
    }
    .comp_mod1 .info span{
        font-size:16px;
    }
    .comp_mod2 ul li{
        width: 50%;
    }
    .news_list ul li .news_info .news_mod1 p{
        display:none;
    }
    .news_list ul li .news_info .news_mod2{
        margin-top:0;
    }

    .yfyy_con .yfyy_img{
        display:none;
    }
    .news_list{
        margin-top:25px;
    }
    .yfyy_con .yfyy_info h5{
        font-size:20px;
    }
    .yfyy_con .yfyy_info a{
        width: 120px;
        height: 36px;
        line-height: 36px;
        margin: 15px auto 0;
        float:initial;
        display:block;
    }
    .pro_list{
        margin-top:25px;
    }
    .company{
        padding:30px 0 10px;
    }
    .about_us .about_us_left h5{
        font-size:20px;
    }
    .about_us .about_us_left span{
        font-size:16px;
    }
    .fp-box-7 ul li .box span{
        line-height:1.875;
    }
    .fp-box-9{
        padding:30px 15px;
    }
    .banner img.h-img{
        display:block;
    }
    .banner img.p-img{
        display:none;
    }
}