@charset "utf-8";
/* reset */
body,html{color:#333;margin:0; font-size:16px; line-height:24px; padding:0; margin:0;}
div,form,img,ul,ol,li,dl,dt,dd {margin:0;padding:0;border:0;}
input,select,h1,h2,h3,h4,h5,h6,object{margin:0;padding:0;}
ul,li{list-style-type:none}
i{ font-style:normal;}
a{text-decoration:none;color:#333; outline:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
a:hover{text-decoration:none; cursor: hand; }
a:visited{ outline: none; }
a:active{ outline: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
h1,h2,h3,h4,h5,h6{ margin:0; padding:0; font-weight:600; }
h1{ font-size: 28px; }
h2{font-size:16px; }
.left{float:left;}
.right{float:right;}
.clear{ clear:both;}
dd{word-wrap: break-word;}
p{ padding:0; margin:0; }
input, textarea, select{ outline: none; }
button{ outline: none; cursor: pointer; }
input{
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    background-color: #fff;
    border: 1px solid #fff;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
input[type='submit']{ -webkit-appearance:none; }
table{ border-collapse: collapse; }

#ewm_dy{ float:left; padding-left:25px;}
#ewm_dy > div{ display:none; position:absolute; margin-left:-30px;}
#ewm_dy:hover > div{ display:block;}
#ewm_wechat{ float:left; padding-left:25px; margin-left:20px;}
#ewm_wechat > div{ display:none; position:absolute; margin-left:-25px;}
#ewm_wechat:hover > div{ display:block;}
#ewm_mobile{ float:left; padding-left:25px; margin-left:20px;}
#ewm_mobile > div{ display:none; position:absolute; margin-left:-25px;}
#ewm_mobile:hover > div{ display:block;}


/*html5*/
article,aside,dialog,footer,header,section,footer,nav,figure,menu{ display:block }


/*blank*/
.blank0, .blank5, .blank10, .blank20{clear:both; display:block; font-size:1px; overflow:hidden;}
.blank0{height:0;}
.blank5{height:5px;}
.blank10{height:10px;}
.blank20{height:20px;}

.black{ color: #000; }
.yellow{ color: #0169ec; }
.gray{ color: #777; }


.font14{ font-size: 14px; }
.font18{ font-size: 18px; }
.font24{ font-size: 24px; }
.font26{ font-size: 26px; }
.font28{ font-size: 28px; }
.font30{ font-size: 30px; }

.blod{ font-weight: 600; }

.bg_gray{ background-color: #f2f2f2; }
.bg_white{ background-color: #fff; }








.block{
    width: 100%;
    height: 100%;
    display: block;
}

/* flex 布局 */
.flex_row{
    display: flex;
    flex-direction: row;
}
.flex_between{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* 每行4个/2个 */
.box_group_2:after, .box_group_4:after{
    content: ' ';
    display: block;
    clear: both;
}
.box_group_4 .box{
    width: calc(25% - 20px);
}
.box_group_2 > .box{
    float: left;
    width: calc(50% - 20px);
    margin-right: 20px;
}
.box_group_2 .box:last-child, .box_group_4 .box:last-child{
    margin-right: 0;
}

.box_scale{
    overflow: hidden;
}
.box_scale img{
    max-width: 100%;
    max-height: 100%;
    transition: all 0.2s ease-out 0s;
}
.box_scale img:hover{
    transform: scale(1.1, 1.1);
}

.wrap{
    margin: 0 auto;
    max-width: 1440px;
    min-width: 1250px;
}
html{
    min-width: 1250px;
}

/* 首页 */
.head_top{
    height: 30px;
    line-height: 30px;
    padding: 5px 0;
    background-color: #333;
    color: #fff;
}
.head_top .tag{
    background-color: #0169ec;
    color: #fff;
    border-radius: 2px;
    padding: 0px 4px 2px 4px;
}
.head_top .tools p{
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
}
.head_top .tools p img{
    position: relative;
    top: 5px;
    right: 3px;
}

.box_logo{
    padding: 10px 0;
}
.box_logo .logo, .box_logo .info, .box_logo .box_tel{
    float: left;
}
.box_logo .info{
    padding: 10px;
}
.box_logo .info .font28{
    font-weight: 600;
    padding-bottom: 8px;
}
.box_logo .box_tel{
    padding-left: 10px;
}
.box_logo .box_tel .tel{
    font-size: 20px;
    font-weight: 500;
    padding-top: 0;
}

.box_fixed_nav{
    width: 100%;
    background-color: #fff;
    border-top: 5px solid #c9c9c9;
    border-bottom: 5px solid #c9c9c9;
    position: relative;
    left: 0;
    z-index: 999;
	transition:.3s ease;
}
.box_fixed_nav .nav{
    font-size: 0;
    position: relative;
    top: 5px;
    z-index: 1;
}
.box_fixed_nav .nav li{
    width: 11%;
    display: inline-block;
    text-align: center;
}
.box_fixed_nav .nav li a{
    display: block;
    padding: 10px 0 15px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 5px solid #c9c9c9;
}
.box_fixed_nav .nav li .current, .box_fixed_nav .nav li a:hover{
    color: #0169ec;
    border-bottom: 5px solid #0169ec;
}
.box_fixed_nav:hover .box_sub{ height:335px; display:block; background: #f2f2f2;}

.box_sub{
    width: 100%;
    background: #f2f2f2;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 5px #999;
    position: absolute;
    top: 59px;
    left: 0;
    z-index: 999;
	display:none;
	overflow:hidden;
}
.box_sub .box_logo{
    float: left;
    width: 11%;
    text-align: center;
}
.box_sub .box_logo h3, .box_sub .box_logo .blod{
    padding-top: 10px;
    font-size: 18px;
    font-weight: 500;
}
.box_sub .box_logo .gray{
    white-space: nowrap;
    font-size: 10px;
}
.box_sub .box{
    float: left;
    width: 11%;
    padding: 10px 0;
    line-height: 30px;
}
.box_sub .box ul{
    min-height: 200px;
    border-right: 1px solid #b9b9b9;
}
.box_sub .box li a{
    display: block;
    text-align: center;
}
.box_sub .box li a:hover{
    color: #0169ec;
}
.box_sub .box_btns{
    clear: both;
    padding: 15px 0 20px 245px;
}
.box_sub .box_btns .btn{
    width: 300px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    background-color: #0169ec;
    color: #fff;
}

/* 公用 */
.box_group{
    padding: 50px 0;
}
.box_group .box_1{
    text-align: center;
}
.box_group .box_1 h1, .box_group .box_1 h2{
    font-size: 34px;
    padding-bottom: 20px;
}
.box_group .box_1 > .blod{
    font-size: 40px;
    font-weight: 600;
}
.box_group .box_1 p{
    color: #777;
}
.box_group .box_1 .line:after{
    content: ' ';
    width: 150px;
    height: 5px;
    display: block;
    margin: 15px auto 0 auto;
    background-color: #0169ec;
}
.box_group .box_2{
    padding-top: 40px;
}


.box_advantage .box{
    float: left;
    width: 17%;
    display: inline-block;
    padding: 0 1.5%;
    text-align: center;
}
.box_advantage .box img{
    margin-bottom: 10px;
}
.box_advantage .box h3{
    /*font-weight: 500;*/
    padding-bottom: 10px;
    color: #333;
}
.box_advantage .box p{
    color: #777;
}

.box_projects .images{
    height: 550px;
}
.box_projects .images .box{
    height: 100%;
    display: none;
    background-size: cover;
    position: relative;
}
.box_projects .images .box:first-child{
    display: block;
}
.box_projects .fixed{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.box_projects .box_image, .box_projects .box_desc{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 10;
}
.box_projects .box_image{
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px;
    left: 0;
}
.box_projects .box_image .full{
    max-width: 400px;
    display: inline-block;
    object-fit: contain;
}
.box_projects .box_desc{
    width: 40%;
    display: inline-block;
    left: 50%;
    padding: 150px 10px 0 50px;
    color: #fff;
    text-align: left;
}
.box_projects .box_desc h3{
    font-size: 34px;
    padding-bottom: 30px;
}
.box_projects .box_desc p{
    color: #fff;
    line-height: 30px;
}
.box_projects .box_desc .box_btns{
    padding: 60px 0 0 0;
}
.box_projects .box_desc .btn{
    background-color: #fff;
    color: #000;
    border-radius: 2px;
    padding: 10px 30px;
    margin-right: 20px;
    transition: all 0.3s;
}
.box_projects .box_btns a:hover{
    font-weight: 600;
    background-color: #0169ec;
    color: #fff;
}
.box_projects .choose{
    border: 2px solid #eee;
}
.box_projects .choose .swiper-slide img{ width:auto;}
.box_projects .choose .box_1{
    padding: 30px 10px;
    text-align: center;
    border-right: 2px solid #eee;
    cursor: pointer;
}
.choose .swiper-slide-thumb-active{
	background-color: #0169ec;
    color: #fff;
}
.choose .current{
	background-color: #0169ec;
    color: #fff;
}
.box_projects .choose .swiper-slide-thumb-active p{
    color: #fff
}
.box_projects .choose .current p{
    color: #fff
}
.box_projects .choose .ico{
    width: 55px;
    height: 35px;
    display: inline-block;
	vertical-align:middle;
    border: 1px solid #0169ec;
    border-radius: 6px;
    padding: 7px 0;
}
.box_projects .choose .swiper-slide-thumb-active .ico{
    border: 1px solid #fff;
}
.box_projects .choose .current .ico{
    border: 1px solid #fff;
}
.box_projects .choose .box .white, .box_projects .choose .swiper-slide-thumb-active .yellow{
    display: none;
}
.box_projects .choose .box .white, .box_projects .choose .current .yellow{
    display: none;
}
.box_projects .choose .swiper-slide-thumb-active .white{
    display: inline-block;
}
.box_projects .choose .current .white{
    display: inline-block;
}
.box_projects .choose .box1{ display:inline-block; vertical-align:top; width:19.7%;}
.box_projects .choose .box p{
    display: inline-block;
	vertical-align:middle;
    padding-left: 8px;
    position: relative;
	max-width:150px;
	text-align:center;
}


/*内页工程列表choose box_1*/
.swiper-project-s-width{ width:1440px; height:69px; margin:0 auto; position:fixed; z-index:99; top:236px; left:50%; margin-left:-720px; overflow:hidden;}
.swiper-project-s{
	width:100%;
}
.swiper-project-s .swiper-slide{ background:rgba(0,0,0,.3); color:#fff;}
.swiper-project-s .swiper-slide img{ width:auto;}
.swiper-project-s .box_1{
    padding: 10px 10px;
    text-align: center;
    cursor: pointer;
}
.swiper-project-s .swiper-slide-thumb-active{
	background-color: #0169ec;
    color: #fff;
}
.swiper-project-s .current{
	background-color: #0169ec;
    color: #fff;
}
.swiper-project-s .swiper-slide-thumb-active p{
    color: #fff;
}
.swiper-project-s .current p{
    color: #fff;
}
.swiper-project-s .ico{
    width: 35px;
    height: 35px;
    display: inline-block;
	vertical-align:middle;
    border-radius: 6px;
    padding: 7px 0;
}
.swiper-project-s .box .white, .swiper-project-s .swiper-slide-thumb-active .yellow{
    display: none;
}
.swiper-project-s .box .white, .swiper-project-s .current .yellow{
    display: none;
}
.swiper-project-s .swiper-slide-thumb-active .white{
    display: inline-block;
}
.swiper-project-s .current .white{
    display: inline-block;
}
.swiper-project-s .box1{ display:inline-block; vertical-align:top; width:19.7%;}
.swiper-project-s .box p{
    display: inline-block;
	vertical-align:middle;
    padding-left: 8px;
    position: relative;
	max-width:150px;
	text-align:center;
}
.swiper-project-s .swiper-button-next::after,.swiper-project-s .swiper-button-prev::after{ font-size:28px;}
.swiper-project-s .swiper-button-prev{}
.swiper-project-s .swiper-button-next{}
.swiper-project-s .swiper-button-prev::after{ margin-left:-15px;}
.swiper-project-s .swiper-button-next::after{ margin-right:-15px;}



.choose1 .swiper-button-next,.choose1 .swiper-button-prev{ width:30px; height:111px; color:#fff; top:0; margin-top:0;}
.choose1 .swiper-button-prev{ left:0; background-image:-moz-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0));}
.choose1 .swiper-button-next{ right:0; background-image:-moz-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0));}
.choose1 .swiper-button-next::after,.choose1 .swiper-button-prev::after{ font-size:24px;}
.choose1 .swiper-button-prev::after{ margin-left:-5px;}
.choose1 .swiper-button-next::after{ margin-right:-5px;}
.images1 .swiper-pagination-bullet{ width:20px; height:20px;}
.images1 .swiper-pagination-bullet-active{ background:#0169ec !important;}

.box_cover{ position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,.1);}


.choose2 .swiper-button-next,.choose2 .swiper-button-prev{ width:30px; height:111px; color:#fff; top:0; margin-top:0;}
.choose2 .swiper-button-prev{ left:0; background-image:-moz-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0));}
.choose2 .swiper-button-next{ right:0; background-image:-moz-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0));}
.choose2 .swiper-button-next::after,.choose2 .swiper-button-prev::after{ font-size:24px;}
.choose2 .swiper-button-prev::after{ margin-left:-5px;}
.choose2 .swiper-button-next::after{ margin-right:-5px;}
.choose2 .swiper-slide{ background:#fff;}
.choose2 .swiper-slide-thumb-active{ background:#0169ec !important;}
.choose2 .box{ height:80px; line-height:80px; cursor:pointer;}
.choose2 .box_1{ display:inline-block; line-height:24px; padding:0 !important; width:100%;}
.choose2 .box_1 p{ padding-left:0 !important;}

.images2 .swiper-pagination-bullet{ width:20px; height:20px;}
.images2 .swiper-pagination-bullet-active{ background:#0169ec !important;}



/*.box_projects .choose .box:nth-of-type(1) .ico{*/
/*    background-image: url("../images/project/yellow/1.png");*/
/*}*/
/*.box_projects .choose .box:nth-of-type(2) .ico{*/
/*    background-image: url("../images/project/yellow/2.png");*/
/*}*/
/*.box_projects .choose .box:nth-of-type(3) .ico{*/
/*    background-image: url("../images/project/yellow/3.png");*/
/*}*/
/*.box_projects .choose .box:nth-of-type(4) .ico{*/
/*    background-image: url("../images/project/yellow/4.png");*/
/*}*/
/*.box_projects .choose .box:nth-of-type(5) .ico{*/
/*    background-image: url("../images/project/yellow/5.png");*/
/*}*/
/*.box_projects .choose .box:nth-of-type(1) .current .ico{*/
/*    background-image: url("../images/project/white/1.png");*/
/*    border: 1px solid #fff;*/
/*}*/
/*.box_projects .choose .box:nth-of-type(2) .current .ico{*/
/*    background-image: url("../images/project/white/2.png");*/
/*    border: 1px solid #fff;*/
/*}*/
/*.box_projects .choose .box:nth-of-type(3) .current .ico{*/
/*    background-image: url("../images/project/white/3.png");*/
/*    border: 1px solid #fff;*/
/*}*/
/*.box_projects .choose .box:nth-of-type(4) .current .ico{*/
/*    background-image: url("../images/project/white/4.png");*/
/*    border: 1px solid #fff;*/
/*}*/
/*.box_projects .choose .box:nth-of-type(5) .current .ico{*/
/*    background-image: url("../images/project/white/5.png");*/
/*    border: 1px solid #fff;*/
/*}*/

.box_case .box{
    float: left;
    width: 345px;
    width: calc(25% - 15px);
    margin: 0 20px 20px 0;
}
.box_case .box:nth-of-type(4n){
    margin-right: 0;
}
.box_case .box a{
    display: block;
}
.box_case .box .thumb{
    height: 175px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
/*.box_case .thumb:after, */
.box_case .box .opacity{
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-left: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8) url("../images/tags_case.png") no-repeat center center;
    color: #fff;
    transition: all 0.2s ease-out 0s;
    position: absolute;
    bottom: 0;
    left: 0;
}
.box_case .box a:hover .opacity{
    height: 100%;
}
.box_case .box .opacity span{
    display: inline-block;
    margin-top: 35px;
    padding-right: 20px;
}
.box_case .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.box_case .box p{
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 15px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.box_case .box a:hover p{
    background-color: #0169ec;
    color: #fff;
}

.box_tabs{
    padding: 20px 0 0 0;
    text-align: center;
    box-sizing: border-box;
    font-size: 0;
}
.box_tabs span{
    display: inline-block;
    padding: 15px 40px;
    background-color: #c6c6c6;
    margin: 0;
    font-size: 16px;
    cursor: pointer;
}
.box_tabs .current{
    background-color: #0169ec;
    color: #fff;
}

.box_about_images{
    float: left;
    width: 70%;
    position: relative;
}
.box_about_desc{
    float: right;
    width: 28%;
    height: 500px;
    background: #333;
    color: #fff;
}
.box_about_desc h3{
    font-size: 28px;
    font-weight: 500;
    padding: 10px 20px 20px;
    margin-bottom: 15px;
    line-height: 40px;
    text-align: center;
    border-bottom: 1px solid #fff;
}
.box_about_desc .info{
    height: 270px;
    overflow: hidden;
    line-height: 30px;
}
.box_about_desc p{
    color: #fff;
}
.box_about_desc .box_btns{
    text-align: center;
    padding-top: 25px;
}
.box_about_desc .btn{
    background-color: #fff;
    box-shadow: 0 0 5px #fff;
    padding: 5px 15px;
    border-radius: 2px;
}

.box_strength{
    height: 650px;
    overflow: hidden;
    position: relative;
}
.box_strength .swiper-container{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.box_strength .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
}
.box_strength .swiper-pagination-bullet-active{
    background: #0169ec;
}
.box_strength img{
    display: block;
    transition: all 0.5s;
}
.box_strength .box_choose{
    width: 500px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.box_strength .box_choose .btn{
    display: block;
    text-align: center;
    padding: 30px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    font-size: 22px;
    cursor: pointer;
}
.box_strength .box_choose .current{
    background-color: #0169ec;
}

.box_process{
    overflow: hidden;
}
.box_process .box{
    float: left;
    width: 325px;
    width: calc(25% - 35px);
    background-color: #f2f2f2;
    padding: 35px 10px;
    margin: 0 20px 20px 0;
    cursor: pointer;
    position: relative;
}
.box_process .box:nth-of-type(4n){
    margin-right: 0;
}
.box_process .box:after{
    content: ' ';
    display: block;
    width: 20px;
    height: 2px;
    background-color: #999;
    position: absolute;
    top: 50%;
    right: -20px;
}
.box_process .box:nth-of-type(4):after, .box_process .box:nth-of-type(5):before{
    content: ' ';
    display: block;
    width: 2px;
    height: 20px;
    background-color: #999;
    position: absolute;
    top: unset;
    bottom: -20px;
    right: 50%;
}

.box_process .box:hover{
    background-color: #0169ec;
    color: #fff;
}
.box_process .box .ico{
    float: left;
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 50%;
    background-color: #0169ec;
}
.box_process .box:hover .ico{
    background-color: #fff;
}
.box_process .box .desc{
    float: left;
    width: 140px;
    padding: 0 10px;
}
.box_process .box .desc h3{
    padding-bottom: 5px;
}
.box_process .box .desc p{
    font-size: 14px;
    line-height: 20px;
}
.box_process .box .number{
    float: right;
    font-size: 40px;
    color: #bbb;
    padding-top: 22px;
}

.box_process .box:nth-of-type(1) .ico{
    background: #0169ec url("../images/process/white/1.png") no-repeat center center;
}
.box_process .box:nth-of-type(2) .ico{
    background: #0169ec url("../images/process/white/2.png") no-repeat center center;
}
.box_process .box:nth-of-type(3) .ico{
    background: #0169ec url("../images/process/white/3.png") no-repeat center center;
}
.box_process .box:nth-of-type(4) .ico{
    background: #0169ec url("../images/process/white/4.png") no-repeat center center;
}
.box_process .box:nth-of-type(5) .ico{
    background: #0169ec url("../images/process/white/5.png") no-repeat center center;
}
.box_process .box:nth-of-type(6) .ico{
    background: #0169ec url("../images/process/white/6.png") no-repeat center center;
}
.box_process .box:nth-of-type(7) .ico{
    background: #0169ec url("../images/process/white/7.png") no-repeat center center;
}
.box_process .box:nth-of-type(8) .ico{
    background: #0169ec url("../images/process/white/8.png") no-repeat center center;
}
.box_process .box:nth-of-type(9) .ico{
    background: #0169ec url("../images/process/white/9.png") no-repeat center center;
}
.box_process .box:nth-of-type(10) .ico{
    background: #0169ec url("../images/process/white/10.png") no-repeat center center;
}
.box_process .box:nth-of-type(11) .ico{
    background: #0169ec url("../images/process/white/11.png") no-repeat center center;
}
.box_process .box:nth-of-type(12) .ico{
    background: #0169ec url("../images/process/white/12.png") no-repeat center center;
}

.box_process .box:nth-of-type(1):hover .ico{
    background: #fff url("../images/process/yellow/1.png") no-repeat center center;
}
.box_process .box:nth-of-type(2):hover .ico{
    background: #fff url("../images/process/yellow/2.png") no-repeat center center;
}
.box_process .box:nth-of-type(3):hover .ico{
    background: #fff url("../images/process/yellow/3.png") no-repeat center center;
}
.box_process .box:nth-of-type(4):hover .ico{
    background: #fff url("../images/process/yellow/4.png") no-repeat center center;
}
.box_process .box:nth-of-type(5):hover .ico{
    background: #fff url("../images/process/yellow/5.png") no-repeat center center;
}
.box_process .box:nth-of-type(6):hover .ico{
    background: #fff url("../images/process/yellow/6.png") no-repeat center center;
}
.box_process .box:nth-of-type(7):hover .ico{
    background: #fff url("../images/process/yellow/7.png") no-repeat center center;
}
.box_process .box:nth-of-type(8):hover .ico{
    background: #fff url("../images/process/yellow/8.png") no-repeat center center;
}
.box_process .box:nth-of-type(9):hover .ico{
    background: #fff url("../images/process/yellow/9.png") no-repeat center center;
}
.box_process .box:nth-of-type(10):hover .ico{
    background: #fff url("../images/process/yellow/10.png") no-repeat center center;
}
.box_process .box:nth-of-type(11):hover .ico{
    background: #fff url("../images/process/yellow/11.png") no-repeat center center;
}
.box_process .box:nth-of-type(12):hover .ico{
    background: #fff url("../images/process/yellow/12.png") no-repeat center center;
}


.box_group_news{
    padding: 20px 0;
}
.box_group_news .box_group{
    float: left;
    width: 30%;
    padding: 0 1%;
    margin-right: 2%;
    background-color: #fff;
}
.box_group_news .box_group:nth-of-type(3){
    margin-right: 0;
}
.box_group_news .box{
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.box_group_news .box .thumb{
    width: 150px;
    height: 100px;
    object-fit: cover;
    position: absolute;
    top: 15px;
    left: 0;
}
.box_group_news .box .info{
    height: 100px;
    padding-left: 165px;
    position: relative;
}
.box_group_news .box .date{
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
}
.box_group_news .title{
    padding: 30px 0 10px 0;
}
.box_group_news .title span{
    font-size: 30px;
    font-weight: 500;
}

.links{
    /*padding: 10px 0;*/
}
.links li, .links a{
    display: inline-block;
    margin-right: 15px;
}

.box_foot{
    border-top: 10px solid #0169ec;
    background-color: #3b3b3b;
    color: #fff;
    padding: 20px 0 0 0;
    margin-top: 20px;
}
.box_foot .box_1{
    float: left;
    line-height: 30px;
}
.box_foot .box_2{
    float: right;
    width: 45%;
    line-height: 30px;
}
.box_foot .desc{
    padding: 30px 0 0 20px;
}
.box_foot .desc h3, .box_foot .desc .blod{
    font-size: 28px;
    font-weight: 500;
    padding-bottom: 10px;
}
.box_foot .box_links{
    line-height: 40px;
}
.box_foot .title_1{
    font-size: 24px;
    padding: 10px 0;
}
.box_foot a{
    display: inline-block;
    color: #fff;
    margin-right: 20px;
}
.box_foot .copyright{
    clear: both;
    border-top: 1px solid #666;
    padding: 15px;
    text-align: center;
    color: #fff;
}
.box_foot a:hover, .box_group_news a:hover, .links a:hover{
    color: #0169ec;
}

.backtop{
    width: 60px;
    height: 60px;
    display: none;
    cursor: pointer;
    background: url("../images/backtop.png") no-repeat center center;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 90;
}

/* 轮播广告图 */
#swiper-banner{
    width: 100%;
    min-height: 100%;
}
#swiper-banner .swiper-slide{
    background-size: cover;
}
#swiper-banner .swiper-pagination-bullet{
    width: 30px;
    height: 30px;
}
#swiper-banner .swiper-pagination-bullet-active{
    background: #0169ec;
}

#swiper-company, #swiper-teams{
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
#swiper-company .swiper-pagination,  #swiper-teams .swiper-pagination{
    height: 0;
    text-align: center;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
}
#swiper-company:hover .swiper-pagination, #swiper-teams:hover .swiper-pagination{
    height: 145px;
}
#swiper-company .swiper-pagination-bullet, #swiper-teams .swiper-pagination-bullet{
    width: 230px;
    height: 130px;
    border-radius: 0;
    background-size: cover;
    opacity: 0.5;
    margin: 8px 0 0 5px;
    /*border: 1px solid #eee;*/
}
#swiper-company .swiper-pagination-bullet-active, #swiper-teams .swiper-pagination-bullet-active{
    opacity: 1;
    /*border: 1px solid #ff0000;*/
}


/* 标题 */
.title{
    padding: 15px 0;
}
.title span{
    border-left: 9px solid #0169ec;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 600;
}
.title2{
    height: 60px;
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    position: relative;
}
.title2:after{
    content: ' ';
    display: inline-block;
    width: 70%;
    border-top: 1px solid #0169ec;
    position: absolute;
    top: 15px;
    left: 15%;
    z-index: 1;
}
.title2 h2, .title2 span{
    display: inline-block;
    background-color: #fff;
    padding: 0 30px;
    font-size: 34px;
    position: relative;
    z-index: 2;
}

/* 分页 */
.box_pages{
    clear: both;
    padding: 20px 0 0 0;
    text-align: center;
}
.box_pages a{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    padding: 3px 20px;
    background-color: #fff;
    margin-right: 10px;
}
.box_pages .previous, .box_pages .next{
    font-size: 30px;
    line-height: 36px;
}
.box_pages a:hover{
    background-color: #333;
    color: #fff;
}
.box_pages li{
    display: inline-block;
    margin-right: 10px;
}
.box_pages li a{
    display: block;
    margin-right: 0;
}
.box_pages .thisclass a{
    background-color: #333;
    color: #fff;
}

.pagination{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    color: #333;
}
.pagination .page-link{
    margin-right: 10px;
    border: 1px solid #ccc;

}
.pagination li a, .pagination li span{
    padding: 5px 15px;
    display: block;
    color: #333;
    cursor: pointer;
}
.pagination .disabled .page-link{
    background-color: #eee;
    border: 1px solid #eee;
    color: #999;
}
.pagination a:hover .page-link, .pagination .active .page-link{
    background-color: #333;
    color: #fff;
}



/* 工程案例列表页 */
.swiper-project .box{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
	position:relative;
	z-index:2;
}
.swiper-project .box .box_desc{
    width: 500px;
    color: #fff;
    padding: 30px 70px 0 70px;
}
.swiper-project .box_desc .title_1{
    font-size: 54px;
    font-weight: 600;
}
.swiper-project .box_desc .title_2{
    font-size: 30px;
    padding: 40px 0 20px 0;
}
.swiper-project .box_desc .title_2:after{
    content: ' ';
    display: inline-block;
    width: 200px;
    height: 5px;
    background-color: #fff;
    position: relative;
    top: 5px;
}
.swiper-project .box_desc .info{
    padding: 15px 0;
    line-height: 26px;
    text-align: left;
}
.swiper-project .box_desc .box_btns{
    padding: 30px 0 0 0;
}
.swiper-project .box_desc .btn{
    background-color: #fff;
    color: #000;
    border-radius: 2px;
    padding: 10px 30px;
    margin-right: 20px;
    transition: all 0.3s;
}
.swiper-project .box_btns a:hover{
    font-weight: 600;
    background-color: #0169ec;
    color: #fff;
}
.swiper-project .swiper-slide:nth-of-type(2n) .box_desc{
    text-align: right;
}
.swiper-project .swiper-slide:nth-of-type(2n) .title_2:after{
    right: 0;
}

.swiper-project .swiper-pagination{
    position: absolute;
    top: 25px !important;
    right: -moz-calc(50% - 5px) !important;
	right: -ms-calc(50% - 5px) !important;
	right: -o-calc(50% - 5px) !important;
	right: -webkit-calc(50% - 5px) !important;
	right: calc(50% - 5px) !important;
	-moz-transform:translateX(50%) !important;
	-ms-transform:translateX(50%) !important;
	-o-transform:translateX(50%) !important;
	-webkit-transform:translateX(50%) !important;
	transform:translateX(50%) !important;
    z-index: 10;
}
.swiper-project .swiper-pagination .swiper-pagination-bullet{
    width: 30px;
    height: 30px;
    display: inline-block !important;
    border-radius: 0;
    margin-right: 10px;
    background: #3b3b3b;
    margin-right: 10px !important;
    opacity: 1;
    padding: 10px;
}
.swiper-project .swiper-pagination .swiper-pagination-bullet i{
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.swiper-project .swiper-pagination .swiper-pagination-bullet-active{
    background-color: #0169ec;
}
.swiper-project .project_name{
    width: 770px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #0169ec;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 90px;
    right: -moz-calc(50% - 10px) !important;
	right: -ms-calc(50% - 10px) !important;
	right: -o-calc(50% - 10px) !important;
	right: -webkit-calc(50% - 10px) !important;
	right: calc(50% - 10px) !important;
	-moz-transform:translateX(50%) !important;
	-ms-transform:translateX(50%) !important;
	-o-transform:translateX(50%) !important;
	-webkit-transform:translateX(50%) !important;
	transform:translateX(50%) !important;
    z-index: 15;
}
.gobottom{
    width: 50px;
    height: 50px;
    display: inline-block;
    background: #3b3b3b url("../images/bottom.png") no-repeat center center;
    border: 0;
    cursor: pointer;
    animation: moveing 1s ease infinite;
    animation-direction: alternate;
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 10;
}
@keyframes moveing{
    0% { bottom: 20px; }
    100% { bottom: 30px; }
}

/* 工程案例详情页 */
.box_ad_full{
    width: 100%;
    height: 300px;
    position: relative;
}
.box_ad_full .cover, .full{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.2s ease-out 0s;
}

.box_choose_row{
    position: relative;
}
.box_choose_row .box_left{
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
}
.box_choose_row .box_right{
    padding-left: 300px;
    background-color: #fff;
}
.box_choose_row .box_left .box{
    height: 24px;
    text-align: left;
    background-color: #333;
    color: #fff;
    margin-bottom: 5px;
    padding: 15px 15px;
    cursor: pointer;
    position: relative;
}
.box_choose_row .box_left .current{
    background-color: #0169ec;
}
.box_choose_row .box_left .current:after{
    content: ' ';
    display: block;
    border-width: 8px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 20px;
    right: 0;
}
.box_choose_row .box .ico{
    float: left;
    margin-right: 20px;
}
.box_choose_row .box_right .title_1{
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 15px;
    color: #0169ec;
}
.box_choose_row .box_right .info{
    line-height: 28px;
    text-indent: 2em;
}
.box_choose_row .box_right .box{
    display: none;
}
.box_choose_row .box_right .box:first-child{
    display: block;
}

.box_baseinfo .box{
    float: left;
    background-color: #f2f2f2;
    margin-right: 20px;
}
.box_baseinfo .box h3{
    font-size: 22px;
    padding-bottom: 30px;
    color: #0169ec;
}
.box_baseinfo .box_group_4 .box{
    width: calc(25% - 75px);
    padding: 80px 30px;
    height: 160px;
    text-align: center;
}
.box_baseinfo .box_group_2{
    padding-top: 20px;
}
.box_baseinfo .box_group_2 .box{
    width: calc(50% - 10px);
    padding: 0;
    height: 180px;
    text-align: center;
}
.box_baseinfo .box_desc{
    font-size: 18px;
    font-weight: 600;
    padding: 30px;
    line-height: 36px;
}
.box_baseinfo .box_desc .yellow{
    font-size: 34px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #332;
}

/* 工程案例列表 */
.wrap_left{
    float: left;
    width: 250px;
    padding: 10px;
    background-color: #f2f2f2;
    margin-right: 20px;
}
.wrap_right{
    float: left;
    width: calc(100% - 290px);
}
.box_main_gray{
    padding: 20px 25px;
    background-color: #f2f2f2;
}
.box_position{
    background-color: #f2f2f2;
    text-align: right;
    padding: 5px 0;
    margin-bottom: 20px;
    font-size: 14px;
}
.box_position a{
    display: inline-block;
    color: #000;
    font-size: 14px;
    padding: 5px;
}

.box_black, .box_black_advantage{
    color: #fff;
    background-color: #333333;
    padding: 10px;
}
.box_black_advantage{
    text-align: center;
    padding: 15px 10px;
}
.box_black_advantage .blod{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 7px;
}
.box_title{
    line-height: 40px;
    font-size: 22px;
    font-weight: 600;
}
.box_title .ico{
    float: left;
    width: 50px;
    height: 40px;
    display: block;
    object-fit: contain;
    margin-right: 10px;
}
.box_second_nav a{
    display: block;
    padding: 10px 10px 10px 20px;
    line-height: 30px;
    color: #000;
    font-size: 18px;
}
.box_second_nav .current{
    background-color: #0169ec;
    color: #fff;
}
.box_second_nav li{
    background-color: #fff;
    border-bottom: 2px solid #e5e5e5;
}
.box_second_nav .ico{
    float: left;
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    margin-right: 20px;
}

.box_advantage_column .box{
    padding: 10px;
    background-color: #fff;
    margin-top: 10px;
}
.box_advantage_column .box .ico{
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.box_advantage_column .box .info{
    padding-left: 50px;
    text-align: center;
}
.box_advantage_column .box .blod{
    font-weight: 600;
}
.box_advantage_column .box .gray{
    font-size: 12px;
}

/* 案例详情页 */
.box_image_gray{
    background-color: #333;
    color: #fff;
}
.box_image_gray .box{
    float: left;
    width: 50%
}
.box_image_gray .box p{
    padding: 5px 0;
}
.box_image_gray .box .blod{
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
.box_image_gray .box .date{
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.content{
    line-height: 40px;
}
.content p{
    text-indent: 2em;
}
.box_aritcle_tools{
    clear: both;
    border-top: 1px solid #b9b9b9;
    padding: 15px 0;
}

/* 产品列表 */
.box_product_desc{
    padding-bottom: 20px;
    border-bottom: 1px solid #999;
}
.box_product_desc .box{
    float: left;
    width: 50%
}
.box_product_desc .box .thumb{
    width: 100%;
    max-height: 400px;
    text-align: center;
    border: 1px solid #ccc;
    background-color: #fff;
    object-fit: none;
}
.box_product_desc .box p{
    padding: 5px 0;
}
.box_product_desc .box .blod{
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 20px;
}
.box_product_desc .box .info{
    line-height: 28px;
    color: #000;
}

.box_product .position{
    overflow: hidden;
    padding: 15px 45px 15px 0 !important;
    border-top: 1px solid #eee;
    position: relative;
    top: -1px;
}
.box_product .btn_contact{
    width: 30px;
    height: 45px;
    display: block;
    line-height: 16px;
    background-color: #0169ec;
    color: #fff;
    font-size: 15px;
    padding: 10px 8px 0 8px;
    position: absolute;
    right: 0;
    top: 0;
}

/* 产品详情 */
.table_product_detail{
    border-collapse: collapse;
}
.table_product_detail td{
    width: 16.6%;
    text-align: center;
    padding: 5px;
    height: 30px;
}
.box_customize{
    text-align: center;
    padding: 30px 10px;
    font-size: 22px;
    font-weight: 600;
    color: #0169ec;
}
.box_customize .btn{
    background-color: #0169ec;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    margin-left: 20px;
}

.box_advantage_flex .box{
    display: flex;
    flex-direction: row;
    height: 380px;
    background-color: #d9eaff;
    margin-bottom: 10px;
}
.box_advantage_flex .box .desc{
    flex: 0.45;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 30px;
}
.box_advantage_flex .box .image{
    flex: 0.55;
}
.box_advantage_flex .box .blod{
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 12px;
}
.box_advantage_flex .box:nth-of-type(2n){
    background-color: #d9f7ff;
}


.box_advantage_white .box{
    width: 13%;
}
.box_advantage_white h3, .box_advantage_white p{
    color: #fff !important;
}
.box_advantage_white .box .blod{
    padding-bottom: 10px;
}

/* 关于我们 */
.box_logo_about{
    width: 400px;
    text-align: center;
    margin: 0 auto;

}
.box_logo_about .webname{
    font-size: 44px;
    font-weight: 500;
    padding: 40px 10px;
}
.box_logo_about .line{
    clear: both;
    font-size: 28px;
    padding: 15px;
    border-bottom: 5px solid #0169ec;
}

.box_about_three:after{
    content: ' ';
    display: block;
    clear: both;
}
.box_about_three .box{
    float: left;
    width: 32%;
    height: 460px;
    margin-right: 2%;
    background-color: #777;
    color: #fff;
    font-size: 18px;
}
.box_about_three .box:last-child{
    margin-right: 0;
}
.box_about_three .box .title{
    text-align: center;
    border-bottom: 1px solid #fff;
    margin: 10px;
    font-weight: 600;
}
.box_about_three .box .info{
    padding: 10px 30px;
    line-height: 40px;
}
.box_about_three .box .ico{
    background: url("../images/ico_circle.png") no-repeat 0 center;
    padding-left: 50px;
}

/* 服务流程 */
.box_service_steps .box_1{
    float: left;
    width: calc(100% - 530px);
}
.box_service_steps .box_2{
    float: right;
    width: 400px;
    height: 640px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 0 50px;
    line-height: 50px;
    background: url("../images/bg_step_service_2.jpg") no-repeat center center;
}
.box_service_steps .box_2 .title{
    font-size: 34px;
    font-weight: 600;
    padding: 50px 0 20px 0;
    border-bottom: 1px solid #fff;
}
.box_service_steps .box{
    float: left;
    width: 25%;
    background-color: #fff;
    padding: 25px 0;
    cursor: pointer;
}
.box_service_steps .box .circle{
    display: inline-block;
    padding: 30px;
    border-radius: 50%;
    background-color: #f2f2f2;
}
.box_service_steps .box .circle img{
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}
.box_service_steps .box .number{
    font-size: 30px;
    padding: 5px 0;
}
.box_service_steps .box .blod{
    font-size: 20px;
    color: #000;
}
.box_service_steps .hidden{
    display: none;
}
.box_service_steps .box:nth-of-type(2n),
.box_service_steps .box:nth-of-type(5),
.box_service_steps .box:nth-of-type(7) {
    background-color: #d4d4d4;
}
.box_service_steps .box:nth-of-type(6),
.box_service_steps .box:nth-of-type(8) {
    background-color: #fff;
}
.box_service_steps .box:nth-of-type(2n) .circle,
.box_service_steps .box:nth-of-type(5) .circle,
.box_service_steps .box:nth-of-type(7) .circle {
    background-color: #fff;
}
.box_service_steps .box:nth-of-type(6) .circle,
.box_service_steps .box:nth-of-type(8) .circle {
    background-color: #f2f2f2;
}
.box_service_steps .box:hover{
    background-color: #0169ec;
}


/* 联系我们 */
.box_ad_full .box_position_desc{
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
}
.box_ad_full .box_position_desc .blod{
    font-size: 40px;
    padding-bottom: 35px;
}
.box_ad_full .flex_center{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* 公用样式 */
.box_column_2 .box_column{
    float: left;
    width: calc(50% - 10px);
    background: #fff;
    margin: 0 20px 20px 0;
}
.box_column_2 .box_column:nth-of-type(2n){
    margin-right: 0;
}
.box_column_2:after{
    content: ' ';
    display: block;
    clear: both;
}
.box_column_2 .box_column .box_group_about{
    padding: 15px;
}


.box_group_about{

}
.box_group_about > .box{
    float: left;
    width: 50%;
    line-height: 30px;
}
.box_group_about > .box .blod{
    font-size: 18px;
    padding-bottom: 5px;
}

.box_group_about:after{
    content: ' ';
    display: block;
    clear: both;
}
.btn_add{
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 3px;
    background: #0169ec url("../images/ico_add.png") no-repeat 15px center;
    padding-left: 55px;
}

/* 公司实力 */
.box_fixed_nav_company{
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}
.box_company_nav{
    display: inline-block;
    background-color: #fff;
    border: 5px solid #e5e5e5;
}
.box_company_nav span, .box_company_nav a{
    padding: 15px 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.box_company_nav .current{
    background: #0169ec;
    color: #fff;
}

.box_group .box_1 .title2{
    height: 45px;
}
.table_partner td{
    width: 20%;
    text-align: center;
    vertical-align: center;
}

/* 资讯列表 */
.box_news_list .box{
    padding: 10px;
    background: #fff;
    margin-bottom: 10px;
}
.box_news_list .box:after{
    content: ' ';
    display: block;
    clear: both;
}
.box_news_list .box .thumb{
    float: left;
    width: 280px;
    height: 180px;
    overflow: hidden;
    margin-right: 20px;
}
.box_news_list .box .info{
    float: left;
    width: calc(100% - 300px);
    height: 180px;
    position: relative;
}
.box_news_list .box .blod{
    font-size: 18px;
    padding-bottom: 10px;
}
.box_news_list .box .desc{
    text-indent: 32px;
}
.box_news_list .box .date{
    position: absolute;
    bottom: 10px;
    right: 0;
}
.box_news_list .box a:hover{
    color: #0169ec;
}
.box_news_list .thumb img:hover{
    transform: scale(1.1, 1.1);
}

/* 资讯详情页 */
.title3{
    padding: 20px;
    border-bottom: 1px solid #b9b9b9;
    text-align: center;
}
.title3 .blod{
    font-size: 20px;
    padding-bottom: 10px;
}

.box_news_rec:after{
    content: ' ';
    display: block;
    clear: both;
}
.box_news_rec .box{
    float: left;
    width: 30%;
    width: calc(33% - 15px);
    margin-right: 20px;
}
.box_news_rec .box:last-child{
    margin-right: 0;
}
.box_news_rec .box .title_1{
    font-size: 18px;
    font-weight: 600;
}
.box_news_rec .box p{
    font-size: 18px;
    padding: 5px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 图标样式 */
.ico_group_project .ico{
    width: 25px;
    height: 25px;
    border: 1px solid #0169ec;
    border-radius: 3px;
    padding: 3px 8px;
}

.box_second_nav li .ico2{ display:none;}
.box_second_nav li:hover{ background-color:#0169ec;}
.box_second_nav li:hover a{ color:#fff;}
.box_second_nav li:hover .ico1{ display:none;}
.box_second_nav li:hover .ico2{ display:block !important;}
.ico_group_project li:hover .ico2{ border-color:#fff;}


.fix_bg{ position:fixed; z-index:99999; width:56px; right:10px; bottom:5%;}
.fix{ width:100%; background:#fff; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; box-shadow:0 0 5px rgba(0,0,0,.2);}
.fix a{ display:block; width:100%; height:15px; font-size:13px; text-align:center; color:#999; background-position:center 5px; background-repeat:no-repeat; background-size:34px; padding-top:36px; padding-bottom:10px;}
.fix a:hover{ color:#0169ec;}
.fix1{}
.fix2{ margin-top:5px;}
.fix3{ margin-top:10px;}
.fix21{ cursor:pointer;}
.fix11:hover img{ display:block;}
.fix12:hover img{ display:block;}
.fix13:hover img{ display:block;}
.fix1 img{ display:none; position:fixed; right:76px; width:120px; height:120px; margin-top:-95px;}
.fix31{ cursor:pointer;}
.fix00:hover{ background-image:url(../images/i-cn2.png) !important;}
.fix11:hover{ background-image:url(../images/i-dy2.png) !important;}
.fix12:hover{ background-image:url(../images/i-wechat2.png) !important;}
.fix13:hover{ background-image:url(../images/i-phone2.png) !important;}
.fix31:hover{ background-image:url(../images/i-top2.png) !important;}



/* 解决方案内页 */

.solution_right::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 6px;  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  }
  .solution_right::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  background   : #999;
  }
  .solution_right::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background   : #ededed;
  }
  
.solution{ position:relative; width:1440px; margin:0 auto; height:500px; background:#eee; margin:20px 0 5px;}
.solution_nav{ width:548px; height:65px; line-height:65px;}
.solution_nav a{ display:block; background:url(../images/num.png) 30px center no-repeat #333; background-size:30px; color:#fff; font-size:24px; padding-left:80px;}

.mySwiper{ float:right; width:668px; margin-right:223px !important; margin-top:-65px;}
.mySwiper .swiper-slide{ width:222px; height:65px; line-height:65px; text-align:center; background:#ddd; color:#333; cursor:pointer;}
.mySwiper .swiper-button-prev,.mySwiper .swiper-button-next{ width:40px; height:65px; top:0; margin-top:0;}
.mySwiper .swiper-button-prev{ left:0; background-image:-moz-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to right, rgba(0,0,0,.3), rgba(0,0,0,0));}
.mySwiper .swiper-button-next{ right:0; background-image:-moz-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-ms-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:-webkit-linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0)); background-image:linear-gradient(to left, rgba(0,0,0,.3), rgba(0,0,0,0));}
.mySwiper .swiper-button-prev::after,.mySwiper .swiper-button-next::after{ font-size:24px !important; color:#fff;}
.mySwiper .swiper-button-prev::after{ margin-left:-15px;}
.mySwiper .swiper-button-next::after{ margin-right:-15px;}
.mySwiper .swiper-slide-thumb-active{ background:#0169ec; color:#fff;}
.solution_left{ position:relative; float:left; width:548px; height:434px; overflow:hidden; margin-top:1px;}
.solution_pic{ width:100%; height:434px;}
.solution_pic .swiper-pagination{ margin-left:15px; margin-bottom:8px; max-width:250px;}
.solution_pic .swiper-pagination-bullet{ float:left; width:20px; height:20px;}
.solution_pic > p{ position:absolute; z-index:99; background:rgba(0,0,0,.5); color:#fff; padding:18px 30px; font-size:28px;}
.solution_left .btn1{ position:absolute; z-index:99; display:block; height:43px; line-height:43px; padding:0 15px; border:1px solid #0169ec; background:rgba(0,0,0,.3); color:#fff; font-size:20px; cursor:pointer; right:18px; bottom:15px; pointer-events:none;}
.solution_left .btn2{ bottom:9px; right:140px; pointer-events:auto !important;}
.gallery img{ cursor:pointer;}
.solution_right{ float:right; background:#eee; width:891px; height:434px; font-size:0; overflow-x:hidden; overflow-y:auto; margin-top:1px;}

.dingzhi{ position:absolute; top:0; right:0; display:block; width:222px; height:65px; line-height:65px; text-align:center; background:#ddd; color:#333; cursor:pointer; user-select:none;}
.dingzhi_solution{ position:absolute; background:#eee; top:65px; left:0;}
.dingzhi_solution .solution_right{ margin-left:1px;}
.dingzhi_cur{ background:#0169ec; color:#fff;}
.dingzhi_solution_cur{ z-index:99;}

.solution_list { width: 100%; height: 100%;}
.solution_list .swiper-slide { height: auto; -webkit-box-sizing: border-box; box-sizing: border-box;}
.solution_list .swiper-scrollbar-drag{ background:#0169ec;}


#newBridge .nb-customer-icon-style-newicon .nb-icon-inner-wrap-newicon{ width:150px !important;}



/* huodong */
.---------huodong-zhutu-index{ position:absolute; width:100%; height:100%; background:url(/templets/default/images/huodong/zhutu-index.png) center no-repeat; pointer-events:none;}
.---------huodong-zhutu-list{ position:absolute; z-index:2; width:100%; height:100%; background:url(/templets/default/images/huodong/zhutu-list.png) center no-repeat; pointer-events:none;}
.---------huodong-zhutu{ position:absolute; z-index:2; width:100%; height:100%; background:url(/templets/default/images/huodong/zhutu.png) center no-repeat; pointer-events:none;}
.---------huodong-zhutu-more{ position:absolute; width:100%; height:100%; background:url(/templets/default/images/huodong/zhutu-more.png) center no-repeat; pointer-events:none;}