.sub-banner{width: 100%;height:75vh;background-color: #eee;background-size:cover;background-repeat: no-repeat;background-position: center bottom;position: relative;overflow: hidden;display:flex;align-items: center;justify-content: center;}
.sub-banner-img{width: 100%;height: 100%;
    background-size:100% auto;background-repeat: no-repeat;background-position: center center;
    -webkit-animation: scaleIn 3s both;
    animation: scaleIn 3s both;
}
/* 定义缩放动画关键帧 */
@-webkit-keyframes scaleIn {
    0% {
        /* 初始状态：放大1.2倍（可调整缩放比例） */
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0; /* 初始透明，增强过渡效果 */
    }
    100% {
        /* 结束状态：恢复正常尺寸 */
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes scaleIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.sub-banner .text{width: 100%;position: relative;z-index: 2;}
.sub-banner .text h4{width: 100%;font-weight:600;font-size:50px;line-height:60px;margin-bottom:30px;color: #222;}
.sub-banner .text p{width: 100%;font-size: 22px;font-weight: 400;line-height:40px;color:#222;margin-bottom:50px;}
.sub-banner .text a{width:200px;border-radius: 30px;font-size:20px;color:#fff;text-align: center;font-weight:500;display: inline-block;line-height:60px;
    background-color:var(--color-1);
    background-image: -webkit-linear-gradient(90deg, var(--color-2),var(--color-1));
    background-image: linear-gradient(90deg, var(--color-2), var(--color-1));
}
.sub-banner .text a i{font-size:1.8rem;margin-left:10px;font-weight:400;}
@media screen and (max-width: 1536px) and (min-width: 1281px) {
    .sub-banner .text h4{font-size:40px;line-height:45px;margin-bottom:20px;}
    .sub-banner .text p{font-size: 20px;line-height:28px;margin-bottom:40px;}
}
@media screen and (max-width: 1280px) and (min-width: 1152px) {
    .sub-banner .text h4{font-size:30px;line-height:40px;}
    .sub-banner .text p{font-size: 15px;line-height:25px;margin-bottom:30px;}
}
@media screen and (max-width: 991px){
    .sub-banner{height:150px;margin-top:60px;background-color: #fff;background-position:right center;background-size:cover;background-repeat: no-repeat;position: relative}
    .sub-banner .text{padding:0 20px;position: absolute;z-index: 2;width: 100%;height: 100%;left: 0;top:0;display:flex;align-items: center;}
    .sub-banner .text h4{font-size:2.5rem;line-height:2.5rem;margin-bottom:10px;color: #495057;text-align:center}
    .sub-banner .text p{font-size: 1.4rem;line-height: 2.2rem;color: #495057;margin-bottom:20px;width:100%;display:none}
    .sub-banner .mobile{width: 100%;z-index: 1;position: relative}
    .sub-banner .mobile img{width: 100%;}
    .sub-banner .text a{width:110px;border-radius: 20px;font-size:1.4rem;line-height:35px;display:none}
}

/*page-nav*/
.main{padding: 0!important;margin: 0!important;}
.main .page-nav{background-color:#fff;width: 100%;border-bottom:1px solid #eee;}
.main .page-nav .loc {line-height: 80px;color:#495057}
.main .page-nav .loc a{font-size: 18px;color:#495057;line-height: 80px;}
.main .page-nav .loc i{font-size: 1.6rem;margin-right: 10px;}
.main .page-nav .loc .icon-jiating-{font-size:2rem;}
.main .page-nav ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.main .page-nav ul li{line-height: 80px;font-size:18px;border-left: 1px solid #eee;}
.main .page-nav ul li a{color:#495057;font-weight:400;display: block;position: relative;text-align: center;line-height: 80px;}
.main .page-nav li a:hover,.main .page-nav li a.cur{color:#fff;font-weight: 500;background-color:var(--color-2);height: 82px}
.main .page-nav li a:hover:after,.main .page-nav ul li a.cur:after{
    content: '';left: 50%;margin-left: -10px;bottom: -12px;position: absolute;z-index: 9;
    width:0;
    height:0;
    border-left:12px solid transparent;
    border-right:12px solid transparent;
    border-top:12px solid var(--color-2);
}
@media (max-width: 1536px) {
    .main .page-nav .loc{line-height: 60px;}
    .main .page-nav .loc a{font-size: 16px;line-height:60px;}
    .main .page-nav ul li{font-size:16px;line-height:60px;}
    .main .page-nav ul li a{line-height: 60px;}
    .main .page-nav li a:hover,.main .page-nav li a.cur{height: 62px}
}
@media (max-width: 1440px) {
    .main .page-nav .loc a{font-size: 14px;}
    .main .page-nav ul li{font-size:14px;}
}

@media (max-width: 991px) {
    .main .page-nav{margin-bottom: 0;}
    .main .page-nav .container{flex-wrap: wrap;padding: 0;}
    .main .page-nav .loc{display: none}
    .main .page-nav .page-nav-ul{width:100%;order: 1;}
    .main .page-nav ul li{font-size:1.5rem;font-weight:500;padding: 0!important;}
    .main .page-nav ul li:first-child{border-left: none;}
    .main .page-nav li a:hover:after,.main .page-nav ul li a.cur:after{
        margin-left: -6px;bottom: -6px;
        border-left:6px solid transparent;
        border-right:6px solid transparent;
        border-top:6px solid var(--color-2);
    }

}
.page-nav .loc{width:35%;}
.page-nav .page-nav-ul{width:65%;}
.page-nav .page-nav-ul li{width:25%;}
@media (max-width: 1440px) {
    .page-nav .loc{width:30%;}
    .page-nav .page-nav-ul{width: 70%;}
    .page-nav .page-nav-ul li{width: 20%;}
}
@media (max-width: 992px) {
    .page-nav .loc{display: none}
    .page-nav .page-nav-ul{width: 100%;}
    .page-nav .page-nav-ul li{width:25%;}
}


.news-title{width: 100%;padding-bottom:15px;border-bottom: 1px solid #eee;position: relative;margin-bottom:25px;padding-left:30px;}
.news-title:after{content: '';width: 20px;height: 20px;border-radius: 50%;border:5px solid var(--color-2);position: absolute;left:0;top:18px;z-index: 1}
.news-title:before{content: '';width:100px;height: 1px;background-color: var(--color-2);position: absolute;right: 0;bottom:-1px;}
.news-title h4{font-size:2.6041666vw;line-height: 1.3;font-weight: 550;color:#222;position: relative;z-index: 2;}
.news-title h4 span{color:var(--color-2);}
.news-title h6{font-size:30px;line-height: 50px;font-weight: 550;color:#222;position: relative;z-index: 2;}
.news-title h6 span{color:var(--color-2);}
@media (max-width: 1028px) {
    .news-title{width: 100%;padding-bottom:10px;margin-bottom: 20px;}
    .news-title:after{width: 20px;height: 20px;border:5px solid var(--color-2);left:0;top:9px;}
    .news-title h4{font-size:25px;line-height: 35px}
    .news-title h6{font-size:20px;line-height: 35px}
}

.company{background-color:#fff;padding:50px 0;}
.about .about-info{overflow: hidden;align-items: center;}
.about .about-info .info{width: 55%;}
.about .about-info .info p{font-size:18px;line-height:28px;font-weight: 400;color: #495057;text-align:justify; text-justify:inter-ideograph;margin-bottom:20px;}
.about .about-info .info p:last-child{margin-bottom: 0}
.about .about-info .img{width:40%;}
.about .about-info .img img{width: 100%;}

@media (max-width: 1440px) {
    .about .about-info .info p{font-size:16px;line-height:32px;margin-bottom: 20px}
}
@media (max-width: 991px) {
    .company{padding:20px 0;}
    .about .loc{width:0;display: none}
    .about .page-nav .page-nav-ul{width:100%;}
    .about .about-main{padding:25px 0;}
    .about .about-info{padding:0 20px;margin:0;flex-wrap: wrap}
    .about .about-info .info{width: 100%;}
    .about .about-info .info .title{margin-bottom:30px;}
    .about .about-info .info p{font-size:1.5rem;line-height:2.5rem;margin-bottom:20px;}
    .about .about-info .img{width:100%;}
    .about .about-info .img img{width: 100%;}
}


.culture{padding:50px 0;background-color:#f9f9f9;}
.culture .culture-ul{padding: 30px 0;flex-wrap: wrap;}
.culture .culture-ul li{width: 32%;margin-right: 2%;margin-bottom: 2%;padding: 20px;text-align: center;background-color: #fff;border-radius: 15px;}
.culture .culture-ul li:nth-child(3n){margin-right: 0;}
.culture .culture-ul li i{display: block;font-size:4.5rem;color:#f3ae00;margin-bottom: 10px;}
.culture .culture-ul li h4{font-size:22px;font-weight:550; color: #333;margin-bottom: 10px;}
.culture .culture-ul li p{font-size:18px;font-weight:400;line-height: 36px;color: #666;}
@media screen and (max-width: 992px){
    .culture{padding:20px 0;}
    .culture .culture-ul{padding: 20px 0;}
    .culture .culture-ul li{width: 49%;padding:10px 5px;}
    .culture .culture-ul li:nth-child(2n){margin-right: 0;}
    .culture .culture-ul li:nth-child(3){margin-right: 2%;}
    .culture .culture-ul li i{font-size:3rem;color:#f3ae00;margin-bottom:5px;}
    .culture .culture-ul li h4{font-size:1.4rem;margin-bottom:5px;font-weight: 600;}
    .culture .culture-ul li p{font-size:1.1rem;line-height:1.6rem;}
}


.honor{padding:50px 0;}
.honor .honor-ul{flex-wrap: wrap;}
.honor .honor-ul li{width: 23.5%;margin-right: 2%;margin-bottom: 2%;background-color: #fff;border: 1px solid #eee;}
.honor .honor-ul li:nth-child(4n){margin-right: 0;}
.honor .honor-ul li img{width: 100%;padding: 20px;}
@media screen and (max-width: 992px){
    .culture{padding:20px 0;}
    .culture .culture-ul{padding: 20px 0;}
    .culture .culture-ul li{width: 49%;padding:10px 5px;}
    .culture .culture-ul li:nth-child(2n){margin-right: 0;}
    .culture .culture-ul li:nth-child(3){margin-right: 2%;}
    .culture .culture-ul li i{font-size:3rem;color:#f3ae00;margin-bottom:5px;}
    .culture .culture-ul li h4{font-size:1.4rem;margin-bottom:5px;font-weight: 600;}
    .culture .culture-ul li p{font-size:1.1rem;line-height:1.6rem;}

    .honor{padding:10px 0;}
    .honor .honor-ul{padding: 10px 0;}
    .honor .honor-ul li{width: 49%;}
    .honor .honor-ul li:nth-child(2n){margin-right: 0;}
    .honor .honor-ul li img{padding:10px;}
}


/*development*/
.development{padding:80px 0;background-color:#fff;}
.development .development-ul{padding: 20px 0;}
.development .development-ul li{
    border-bottom: 1px dashed #ddd;
    padding:15px 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}
.development .development-ul li span b{width:30%;font-size:30px;color:#f3ae00;}
.development .development-ul li i{font-size:4rem;color: #eee;width:10%;text-align: center;display: block;}
.development .development-ul li p{width: 60%;line-height: 30px;color: #888;font-size:18px;font-weight:400;}
@media screen and (max-width: 992px){
    /*development*/
    .development{padding:10px 0;}
    .development .development-ul{padding:20px 0;}
    .development .development-ul li{padding:10px;margin-bottom:5px;}
    .development .development-ul li span b{font-size:2.2rem;width:35%;}
    .development .development-ul li i{display: none;}
    .development .development-ul li p{width:65%;font-size:1.1rem;line-height:1.6rem;}
}


.contact{padding:100px 0;}
.contact .c-title{width: 40%;border-right: 1px solid #eaeaea;}
.contact .c-title h4{font-size: 25px;font-weight:500;color: #333;margin-bottom:30px;}
.contact .c-title p{font-size: 16px;font-weight:400;color: #666;margin-bottom: 10px;line-height: 25px;}
.contact .c-title p i{font-size:2rem;display: inline-block;vertical-align: middle;color: #888;margin-right: 10px;}
.contact .info{width: 30%;text-align: center;border-right: 1px solid #eaeaea;}
.contact .info p{font-size: 18px;font-weight:500;color: #888;}
.contact .info p span{font-size: 45px;color: #666;display: block;font-family: Arial;}
.contact .info p i{font-size: 5rem;display: block;
    background: linear-gradient(125deg,#fcd166,#f3ae00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.contact .img{width: 30%;}
.contact .img p{margin-right:20px;}
.contact .img p:last-child{margin-right: 0;}
.contact .img img{width: 100px;}
.contact .img span{display: block;font-size: 14px;line-height: 30px;color: #666;text-align: center;padding-bottom: 10px;}
.contact .img span i{color: #aaa;font-size: 2.2rem;margin-right: 2px;}
@media screen and (max-width: 992px){
    .contact{padding:30px 0;}
    .contact .container{flex-wrap: wrap;}
    .contact .c-title{width: 100%;border-right:none;padding: 10px 0;}
    .contact .c-title h4{font-size: 2rem;margin-bottom:20px;}
    .contact .c-title p{font-size: 1.3rem;margin-bottom: 10px;line-height:2.2rem;}
    .contact .c-title p i{font-size:1.6rem;margin-right: 5px;}
    .contact .info{width:100%;text-align: center;border-right:none;background-color: #fff;padding: 20px 0;border-radius: 4px;}
    .contact .info p{font-size:1.6rem;}
    .contact .info p span{font-size:2.6rem;}
    .contact .info p i{font-size: 4.5rem;}
    .contact .img{display: none;}

}


/*service-form*/
.service-form{padding:50px 0 0 0;margin-bottom:-50px;}
.form{width:100%}
.form .img{width: 50%;padding:0;}
.form .img img{width:auto;max-width:100%}
.form .info{width: 50%;padding:20px;}
.form .info h4{margin-bottom: 30px;font-size: 25px;font-weight: 500;color: #333;}
.form .info i{font-size: 3rem;color: #f3ae00;}
.form .info ul{margin-bottom: 15px;}
.form .info ul li{margin-bottom: 15px;}
.form .info ul li input{width:48.5%;text-indent: 20px;margin-right: 3%;height: 45px;border-radius: 6px;font-size: 14px;color: #666;border:1px solid #dcdcdc;font-weight: 400;}
.form .info ul li select{
    font-size: 14px;color: #666;font-weight: 400;
    width:48.5%;
    height: 45px;border-radius: 6px;
    border:1px solid #dcdcdc;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    text-indent: 20px;
    background: url("../images/selectjt.png") no-repeat scroll right 14px center #fff;
}
.form .info ul li select::-ms-expand {display: none;}
.form .info ul li textarea{border:1px solid #dcdcdc;width: 100%;text-indent: 20px;height: 80px;border-radius: 6px;padding: 10px 0 0 0;font-weight: 400;font-size: 14px;color: #666;}
.form .info ul li input:nth-child(2){margin-right: 0;}
.form .info ul li button{background-color:#f3ae00;border: none;color: #fff;font-size: 18px;width: 49%;height: 45px;border-radius: 6px;}
.form .info ul li button i{font-size: 2.2rem;color: #fff;}
.form .info p{font-size: 14px;line-height: 30px;color: #999;font-weight: 400;}
@media (max-width: 992px) {
    .service-form{padding:20px 0;background-position: right bottom;background-size: 100% auto;background-repeat:no-repeat;background-color: #fff;margin-bottom:0;}
    .form{padding: 10px 0;flex-wrap: wrap;}
    .form .img{width: 80%;margin: 0 auto 20px auto;}
    .form .img img{width: 100%;}
    .form .info{width: 100%;padding:10px;}
    .form .info h4{margin-bottom: 20px;font-size: 1.6rem;font-weight:700;}
    .form .info h4 i{font-weight: 300;font-size:2rem;}
    .form .info ul li{margin-bottom: 10px;}
    .form .info ul li input{text-indent: 10px;height: 35px;font-size:1.2rem;border-radius: 4px;color: #999;}
    .form .info ul li select{font-size: 1.2rem;height:35px;text-indent: 10px;border-radius: 4px;}
    .form .info ul li textarea{text-indent: 10px;font-size:1.2rem;border-radius: 4px;}
    .form .info ul li button{font-size:1.3rem;width: 100%;height: 35px;border-radius: 4px;}
    .form .info ul li button i{font-size: 1.8rem;}
    .form .info p{font-size:1.3rem;line-height:2rem;}
}


@keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@-moz-keyframes myfirst {
	0% {
		-moz-transform: scale(0)
	}

	100% {
		-moz-transform: scale(1)
	}
}

@-ms-keyframes myfirst {
	0% {
		-ms-transform: scale(0)
	}

	100% {
		-ms-transform: scale(1)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: scale(0)
	}

	100% {
		-webkit-transform: scale(1)
	}
}

@-o-keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-moz-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-ms-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-o-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-80px);
		-ms-transform: translateY(-80px);
		-o-transform: translateY(-80px);
		transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0)
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0)
	}
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@-webkit-keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}


.clear:before,.container:before,.row:before,.clear:after,.container:after,.row:after {
	content: "";
	display: table
}

.clear:after,.container:after,.row:after {
	clear: both
}

.main-box {
	min-width: 1200px;
	width: 1200px;
	margin: 0 auto
}

.warper-box,.wrap-body {
	min-width: 1200px;
	margin: 0 auto
}

.wrap-body {
	min-height: 480px
}

#wrapper {
	height: 100%;
	position: relative;
	min-width: 1200px;
	min-height: 480px
}

.fl {
	float: left
}

.fr {
	float: right
}

.btn {
	display: inline-block;
	height: 38px;
	padding: 0 15px;
	width: 143px;
	border-radius: 4px;
	overflow: auto;
	text-align: center;
	outline: none;
	border: none;
	color: #fff;
	font-size: 16px
}

.btn.btn-default {
	background-image: radial-gradient(25% 25%, #6f6fff, #33f);
	background-image: -webkit-radial-gradient(25% 25%, #6f6fff, #33f)
}

.btn.btn-default:hover {
	background-image: radial-gradient(25% 25%, #8f8fff, #6060ff);
	background-image: -webkit-radial-gradient(25% 25%, #8f8fff, #6060ff)
}

.btn:hover {
	color: #fff
}

a.btn {
	line-height: 38px;
	color: #fff
}

.item-row {
	display: block
}

.title-box {
	text-align: center
}

.title-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	padding: 0 70px;
	height: 65px
}

.title-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_left.png) no-repeat center center
}

.title-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_right.png) no-repeat center center
}

.title-bar::before {
	left: 0
}

.title-bar::after {
	right: 0
}

.title-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.title-white-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	height: 65px
}

.title-white-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_left.png) no-repeat center center
}

.title-white-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 10px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_right.png) no-repeat center center
}

.title-white-bar::before {
	left: 0
}

.title-white-bar::after {
	right: 0
}

.title-white-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-white-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.M_main {
	height: 100%
}

.M_main>.main-content {
	position: relative;
	height: 100%;
	float: none;
	width: auto;
	overflow: hidden
}

.M_main>.main-content .content-warper {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 40px;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 30px
}

*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

main {
	display: block
}[hidden] {
	display: none
}

h1 {
	font-size: 1.5rem;
	font-size: 15px\9
}

h2 {
	font-size: 1.3rem;
	font-size: 13px\9
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0
}

ul>li>ul,ul>li>ol,ol>li>ol,ol>li>ul {
	margin: 4px 0
}

.fill {
	width: 100%
}

.shift {
	text-align: center;
	padding: 10px;
	background: #d2d2d2,5%;
	margin-bottom: 10px
}

.list-none {
	padding: 30px;
	text-align: center
}

.tips {
	background: #5c86a8;
	padding: 15px;
	color: #333
}

.tips>a {
	color: #c4c4c4
}

.error {
	color: #f00;
	margin-left: 10px
}

.error:before {
	content: "!";
	margin-right: 5px;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	top: -1px;
	background: #f00;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	line-height: 16px;
	vertical-align: middle
}

.bg-white {
	background-color: #fff
}

.bg-global {
	background-color: #edf0f0
}

.bg-gray {
	background-color: #d2d2d2
}

.bg-gray-light {
	background-color: #f5f5f5
}

.bg-white {
	background-color: #fff
}

.bg-blue {
	background-color: #5c86a8
}

.bg-black-blue {
	background-color: #25435c
}

.bg-black-green {
	background-color: #00cdcb
}

.bg-blue-light {
	background-color: #e4f0fa
}

.bg-blue-dark {
	background-color: #4c7596
}

.bg-red {
	background-color: #f00
}

.bg-none {
	background-color: none
}

.bg-tran {
	background-color: transparent
}

.f-normal {
	font-size: 1.4rem
}

.f-xs {
	font-size: 1.2rem
}

.f-sm {
	font-size: 1.6rem
}

.f-md {
	font-size: 1.8rem
}

.f-lg {
	font-size: 2.2rem
}

.f-xl {
	font-size: 3rem
}

.f-xxl {
	font-size: 4rem
}

.f-xxxl {
	font-size: 4.6rem
}

.fw-blod {
	font-weight: blod
}

.fw-normal {
	font-weight: normal
}

.fs-blod {
	font-style: italic
}

.fs-normal {
	font-style: normal
}

.c-gray {
	color: #666
}

.c-gray-dark {
	color: #333
}

.c-gray-light {
	color: #999
}

.c-gray-lighter {
	color: #ccc
}

.c-white {
	color: #fff
}

.c-black {
	color: #000
}

.c-red {
	color: #f00
}

.c-red-light {
	color: #ff6868
}

.c-red-lighter {
	color: #f88b76
}

.c-red-dark {
	color: #d3361a
}

.c-blue {
	color: #76a7f8
}

.c-blue-light {
	color: #9ec5e5
}

.c-yellow {
	color: #f8ea76
}

.c-black-yellow {
	color: #f6c34b
}

.c-green {
	color: #54a506
}

.c-black-green {
	color: #00cdcb
}

.c-orange {
	color: #eb641a
}

.c-green-blue {
	color: #66efd4
}

.m-normal {
	margin: 10px
}

.m-xs {
	margin: 5px
}

.m-lg {
	margin: 20px
}

.m-xl {
	margin: 30px
}

.m-xxl {
	margin: 40px
}

.mt-normal {
	margin-top: 10px
}

.mt-xs {
	margin-top: 5px
}

.mt-sm {
	margin-top: 10px
}

.mt-lg {
	margin-top: 20px
}

.mt-xl {
	margin-top: 30px
}

.mt-xxl {
	margin-top: 40px
}

.mr-normal {
	margin-right: 10px
}

.mr-xs {
	margin-right: 5px
}

.mr-lg {
	margin-right: 20px
}

.mr-xl {
	margin-right: 30px
}

.mr-xxl {
	margin-right: 40px
}

.mb-normal {
	margin-bottom: 10px
}

.mb-xs {
	margin-bottom: 5px
}

.mb-lg {
	margin-bottom: 20px
}

.mb-xl {
	margin-bottom: 30px
}

.mb-xxl {
	margin-bottom: 40px
}

.ml-normal {
	margin-left: 10px
}

.ml-xs {
	margin-left: 5px
}

.ml-lg {
	margin-left: 20px
}

.ml-xl {
	margin-left: 30px
}

.ml-xxl {
	margin-left: 40px
}

.p-normal {
	padding: 10px
}

.p-xs {
	padding: 5px
}

.p-lg {
	padding: 20px
}

.p-xl {
	padding: 30px
}

.p-xxl {
	padding: 40px
}

.pt-normal {
	padding-top: 10px
}

.pt-xs {
	padding-top: 5px
}

.pt-lg {
	padding-top: 20px
}

.pt-xl {
	padding-top: 30px
}

.pt-xxl {
	padding-top: 40px
}

.pr-normal {
	padding-right: 10px
}

.pr-xs {
	padding-right: 5px
}

.pr-lg {
	padding-right: 20px
}

.pr-xl {
	padding-right: 30px
}

.pr-xxl {
	padding-right: 40px
}

.pb-normal {
	padding-bottom: 10px
}

.pb-xs {
	padding-bottom: 5px
}

.pb-lg {
	padding-bottom: 20px
}

.pb-xl {
	padding-bottom: 30px
}

.pb-xxl {
	padding-bottom: 40px
}

.pl-normal {
	padding-left: 10px
}

.pl-xs {
	padding-left: 5px
}

.pl-lg {
	padding-left: 20px
}

.pl-xl {
	padding-left: 30px
}

.pl-xxl {
	padding-left: 40px
}

.scroll-y {
	overflow-y: scroll
}

.scroll-x {
	overflow-y: scroll
}

.scroll {
	overflow: scroll
}

.scroll-none {
	overflow: none
}

.ta-center {
	text-align: center
}

.ta-left {
	text-align: left
}

.ta-right {
	text-align: right
}

.va-middle {
	vertical-align: middle
}

.va-top {
	vertical-align: top
}

.va-bottom {
	vertical-align: bottom
}

.block {
	display: block !important
}

.none {
	display: none !important
}

.inline {
	display: inline !important
}

.inblock {
	display: inline-block !important
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #9ec5e5
}

a:active,a:hover,a:focus {
	outline: none
}

a:hover,a:active {
	color: #76adda
}

a.l-red {
	color: #ff6868
}

a.l-red:hover,a.l-red:active {
	color: #ff3535
}

a.l-blue {
	color: #76a7f8
}

a.l-blue:hover,a.l-blue:active {
	color: #4588f6
}

a.l-gray {
	color: #999
}

a.l-gray:hover,a.l-gray:active {
	color: #808080
}

a.l-yellow {
	color: #f8ea76
}

a.l-yellow:hover,a.l-yellow:active {
	color: #f6e345
}

#M_main {
	z-index: 1010;
	padding-top: 40px;
	padding-bottom: 30px
}

img {
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: none
}

.contact-modal {
	padding: 30px;
	text-align: center;
	height: 160px
}

.contact-modal .name {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin-bottom: 15px
}

.contact-modal .close {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0;
	cursor: pointer;
	padding: 5px
}

.contact-modal .close:after {
	content: "\e611";
	font-size: 3rem;
	font-size: 30px\9;
	padding: 0 10px;
	padding-top: 13px\9;
	display: inline-block;
	font-family: "iconfont" !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.contact-modal .notice {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	padding-top: 10px
}

.contact-modal .notice .icon:before {
	font-size: 36px;
	position: relative;
	top: 8px;
	margin-right: 10px;
	color: #00cdcb
}

.contact-modal .contact>.icon {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin: 0 40px
}

.contact-modal .contact>.icon:before {
	color: #3d9ce9;
	font-size: 36px;
	position: relative;
	top: 2px;
	left: -5px
}

.contact-modal .contact>.icon.icon-phone:before {
	color: #33475f;
	font-size: 42px;
	position: relative;
	top: 10px
}

.pull-left {
	float: left !important
}

.pull-right {
	float: right !important
}

@media screen and (max-width:1400px) {
	.shortcut-customer {
		display: none
	}
}

.describe-info {
	color: #666;
	line-height: 1.5;
	font-size: 16px;
	text-align: center
}

.pro-list-more {
	text-align: center
}

.pro-list-more p {
	font-size: 24px;
	line-height: 1.6;
	margin: 10px auto
}

.pro-list-more .btn {
	width: 140px
}

.header {
	width: 100%;
	min-width: 1201px;
	background: rgba(0,1,28,0);
	position: fixed;
	top: 35px;
	left: 0;
	z-index: 999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff 5c
}

.header.fixation-top {
	top: 0
}

.header .logo {
	width: 289px;
	height: 58px;
	margin-top: 10px
}

.header .logo img {
	width: inherit;
	height: inherit
}

.header .nav-box {
	margin-top: 21px;
	float: right
}

.header .nav-list {
	height: 43px
}

.header .nav-list li {
	float: left
}

.header .nav-list li:not(:first-child) {
	margin-left: 17px
}

.header .nav-list li div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.header .nav-list li a {
	display: block;
	height: 43px;
	line-height: 43px;
	padding: 0 15px;
	font-size: 1.8rem;
	border-radius: 4px;
	color: #fff
}

.header .nav-list li.active p {
	background-color: #53fffd;
	border-radius: 2.5px;
	width: 56px;
	height: 5px
}

.header .nav-list li.go-start a {
	border: 1px solid #fff;
	transition: 2s;
	position: relative;
	width: 83px;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	overflow: hidden
}

.header .nav-list li.go-start a::before {
	position: absolute;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	content: "";
	overflow: hidden
}

.header .nav-list li.go-start a:hover {
	border-color: #33f;
	background-image: radial-gradient(25% 25%, #00011c, #00011c);
	background-image: -webkit-radial-gradient(25% 25%, #00011c, #00011c);
	transition: width .2s
}

.header .nav-list li.go-start a:hover::before {
	width: 100%;
	transition: width .2s;
	background-image: radial-gradient(25% 25%, #0b6ef1, #30b5fe);
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe)
}

.header .nav-list li.go-start a>span {
	display: block;
	position: relative;
	z-index: 2;
	line-height: 40px
}


.collection-banner-section {
	min-width: 1200px;
	height: 800px;
	background: url(http://www.aisjbz.com/static/image/banner/collection_banner_bg.png) no-repeat center 0
}

.collection-banner-section .collection-banenr-content-box {
	text-align: center;
	color: #fff;
	padding-top: 220px
}

.collection-banner-section .collection-banenr-content-box h1 {
	font-size: 40px;
	line-height: 60px;
	margin-bottom: 25px;
	font-weight: normal
}

.collection-banner-section .collection-banenr-content-box h1 span {
	font-weight: bold
}

.collection-banner-section .collection-banenr-content-box p {
	line-height: 1.8;
	font-size: 22px;
	margin-top: 6px
}

.collection-banner-section .collection-banenr-content-box .btn-contact {
	width: 270px;
	height: 57px;
	line-height: 57px;
	font-size: 24px;
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe);
	margin-top: 50px
}

.cooperative-partner-section {
	padding: 50px 0;
	min-width: 1200px;
	background: #fff
}

.cooperative-partner-section .bar-color h1 {
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 350px
}

.cooperative-partner-section .pro-list-more {
	color: #333
}

.describe-info p {
	font-size: 18px;
	color: #666
}

.main-cooperative-links-list li {
	margin-top: 30px;
	width: 190px;
	height: 110px;
	overflow: hidden;
	border: none;
	float: left
}

.main-cooperative-links-list li:not(:first-child) {
	margin-left: 12px
}

.main-cooperative-links-list li a {
	display: block;
	width: 190px;
	height: 110px
}

.main-cooperative-links-list li img {
	width: 190px;
	height: 110px
}

.image-text-rows {
	display: block;
	padding: 40px 0
}

.image-text-rows .image-box .image-content {
	width: 670px;
	height: 320px;
	background-color: #f6f8fb;
	padding: 25px 118px 9px 118px
}

.image-text-rows .image-box .image-content img {
	width: 436px;
	height: 286px
}

.image-text-rows .image-box h3 {
	font-weight: bold;
	font-size: 26px;
	height: 60px;
	line-height: 60px;
	color: #222
}

.image-text-rows .image-box .line-div {
	width: 45px;
	height: 2px;
	background-color: #8bbbfe
}

.image-text-rows .image-box p {
	margin-top: -10px;
	line-height: 1.8;
	font-size: 18px
}

.image-text-rows .label-advantage-list {
	margin-top: 30px;
	margin-left: 756px
}

.image-text-rows .label-advantage-list li {
	float: left;
	height: 75px;
	color: #6f6fff
}

.image-text-rows .label-advantage-list li a {
	display: block;
	height: 100%
}

.image-text-rows .label-advantage-list li a div {
	display: flex;
	flex-direction: column
}

.image-text-rows .label-advantage-list li a div span {
	font-size: 16px;
	font-weight: normal;
	color: #9c9c9c;
	line-height: 21px
}

.image-text-rows .label-advantage-list li a div .colorful-span {
	font-size: 16px;
	font-weight: bold;
	color: #666
}

.image-text-rows .label-advantage-list li .iconsimg {
	height: 46px;
	width: 46px;
	position: absolute
}

.image-text-rows .label-advantage-list li .iconsimg.icons-text {
	background: url(http://www.aisjbz.com/static/image/icons/collection/icon-collect-text.png) no-repeat left center;
	background-size: 33px 33px
}

.image-text-rows .label-advantage-list li .iconsimg.icons-pic {
	background: url(http://www.aisjbz.com/static/image/icons/collection/icon-collect-pic.png) no-repeat left center;
	background-size: 35px 31px
}

.image-text-rows .label-advantage-list li .iconsimg.icons-video {
	background: url(http://www.aisjbz.com/static/image/icons/collection/icon-collect-video.png) no-repeat left center;
	background-size: 37px 29px
}

.image-text-rows .label-advantage-list li .iconsimg.icons-lbs {
	background: url(http://www.aisjbz.com/static/image/icons/collection/icon-collect-lbs.png) no-repeat left center;
	background-size: 26px 33px
}

.image-text-rows .label-advantage-list li .iconsimg.icons-qa {
	background: url(http://www.aisjbz.com/static/image/icons/collection/icon-collect-qa.png) no-repeat left center;
	background-size: 30px 34px
}
.function-section{background-color:#f9f9f9}

.function-section,.advantage-section,.usage-section,.caiji-section,.partner-section {
	padding: 40px 0 30px 0;
	min-width: 1200px;
}

.function-section .bar-color h1,.advantage-section .bar-color h1,.usage-section .bar-color h1,.caiji-section .bar-color h1,.partner-section .bar-color h1,.hj .bar-color h1,.jidi .bar-color h1{
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 350px
}
.business .bar-color h1,.map-branch .bar-color h1{
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 380px
}

.product-list {
	margin: 20px 0
}

.product-list li {
	width: 23.5%;
	height: 380px;
	background: #fff;
	padding: 40px;
	margin: 20px 0
}

.product-list li{
	border: #eee 1px solid
}

.product-list li:hover {
	border-bottom: #38f 2px solid
}

.product-list li .icon {
	display: block;
	margin: 0 auto;
	margin-top: 29px
}
.product-list li .iconfont{text-align:center;width:100%;}
.product-list li img{display:block;margin:10px auto;height:60px;width:auto;}
.product-list li .icon.icon-01 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_01.png) no-repeat 0 0;
	width: 65px;
	height: 60px
}

.product-list li .icon.icon-02 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_02.png) no-repeat 0 0;
	width: 67px;
	height: 58px
}

.product-list li .icon.icon-03 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_03.png) no-repeat 0 0;
	width: 65px;
	height: 60px
}

.product-list li .icon.icon-04 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_04.png) no-repeat 0 0;
	width: 60px;
	height: 60px
}

.product-list li span {
	display: block;
	font-size: 22px;
	height: 30px;
	text-align: center;
	margin-top: 20px;
	color: #222
}

.product-list li p {
	line-height: 1.8;
	font-size: 14px;
	text-align: center;
	color: #666
}

.product-list li p.first {
	padding-top: 20px
}

@media (max-width: 992px) {
.product-list {margin:0;flex-wrap: wrap;padding:20px;}
.product-list li {width: 48.5%;height:auto;background: #fff;padding: 10px;margin:unset;margin-bottom:3%;}
.product-list li:nth-child(2n){margin-right:0;}
.product-list li span {font-size:1.8rem;height: auto;margin-top: 0;font-weight:700!important;height: unset;}
.product-list li p.first {padding-top:5px}
.product-list li p {font-size:1.2rem;line-height:1.8rem;}
.product-list li img{height:40px;}

}

.usage-list {
	margin: 20px 0
}

.usage-list li {
	width: 575px;
	height: 176px;
	float: left;
	background: #fff;
	padding: 20px 30px;
	margin: 20px 0;
	border-radius: 10px;
	border: #f2f2f2 2px solid
}

.usage-list li.second {
	margin-left: 50px
}

.usage-list li .icon {
	display: inline-block;
	margin-top: 40px
}

.usage-list li .icon.icon-05 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_05.png) no-repeat 0 0;
	width: 64px;
	height: 52px
}

.usage-list li .icon.icon-06 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_06.png) no-repeat 0 0;
	width: 59px;
	height: 59px
}

.usage-list li .icon.icon-07 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_07.png) no-repeat 0 0;
	width: 50px;
	height: 64px
}

.usage-list li .icon.icon-08 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_08.png) no-repeat 0 0;
	width: 61px;
	height: 60px
}

.usage-list li .icon.icon-09 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_09.png) no-repeat 0 0;
	width: 53px;
	height: 62px
}

.usage-list li .icon.icon-10 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_10.png) no-repeat 0 0;
	width: 60px;
	height: 60px
}

.usage-list li span {
	display: inline-block;
	font-size: 19px;
	height: 30px;
	text-align: center;
	font-weight: bold;
	color: #222;
	vertical-align: top;
	padding-left: 20px;
	margin-top: 15px
}

@media (max-width: 992px) {
    
}

.usage-list li span img {
	padding-left: 10px
}

.usage-list li .line-div {
	width: 350px;
	height: 1px;
	background-color: #f0f3f7;
	margin-left: 90px;
	margin-top: -50px
}

.usage-list li p {
	line-height: 1.8;
	font-size: 14px;
	text-align: left;
	font-weight: normal;
	color: #666;
	display: inline-block;
	margin-left: 90px;
	margin-top: 10px
}

.usage-list li:hover {
	background: #38f
}

.usage-list li:hover span,.usage-list li:hover p {
	color: white
}

.usage-list li:hover .icon.icon-05 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_05_white.png) no-repeat 0 0
}

.usage-list li:hover .icon.icon-06 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_06_white.png) no-repeat 0 0
}

.usage-list li:hover .icon.icon-07 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_07_white.png) no-repeat 0 0
}

.usage-list li:hover .icon.icon-08 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_08_white.png) no-repeat 0 0
}

.usage-list li:hover .icon.icon-09 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_09_white.png) no-repeat 0 0
}

.usage-list li:hover .icon.icon-10 {
	background: url(http://www.aisjbz.com/static/image/icons/collection/collection_icon_10_white.png) no-repeat 0 0
}

.caiji-list{flex-wrap:wrap;padding: 30px 0;}
.caiji-list li {
	width: 49%;margin-bottom: 2%;
	padding: 30px 30px 30px 100px;
	position: relative;
	background-color: #f6f6f6;
    border-radius: 15px;
}

.caiji-list li i {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 35px;
    left: 20px;
    border: 8px solid rgba(0,0,0,0.02);
    background-color: #fff;
    background-clip: content-box; /* 关键！背景只在内容区显示 */
    box-sizing: border-box; /* 让 padding 和 border 不会撑大元素 */
    color: var(--color-2);
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.caiji-list li span {
	display: inline-block;
	font-size: 20px;
	height: 30px;
	font-weight: bold;
	text-align: center;
	color: #333;
	vertical-align: top;
	margin-left: 20px
}

.caiji-list li p {
	color: #666;
	line-height: 1.8;
	font-size: 14px;
	text-align: left;
	padding-top: 5px;
	margin-left: 20px
}
@media (max-width: 992px) {
.caiji-list{padding: 20px 0;}
.caiji-list li {width: 100%;padding: 20px 20px 20px 100px;}
.caiji-list li span {font-size:1.8rem;height: auto;}
.caiji-list li p {line-height: 2rem;font-size: 1.3rem;
}
    
}

.partner-list li {
	width: 180px;
	height: 147px;
	float: left;
	background: url(http://www.aisjbz.com/static/image/icons/collection_ctrl_bg_a.png) no-repeat center center;
	position: relative;
	color: #3631ff;
	font-size: 24px;
	text-align: center;
	line-height: 147px
}

.partner-list li:hover {
	background: url(http://www.aisjbz.com/static/image/icons/collection_ctrl_bg_b.png) no-repeat center center;
	color: #fff
}

.partner-list li.down {
	margin-top: 72px;
	margin-left: -47px
}

.partner-list li.up {
	margin-left: -47px
}

.blue-box {
	width:100%;
    display: flex;align-items: center;justify-content: center;
}



@keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@-moz-keyframes myfirst {
	0% {
		-moz-transform: scale(0)
	}

	100% {
		-moz-transform: scale(1)
	}
}

@-ms-keyframes myfirst {
	0% {
		-ms-transform: scale(0)
	}

	100% {
		-ms-transform: scale(1)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: scale(0)
	}

	100% {
		-webkit-transform: scale(1)
	}
}

@-o-keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-moz-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-ms-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-o-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-80px);
		-ms-transform: translateY(-80px);
		-o-transform: translateY(-80px);
		transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0)
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0)
	}
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@-webkit-keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

.clear:before,.container:before,.row:before,.clear:after,.container:after,.row:after {
	content: "";
	display: table
}

.clear:after,.container:after,.row:after {
	clear: both
}

.main-box {
	min-width: 1200px;
	width: 1200px;
	margin: 0 auto
}

.warper-box,.wrap-body {
	min-width: 1200px;
	margin: 0 auto
}

.wrap-body {
	min-height: 480px
}

#wrapper {
	height: 100%;
	position: relative;
	min-width: 1200px;
	min-height: 480px
}

.fl {
	float: left
}

.fr {
	float: right
}

.btn {
	display: inline-block;
	height: 38px;
	padding: 0 15px;
	width: 143px;
	border-radius: 4px;
	overflow: auto;
	text-align: center;
	outline: none;
	border: none;
	color: #fff;
	font-size: 16px
}

.btn.btn-default {
	background-image: radial-gradient(25% 25%, #6f6fff, #33f);
	background-image: -webkit-radial-gradient(25% 25%, #6f6fff, #33f)
}

.btn.btn-default:hover {
	background-image: radial-gradient(25% 25%, #8f8fff, #6060ff);
	background-image: -webkit-radial-gradient(25% 25%, #8f8fff, #6060ff)
}

.btn:hover {
	color: #fff
}

a.btn {
	line-height: 38px;
	color: #fff
}

.item-row {
	display: block
}

.title-box {
	text-align: center
}

.title-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	padding: 0 70px;
	height: 65px
}

.title-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_left.png) no-repeat center center
}

.title-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_right.png) no-repeat center center
}

.title-bar::before {
	left: 0
}

.title-bar::after {
	right: 0
}

.title-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.title-white-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	height: 65px
}

.title-white-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_left.png) no-repeat center center
}

.title-white-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 10px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_right.png) no-repeat center center
}

.title-white-bar::before {
	left: 0
}

.title-white-bar::after {
	right: 0
}

.title-white-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-white-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.M_main {
	height: 100%
}

.M_main>.main-content {
	position: relative;
	height: 100%;
	float: none;
	width: auto;
	overflow: hidden
}

.M_main>.main-content .content-warper {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 40px;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 30px
}

*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

main {
	display: block
}[hidden] {
	display: none
}

h1 {
	font-size: 1.5rem;
	font-size: 15px\9
}

h2 {
	font-size: 1.3rem;
	font-size: 13px\9
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0
}

ul>li>ul,ul>li>ol,ol>li>ol,ol>li>ul {
	margin: 4px 0
}

.fill {
	width: 100%
}

.shift {
	text-align: center;
	padding: 10px;
	background: #d2d2d2,5%;
	margin-bottom: 10px
}

.list-none {
	padding: 30px;
	text-align: center
}

.tips {
	background: #5c86a8;
	padding: 15px;
	color: #333
}

.tips>a {
	color: #c4c4c4
}

.error {
	color: #f00;
	margin-left: 10px
}

.error:before {
	content: "!";
	margin-right: 5px;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	top: -1px;
	background: #f00;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	line-height: 16px;
	vertical-align: middle
}

.bg-white {
	background-color: #fff
}

.bg-global {
	background-color: #edf0f0
}

.bg-gray {
	background-color: #d2d2d2
}

.bg-gray-light {
	background-color: #f5f5f5
}

.bg-white {
	background-color: #fff
}

.bg-blue {
	background-color: #5c86a8
}

.bg-black-blue {
	background-color: #25435c
}

.bg-black-green {
	background-color: #00cdcb
}

.bg-blue-light {
	background-color: #e4f0fa
}

.bg-blue-dark {
	background-color: #4c7596
}

.bg-red {
	background-color: #f00
}

.bg-none {
	background-color: none
}

.bg-tran {
	background-color: transparent
}

.f-normal {
	font-size: 1.4rem
}

.f-xs {
	font-size: 1.2rem
}

.f-sm {
	font-size: 1.6rem
}

.f-md {
	font-size: 1.8rem
}

.f-lg {
	font-size: 2.2rem
}

.f-xl {
	font-size: 3rem
}

.f-xxl {
	font-size: 4rem
}

.f-xxxl {
	font-size: 4.6rem
}

.fw-blod {
	font-weight: blod
}

.fw-normal {
	font-weight: normal
}

.fs-blod {
	font-style: italic
}

.fs-normal {
	font-style: normal
}

.c-gray {
	color: #666
}

.c-gray-dark {
	color: #333
}

.c-gray-light {
	color: #999
}

.c-gray-lighter {
	color: #ccc
}

.c-white {
	color: #fff
}

.c-black {
	color: #000
}

.c-red {
	color: #f00
}

.c-red-light {
	color: #ff6868
}

.c-red-lighter {
	color: #f88b76
}

.c-red-dark {
	color: #d3361a
}

.c-blue {
	color: #76a7f8
}

.c-blue-light {
	color: #9ec5e5
}

.c-yellow {
	color: #f8ea76
}

.c-black-yellow {
	color: #f6c34b
}

.c-green {
	color: #54a506
}

.c-black-green {
	color: #00cdcb
}

.c-orange {
	color: #eb641a
}

.c-green-blue {
	color: #66efd4
}

.m-normal {
	margin: 10px
}

.m-xs {
	margin: 5px
}

.m-lg {
	margin: 20px
}

.m-xl {
	margin: 30px
}

.m-xxl {
	margin: 40px
}

.mt-normal {
	margin-top: 10px
}

.mt-xs {
	margin-top: 5px
}

.mt-sm {
	margin-top: 10px
}

.mt-lg {
	margin-top: 20px
}

.mt-xl {
	margin-top: 30px
}

.mt-xxl {
	margin-top: 40px
}

.mr-normal {
	margin-right: 10px
}

.mr-xs {
	margin-right: 5px
}

.mr-lg {
	margin-right: 20px
}

.mr-xl {
	margin-right: 30px
}

.mr-xxl {
	margin-right: 40px
}

.mb-normal {
	margin-bottom: 10px
}

.mb-xs {
	margin-bottom: 5px
}

.mb-lg {
	margin-bottom: 20px
}

.mb-xl {
	margin-bottom: 30px
}

.mb-xxl {
	margin-bottom: 40px
}

.ml-normal {
	margin-left: 10px
}

.ml-xs {
	margin-left: 5px
}

.ml-lg {
	margin-left: 20px
}

.ml-xl {
	margin-left: 30px
}

.ml-xxl {
	margin-left: 40px
}

.p-normal {
	padding: 10px
}

.p-xs {
	padding: 5px
}

.p-lg {
	padding: 20px
}

.p-xl {
	padding: 30px
}

.p-xxl {
	padding: 40px
}

.pt-normal {
	padding-top: 10px
}

.pt-xs {
	padding-top: 5px
}

.pt-lg {
	padding-top: 20px
}

.pt-xl {
	padding-top: 30px
}

.pt-xxl {
	padding-top: 40px
}

.pr-normal {
	padding-right: 10px
}

.pr-xs {
	padding-right: 5px
}

.pr-lg {
	padding-right: 20px
}

.pr-xl {
	padding-right: 30px
}

.pr-xxl {
	padding-right: 40px
}

.pb-normal {
	padding-bottom: 10px
}

.pb-xs {
	padding-bottom: 5px
}

.pb-lg {
	padding-bottom: 20px
}

.pb-xl {
	padding-bottom: 30px
}

.pb-xxl {
	padding-bottom: 40px
}

.pl-normal {
	padding-left: 10px
}

.pl-xs {
	padding-left: 5px
}

.pl-lg {
	padding-left: 20px
}

.pl-xl {
	padding-left: 30px
}

.pl-xxl {
	padding-left: 40px
}

.scroll-y {
	overflow-y: scroll
}

.scroll-x {
	overflow-y: scroll
}

.scroll {
	overflow: scroll
}

.scroll-none {
	overflow: none
}

.ta-center {
	text-align: center
}

.ta-left {
	text-align: left
}

.ta-right {
	text-align: right
}

.va-middle {
	vertical-align: middle
}

.va-top {
	vertical-align: top
}

.va-bottom {
	vertical-align: bottom
}

.block {
	display: block !important
}

.none {
	display: none !important
}

.inline {
	display: inline !important
}

.inblock {
	display: inline-block !important
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #9ec5e5
}

a:active,a:hover,a:focus {
	outline: none
}

a:hover,a:active {
	color: #76adda
}

a.l-red {
	color: #ff6868
}

a.l-red:hover,a.l-red:active {
	color: #ff3535
}

a.l-blue {
	color: #76a7f8
}

a.l-blue:hover,a.l-blue:active {
	color: #4588f6
}

a.l-gray {
	color: #999
}

a.l-gray:hover,a.l-gray:active {
	color: #808080
}

a.l-yellow {
	color: #f8ea76
}

a.l-yellow:hover,a.l-yellow:active {
	color: #f6e345
}

#M_main {
	z-index: 1010;
	padding-top: 40px;
	padding-bottom: 30px
}

img {
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: none
}

.contact-modal {
	padding: 30px;
	text-align: center;
	height: 160px
}

.contact-modal .name {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin-bottom: 15px
}

.contact-modal .close {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0;
	cursor: pointer;
	padding: 5px
}

.contact-modal .close:after {
	content: "\e611";
	font-size: 3rem;
	font-size: 30px\9;
	padding: 0 10px;
	padding-top: 13px\9;
	display: inline-block;
	font-family: "iconfont" !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.contact-modal .notice {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	padding-top: 10px
}

.contact-modal .notice .icon:before {
	font-size: 36px;
	position: relative;
	top: 8px;
	margin-right: 10px;
	color: #00cdcb
}

.contact-modal .contact>.icon {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin: 0 40px
}

.contact-modal .contact>.icon:before {
	color: #3d9ce9;
	font-size: 36px;
	position: relative;
	top: 2px;
	left: -5px
}

.contact-modal .contact>.icon.icon-phone:before {
	color: #33475f;
	font-size: 42px;
	position: relative;
	top: 10px
}

.pull-left {
	float: left !important
}

.pull-right {
	float: right !important
}

@media screen and (max-width:1400px) {
	.shortcut-customer {
		display: none
	}
}

.describe-info {
	color: #666;
	line-height: 1.5;
	font-size: 16px;
	text-align: center
}

.pro-list-more {
	text-align: center
}

.pro-list-more p {
	font-size: 24px;
	line-height: 1.6;
	margin: 10px auto
}

.pro-list-more .btn {
	width: 140px
}

.header {
	width: 100%;
	min-width: 1201px;
	background: rgba(0,1,28,0);
	position: fixed;
	top: 35px;
	left: 0;
	z-index: 999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff 5c
}

.header.fixation-top {
	top: 0
}

.header .logo {
	width: 289px;
	height: 58px;
	margin-top: 10px
}

.header .logo img {
	width: inherit;
	height: inherit
}

.header .nav-box {
	margin-top: 21px;
	float: right
}

.header .nav-list {
	height: 43px
}

.header .nav-list li {
	float: left
}

.header .nav-list li:not(:first-child) {
	margin-left: 17px
}

.header .nav-list li div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.header .nav-list li a {
	display: block;
	height: 43px;
	line-height: 43px;
	padding: 0 15px;
	font-size: 1.8rem;
	border-radius: 4px;
	color: #fff
}

.header .nav-list li.active p {
	background-color: #53fffd;
	border-radius: 2.5px;
	width: 56px;
	height: 5px
}

.header .nav-list li.go-start a {
	border: 1px solid #fff;
	transition: 2s;
	position: relative;
	width: 83px;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	overflow: hidden
}

.header .nav-list li.go-start a::before {
	position: absolute;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	content: "";
	overflow: hidden
}

.header .nav-list li.go-start a:hover {
	border-color: #33f;
	background-image: radial-gradient(25% 25%, #00011c, #00011c);
	background-image: -webkit-radial-gradient(25% 25%, #00011c, #00011c);
	transition: width .2s
}

.header .nav-list li.go-start a:hover::before {
	width: 100%;
	transition: width .2s;
	background-image: radial-gradient(25% 25%, #0b6ef1, #30b5fe);
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe)
}

.header .nav-list li.go-start a>span {
	display: block;
	position: relative;
	z-index: 2;
	line-height: 40px
}


.about-banner-section {
	min-width: 1200px;
	height: 800px;
	background: url(http://www.aisjbz.com/static/image/banner/plant_banner_bg_v1.png) no-repeat center 0
}

.about-banner-section .about-banenr-content-box {
	text-align: left;
	color: #fff;
	padding-top: 250px;
	padding-left: 60px
}

.about-banner-section .about-banenr-content-box h1 {
	font-size: 40px;
	line-height: 40px;
	font-weight: normal
}

.about-banner-section .about-banenr-content-box .div-line {
	width: 76px;
	height: 2px;
	background-color: #82b6ff;
	margin-bottom: 30px;
	margin-top: 24px
}

.about-banner-section .about-banenr-content-box h2 {
	font-size: 50px;
	line-height: 50px;
	margin-top: 28px;
	font-weight: normal
}

.about-banner-section .about-banenr-content-box p {
	line-height: 1.8;
	font-size: 22px
}

.about-banner-section .about-banenr-content-box .ctrl-row {
	margin-top: 40px
}

.about-banner-section .about-banenr-content-box .banner-row {
	height: 57px;
	margin-top: 50px
}

.about-banner-section .about-banenr-content-box .mianfei-btn {
	width: 270px;
	height: 57px;
	line-height: 57px;
	font-size: 24px;
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe)
}

.plant-introduction-section {
	padding: 50px 0;
	min-width: 1200px;
	background: #fff
}

.plant-introduction-section .bar-color h1 {
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 350px
}

.plant-introduction-section .pro-list-more .btn-contact {
	width: 200px;
	height: 40px;
	color: #38f;
	font-size: 18px;
	background: #e6effd;
	border-radius: 5px;
	line-height: 40px
}

.plant-introduction-section .pro-list-more .btn-contact:hover {
	color: #fff;
	background: #38f
}

.plant-introduction-section .pro-list-more p {
	color: #222;
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 29px
}

@media (max-width: 991px) {
.plant-introduction-section {padding: 20px 0;min-width: 100%;}
.plant-introduction-section .bar-color h1 {
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 100%
}

.plant-introduction-section .pro-list-more .btn-contact {
	width: 200px;
	height: 40px;
	color: #38f;
	font-size: 18px;
	background: #e6effd;
	border-radius: 5px;
	line-height: 40px
}

.plant-introduction-section .pro-list-more .btn-contact:hover {
	color: #fff;
	background: #38f
}

.plant-introduction-section .pro-list-more p {
	color: #222;
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 29px
}
    
}
.workplace-row {
	padding-top: 50px
}

.workplace-row .context-info,.workplace-row .map-pic-box {
	width: 50%
}

.workplace-row .context-info {
	padding: 40px 90px
}

.workplace-row .context-info h2 {
	font-size: 26px;
	color: #222;
	font-weight: bold;
	height: 40px;
	line-height: 40px
}

.workplace-row .context-info .div-line {
	width: 45px;
	height: 2px;
	background-color: #8bbbfe;
	margin-top: 24px;
	margin-bottom: 24px
}

.workplace-row .context-info p {
	font-size: 16px;
	color: #666;
	line-height: 1.6
}

.workplace-row .context-info p span {
	font-size: 22px;
	color: #ff6c00
}

.workplace-row .context-info .label-app-list li {
	float: left;
	height: 102px;
	position: relative;
	z-index: 11111
}

.workplace-row .context-info .label-app-list li:not(:first-child) {
	margin-left: 60px
}

.workplace-row .context-info .label-app-list li h3 {
	font-size: 26px;
	line-height: 30px;
	color: #9c9c9c;
	font-weight: normal;
	position: absolute;
	left: 0;
	right: 0;
	top: 30px
}

.workplace-row .context-info .label-app-list li p {
	line-height: 1.8;
	font-size: 16px;
	margin-top: 6px;
	color: #9c9c9c;
	margin-top: 65px
}

.workplace-row .context-info .label-app-list li p span {
	font-size: 16px;
	color: #38f
}

.workplace-row .map-pic-box {
	position: relative;
	width: 515px;
	height: 423px;
	text-align: center
}

.coordinated-distribution {
	padding: 50px 0
}

.coordinated-distribution .flx-content-box {
	display: flex;
	flex-direction: row
}

.coordinated-distribution .flx-content-box .context-box {
	width: 350px
}

.coordinated-distribution .flx-content-box .context-box .header-box {
	display: flex;
	margin-bottom: 15px
}

.coordinated-distribution .flx-content-box .context-box .header-box .sequr {
	margin-top: 15px;
	margin-right: 10px;
	width: 8px;
	height: 9px;
	background: url(../static/images/icon-squ.png)
}

.coordinated-distribution .flx-content-box .context-box .header-box h2 {
	font-size: 26px;
	color: #222;
	font-weight: bold
}

.coordinated-distribution .flx-content-box .context-box .space-div {
	height: 200px
}

.coordinated-distribution .flx-content-box .context-box p {
	font-size: 18px;
	padding-left: 20px;
	color: #666
}

.coordinated-distribution .flx-content-box .topological-box {
	width: 537px;
	text-align: center;
	margin: 0 100px
}

.coordinated-distribution .flx-content-box .topological-box img {
	max-width: 100%;
	height: 435px
}

.coordinated-distribution .flx-content-box .topological-box h3 {
	font-size: 14px;
	font-weight: normal;
	color: #666;
	line-height: 14px;
	margin-top: 66px
}

@media (max-width: 992px) {
.coordinated-distribution {padding:20px 0 0 0}
.coordinated-distribution .flx-content-box {flex-wrap: wrap;padding:0 20px}
.coordinated-distribution .flx-content-box .context-box {width: 48%;order:1;border-top:1px dashed #ddd;padding-top:10px;margin-right:3%;}
.coordinated-distribution .flx-content-box .context-box:last-child{margin-right:0;}
.coordinated-distribution .flx-content-box .context-box .header-box {flex-wrap: wrap;margin-bottom: 10px}
.coordinated-distribution .flx-content-box .topological-box {width: 100%;margin: 0 0 20px 0;order:2;}
.coordinated-distribution .flx-content-box .topological-box img {height: auto}
.coordinated-distribution .flx-content-box .topological-box h3 {font-size: 1.3rem;line-height: 2rem;margin-top:0}
.coordinated-distribution .flx-content-box .context-box .header-box .sequr {display:none;}
.coordinated-distribution .flx-content-box .context-box .header-box h2 {font-size: 1.6rem;line-height:1.6rem!important;margin-bottom:0!important;}
.coordinated-distribution .flx-content-box .context-box .space-div {height: auto}
.coordinated-distribution .flx-content-box .context-box p {font-size: 1.3rem;padding-left: 0;margin-bottom:20px;border-bottom:1px dashed #ddd;padding-bottom:10px;}
}

.representative-list li {
	width: 354px;
	height: 274;
	position: relative;
	overflow: hidden;
	float: left;
	margin-top: 10px
}

.representative-list li:not(:first-child) {
	margin-left: 33px
}

.representative-list li.mar-left-a {
	margin-left: 160px
}

.representative-list li.mar-left-b {
	margin-left: 116px
}

.representative-list li .pic img {
	width: 100%;
	height: 224px
}

.representative-list li h2 {
	width: 100%;
	line-height: 50px;
	text-align: center;
	color: #666;
	font-size: 19px;
	font-weight: normal
}

.ad-plant-bottom-bar {
	min-width: 1200px;
	height: 190px;
	margin-bottom: -36px;
	background-color: #1878ff
}

.ad-plant-bottom-bar .ad-tx-title {
	margin-top: 35px;
	width: 155px;
	height: 132px;
	background: url(http://www.aisjbz.com/static/image/icons/plant_partner_recruitment.png) no-repeat center 0
}

.ad-plant-bottom-bar .ad-tx-box {
	margin-left: 50px;
	margin-top: 40px;
	color: #fff
}

.ad-plant-bottom-bar .ad-tx-box .ad-tx-a {
	font-size: 30px;
	line-height: 30px;
	font-weight: bold;
	margin: 15px 0
}

.ad-plant-bottom-bar .ad-tx-box .ad-tx-b {
	font-size: 16px;
	line-height: 30px
}

.ad-plant-bottom-bar .ad-tx-ctrl {
	margin-left: 100px;
	margin-top: 75px
}

.ad-plant-bottom-bar .ad-tx-ctrl .btn-contact {
	width: 200px;
	height: 40px;
	color: white;
	background: #1878ff;
	border-radius: 5px;
	border-color: #fff;
	border-width: 1px;
	border-style: solid
}

@keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@-moz-keyframes myfirst {
	0% {
		-moz-transform: scale(0)
	}

	100% {
		-moz-transform: scale(1)
	}
}

@-ms-keyframes myfirst {
	0% {
		-ms-transform: scale(0)
	}

	100% {
		-ms-transform: scale(1)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: scale(0)
	}

	100% {
		-webkit-transform: scale(1)
	}
}

@-o-keyframes myfirst {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-moz-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-ms-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-o-keyframes myfirst {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}

	75% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-80px);
		-ms-transform: translateY(-80px);
		-o-transform: translateY(-80px);
		transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0)
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0)
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-80px)
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0)
	}
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@-webkit-keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@keyframes shake {
	0%,100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0)
	}
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-3%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(2%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-1%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		transform: none
	}
}


.main-box {
	min-width: 1200px;
	width: 1200px;
	margin: 0 auto
}

.warper-box,.wrap-body {
	min-width: 1200px;
	margin: 0 auto
}

.wrap-body {
	min-height: 480px
}

#wrapper {
	height: 100%;
	position: relative;
	min-width: 1200px;
	min-height: 480px
}

.fl {
	float: left
}

.fr {
	float: right
}

.btn {
	display: inline-block;
	height: 38px;
	padding: 0 15px;
	width: 143px;
	border-radius: 4px;
	overflow: auto;
	text-align: center;
	outline: none;
	border: none;
	color: #fff;
	font-size: 16px
}

.btn.btn-default {
	background-image: radial-gradient(25% 25%, #6f6fff, #33f);
	background-image: -webkit-radial-gradient(25% 25%, #6f6fff, #33f)
}

.btn.btn-default:hover {
	background-image: radial-gradient(25% 25%, #8f8fff, #6060ff);
	background-image: -webkit-radial-gradient(25% 25%, #8f8fff, #6060ff)
}

.btn:hover {
	color: #fff
}

a.btn {
	line-height: 38px;
	color: #fff
}

.item-row {
	display: block
}

.title-box {
	text-align: center
}

.title-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	padding: 0 70px;
	height: 65px
}

.title-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_left.png) no-repeat center center
}

.title-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_icon_right.png) no-repeat center center
}

.title-bar::before {
	left: 0
}

.title-bar::after {
	right: 0
}

.title-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.title-white-bar {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 10px auto;
	height: 65px
}

.title-white-bar::before {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 18px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_left.png) no-repeat center center
}

.title-white-bar::after {
	width: 114px;
	height: 18px;
	position: absolute;
	top: 10px;
	content: "";
	background: url(http://www.aisjbz.com/static/image/icons/title_item_white_icon_right.png) no-repeat center center
}

.title-white-bar::before {
	left: 0
}

.title-white-bar::after {
	right: 0
}

.title-white-bar h1 {
	font-size: 36px;
	height: 50px;
	line-height: 50px;
	font-weight: normal
}

.title-white-bar h4 {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal
}

.M_main {
	height: 100%
}

.M_main>.main-content {
	position: relative;
	height: 100%;
	float: none;
	width: auto;
	overflow: hidden
}

.M_main>.main-content .content-warper {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 40px;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 30px
}

*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

main {
	display: block
}[hidden] {
	display: none
}

h1 {
	font-size: 1.5rem;
	font-size: 15px\9
}

h2 {
	font-size: 1.3rem;
	font-size: 13px\9
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0
}

ul>li>ul,ul>li>ol,ol>li>ol,ol>li>ul {
	margin: 4px 0
}

.fill {
	width: 100%
}

.shift {
	text-align: center;
	padding: 10px;
	background: #d2d2d2,5%;
	margin-bottom: 10px
}

.list-none {
	padding: 30px;
	text-align: center
}

.tips {
	background: #5c86a8;
	padding: 15px;
	color: #333
}

.tips>a {
	color: #c4c4c4
}

.error {
	color: #f00;
	margin-left: 10px
}

.error:before {
	content: "!";
	margin-right: 5px;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	top: -1px;
	background: #f00;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	line-height: 16px;
	vertical-align: middle
}

.bg-white {
	background-color: #fff
}

.bg-global {
	background-color: #edf0f0
}

.bg-gray {
	background-color: #d2d2d2
}

.bg-gray-light {
	background-color: #f5f5f5
}

.bg-white {
	background-color: #fff
}

.bg-blue {
	background-color: #5c86a8
}

.bg-black-blue {
	background-color: #25435c
}

.bg-black-green {
	background-color: #00cdcb
}

.bg-blue-light {
	background-color: #e4f0fa
}

.bg-blue-dark {
	background-color: #4c7596
}

.bg-red {
	background-color: #f00
}

.bg-none {
	background-color: none
}

.bg-tran {
	background-color: transparent
}

.f-normal {
	font-size: 1.4rem
}

.f-xs {
	font-size: 1.2rem
}

.f-sm {
	font-size: 1.6rem
}

.f-md {
	font-size: 1.8rem
}

.f-lg {
	font-size: 2.2rem
}

.f-xl {
	font-size: 3rem
}

.f-xxl {
	font-size: 4rem
}

.f-xxxl {
	font-size: 4.6rem
}

.fw-blod {
	font-weight: blod
}

.fw-normal {
	font-weight: normal
}

.fs-blod {
	font-style: italic
}

.fs-normal {
	font-style: normal
}

.c-gray {
	color: #666
}

.c-gray-dark {
	color: #333
}

.c-gray-light {
	color: #999
}

.c-gray-lighter {
	color: #ccc
}

.c-white {
	color: #fff
}

.c-black {
	color: #000
}

.c-red {
	color: #f00
}

.c-red-light {
	color: #ff6868
}

.c-red-lighter {
	color: #f88b76
}

.c-red-dark {
	color: #d3361a
}

.c-blue {
	color: #76a7f8
}

.c-blue-light {
	color: #9ec5e5
}

.c-yellow {
	color: #f8ea76
}

.c-black-yellow {
	color: #f6c34b
}

.c-green {
	color: #54a506
}

.c-black-green {
	color: #00cdcb
}

.c-orange {
	color: #eb641a
}

.c-green-blue {
	color: #66efd4
}

.m-normal {
	margin: 10px
}

.m-xs {
	margin: 5px
}

.m-lg {
	margin: 20px
}

.m-xl {
	margin: 30px
}

.m-xxl {
	margin: 40px
}

.mt-normal {
	margin-top: 10px
}

.mt-xs {
	margin-top: 5px
}

.mt-sm {
	margin-top: 10px
}

.mt-lg {
	margin-top: 20px
}

.mt-xl {
	margin-top: 30px
}

.mt-xxl {
	margin-top: 40px
}

.mr-normal {
	margin-right: 10px
}

.mr-xs {
	margin-right: 5px
}

.mr-lg {
	margin-right: 20px
}

.mr-xl {
	margin-right: 30px
}

.mr-xxl {
	margin-right: 40px
}

.mb-normal {
	margin-bottom: 10px
}

.mb-xs {
	margin-bottom: 5px
}

.mb-lg {
	margin-bottom: 20px
}

.mb-xl {
	margin-bottom: 30px
}

.mb-xxl {
	margin-bottom: 40px
}

.ml-normal {
	margin-left: 10px
}

.ml-xs {
	margin-left: 5px
}

.ml-lg {
	margin-left: 20px
}

.ml-xl {
	margin-left: 30px
}

.ml-xxl {
	margin-left: 40px
}

.p-normal {
	padding: 10px
}

.p-xs {
	padding: 5px
}

.p-lg {
	padding: 20px
}

.p-xl {
	padding: 30px
}

.p-xxl {
	padding: 40px
}

.pt-normal {
	padding-top: 10px
}

.pt-xs {
	padding-top: 5px
}

.pt-lg {
	padding-top: 20px
}

.pt-xl {
	padding-top: 30px
}

.pt-xxl {
	padding-top: 40px
}

.pr-normal {
	padding-right: 10px
}

.pr-xs {
	padding-right: 5px
}

.pr-lg {
	padding-right: 20px
}

.pr-xl {
	padding-right: 30px
}

.pr-xxl {
	padding-right: 40px
}

.pb-normal {
	padding-bottom: 10px
}

.pb-xs {
	padding-bottom: 5px
}

.pb-lg {
	padding-bottom: 20px
}

.pb-xl {
	padding-bottom: 30px
}

.pb-xxl {
	padding-bottom: 40px
}

.pl-normal {
	padding-left: 10px
}

.pl-xs {
	padding-left: 5px
}

.pl-lg {
	padding-left: 20px
}

.pl-xl {
	padding-left: 30px
}

.pl-xxl {
	padding-left: 40px
}

.scroll-y {
	overflow-y: scroll
}

.scroll-x {
	overflow-y: scroll
}

.scroll {
	overflow: scroll
}

.scroll-none {
	overflow: none
}

.ta-center {
	text-align: center
}

.ta-left {
	text-align: left
}

.ta-right {
	text-align: right
}

.va-middle {
	vertical-align: middle
}

.va-top {
	vertical-align: top
}

.va-bottom {
	vertical-align: bottom
}

.block {
	display: block !important
}

.none {
	display: none !important
}

.inline {
	display: inline !important
}

.inblock {
	display: inline-block !important
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #9ec5e5
}

a:active,a:hover,a:focus {
	outline: none
}

a:hover,a:active {
	color: #76adda
}

a.l-red {
	color: #ff6868
}

a.l-red:hover,a.l-red:active {
	color: #ff3535
}

a.l-blue {
	color: #76a7f8
}

a.l-blue:hover,a.l-blue:active {
	color: #4588f6
}

a.l-gray {
	color: #999
}

a.l-gray:hover,a.l-gray:active {
	color: #808080
}

a.l-yellow {
	color: #f8ea76
}

a.l-yellow:hover,a.l-yellow:active {
	color: #f6e345
}

#M_main {
	z-index: 1010;
	padding-top: 40px;
	padding-bottom: 30px
}

img {
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: none
}

.contact-modal {
	padding: 30px;
	text-align: center;
	height: 160px
}

.contact-modal .name {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin-bottom: 15px
}

.contact-modal .close {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0;
	cursor: pointer;
	padding: 5px
}

.contact-modal .close:after {
	content: "\e611";
	font-size: 3rem;
	font-size: 30px\9;
	padding: 0 10px;
	padding-top: 13px\9;
	display: inline-block;
	font-family: "iconfont" !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.contact-modal .notice {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	padding-top: 10px
}

.contact-modal .notice .icon:before {
	font-size: 36px;
	position: relative;
	top: 8px;
	margin-right: 10px;
	color: #00cdcb
}

.contact-modal .contact>.icon {
	font-size: 1.6rem;
	font-size: 16px\9;
	color: #666;
	margin: 0 40px
}

.contact-modal .contact>.icon:before {
	color: #3d9ce9;
	font-size: 36px;
	position: relative;
	top: 2px;
	left: -5px
}

.contact-modal .contact>.icon.icon-phone:before {
	color: #33475f;
	font-size: 42px;
	position: relative;
	top: 10px
}

.pull-left {
	float: left !important
}

.pull-right {
	float: right !important
}

@media screen and (max-width:1400px) {
	.shortcut-customer {
		display: none
	}
}

.describe-info {
	color: #666;
	line-height: 1.5;
	font-size: 16px;
	text-align: center
}

.pro-list-more {
	text-align: center
}

.pro-list-more p {
	font-size: 24px;
	line-height: 1.6;
	margin: 10px auto
}

.pro-list-more .btn {
	width: 140px
}

.header {
	width: 100%;
	min-width: 1201px;
	background: rgba(0,1,28,0);
	position: fixed;
	top: 35px;
	left: 0;
	z-index: 999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff 5c
}

.header.fixation-top {
	top: 0
}

.header .logo {
	width: 289px;
	height: 58px;
	margin-top: 10px
}

.header .logo img {
	width: inherit;
	height: inherit
}

.header .nav-box {
	margin-top: 21px;
	float: right
}

.header .nav-list {
	height: 43px
}

.header .nav-list li {
	float: left
}

.header .nav-list li:not(:first-child) {
	margin-left: 17px
}

.header .nav-list li div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.header .nav-list li a {
	display: block;
	height: 43px;
	line-height: 43px;
	padding: 0 15px;
	font-size: 1.8rem;
	border-radius: 4px;
	color: #fff
}

.header .nav-list li.active p {
	background-color: #53fffd;
	border-radius: 2.5px;
	width: 56px;
	height: 5px
}

.header .nav-list li.go-start a {
	border: 1px solid #fff;
	transition: 2s;
	position: relative;
	width: 83px;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	overflow: hidden
}

.header .nav-list li.go-start a::before {
	position: absolute;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	content: "";
	overflow: hidden
}

.header .nav-list li.go-start a:hover {
	border-color: #33f;
	background-image: radial-gradient(25% 25%, #00011c, #00011c);
	background-image: -webkit-radial-gradient(25% 25%, #00011c, #00011c);
	transition: width .2s
}

.header .nav-list li.go-start a:hover::before {
	width: 100%;
	transition: width .2s;
	background-image: radial-gradient(25% 25%, #0b6ef1, #30b5fe);
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe)
}

.header .nav-list li.go-start a>span {
	display: block;
	position: relative;
	z-index: 2;
	line-height: 40px
}



.platform-banner-section {
	min-width: 1200px;
	height: 800px;
	background: url(http://www.aisjbz.com/static/image/banner/platform_page_banner.png) no-repeat center 0
}

.platform-banner-section .platform-banenr-content-box {
	text-align: left;
	color: #fff;
	padding-top: 278px
}

.platform-banner-section .platform-banenr-content-box h1 {
	font-size: 40px;
	line-height: 40px;
	font-weight: normal
}

.platform-banner-section .platform-banenr-content-box h2 {
	font-size: 50px;
	line-height: 50px;
	font-weight: normal;
	margin-top: 28px
}

.platform-banner-section .platform-banenr-content-box p {
	line-height: 1.8;
	font-size: 24px;
	margin-top: 20px
}

.platform-banner-section .platform-banenr-content-box p span {
	color: #ff7200
}

.platform-banner-section .platform-banenr-content-box .banner-row {
	height: 57px;
	margin-top: 50px
}

.platform-banner-section .platform-banenr-content-box .mianfei-btn {
	width: 270px;
	height: 57px;
	line-height: 57px;
	font-size: 24px;
	background-image: -webkit-radial-gradient(25% 25%, #0b6ef1, #30b5fe)
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list {
	margin-top: 65px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li {
	float: left;
	width: 180px;
	height: 90px;
	position: relative;
	z-index: 11111;
	color: #6f6fff
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li:not(:first-child) {
	margin-left: 83px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li:first-child {
	width: 140px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li:last-child {
	width: 150px;
	margin-left: 60px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li a {
	display: block;
	height: 100%;
	position: relative
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li a div {
	display: flex;
	flex-direction: column;
	padding-top: 8px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li a div span {
	font-size: 18px;
	font-weight: normal;
	color: white;
	line-height: 21px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li a div .colorful-span {
	color: #53fffd
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li .iconsimg {
	display: block;
	height: 62px;
	margin: 0 auto;
	margin-top: 40px;
	position: absolute;
	top: -43px;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0 30px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li .iconsimg.icons-industry {
	background: url(http://www.aisjbz.com/static/image/icons/platform/icon-manage.png) no-repeat left center;
	background-size: 45px 46px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li .iconsimg.icons-people {
	background: url(http://www.aisjbz.com/static/image/icons/platform/icon-nb-people.png) no-repeat left center;
	background-size: 42px 52px
}

.platform-banner-section .platform-banenr-content-box .label-advantage-list li .iconsimg.icons-clock {
	background: url(http://www.aisjbz.com/static/image/icons/platform/icon-people.png) no-repeat left center;
	background-size: 50px 46px
}

.platform-introduction-section,.quality-introduction-section {
	position: relative;
	padding-top: 50px;
	background: #fff
	width: 100%;
}

.platform-introduction-section .bar-color h1,.quality-introduction-section .bar-color h1 {
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 350px
}

.platform-introduction-section .pro-list-more,.quality-introduction-section .pro-list-more {
	color: #333
}

.platform-introduction-section .pro-list-more p,.quality-introduction-section .pro-list-more p {
	font-size: 22px
}

.quality-introduction-section {
	padding: 50px 0
}

@media (max-width: 991px) {
  .quality-introduction-section {padding:20px 0}  
}

.flowdiagram-box {
	padding-top: 50px
}

.flowdiagram-pic {
	position: relative;
	width: 796px;
	height: 501px;
	display: block;
	margin: 0 auto
}

.flowdiagram-pic img {
	max-width: 100%
}

.flowdiagram-pic i {
	display: block;
	position: absolute;
	width: 100%;
	height: 64px;
	bottom: -64px;
	left: 50%;
	margin-left: -398px
}

.annotation-system-section {
	padding: 50px 0;
	min-width: 1200px;
	background: #fafafa
}

.annotation-system-section .bar-color h1 {
	color: #222;
	font-size: 40px;
	font-weight: normal;
	width: 350px
}

.annotation-system-section .pro-list-more {
	color: #333
}

.annotation-system-section .pro-list-more p {
	font-size: 22px
}

.annotation-box {
	padding-top: 50px;
	padding-bottom: 50px;
}

.annotation-box .annotation-list li {
	background-color: white;
	width: 23.5%;
	height: 260px;
	text-align: center;

}

.annotation-box .annotation-list li .pic {
	background-color: #e7f1ff;
	width: 100%;
	height: 200px
}

.annotation-box .annotation-list li .header-box {
	display: flex;
	justify-content: center
}

.annotation-box .annotation-list li .header-box .sequr {
	margin-top: 27px;
	margin-right: 10px;
	width: 8px;
	height: 9px;
	background: url(http://www.aisjbz.com/static/image/icons/service/icon-squ.png)
}

.annotation-box .annotation-list li .header-box .context-title {
	font-size: 19px;
	font-weight: normal;
	line-height: 19px;
	margin-top: 21px;
	color: #222
}
@media (max-width: 991px) {
.annotation-system-section {padding: 20px 0;min-width: 100%;}
.annotation-system-section .bar-color h1 {font-size: 2.2rem;width:100%}
.annotation-system-section .pro-list-more p {font-size: 1.4rem}
.annotation-box {padding-top:20px;padding-bottom: 20px;}
.annotation-box .annotation-list{flex-wrap:wrap;}
.annotation-box .annotation-list li {width: 48%;height: auto;margin-bottom:4%;}
.annotation-box .annotation-list li .pic {height: 180px}
.annotation-box .annotation-list li .header-box .context-title {font-size: 1.6rem;font-weight: 550;line-height: 1.6rem;margin-top: 10px;}
}

.quality-service-list{width:1200px;margin: 20px auto;flex-wrap:wrap;}
.quality-service-list li {
	position: relative;
	width: 49%;
	height: 350px;
	overflow: hidden;
	border: #f6f8fb 10px solid;margin-bottom:2%;
}

.quality-service-list li a {
	display: block;
	width: 100%;
	height: 300px
}

.quality-service-list li .float-content {
	background: rgba(0,0,0,0.59);
	transform: translateY(250px);
	transition: all .4s ease-in-out;
	height: 180px;padding:0 20px 20px 20px;
}

.quality-service-list li .float-content h2 {
	position: relative;
	font-weight: bold;
	height: 60px;
	line-height: 60px;
	color: #fff;
	text-align: center;
	font-size: 18px
}

.quality-service-list li .float-content .line-div {
	width: 20px;
	height: 2px;
	background-color: white;
	margin:0 auto 20px auto;
}

.quality-service-list li .float-content span {
	color: #fff;
	font-size: 14px;
	text-align: center;
	display: block;
	line-height: 22px
}

.quality-service-list li img {
	position: relative;width:100%;
	transition: all .4s linear
}

.quality-service-list li .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .4s ease-in-out
}

.quality-service-list li:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2)
}

.quality-service-list li:hover .float-content {
	transform: translateY(150px)
}

@media (max-width: 991px) {
.quality-service-list{width:100%;margin:10px auto;flex-wrap:wrap;}
.quality-service-list li {width: 100%;height:260px;border: none;margin-bottom:3%;}
.quality-service-list li a {display: block;	width: 100%;height: 260px}
.quality-service-list li .float-content {
	background: rgba(0,0,0,0.5);
	height: 260px;padding:80px 20px 20px 20px;
	transform: translateY(0)
}
.quality-service-list li .float-content h2 {height: auto;line-height:6rem;font-size: 1.8rem}
.quality-service-list li .float-content .line-div {
	width: 20px;
	height: 2px;
	background-color: white;
	margin:0 auto 20px auto;
}

.quality-service-list li .float-content span {
	color: #fff;
	font-size: 14px;
	text-align: center;
	display: block;
	line-height: 22px
}


}

.ad-plant-bottom-bar {
	min-width: 1200px;
	height: 190px;
	margin-bottom: -36px;
	background-color: #1878ff
}

.ad-plant-bottom-bar .ad-tx-title {
	margin-top: 35px;
	width: 155px;
	height: 132px;
	background: url(http://www.aisjbz.com/static/image/icons/plant_partner_recruitment.png) no-repeat center 0
}

.ad-plant-bottom-bar .ad-tx-box {
	margin-left: 50px;
	margin-top: 40px;
	color: #fff
}

.ad-plant-bottom-bar .ad-tx-box .ad-tx-a {
	font-size: 30px;
	line-height: 30px;
	font-weight: bold;
	margin: 15px 0
}

.ad-plant-bottom-bar .ad-tx-box .ad-tx-b {
	font-size: 16px;
	line-height: 30px
}

.ad-plant-bottom-bar .ad-tx-ctrl {
	margin-left: 100px;
	margin-top: 75px
}

.ad-plant-bottom-bar .ad-tx-ctrl .btn-contact {
	width: 200px;
	height: 40px;
	color: white;
	background: #1878ff;
	border-radius: 5px;
	border-color: #fff;
	border-width: 1px;
	border-style: solid
}

.brand-carousel{background-color:#fff;padding:50px 0 100px 0;}
.brand-carousel .carousel-row-wrapper{height:135px;margin:0 auto;overflow-x:hidden;position:relative;}
.brand-carousel .carousel-row-wrapper .mask-left,.brand-carousel .carousel-row-wrapper .mask-right{height:100px;position:absolute;top:0;width:300px;z-index:10}
.brand-carousel .carousel-row-wrapper .mask-left{background-image:linear-gradient(270deg,rgba(240,247,255,0) 0,#fff);left:0}
.brand-carousel .carousel-row-wrapper .mask-right{background-image:linear-gradient(90deg,rgba(240,247,255,0) 0,#fff);right:0}
.brand-carousel div[class^=carousel-row]{white-space:nowrap}
.brand-carousel .carousel-row1{animation:move-to-left 70s linear infinite;display:flex}
.brand-carousel .carousel-row2{animation:move-to-right 70s linear infinite;display:flex;flex-direction:row-reverse}
.brand-carousel .carousel-row-wrapper li{
    background-color:#fff;flex-shrink:0;
    height:100px;width:220px;
    margin:15px 20px;
    text-align:center;
    padding:5px 10px 5px 10px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transform: skew(-12deg);
    display: flex;align-items: center;justify-content: center;
}
.brand-carousel .carousel-row-wrapper li img{
    width:80%;height: auto;
    transform: skew(12deg);
    border-radius: 10px;
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.brand-carousel .carousel-row-wrapper li:first-child{margin-left:0}
@media (max-width: 1680px) {
    .brand-carousel{padding:80px 0;}
    .brand-carousel .carousel-row-wrapper li{height:80px;width:190px;margin:12px 20px;}
    .brand-carousel .carousel-row-wrapper li img{width: 80%}
    .brand-carousel .carousel-row-wrapper{height:120px;}
}
@media (max-width: 1440px) {
    .brand-carousel{padding:60px 0;}
}
@media (max-width: 992px) {
    .brand-carousel{background-color:#fff;padding: 40px 0 40px 0;}
    .brand-carousel .carousel-row-wrapper .mask-left,.brand-carousel .carousel-row-wrapper .mask-right{height:100%;width:100px;}
    .brand-carousel .carousel-row-wrapper{height:100%;width:100%!important;}
    .brand-carousel .carousel-row-wrapper li{height:38px;width:100px;margin:6px 6px; box-shadow:0 2px 6px rgba(0,0,0,0.05);border-radius:4px;border:1px solid #eee;}
    .brand-carousel .carousel-row-wrapper li>img{padding:6px;}
}
@keyframes move-to-left{
    0%
    {
        transform:translateZ(0)
    }
    to
    {
        transform:translate3d(-680px,0,0)
    }
}
@keyframes move-to-right{
    0%
    {
        transform:translateZ(0)
    }
    to
    {
        transform:translate3d(680px,0,0)
    }
}


.hj{padding:50px 0;}
.hj .hj-ul{flex-wrap: wrap;padding: 30px 0;}
.hj .hj-ul li{margin:30px 20px;padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 1px 5px 15px rgba(0,0,0,0.08);
    box-shadow: 1px 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
}
.hj .hj-ul li .img{width: 100%;text-align: center;margin: 10px 0;}
.hj .hj-ul li .img img{width: auto;max-width: 100%;}
.hj .hj-ul li .info{padding: 10px 0;text-align: center;}
.hj .hj-ul li .info h4{font-size: 18px;font-weight:500;font-family: "Noto Sans SC";color: #666;line-height:30px;margin-bottom: 10px;padding-bottom: 10px;border-bottom: 1px solid #eee;}
.hj .hj-ul li .info p{font-size: 15px;font-weight:400;font-family: "Noto Sans SC";color: #999;line-height:25px;}
@media (max-width: 992px) {
    body{width:100%;overflow-x:hidden;}
    .hj{padding:20px 0;background-color:#f9f9f9;width:100%;overflow:hidden;}
    .hj .hj-ul{padding:0;}
    .hj .hj-ul li{margin:15px 10px;}
    .hj .hj-ul li .info h4{font-size: 1.8rem;font-weight:550;}
    .hj .hj-ul li .info p{font-size:1.3rem;line-height:2rem;}
    
}

.owl-theme .owl-controls .owl-buttons div{position:absolute;margin:0;padding:0;background-color:transparent;overflow:hidden;_display:none;}
.owl-theme .owl-controls .owl-buttons .owl-prev,.owl-theme .owl-controls .owl-buttons .owl-next{background-color:transparent;width: 80px;height:80px;top:50%;margin-top: -40px;font-weight: 800;}
.owl-theme .owl-controls .owl-buttons .owl-prev{left:-100px;}
.owl-theme .owl-controls .owl-buttons .owl-next{right:-100px;}
.owl-theme .owl-controls .owl-buttons i{font-size: 4.4rem;}
.owl-theme .owl-controls{margin-top: 10px;text-align: center;}
.owl-theme .owl-controls .owl-buttons div{
	color: #666;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 5px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #111;
	filter: Alpha(Opacity=30);/*IE7 fix*/
	opacity: 0.3;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=40);/*IE7 fix*/
	opacity: 0.4;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background:#ddd;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.owl-item.loading{
	min-height: 150px;
	background: url(../images/AjaxLoader.gif) no-repeat center center
}
@media screen and (max-width: 992px){
	.owl-theme .owl-controls .owl-buttons .owl-prev,.owl-theme .owl-controls .owl-buttons .owl-next{opacity:0};
	.owl-theme .owl-controls .owl-buttons .owl-prev{left:-20px;}
	.owl-theme .owl-controls .owl-buttons .owl-next{right:-20px;}
	.owl-theme .owl-controls .owl-page span{width: 10px;height: 10px;margin: 4px;}
}

.business{background-color: #f8f8f8;padding:50px 0;background-image: url(../images/kf-bg1.jpg);background-size: cover;background-position: center}
.business .business-ul{padding: 30px 0;flex-wrap: wrap;}
.business .business-ul li{width: 32%;margin-right: 2%;margin-bottom: 2%;padding:30px;
    background-color: #fff;
    -webkit-box-shadow: 1px 5px 15px rgba(0,0,0,0.08);
    box-shadow: 1px 5px 15px rgba(0,0,0,0.08);
    padding: 20px 10px 30px 10px;border-radius:8px;
}
.business .business-ul li:nth-child(3n){margin-right: 0;}
.business .business-ul li .img{}
.business .business-ul li .img img{}
.business .business-ul li .info{text-align: center;}
.business .business-ul li .info i{
    font-size: 3rem;
    color:#fff;
    background-color:#3e65a5;
    width: 60px;height: 60px;line-height: 60px;
    border-radius: 12px;margin:0 auto 20px auto;display: block;
    background-image: linear-gradient(125deg, var(--color-1),var(--color-2));
    -webkit-box-shadow: 1px 5px 15px rgba(62,101,165,0.28);
    box-shadow: 1px 5px 15px rgba(62,101,165,0.28);
}
.business .business-ul li .info h4{font-size: 22px;font-weight:530;color: #333;line-height: 32px;margin-bottom:5px;}
.business .business-ul li .info p{font-size: 15pxcolor: #666;line-height: 23px;}

@media screen and (max-width: 992px){
.business{padding:20px 0;}
.business .business-ul{padding:10px 0;}
.business .business-ul li{width: 49%;padding:20px;}
.business .business-ul li:nth-child(2n){margin-right:0;}
.business .business-ul li .info h4{font-size: 1.6rem;font-weight:550;line-height:1.8rem;}
.business .business-ul li .info p{font-size:1.3rem;line-height: 2rem;}
}

.shuju-ul{padding: 30px 0;flex-wrap: wrap;width:1200px;margin:0 auto;}
.shuju-ul li{width: 48%;margin-right: 4%;background-color: #fff;border-radius: 10px;
    -webkit-box-shadow: 1px 5px 10px rgba(0,0,0,0.04);
    box-shadow: 1px 5px 10px rgba(0,0,0,0.04);
    padding: 20px;
}
.shuju-ul li:nth-child(2n){margin-right: 0;}
.shuju-ul li .img{width: 100%;overflow: hidden;}
.shuju-ul li .img img{width: 100%;}
.shuju-ul li .info{padding: 20px 0;}
.shuju-ul li .info h4{font-size: 22px;font-weight: 500;font-family: "Noto Sans SC";color:#f3ae00;margin-bottom:20px;}
.shuju-ul li .info p{font-size: 16px;font-weight: 400;font-family: "Noto Sans SC";color: #888;line-height: 32px;}
.shuju-ul li:hover{
    -webkit-box-shadow: 2px 10px 25px rgba(0,0,0,0.08);
    box-shadow: 2px 10px 25px rgba(0,0,0,0.08);
}
.shuju-ul li:hover .img img{
    transition: 2s cubic-bezier(0.28, 0, 0.12, 1);
    -webkit-transform: scale3d(1.12, 1.12, 1);
    transform: scale3d(1.12, 1.12, 1);
}
@media screen and (max-width: 992px) {
    .shuju{padding:20px;}
    .shuju-ul{width:100%;}
    .shuju-ul{padding:10px 20px;}
    .shuju-ul li{width: 100%;margin-right:0;border-radius:4px;padding: 15px;margin-bottom: 20px;}
    .shuju-ul li .info{padding: 10px 0;}
    .shuju-ul li .info h4{font-size: 1.8rem;margin-bottom:10px;}
    .shuju-ul li .info p{font-size: 1.4rem;line-height:2rem;}
}

/*jidi*/
.jidi{background-color: #f9f9f9;padding:50px 0;}
.jidi .jidi-ul{padding: 30px 0;flex-wrap: wrap;}
.jidi .jidi-ul li{width: 23.5%;margin-right: 2%;margin-bottom: 2%;background-color: #fff;
    -webkit-box-shadow: 1px 5px 10px rgba(0,0,0,0.04);
    box-shadow: 1px 5px 10px rgba(0,0,0,0.04);
    padding:15px;border-radius: 10px;
}
.jidi .jidi-ul li:nth-child(4n){margin-right: 0;}
.jidi .jidi-ul li .img{width: 100%;overflow: hidden;}
.jidi .jidi-ul li .img img{width: 100%;}
.jidi .jidi-ul li:hover .img img{
    transition: 2s cubic-bezier(0.28, 0, 0.12, 1);
    -webkit-transform: scale3d(1.12, 1.12, 1);
    transform: scale3d(1.12, 1.12, 1);
}
.jidi .jidi-ul li .info{padding: 20px 0 0 0;}
.jidi .jidi-ul li .info h4{font-size: 18px;font-weight: 500;color: #666;margin-bottom: 5px;}
.jidi .jidi-ul li .info h4 i{color:#f3ae00;font-size: 2.2rem;}
.jidi .jidi-ul li .info p{font-size: 14px;font-weight: 400;color: #888;line-height: 25px;padding-left:25px;}
@media screen and (max-width: 992px) {
    .jidi{padding:20px 0;}
    .jidi .jidi-ul{padding:20px 0 0 0;flex-wrap: wrap;}
    .jidi .jidi-ul li{width:48.5%;margin-right:3%;margin-bottom:3%;padding:8px;border-radius: 4px;}
    .jidi .jidi-ul li:nth-child(2n){margin-right: 0;}
    .jidi .jidi-ul li .img{width: 100%;overflow: hidden;}
    .jidi .jidi-ul li .info{padding:10px 0 0 0;}
    .jidi .jidi-ul li .info h4{font-size:1.4rem;}
    .jidi .jidi-ul li .info h4 i{font-size:1.6rem;}
    .jidi .jidi-ul li .info p{font-size:1.2rem;line-height:1.8rem;padding-left:20px;}
}
.map-branch{padding: 100px 0;}
.map-module {position: relative;transition: all .3s ease;}
.map-content-info {position: relative;margin-bottom: 30px}
.branch-map-l {width: 849px;height: 575px;position: relative}
.map-content-box {width: 100%;height: 100%;background: url(https://www.24kefu.com/images/map-bj.png) no-repeat center;position: relative}
.map-dot {position: absolute;text-align: center;font-size: 14px;cursor: pointer;}
.shanxi {left: 540px;top: 276px}
.shanghai {left: 668px;top: 341px}
.anhui {left: 605px;top: 334px}
.shanxi1 {left: 502px;top: 312px}
.map-dot:after {content: "";display: block;width:8px;height:8px;margin: 0 auto;background-color:#f3ae00;border-radius: 50%;}
.branch-map-data {position: absolute;box-sizing: border-box;width: 430px;border: 1px solid #f3ae00;box-shadow: 0 0 2px 2px #e9e9e9;background-color: #fff;padding: 10px 30px;z-index: 1;display: none}
.branch-map-data-title {border-bottom: 1px solid #eee}
.branch-map-data-title p {line-height: 36px;font-size: 22px;color:#f3ae00;font-weight: 500;}
.branch-map-data-info {max-height: 380px;overflow-y: auto}
.data-branch {border-bottom: 1px dashed #eaeaea;padding: 6px 0;box-sizing: border-box;}
.data-branch:last-child {border: none}
.data-branch .data-name {font-size: 18px;color: #666;font-weight:400;line-height: normal;margin-bottom: 5px}
.data-branch p {font-size: 15px;color: #999;line-height: 25px}
.branch-map-data:before {content: "";position: absolute;left: -16px;top: 50%;transform: translateY(-50%);width: 0;height: 0;border: 8px solid;border-color: transparent #f3ae00 transparent transparent}
.branch-map-data:after {content: "";position: absolute;left: -15px;top: 50%;transform: translateY(-50%);width: 0;height: 0;border: 8px solid;border-color: transparent #fff transparent transparent}
.map-dot.cur:before {content: "";position: absolute;left: 50%;bottom: -3px;transform: translateX(-50%);width: 14px;height: 14px;border-radius: 50%;border: 1px solid #f3ae00;animation: dot 4s infinite}
@keyframes dot {
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1
    }

    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: .1
    }
}
@media screen and (max-width: 992px) {
    .map-branch{padding: 20px 0;}
    .map-content-info {position: relative;margin-bottom:120px;}
    .branch-map-l {width:100%;height:290px;padding:0 10px;}
    .map-content-box {width: 100%;height: 100%;background: url(https://www.24kefu.com/images/map-bj.png) no-repeat top center;background-size:120% auto;}
    .map-dot {position: absolute;text-align: center;font-size: 14px;cursor: pointer;}
    .shanxi {left:60%;top: 100px}
    .shanghai {left:83%;top:155px}
    .anhui {left:68%;top: 140px}
    .shanxi1 {left: 60%;top: 312px}
    .map-dot:after {content: "";display: block;width:8px;height:8px;margin: 0 auto;background-color:#f3ae00;border-radius: 50%;}
    .branch-map-data {
        position:unset;
        box-sizing: border-box;width:100%;
        border: 1px solid #ddd;
        box-shadow: none;
        background-color: #fff;
        padding:5px 10px;}
    .branch-map-data-title p {line-height:3.2rem;font-size:1.8rem;}
    .branch-map-data-info {max-height: 150px;overflow-y: auto}
    .data-branch .data-name {font-size:1.4rem;}
    .data-branch p {font-size:1.2rem;line-height:1.8rem;}
    .branch-map-data:before {display: none;}
    .branch-map-data:after {display: none;}
    .map-dot.cur:before {display: none;}
}



/* 基础PC端样式（保留并修复原样式小问题） */
.service-advantage-section {
    padding: 100px 0;
    min-width: 1200px;
    max-width: 1920px;
    height: auto;
    background-image: url(/static/images/index-service-advantage.png);
    background-size: cover;
    background-position: center; /* 新增：保证背景图居中，移动端不偏移 */
    overflow: hidden;
    position: relative; /* 新增：为子元素绝对定位做基准 */
}
.service-advantage-section .pro-list-more .btn-contact {
    width: 200px;
    height: 40px;
    color: #38f;
    background: #e6effd;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 40px;
    text-align: center; /* 新增：按钮文字居中 */
}
.service-advantage-section .pro-list-more .btn-contact:hover {
    color: #fff;
    background: #38f;
}
.swiper-box-advantage {
    position: relative;
    height: 480px;
    margin-top: 140px;
    width: 100%; /* 新增：PC端也自适应容器 */
}
/* 轮播左右按钮PC端样式 */
.swiper-box-advantage .swiper-button-next-advantage,
.swiper-box-advantage .swiper-button-prev-advantage {
    top: 50%; /* 优化：垂直居中，替代固定200px */
    transform: translateY(-50%); /* 配合top:50%实现精准垂直居中 */
    position: absolute;
    text-align: center;
    font-size: 28px;
    color: #444;
    outline: none;
    background-image: none;
    width: 49px;
    height: 49px;
    cursor: pointer;
    z-index: 10; /* 新增：保证按钮在最上层 */
}
.swiper-box-advantage .swiper-button-next-advantage {
    background: url(/static/images/swiper-button-next-white.png) no-repeat center;
    background-size: 100% 100%; /* 新增：按钮背景自适应 */
    right: -70px !important;
}
.swiper-box-advantage .swiper-button-prev-advantage {
    background: url(/static/images/swiper-button-prev-white.png) no-repeat center;
    background-size: 100% 100%; /* 新增：按钮背景自适应 */
    left: -70px !important;
}
/* 轮播分页器PC端样式 */
.swiper-box-advantage .swiper-pagination-bullet {
    width: 190px;
    height: 42px;
    text-align: center;
    font-size: 19px;
    background-color: transparent;
    opacity: 1;
    line-height: 40px;
    color: white;
    cursor: pointer; /* 新增：鼠标指针提示 */
}
.swiper-box-advantage .swiper-pagination-bullet-active {
    color: white;
    background: #38f;
    border-radius: 20px;
}
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 510px;
    width: 100%; /* 新增：分页器占满宽度，方便移动端居中 */
    text-align: center; /* 新增：分页器按钮居中 */
}
.swiper-container-advantage {
    width: 1200px;
    height: 480px;
    background-color: transparent;
    margin: 0 auto; /* 新增：PC端轮播容器居中 */
}
/* 轮播项PC端样式 */
.swiper-container-advantage .pro-step-list .pro-item {
    position: relative;
    float: left;
    width: 1200px;
    height: 438px;
    font-size: 19px;
    background-color: transparent;
    display: flex;
    align-items: center;
}
.swiper-container-advantage .pro-step-list .pro-item .content {
    display: flex;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-sizing: border-box; /* 新增：盒模型，padding不撑大宽高 */
    padding: 0 20px; /* 新增：PC端内边距，防止内容贴边 */
}
.swiper-container-advantage .pro-step-list .pro-item .content .text-content-box {
    padding-left: 134px;
    width: 635px;
    box-sizing: border-box; /* 新增：盒模型 */
}
.swiper-container-advantage .pro-step-list .pro-item .content .text-content-box h6 {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    margin: 0 0 15px 0; /* 新增：统一边距 */
}
.swiper-container-advantage .pro-step-list .pro-item .content .text-content-box p {
    font-size: 19px;
    margin-top: 6px;
    color: #666;
    line-height: 1.6; /* 新增：行高，提升可读性 */
    margin: 0; /* 重置边距 */
}
/* 轮播项图标PC端样式 */
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg {
    flex: 1; /* 优化：替代固定宽高，自适应剩余空间 */
    height: 80%; /* 优化：自适应高度，防止溢出 */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* 关键：背景图等比缩放，不拉伸 */
    right: 0; /* 修复原-500px偏移问题 */
}
/* 各图标背景（保留原背景，优化size为contain） */
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-1 {
    background-image: url(/static/images/icon-guimo.png);
}
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-2 {
    background-image: url(/static/images/icon-jingdu.png);
}
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-3 {
    background-image: url(/static/images/icon-fast.png);
}
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-4 {
    background-image: url(/static/images/icon-safe.png);
}
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-5 {
    background-image: url(/static/images/icon-youhui.png);
}
.swiper-container-advantage .pro-step-list .pro-item .content .iconsimg.icons-6 {
    background-image: url(/static/images/icon-shulian.png);
}

/* 移动端核心适配：750px以下（极致压缩高度，不占屏） */
@media screen and (max-width: 750px) {
    /* 整体区域适配 - 极简内边距，无高度限制 */
    .service-advantage-section {
        padding: 20px 20px 20px 20px !important; /* 上下内边距压到最小 */
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto!important;
        background-position: center center !important;
    }
    
    /* 轮播外层容器 - 无间距，紧贴标题 */
    .swiper-box-advantage {
        height: auto !important;
        margin-top: 15px !important; /* 顶部间距压到最小 */
        padding: 0 5px !important; /* 左右边距微缩 */
    }
    /* 隐藏左右按钮 */
    .swiper-box-advantage .swiper-button-next-advantage,
    .swiper-box-advantage .swiper-button-prev-advantage {
        display: none !important;
    }
    /* 分页器 - 更紧凑，贴轮播下方 */
    .swiper-container-horizontal>.swiper-pagination-bullets {
        top: unset !important;
        bottom: 0 !important; /* 分页器与轮播间距压小 */
        width: 100% !important;
        opacity: 0;
    }
    .swiper-box-advantage .swiper-pagination-bullet {
        width: 28% !important; /* 宽度微缩，适配更紧凑 */
        max-width: 130px !important;
        height: 35px !important; /* 分页器高度压到最低 */
        font-size: 14px !important; /* 分页器文字微缩 */
        line-height: 35px !important;
        margin: 2px 0 !important; /* 分页器间距压到最小 */
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    /* 轮播容器 - 完全自适应，无任何高度限制 */
    .swiper-container-advantage {
        width: 100% !important;
        height: 350px !important;
        min-height: unset !important; /* 彻底移除最小高度，核心 */
    }
    /* 轮播项 - 极简最小高度，仅防塌陷 */
    .swiper-container-advantage .pro-step-list .pro-item {
        width: 82% !important; /* 微缩宽度，视觉更紧凑 */
        height: auto !important;
        min-height: unset !important; /* 移除轮播项最小高度 */
        margin: 0 auto !important;
    }
    /* 轮播卡片 - 超窄内边距，高度极致收缩 */
    .swiper-container-advantage .pro-step-list .pro-item .content {
        flex-direction: column !important;
        padding: 15px 20px !important; /* 卡片内边距压到极致，比原少一半 */
        height: 350px !important;
        border-radius: 8px !important; /* 圆角微缩，视觉更紧凑 */
    }
    /* 文字内容区 - 无冗余间距，高度压缩 */
    .swiper-container-advantage .pro-step-list .pro-item .content .text-content-box {
        padding-left: 0 !important;
        width: 100% !important;
        margin-bottom: 8px !important; /* 文字与图标间距压到最小 */
        text-align: center !important;
    }
    /* 标题 - 更小字体，无多余下边距 */
    .swiper-container-advantage .pro-step-list .pro-item .content .text-content-box h6 {
        font-size: 1.8rem !important; /* 标题字体压小 */
        margin: 0 0 10px 0 !important; /* 标题与正文间距压到最小 */
        line-height: 2.8rem !important; /* 标题行高紧凑，无留白 */
        font-weight: 600 !important; /* 稍减字重，不影响识别即可 */
    }
    /* 正文 - 极小字体，超紧凑行高 */
    .swiper-container-advantage .pro-step-list .pro-item .content .text-content-box p {
        font-size: 1.3rem !important; /* 正文字体压到最小可阅读尺寸 */
        line-height: 2rem !important; /* 行高极致紧凑，减少垂直高度 */
        color: #666 !important;
        margin: 0 !important; /* 彻底移除正文所有外边距 */
    }
    /* 图标区 - 高度压到最低，核心高度优化 */
    .swiper-container-advantage .pro-step-list .pro-item .content .iconsimg {
        width: 100% !important;
        height: 80px !important; /* 图标高度从120px再压到80px，关键！ */
        right: 0 !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    /* coverflow效果微调 */
    .swiper-container-advantage {
        --swiper-coverflow-stretch: -20 !important;
    }
    /* 按钮 - 极简尺寸，紧贴内容 */
    .service-advantage-section .pro-list-more .btn-contact {
        width: 120px !important; /* 按钮宽度压小 */
        height: 28px !important; /* 按钮高度压到最低 */
        font-size: 12px !important;
        line-height: 28px !important;
        margin: 8px auto 0 !important; /* 按钮与轮播间距压小 */
        display: block !important;
        border-radius: 4px !important;
    }
}

/* 平板适配：750px-992px（保持不变，无需压缩） */
@media screen and (min-width: 751px) and (max-width: 992px) {
    .service-advantage-section {
        padding: 60px 30px;
        min-width: 100%;
        max-width: 100%;
        height: auto;
    }
    .swiper-box-advantage {
        margin-top: 80px;
        height: auto;
        min-height: 450px;
    }
    .swiper-container-advantage {
        width: 90%;
        height: auto;
    }
    .swiper-container-advantage .pro-step-list .pro-item {
        width: 90%;
    }
    .swiper-box-advantage .swiper-pagination-bullet {
        width: 120px;
        font-size: 16px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: -40px;
    }
}

@media (max-width: 992px) {
.main-box {	min-width: 100%;width: 100%;}
.warper-box,.wrap-body {min-width: 100%;}
.wrap-body {min-height:auto}
#wrapper {min-width: 100%min-height:auto;}
.function-section,.advantage-section,.usage-section,.caiji-section,.partner-section {padding: 20px 0 20px 0;min-width: 100%;width:100%;} 
.title-bar {margin:0 auto!important;padding:0 20px!important;height: auto}
.title-bar::before {width: 40!%;height: 18px;top: 18px;}
.title-bar::after {width: 40%!important;height: 18px;top: 18px;}
.title-bar h1 {font-size: 2.2rem!important;height: 4rem;line-height:4rem!important;font-weight:700!important;}
.title-bar h4 {font-size: 1.2rem!important;}
.title-white-bar {margin: 10px auto;height: 65px}
.title-white-bar::before {width: 114px;height: 18px;position: absolute;top: 18px;}
.title-white-bar::after {width: 114px;height: 18px;top: 10px;}
.title-white-bar h1 {font-size: 2.2rem!important;height: 4rem!important;line-height:4rem!important;}
.title-white-bar h4 {font-size: 1.2rem!important;}

.service-advantage-section {padding: 20px 0;min-width: 100%;max-width: 100%;height: auto;}
.service-advantage-section .pro-list-more .btn-contact {width: 200px;height: 40px;margin-top: 10px;font-size: 1.4rem;line-height: 2.5rem}

}


/*模板样式*/
.left{text-align:left!important;}
.center{text-align: center!important;}
.right{text-align: right!important}
.block{display: block!important;width: 100% !important}
.bold{font-weight: bold!important;}
.pos-abs{position: absolute;}
.pos-rel{position: relative;}
.wp-100{width: 100%!important;}
.wp-90{width: 90%!important;}
.wp-85{width: 85%!important;}
.wp-80{width: 80%!important;}
.wp-75{width: 75%!important;}
.wp-70{width: 70%!important;}
.wp-65{width: 65%!important;}
.wp-60{width: 60%!important;}
.wp-55{width: 55%!important;}
.wp-50{width: 50%!important;}
.wp-45{width: 45%!important;}
.wp-40{width: 40%!important;}
.wp-35{width: 35%!important;}
.wp-30{width: 30%!important;}
.wp-25{width: 25%!important;}
.wp-20{width: 20%!important;}
.wp-15{width: 15%!important;}
.wp-10{width: 10%!important;}
.ai-ce{align-items: center}
.ai-fs{align-items: flex-start}

.p-5{padding: 5px 0!important;}
.p-10{padding: 10px 0!important;}
.p-20{padding: 20px 0!important;}
.p-30{padding: 30px 0!important;}
.p-40{padding: 40px 0!important;}
.p-50{padding: 50px 0!important;}
.p-60{padding: 60px 0!important;}
.p-80{padding: 80px 0!important;}
.p-100{padding: 100px 0!important;}
.m-b-0{margin-bottom:0!important;}
.m-b-5{margin-bottom:5px!important;}
.m-b-10{margin-bottom: 10px!important;}
.m-b-20{margin-bottom: 20px!important;}
.m-b-30{margin-bottom: 30px!important;}
.m-b-40{margin-bottom: 40px!important;}
.m-b-50{margin-bottom: 50px!important;}
.m-b-60{margin-bottom: 60px!important;}
.m-b-70{margin-bottom: 70px!important;}
.m-b-80{margin-bottom: 80px!important;}
.m-b-90{margin-bottom: 90px!important;}
.m-b-100{margin-bottom: 100px!important;}
.p-left{left: 0;right: unset;}
.p-right{left:unset;right: 0;}

.padding-left-50{padding-left: 50px!important;}
.padding-right-50{padding-right: 50px!important;}
.padding-left-100{padding-left: 100px!important;}
.padding-right-100{padding-right: 100px!important;}
.padding-top-10{padding-top: 10px!important;}
.padding-top-20{padding-top: 20px!important;}
.padding-top-30{padding-top: 30px!important;}
.padding-top-40{padding-top: 40px!important;}
.padding-top-50{padding-top: 50px!important;}
.padding-top-100{padding-top: 100px!important;}
.padding-0{padding: 0!important;}
.padding-10{padding: 10px!important;}
.padding-20{padding: 20px!important;}
.padding-30{padding: 30px!important;}
.padding-40{padding: 40px!important;}
.padding-50{padding: 50px!important;}
.ul-3{}
.ul-3 li{width: 32%!important;}
