@charset "utf-8";
/* =====================内页样式======================== */
/* 分页 */
.paging{width: 100%;text-align: center;user-select: none;display: flex;flex-wrap: wrap;justify-content: center;align-items: center;}
.paging-menu{display: flex;flex-wrap: wrap;}
.paging-menu a{width: max(36px,0.4rem);height: max(36px,0.4rem);font-family: Arial, Helvetica, sans-serif;font-weight: 700;margin: 0 max(3px,0.06rem);font-size: max(14px,0.15rem);color: #222;transition: all .4s ease;border-radius: 4px;display: flex;align-items: center;justify-content: center;line-height: 1;}
.paging-menu a.prev,.paging-menu a.next{font-size: 13px;color: #666;}
.paging-menu a.next{transform: rotateY(180deg);}
.paging-menu a:hover, .paging-menu a.active, .paging a.on{border-color: #3059da;background-color: #3059da;color: #fff;}

/* 搜索页面 */
.search{width: 100%;}
.search-result{font-size: 14px;color: #3059da;line-height: 1.1;}
.search-result span{margin-left: 6px;}
.search-info{width: 100%;line-height: 1.1;color: #333;}
.search-info span{color: #3059da;font-weight: 700;flex: 1;}
.search-list{width: 100%;}
.search-link{display: block;width: 100%;border: 1px solid #eee;background: #f6f8f9;padding: max(20px,0.4rem) max(15px,0.26rem);margin-top: max(12px,0.18rem);}
.search-link:first-child{margin-top: 0;}
.search-link h2{color: #333;line-height: 1.1;font-weight: 700;transition: all .4s ease;}
.search-link p{width: 100%;color: #666;}
.search-link .highlightRow span{color: #3059da !important;}
.search-link:hover h2{color: #3059da;}

/* 隐私协议 */
.privacy{width: 100%;}
.privacy-title{width: 100%;color: #333;line-height: 1.1;}
.privacy-content{width: 100%;color: #666;}
.privacy-content h6{color: #333;line-height: inherit;}

/* 网站地图 */
.webmap{width: 100%;}
.webmap-title{width: 100%;color: #333;line-height: 1;position: relative;padding-bottom: max(14px,0.24rem);}
.webmap-title::after{content: "";position: absolute;width: max(36px,0.6rem);left: 0;right: 0;margin: 0 auto;bottom: 0;height: max(2px,0.04rem);background: #3059da;}
.webmap-list{width: 100%;}
.webmap-list>ul{margin: -0.4rem 0 0 -0.4rem;display: flex;flex-wrap: wrap;}
.webmap-list>ul>li{width: calc(20% - 0.4rem);margin: 0.4rem 0 0 0.4rem;color: #333;}
.webmap-list>ul>li ul, .webmap-list>ul>li li{width: 100%;}
.webmap-list>ul>li a{display: block;transition: color .4s ease;position: relative;}
.webmap-list>ul>li a:hover{color: #3059da;}
.webmap-list>ul>li>.menu{font-weight: 700;border-bottom: 1px solid #e1e1e1;font-size: max(16px,0.2rem);width: 100%;padding-bottom: max(12px,0.2rem);line-height: 1;}
.webmap-list>ul>li>.drop{margin-top: max(10px,0.2rem);}
.webmap-list>ul>li>.drop a{line-height: 1.28;padding: max(4px,0.06rem) 0;font-size: max(15px,0.18rem);}
.webmap-list>ul>li>.drop .drop a{padding-left: max(12px,0.18rem);font-size: max(14px,0.16rem);}
.webmap-list>ul>li>.drop .drop a::before{content: "";position: absolute;width: 4px;height: 4px;border-radius: 50%;background: #afafaf;left: 0;top: 0.14rem;}
@media all and (max-width: 1000px){
    .webmap-list>ul>li>.drop .drop a::before{top: 0.2rem;}
    .webmap-list>ul{margin: -14px 0 0;}.webmap-list>ul>li{width: 100%;margin: 14px 0 0;}.webmap-list>ul>li>.drop .drop a::before{top: 11px;}
}

.sonBan{width: 100%;overflow: hidden;position: relative;position: relative;z-index: 99;transform: translate3d(0,0,20px);}
.sonBan img.bg{width: 100%;min-height: 240px;transform: matrix(1.1, 0, 0, 1.1, 0, 0);animation: sonBanImgRun 3s ease both .2s;}
.sonBan-cont{position: absolute;width: 100%;height: 100%;text-align: center;top: 0;left: 0;z-index: 4;transform: translate3d(0,0,0px);display: flex;align-items: center;}
.sonBan-cont .title{opacity: 0;animation: sonBanDown 1.4s ease both .4s;}
.sonBan-cont .text{opacity: 0;animation: sonBanDown 1.4s ease both .5s;max-width: max(640px,7.4rem);margin-left: auto;margin-right: auto;}
.sonBan-cont .link{opacity: 0;animation: sonBanDown 1.4s ease both .5s;width: max(510px,6.16rem);margin-left: auto;margin-right: auto;padding: max(4px,0.08rem);background: rgba(255, 255, 255, 0.2);}
.sonBan-cont .link a{flex: 1;display: flex;align-items: center;height: max(32px,0.5rem);border-radius: max(5px,0.12rem);color: #fff;justify-content: center;line-height: 1;transition: background .4s ease, color .4s ease;}
.sonBan-cont .link a span{position: relative;padding: 2px 0;}
.sonBan-cont .link a span::after{content: "";position: absolute;width: 100%;height: 1px;background: #fff;left: 0;bottom: -2px;opacity: 0;transition: opacity .4s ease;}
.sonBan-cont .link a:hover span::after{opacity: 1;}
.sonBan-cont .link a.active{background: #3059da;}
.sonBan-cont .link a.active span::after{opacity: 0;}
@keyframes sonBanDown{0%{opacity: 0;transform: translateY(max(30px,1rem));filter: blur(6px);}100%{opacity: 1;transform: translateY(0);filter: blur(0);}}
@keyframes sonBanImgRun{0%{transform: matrix(1.1, 0, 0, 1.1, 0, 0);}100%{transform: matrix(1, 0, 0, 1, 0, 0);}}

.sonPlace{width: 100%;position: relative;}
.sonPlace a{color: #a9a9a9;display: flex;align-items: center;transition: color .4s;position: relative;font-size: 13px;}
.sonPlace a:first-child{font-size: 0;}
.sonPlace a:last-child{margin-right: 0;color: #333;}
.sonPlace a:first-child::before{content: "\e757";font-family: "icon";color: #a9a9a9;font-size: 14px;margin-top: min(-1px,-0.02rem);line-height: 1;transition: color .4s ease;}
.sonPlace a:hover:first-child::before{color: #272f92;}
.sonPlace a::after{content: "\e80b";font-family: "icon";color: #a9a9a9;margin: 0 6px;transform: rotateY(180deg);font-size: 12px;line-height: 1;pointer-events: none;}
.sonPlace a:last-child::after{display: none;}
.sonPlace a:hover{color: #3059da;}
.sonPlace a:last-child span{max-width: 500px;display: block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}

/* 产品-列表 */
.pro{background: #fff;width: 100%;position: relative;}
.pro::after{content: "";position: absolute;width: calc(100% - max(200px,2.64rem) - var(--widDb));height: 100%;top: 0;right: 0;background: #f7f9ff;}
.proMa{width: 100%;position: relative;z-index: 4;transform: translate3d(0,0,4px);}
.proMa .contain{align-items: flex-start;}
.proCd{width: max(200px,2.64rem);padding-right: max(24px,0.54rem);position: sticky;left: 0;top: max(100px,1.2rem);}
.proCd ul{margin-top: min(-10px,-0.16rem);}
.proCd li{width: 100%;margin-top: max(10px,0.16rem);position: relative;}
.proCd li .menu{width: 100%;position: relative;}
.proCd li .menu a{display: flex;width: 100%;position: relative;height: max(36px,0.68rem);font-size: max(15px,0.18rem);color: #333;font-weight: 700;line-height: 1.4;align-items: center;padding: 0 max(18px,0.36rem) 0 max(12px,0.24rem);z-index: 2;transition: color .4s ease;}
.proCd li .menu i{position: absolute;content: "";border-top: 5px solid transparent;border-bottom: 5px solid transparent;border-left: 6px solid #333;width: 0;height: 0;right: max(10px,0.2rem);top: 50%;margin-top: -5px;transition: border .4s ease;z-index: 2;}
.proCd li .menu::before, .proCd li .menu::after{content: "";position: absolute;height: 100%;top: 0;left: 0;transform-origin: left center;transform: scaleX(0);transition: transform .4s ease;}
.proCd li .menu::before{width: 100%;background: #f9f9f9;border-top-right-radius: max(18px,0.34rem);border-bottom-right-radius: max(18px,0.34rem);}
.proCd li .menu::after{width: 2px;background: #3059da;}
.proCd li .menu.active::before, .proCd li .menu.active::after{transform: scaleX(1);}
.proCd li .menu:hover a, .proCd li .menu.active a{color: #3059da;}
.proCd li .menu:hover i, .proCd li .menu.active i{border-left-color: #3059da;}
.proLb{padding-left: max(30px,0.74rem);width: calc(100% - max(200px,2.64rem));}
.proLb .items{width: 100%;margin-top: max(30px,0.7rem);}
.proLb .items:first-child{margin-top: 0;}
.proLb-head{max-width: max(460px,5.7rem);}
.proLb-head .line{height: max(2px,0.05rem);width: max(32px,0.8rem);background: #3059da;}
.proLb-list{width: 100%;}
.proLb-link{display: block;width: 100%;height: 100%;background: #fff;border: 2px solid #fff;transition: border .4s ease;position: relative;}
.proLb-link-img{width: 100%;height: max(160px,2.5rem);padding: max(16px,0.36rem);}
.proLb-link-img img{max-height: 100%;}
.proLb-link-img:hover img{transform: scale(1.06);}
.proLb-link-cont{width: 100%;position: relative;height: calc(100% - max(180px,2.5rem));padding: max(16px,0.36rem) max(16px,0.36rem) max(20px,0.42rem);border-top: 1px solid #f2f2f2;}
.proLb-link-cont .title{display: block;width: 100%;text-align: center;}
.proLb-link-cont .title:hover{color: #3059da;}
.proLb-link-wrap{width: 100%;position: relative;}
.proLb-link-canshu{width: 100%;transition: opacity .4s ease;}
.proLb-link-canshu .text{justify-content: space-between;align-items: center;padding: max(8px,0.1rem) max(10px,0.2rem);}
.proLb-link-canshu .text:nth-child(2n+1){background: #f4f4f4;}
.proLb-link-canshu .text p:last-child{max-width:calc(100% - 60px);text-align:right}
.proLb-link-btn{width: 100%;position: absolute;top: 0;left: 0;background: #fff;z-index: 4;min-height: 100%;opacity: 0;visibility: hidden;transition: opacity .4s ease, visibility .4s ease;}
.proLb-link-btn a.comBtn{width: 100%;border-radius: 3px;justify-content: center;height: max(34px,0.44rem);}
.proLb-link-btn a.comBtn span{font-size: max(14px,0.15rem);}
.proLb-link-btn a.comBtn:hover {box-shadow: 0 0 max(8px,0.16rem) 0 rgba(48, 89, 218, 0.5);}
.proLb-link-btn .links{width: 100%;margin-top: max(10px,0.2rem);justify-content: center;}
.proLb-link-btn .links a{display: flex;align-items: center;transition: color .4s ease;line-height: 1;}
.proLb-link-btn .links a::before{content: "";width: 1px;height: max(14px,0.16rem);background: #444;margin: 0 max(4px,0.06rem);pointer-events: none;}
.proLb-link-btn .links a:first-child::before{display: none;}
.proLb-link-btn .links a:hover{color: #3059da;}
.proLb-link:hover{border-color: #3059da;}
.proLb-link:hover .proLb-link-canshu{opacity: 0;}
.proLb-link:hover .proLb-link-btn{opacity: 1;visibility: visible;}
.proWt{width: 100%;position: relative;z-index: 4;transform: translate3d(0,0,4px);}
.proWt .contain{justify-content: flex-end;}
.proWt-list{padding-left: max(30px,0.74rem);width: calc(100% - max(200px,2.64rem));}
.proWt-list .items{width: 100%;margin-top: max(20px,0.4rem);position: relative;align-items: center;justify-content: space-between;}
.proWt-list .items:first-child{margin-top: 0;}
.proWt-list .items img.bg{width: 100%;position: absolute;top: 0;left: 0;height: 100%;}
.proWt-list .items .cont{width: calc(100% - max(200px,3rem));color: #fff;position: relative;z-index: 4;}
.proWt-list .items .link{position: relative;z-index: 4;}
.proWt-list .items .link a.comBtn{border-radius: max(4px, 0.06rem);}
.proWt-list .items .link a.comBtn i{transform: rotate(0);margin: -1px max(8px,0.16rem) 0 0;font-size: max(16px,0.18rem);}
.proWt-list .items .link a.comBtn span{font-size: max(14px,0.15rem);}

/* 产品-详情 */
.proxq{background: #fff;width: 100%;overflow: hidden;position: relative;}
.proxq-head{width: 100%;justify-content: space-between;align-items: baseline;padding-bottom: max(12px,0.26rem);border-bottom: 1px solid #f5f5f5;}
.proxq-head .title span{color: #3059da;}
.proxq-head .hint{color: #b7b7b7;}
.proxqJs{background: #f0f3fa url("../images/pages/proxq1bg.jpg") no-repeat center/cover;position: relative;padding-top: max(36px,0.46rem);}
.proxqJs-loop{width: 100%;align-items: center;justify-content: space-between;padding-right: 1.3rem;}
.proxqJs-info{width: max(420px,5.2rem);}
.proxqJs-info .link a{margin-right: max(6px,0.1rem);}
.proxqJs-info .link a span{font-weight: 700;}
.proxqJs-info .link a i{transform: rotate(0);margin-left: max(8px,0.16rem);font-size: max(14px,0.16rem);}
.proxqJs-info .link a:last-child{margin-right: 0;border: 2px solid #3059da;background: #fff;color: #3059da;}
.proxqJs-info .link a:last-child::before{background-image: linear-gradient(120deg,rgba(255, 255, 255, 0) 30%,rgba(48, 89, 218, 0.4),rgba(255, 255, 255, 0) 70%);}
.proxqJs-imgs{width: 4.9rem;}
.proxqJs-imgs .img{width: 100%;height: 3rem;}
.proxqJs-imgs .img img{max-height: 100%;}
.proxqJs-imgs .swiper-pagination{position: relative;font-size: 0;width: 100%;bottom: 0;}
.proxqJs-imgs .swiper-pagination-bullet{width: 8px;height: 8px;background: transparent;opacity: 1;margin: 0 12px !important;position: relative;}
.proxqJs-imgs .swiper-pagination-bullet::before, .proxqJs-imgs .swiper-pagination-bullet::after{content: "";position: absolute;border-radius: 50%;}
.proxqJs-imgs .swiper-pagination-bullet::before{width: 100%;height: 100%;background: #767676;transition: background .4s ease;top: 0;left: 0;}
.proxqJs-imgs .swiper-pagination-bullet::after{border: 2px solid #3059da;width: 18px;height: 18px;top: 50%;left: 50%;margin: -9px 0 0 -9px;transform: scale(0);transition: transform .4s ease, opacity .4s ease;opacity: 0}
.proxqJs-imgs .swiper-pagination-bullet.swiper-pagination-bullet-active::before{background: #3059da;}
.proxqJs-imgs .swiper-pagination-bullet.swiper-pagination-bullet-active::after{opacity: 1;transform: scale(1);}
.proxqLd{background: #fff;}
.proxqLd-list{width: 100%;}
.proxqLd-list li{background: #f4f5f9;text-align: center;position: relative;min-height: 3.3rem;}
.proxqLd-list li::before{content: "";position: absolute;width: 100%;height: 100%;background: #3059da;top: 0;left: 0;opacity: 0;transition: opacity .4s ease;z-index: 1;}
.proxqLd-list li .num{position: absolute;background: linear-gradient(#e7e8f2, #f4f5f9);-webkit-text-fill-color: transparent;background-clip: text;color: transparent;bottom: 0;width: 100%;text-align: center;left: 0;line-height: 0.8;}
.proxqLd-list li .cont{position: relative;z-index: 4;width: 100%;text-align: center;}
.proxqLd-list li .cont .ico{width: max(40px,0.68rem);height: max(40px,0.68rem);border-radius: max(5px,0.1rem);margin: 0 auto;position: relative;border: 2px solid #444;transition: border .4s ease;padding: max(6px,0.1rem);}
.proxqLd-list li .cont .ico img{max-width: max(28px,0.44rem);/*max-height: max(24px,0.34rem);*/transition: opacity .4s ease;}
.proxqLd-list li .cont .ico img.h{position: absolute;top: 0;left: 0;bottom: 0;right: 0;margin: auto;opacity: 0;}
.proxqLd-list li:hover::before{opacity: 1;}
.proxqLd-list li:hover .cont .ico{border: 2px solid #fff;}
.proxqLd-list li:hover .cont .ico img.h{opacity: 1;}
.proxqLd-list li:hover .cont .ico img.n{opacity: 0;}
.proxqLd-list li:hover .cont .title, .proxqLd-list li:hover .text{color: #fff;}
.proxqCj{background: #fff;}
.proxqCj-loop{width: 100%;}
.proxqCj-list{width: 100%;}
.proxqCj-list li{position: relative;}
.proxqCj-list li img{width: 100%;height: max(200px,3.4rem);transition: transform .6s ease;}
.proxqCj-list li::before, .proxqCj-list li::after{content: "";position: absolute;transform: translate3d(0,0,2px);width: 100%;height: 100%;top: 0;left: 0;z-index: 2;transition: opacity .4s ease;}
.proxqCj-list li::before{background: url("../images/pages/proxq3sd.png") repeat-x left bottom/auto 84%;}
.proxqCj-list li::after{background: url("../images/pages/proxq3sdH.png") repeat-x left bottom/auto 100%;opacity: 0;}
.proxqCj-list li .cont{position: absolute;width: 100%;z-index: 3;left: 0;bottom: 0;color: #fff;transform: translate3d(0,0,4px);}
.proxqCj-list li .cont .text{display: none;}
.proxqCj-list li:hover img{transform: scale(1.06);}
.proxqCj-list li:hover::after{opacity: 1;}
.proxqCj-loop .swiper-pagination{position: relative;font-size: 0;width: 100%;bottom: 0;}
.proxqCj-loop .swiper-pagination-bullet{width: max(10px,0.16rem);height: max(10px,0.16rem);border: max(2px,0.03rem) solid #a1a1a1;background: transparent;opacity: 0.5;margin: 0 max(4px,0.08rem) !important;transition: border .4s ease, opacity .4s ease;}
.proxqCj-loop .swiper-pagination-bullet.swiper-pagination-bullet-active{border-color: #3059da;opacity: 1;}
.proxqGg{background: #fff;}
.proxqGg-table{width: 100%;}
.proxqGg-table table{width: 100%;word-break:break-word;border: 1px solid #f4f5f9;border-width:1px 0px 0px 1px;}
.proxqGg-table table td{padding: max(10px,0.16rem) max(12px,0.28rem);font-size: max(13px,0.14rem);color: #666;border: solid #f4f5f9;border-width:0px 1px 1px 0px;}
/*.proxqGg-table table tr:nth-child(odd) td{background: #f4f5f9;}*/
/*.proxqGg-table table tr:nth-child(odd) td:first-child{border-top-left-radius: max(4px,0.1rem);border-bottom-left-radius: max(4px,0.1rem);}*/
/*.proxqGg-table table tr:nth-child(odd) td:last-child{border-top-right-radius: max(4px,0.1rem);border-bottom-right-radius: max(4px,0.1rem);}*/
.proxqGg-table table td.one{font-size: max(13px,0.15rem);color: #333;font-weight: 700;white-space: nowrap;}

/* 方案-列表 */
.sol{background: #fff;width: 100%;overflow: hidden;}
.sol-list{width: 100%;}
.sol-list li{width: 100%;background: #f5f7fa;align-items: center;margin-top: max(14px,0.28rem);}
.sol-list li:first-child{margin-top: 0;}
.sol-list li .img{width: 7rem;}
.sol-list li .img img{width: 100%;height: 3.66rem;}
.sol-list li .img:hover img{transform: scale(1.06);}
.sol-list li .cont{width: calc(100% - 7rem);padding: 0 max(10px,0.2rem) 0 max(30px,0.52rem);}
.sol-list li .cont .ico{height: max(38px,0.5rem);display: flex;align-items: center;}
.sol-list li .cont .ico img{max-height: 100%;}
.sol-list li .cont .title a{transition: color .4s ease;}
.sol-list li .cont .title a:hover{color: #3059da;}
.sol-list li .cont .link a{margin-right: max(6px,0.1rem);border: 2px solid #3059da;background: transparent;color: #3059da;}
.sol-list li .cont .link a:last-child{margin-right: 0;}
.sol-list li .cont .link a:hover{background: #3059da;color: #fff;}

/* 方案-详情 */
.solxq{background: #fff;width: 100%;overflow: hidden;}
.solxq-head{position: relative;z-index: 4;transform: translate3d(0,0,4px);}
.solxqGs{background: #fff url("../images/pages/solxq1bg.jpg") no-repeat center/cover;}
.solxqGs-loop{width: 100%;align-items: center;justify-content: space-between;}
.solxqGs-info{width: calc(100% - 5.28rem);padding-right: 1.6rem;}
.solxqGs-imgs{width: 5.28rem;}
.solxqGs-imgs .img{width: 100%;height: 4.8rem;}
.solxqGs-imgs .img img{max-height: 100%;}
.solxqGs-imgs .swiper-pagination{position: relative;font-size: 0;width: 100%;bottom: 0;margin-top: max(20px,0.3rem);}
.solxqGs-imgs .swiper-pagination-bullet{width: 8px;height: 8px;background: transparent;opacity: 1;margin: 0 12px !important;position: relative;}
.solxqGs-imgs .swiper-pagination-bullet::before, .solxqGs-imgs .swiper-pagination-bullet::after{content: "";position: absolute;border-radius: 50%;}
.solxqGs-imgs .swiper-pagination-bullet::before{width: 100%;height: 100%;background: #767676;transition: background .4s ease;top: 0;left: 0;}
.solxqGs-imgs .swiper-pagination-bullet::after{border: 2px solid #3059da;width: 18px;height: 18px;top: 50%;left: 50%;margin: -9px 0 0 -9px;transform: scale(0);transition: transform .4s ease, opacity .4s ease;opacity: 0}
.solxqGs-imgs .swiper-pagination-bullet.swiper-pagination-bullet-active::before{background: #3059da;}
.solxqGs-imgs .swiper-pagination-bullet.swiper-pagination-bullet-active::after{opacity: 1;transform: scale(1);}
.solxqGn{background: #0f1f2f;z-index: 4;}
.solxqGn-list{width: 100%;}
.solxqGn-list li{background: #18293b;transition: background .4s ease;}
.solxqGn-list li .cont .ico{width: max(36px,0.58rem);height: max(36px,0.58rem);border-radius: max(5px,0.1rem);border: 2px solid #fff;transition: border .4s ease;}
.solxqGn-list li .cont .ico img{max-width: max(22px,0.4rem);max-height: max(22px,0.4rem);transition: opacity .4s ease;}
.solxqGn-list li:hover{background: #3059da;}
.solxqGn-loop .swiper-pagination, .solxqCj-loop .swiper-pagination{position: relative;font-size: 0;width: 100%;bottom: 0;}
.solxqGn-loop .swiper-pagination-bullet, .solxqCj-loop .swiper-pagination-bullet{width: max(10px,0.16rem);height: max(10px,0.16rem);border: max(2px,0.03rem) solid #ecf1ff;background: transparent;opacity: 0.5;margin: 0 max(4px,0.08rem) !important;transition: border .4s ease, opacity .4s ease;}
.solxqGn-loop .swiper-pagination-bullet.swiper-pagination-bullet-active, .solxqCj-loop .swiper-pagination-bullet.swiper-pagination-bullet-active{border-color: #3059da;opacity: 1;}
.solxqCj{background: #ecf1ff;overflow: visible;z-index: 2;}
.solxqCj .contain{position: relative;z-index: 4;transform: translate3d(0,0,10px);}
.solxqCj{width: 100%;}
.solxqCj-loop{width: 100%;}
.solxqCj-link{display: block;width: 100%;text-align: center;padding-top: 10px;}
.solxqCj-link .img{width: 2.78rem;height: 2.78rem;margin: 0 auto;position: relative;}
.solxqCj-link .img img{width: 2.44rem;height: 2.44rem;border-radius: 50%;position: relative;z-index: 4;transform: translate3d(0,0,4px);}
.solxqCj-link .img::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: url("../images/pages/solxq3sd.png") no-repeat center/auto 100%;animation: solxqCjRun 24s linear infinite;opacity: 0.2;transition: opacity .4s ease;}
.solxqCj-loop .swiper-slide:nth-child(even) .solxqCj-link .img::before{animation: solxqCjRun2 24s linear infinite;}
@keyframes solxqCjRun{0%{transform: rotate(0);}100%{transform: rotate(-360deg);}}
@keyframes solxqCjRun2{0%{transform: rotate(0);}100%{transform: rotate(360deg);}}
.solxqCj-link:hover .img::before{opacity:1;}
.solxqCj-loop .swiper-pagination-bullet{opacity: 1;border-color: #9195a1;}
/* -- */
.solxqCj-ball{width: 100%;position: absolute;height: 150%;top: min(-36px,-0.8rem);left: 0;pointer-events: none;z-index: 2;overflow: hidden;}
.solxqCj-ball-bg{position: absolute;width: 100%;height: 100%;top: 0;left: 0;display: flex;justify-content: center;padding-right: 1rem;opacity: 0.12;}
.solxqCj-ball-bg>div{height: 7rem;}
.solxqCj-ball-bg img{width: auto;position: relative;height: 100%;}
.solxqCj-ball-bg-1{transform-origin: 52% 52%;animation: boxRotate 6s linear infinite;}
.solxqCj-ball-bg-1 img{animation: innerRotate 6s linear infinite;}
.solxqCj-ball-bg-2{transform-origin: 52% 52%;animation: boxRotate 4s linear infinite;}
.solxqCj-ball-bg-2 img{animation: innerRotate 4s linear infinite;}
.solxqCj-ball-bg-3{transform-origin: 48% 48%;animation: boxRotate 8s linear infinite;margin-left: 20%;}
.solxqCj-ball-bg-3 img{animation: innerRotate 8s linear infinite;}
@keyframes boxRotate {0% {transform: rotate(0)}to {transform: rotate(1turn)}}
@keyframes innerRotate {0% {transform: rotate(0)}to {transform: rotate(-1turn)}}
/* -- */
.solxqAl{background: #ecf1ff;}
.solxqAl-loop{width: 100%;padding-left: var(--widDb);overflow: hidden;user-select: none;}
.solxqAl-loop-limit{width: 100%;overflow: hidden;border-top-left-radius: max(7px,0.15rem);border-bottom-left-radius: max(7px,0.15rem);position: relative;}
.solxqAl-loop-limit::after{content: "";position: absolute;width: 3.83rem;height: 100%;top: 0;right: 0;z-index: 4;transform: translate3d(0,0,4px);background: linear-gradient(to right,rgba(255,255,255,0) 10%,rgba(255,255,255,1) 100%);pointer-events: none;}
.solxqAl-loop .swiper-container{overflow: visible;width: 12.28rem;margin: 0;}
.solxqAl-loop .swiper-slide{height: auto;}
.solxqAl-link{height: 100%;background: #fff;width: 100%;}
.solxqAl-link .img{width: 4.15rem;overflow: hidden;}
.solxqAl-link .img img{width: 100%;height: 4.3rem;}
.solxqAl-link .img:hover img{transform: scale(1.06);}
.solxqAl-link .cont{width: calc(100% - 4.15rem);padding: max(16px,0.3rem) 0 max(16px,0.3rem) max(20px,0.42rem);}
.solxqAl-link .cont .ico{height: max(42px,0.72rem);display: flex;align-items: center;justify-content: flex-end;}
.solxqAl-link .cont .ico img{max-height: 100%;}
.solxqAl-link .cont .title a{transition: color .4s ease;}
.solxqAl-link .cont .title a:hover{color: #3059da;}
.solxqAl-link .cont .title, .solxqAl-link .cont .text{width: calc(100% - 0.76rem);}
.solxqAl-control{width: 100%;}
.solxqAl-control .contain{align-items: center;justify-content: space-between;}
.solxqAl-control .swiper-pagination{position: relative;bottom: 0;font-size: 0;background: #ced3e1;height: 2px;width: calc(100% - max(90px,1.42rem));}
.solxqAl-control .swiper-pagination span{background: #3059da;}
.solxqAl-control .btn>div{width: max(32px,0.42rem);height: max(32px,0.42rem);border-radius: 50%;overflow: hidden;cursor: pointer;pointer-events: auto;position: relative;display: flex;background: #fff;align-items: center;justify-content: center;font-size: max(14px,0.16rem);color: #3059da;line-height: 1;transition: background .4s ease, color .4s ease;}
.solxqAl-control .btn>div.next{right: 0;transform: rotate(180deg);margin-left: max(8px,0.16rem);}
.solxqAl-control .btn>div:hover{background: #3059da;color: #fff;}

/* 服务支持 */
.serve{background: #fff;width: 100%;overflow: hidden;}
.serve-head{width: 100%;align-items: baseline;justify-content: space-between;}
.serve-head .hint{align-items: center;}
.serve-head .hint i{width: max(28px,0.36rem);height: max(28px,0.36rem);border-radius: 50%;border: 2px solid #3059da;font-size: max(14px,0.18rem);font-weight: normal;line-height: 1;margin-right: max(8px,0.18rem);}
.serve-head .hint.white i{border-color: #fff;}
.serveXs{background: #fff;}
.serveXs-list{width: 100%;}
.serveXs-list li{background: #f9f9f9;position: relative;}
.serveXs-list li::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: #3059da url("../images/pages/serve1sd.png") no-repeat center bottom/100% auto;opacity: 0;transition: opacity .4s ease;}
.serveXs-list li .cont{position: relative;z-index: 4;color: #fff;}
.serveXs-list li .cont .text{min-height: max(60px,0.72rem);}
.serveXs-list li .cont .ico{width: max(40px,0.72rem);height: max(40px,0.72rem);border-radius: 50%;background: #fff;}
.serveXs-list li .cont .ico img{max-width: max(22px,0.4rem);max-height: max(22px,0.4rem);}
.serveXs-list li:hover::before{opacity: 1;}
.serveXs-list li:hover .cont .title{color: #fff;}
.serveXs-list li:hover .cont .text{color: #fff;}
.serveJs{background: #1e1d23;}
.serveJs .serve-head{position: absolute;top: max(32px,0.94rem);left: 0;}
.serveJs-imgs{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.serveJs-imgs img{position: absolute;width: 100%;height: 100%;top: 0;left: 0;opacity: 0;transition: opacity .4s ease;}
.serveJs-imgs img.active{opacity: 1;}
.serveJs .contain{position: relative;z-index: 4;transform: translate3d(0,0,10px);}
.serveJs-list{width: 100%;}
.serveJs-list li{flex: 1;position: relative;border-left: 1px solid rgba(255,255,255,0.1);padding: 0 max(12px,0.2rem) 1.7rem;height: 8rem;display: flex;align-items: flex-end;}
.serveJs-list li:last-child{border-right: 1px solid rgba(255,255,255,0.1);}
.serveJs-list li::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(48,89,218,1) 100%);transform: translateY(50%);opacity: 0;transition: transform .4s ease, opacity .4s ease;}
.serveJs-list li .cont{position: relative;z-index: 4;transform: translate3d(0,0,4px);color: #fff;text-align: center;width: 100%;transition: transform .6s ease;}
.serveJs-list li .cont .num{color: #fff;line-height: 0.8;transition: all .4s ease;}
.serveJs-list li .cont .dot{width: 6px;height: 6px;border-radius: 50%;border: 2px solid #fff;margin-left: auto;margin-right: auto;}
.serveJs-list li .cont .text{display: none;}
@media all and (min-width:1000px) {
    .serveJs-list li:hover::before{transform: translateY(0);opacity: 1;}
    .serveJs-list li:hover .cont{transform: translateY(min(-24px,-0.6rem));}
    .serveJs-list li:hover .num{-webkit-text-fill-color: transparent;background-clip: text;color: transparent;-webkit-text-stroke: 1px #fff;background: transparent;font-size: max(24px,0.5rem);}
}
.serveXz{background: #fff;}
.serveXz-menu{width: 100%;border: 1px solid #f5f5f5;user-select: none;}
.serveXz-menu-item{width: 100%;margin-top: max(12px,0.24rem);}
.serveXz-menu-item:first-child{margin-top: 0;}
.serveXz-menu-item .name{width: max(40px,0.76rem);}
.serveXz-menu-item .text{width: calc(100% - max(40px,0.76rem));}
.serveXz-menu-item .text a{width: calc(100%/6);display: flex;align-items: center;transition: color .4s ease;}
.serveXz-menu-item .text a i{width: 14px;height: 14px;border-radius: 50%;border: 1px solid #ddd;margin-left: max(6px,0.12rem);display: flex;align-items: center;justify-content: center;transition: border .4s ease;}
.serveXz-menu-item .text a i::before{content: "";width: 8px;height: 8px;border-radius: 50%;background: #3059da;opacity: 0;transform: scale(0);transition: opacity .4s ease, transform .4s ease;}
.serveXz-menu-item .text a.active i, .serveXz-menu-item .text a:hover i{border-color: #3059da;}
.serveXz-menu-item .text a.active i::before{opacity: 1;transform: scale(1);}
.serveXz-menu-item .text a:hover{color: #3059da;}
.serveXz-main{width: 100%;}
.serveXz-head ul, .serveXz-link ul{align-items: center;}
.serveXz-head li, .serveXz-link li{width: max(100px,2.38rem);text-align: center;position: relative;}
.serveXz-head li:first-child, .serveXz-link li:first-child{width: calc(100% - max(200px,4.76rem));text-align: left;}
.serveXz-head{width: 100%;padding: max(8px,0.18rem) 0;border: 1px solid #f5f5f5;background: #fcfcfc;border-top-left-radius: max(5px,0.1rem);border-top-right-radius: max(5px,0.1rem);}
.serveXz-head li{font-size: max(15px,0.18rem);color: #222;font-weight: 700;}
.serveXz-head li:first-child{padding: 0 max(20px,0.4rem) 0 max(40px,0.88rem);}
.serveXz-loop{width: 100%;user-select: none;}
.serveXz-link{width: 100%;border-bottom: 1px solid #efefef;padding: max(12px,0.24rem) 0;font-size: max(13px,0.15rem);color: #666;}
.serveXz-link li:first-child{font-size: max(15px,0.18rem);color: #444;padding: 0 max(20px,0.4rem) 0 max(40px,0.88rem);}
.serveXz-link li:first-child i{position: absolute;width: max(40px,0.88rem);left: 0;top: 50%;text-align: center;font-size: max(18px,0.28rem);margin-top: min(-9px,-0.14rem);line-height: 1;}
.serveXz-link li:first-child p{word-break: break-all;}
.serveXz-link li a{display: flex;align-items: center;width: max(80px,1rem);height: max(30px,0.4rem);border-radius: max(15px,0.2rem);color: #060701;margin: 0 auto;justify-content: center;font-size: max(12px,0.14rem);line-height: 1;border: 1px solid #060701;padding-top: 1px;transition: background .4s ease, color .4s ease, border .4s ease;}
.serveXz-link li a i{margin-right: max(4px,0.08rem);font-size: max(14px,0.16rem);}
.serveXz-link li a:hover{background: #3059da;color: #fff;border-color: #3059da;}
.serveXz-loop .swiper-pagination{bottom: 0;font-size: 0;position: relative;}
.serveXz-loop .swiper-pagination-bullet{width: max(8px,0.14rem);height: max(8px,0.14rem);border: 2px solid #ccc;opacity: 1;background: transparent;margin: 0 max(4px,0.06rem) !important;transition: border .4s ease, opacity .4s ease, background .4s ease;}
.serveXz-loop .swiper-pagination-bullet.swiper-pagination-bullet-active{border-color: #3059da;opacity: 1;background: #3059da;}

/* 核心技术 */
.tech{background: #fff;width: 100%;overflow: hidden;}
.tech-head{width: 100%;}
.tech-head .title, .tech-head .text{max-width: max(600px,7.1rem);margin-left: auto;margin-right: auto;}
.tech-img{width: 100%;}
.techOs{background: #fff;}
.techJs{background: #f6f7fb;}
.techJs .contain{position: relative;z-index: 4;transform: translate3d(0,0,10px);}
.techJs-wave{width: 100%;height: 100%;position: absolute;bottom: -2rem;left: 0;}
.techXt{background: #fff;}
.techXt .contain{width: 100%;padding: 0 max(20px,1rem);}
.techKf{background: #fff;}
.techKf-img{background: #f6f7fb;}

/* 加入我们 */
.join{background: #f4f7fa;width: 100%;overflow: hidden;}
.joinSearch input{width: 100%;height: max(40px,0.64rem);background: #fff;border: 1px solid #e7eaf0;padding: 0 max(50px,0.8rem) 0 max(12px,0.28rem);transition: border .4s ease;}
.joinSearch input::-webkit-input-placeholder{color: #777;}
.joinSearch .btn{user-select: none;cursor: pointer;width: max(50px,0.8rem);height: 100%;position: absolute;right: 0;top: 0;}
.joinSearch .btn:hover{color: #3059da;}
.joinSearch input:focus{border-color: rgba(48, 89, 218, 0.6);}
.joinFlex{justify-content: space-between;align-items: flex-start;}
.joinLeft{width: max(260px,3.6rem);margin-right: 0.2rem;}
.joinLeft-title{border-bottom: 1px solid #e2e5e9;width: 85%;}
.joinNav-module:first-child{margin-top: 0;}
.joinNav-item{user-select: none;cursor: pointer;}
.joinNav-item .icon{border: 2px solid #bfbfbf;color: transparent;font-size: max(10px,0.12rem);font-weight: 700;margin-right: max(8px,0.18rem);width: max(16px,0.22rem);height: max(16px,0.22rem);line-height: 1;transition: border .4s ease, background .4s ease, color .4s ease;}
.joinNav-item .text{display: flex;flex: 1;transition: color .4s ease;}
.joinNav-item:hover .icon{border-color: #3059da;}
.joinNav-item.active .icon{background: #3059da;border-color: #3059da;color: #fff;}
.joinRight{flex: 1;}
.joinResult{margin-left: -10px;}
.joinResult .item{padding: max(8px,0.14rem) max(12px,0.2rem); display: none;align-items: center;justify-content: center;border-radius: 5px;border: 1px solid #e9edf1;background: #fff;margin: 16px 0 0 10px;}
.joinResult .item a{display: block;margin-left: max(12px,0.16rem);font-size: max(10px,0.12rem);transition: all .4s ease;}
.joinResult .item a:hover{color: #3059da;transform: rotate(180deg);}
.joinResult .item.active{display: flex;}
.joinInfo-item{padding: 0 0.6rem 0.45rem; background: #fff;border: 1px solid #fff;transition: all .2s ease;}
.joinInfo-menu{align-items: center;padding: 0.38rem 0 0.26rem;user-select: none;cursor: pointer;}
.joinInfo-menu .desc{flex: 1;padding-right: 15px;}
.joinInfo-menu .btn{color: #666;align-items: center;line-height: 1;transition: color .4s ease;}
.joinInfo-menu .btn i{transform: rotate(180deg);font-size: 12px;}
.joinInfo-menu .btn span{margin-right: max(6px,0.12rem);}
.joinInfo-menu:hover .btn{color: #3059da;}
.joinInfo-item:hover{border-color: rgba(48, 89, 218, 0.6);}
.joinInfo-item.active{border-color: #3059da;}
.joinInfo-item.active .joinInfo-menu .btn{color: #3059da;}
.joinInfo-item.active .joinInfo-menu .btn i{transform: rotate(0deg);}
.joinInfo-drop{max-height: max(90px,1.15rem);overflow: hidden;}
.joinInfo-edit h1,.joinInfo-edit h2,.joinInfo-edit h3,.joinInfo-edit h4,.joinInfo-edit h5,.joinInfo-edit h6{font-size: max(15px,0.18rem);color: #222;margin-bottom: max(8px,0.16rem);}
.joinInfo-item.active .joinInfo-drop{max-height: none;overflow: visible;}
.joinInfo-btn{width: 100%;}
.joinInfo-btn a{margin-right: max(6px,0.12rem);width: max(100px,2rem);}
.joinInfo-btn a.comBtn span{font-size: max(14px,0.16rem);}
.joinInfo-btn a:last-child{margin-right: 0;background: #222;}
.joinInfo-btn a:last-child:hover{box-shadow: 0 0 max(10px,0.24rem) 0 rgba(34, 34, 34, 0.5);}
/* -- */
.joinPop{display: none; z-index: 99999;position: fixed;left: 0;top: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, .5);}
.joinPop-contain{width: max(450px,6rem);max-width: 92%;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);background: #fff;padding: 0.6rem 0.8rem;}
.joinPop-close{position: absolute;right: 0.25rem;top: 0.2rem;user-select: none;cursor: pointer;width: max(22px,0.3rem);height: max(22px,0.3rem);border-radius: 50%;border: 1px solid #000;font-size: max(12px,0.14rem);line-height: 1;}
.joinPop-close:hover{border-color: #3059da;background: #3059da;color: #fff;transform: rotate(180deg);}
.joinPop-form{width: 100%;}
.joinPop-form-item{margin: max(8px,0.16rem) 0 0;width: 100%;position: relative;}
.joinPop-form-item input, .joinPop-form-item textarea{width: 100%;border-radius: max(5px,0.1rem);color: #222;height: max(40px,0.5rem);background: #fbfbfb;border: 1px solid #e6e6e6;padding: 0 max(12px,0.2rem);display: block;transition: border .4s ease;}
.joinPop-form-item input:focus, .joinPop-form-item textarea:focus{border-color: rgba(48, 89, 218, 0.6);}
.joinPop-form-item .upload {user-select: none;cursor: pointer;position: absolute;right: 1px;top: 1px;width: max(70px,0.98rem);height: calc(100% - 2px);background: #f0f0f0;border-left: 1px solid #eaeaea;border-radius: 0 max(5px,0.1rem) max(5px,0.1rem) 0;}
.joinPop-form-item .upload:hover{background: #3059da;color: #fff;}
.joinPop-btn a.comBtn{height: max(40px,0.5rem);}
.joinPop-btn a.comBtn span{font-size: max(14px,0.16rem);}
.layui-upload-file{display:none !important;}

/* 新闻-列表 */
.news{background: #fff;width: 100%;overflow: hidden;}
.newsMa{width: 100%;}
.newsMa-link{width: 100%;background: #f9f9f9;align-items: center;}
.newsMa-link .img{width: 6.88rem;overflow: hidden;}
.newsMa-link .img img{width: 100%;height: 4.38rem;}
.newsMa-link .img:hover img{transform: scale(1.04);}
.newsMa-link .cont{width: calc(100% - 6.88rem);padding: max(20px,0.32rem) max(16px,0.64rem);}
.newsMa-link .cont .title a{transition: color .4s ease;}
.newsMa-link .cont .title a:hover{color: #3059da;}
.newsLb-list{width: 100%;}
.newsLb-main{display: block;width: 100%;height: 100%;background: #f9f9f9;position: relative;border: 1px solid #eceff3;transition: border .4s ease;}
.newsLb-main .img{width: 100%;height: 2.4rem;overflow: hidden;}
.newsLb-main .img img{width: 100%;height: 100%;}
.newsLb-main .cont{position: relative;overflow: hidden;width: 100%;height: calc(100% - 2.4rem);}
.newsLb-main .cont *{position: relative;z-index: 2;}
.newsLb-main .cont::after{content: "";position: absolute;border-left: max(36px,0.76rem) solid transparent;border-bottom: max(36px,0.76rem) solid #3059da;width: 0;height: 0;right: 0;bottom: 0;z-index: 1;transform: translate(max(36px,0.76rem),max(36px,0.76rem));transition: transform .6s ease;}
.newsLb-main:hover .img img{transform: scale(1.1);}
.newsLb-main:hover .cont::after{transform: translate(0,0);}
.newsLb-main:hover .cont .title{color: #3059da;}

/* 新闻-详情 */
.newsxq{background: #fff;/*background: linear-gradient(to bottom,#f1f7fc,#fafbfe);*/width: 100%;overflow: hidden;}
.newsxq-main{width: calc(100% - 4.24rem);padding-right: max(36px,0.78rem);position: relative;}
.newsxq-main::before{content: "";position: absolute;width: 1px;height: calc(100% + 40vh);top: -25vh;background: #e6edf2;right: 0;pointer-events: none;}
.newsxq-head .hint span{margin-right:max(10px,0.24rem)}
.newsxq-head .hint span:last-child{margin-right:0}
.newsxq-cont{width: 100%;}
.newsxq-cont img, .newsxq-cont video, .newsxq-cont table{height: auto !important;max-width: 100%;}
.newsxq-share{width: 100%;align-items: center;}
.newsxq-share .hint{margin-right: max(8px,0.16rem);}
.newsxq-share .share{display: flex;}
.newsxq-share .share a{width: max(30px,0.44rem);height: max(30px,0.44rem);margin-right: max(6px,0.14rem);border-radius: 50%;border: 1px solid #666;color: #666;display: flex;align-items: center;justify-content: center;line-height: 1;font-size: max(14px,0.2rem);}
.newsxq-share .share a.icon-wechat{border-color: #8dc35c;color: #8dc35c;}
.newsxq-share .share a.icon-linkedin{border-color: #5777b2;color: #5777b2;}
.newsxq-share .share a.icon-twitter{border-color: #89aee9;color: #89aee9;}
.newsxq-share .share a.icon-facebook{border-color: #6c6c9a;color: #6c6c9a;}
.newsxq-share .share a.icon-google{border-color: #cf5c4f;color: #cf5c4f;}
.newsxq-share .share a.icon-weibo{border-color: #ee7f4f;color: #ee7f4f;}
/* -- */
#toShare .icon-wechat{position: relative;}
#toShare .icon-wechat .wechat-qrcode{display: none;border: 1px solid #efeeee;position:absolute;z-index:9;top:-160px;left:50%;margin-left: -62px;width:124px;height:148px;text-align:center;background-color:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,0.1);transition:all 300ms;}
#toShare .icon-wechat .wechat-qrcode.bottom {top:40px;left:-84px;}
#toShare .icon-wechat .wechat-qrcode.bottom:after {display:none;}
#toShare .icon-wechat .wechat-qrcode h4{font-weight:normal;height:26px;line-height:26px;font-size:12px; background-color:#f4f7fa; margin:0;padding:0;color: #777; }
#toShare .icon-wechat .wechat-qrcode .qrcode{width:100px; margin:10px auto;}
#toShare .icon-wechat .wechat-qrcode .qrcode table{margin:0!important;}
#toShare .icon-wechat .wechat-qrcode .help{display: none;}
#toShare .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;bottom:-13px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color:#fff transparent transparent transparent}
#toShare .icon-wechat:hover .wechat-qrcode{display: block;}
/* -- */
.newsxq-btn{width: 100%;}
.newsxq-btn a{display: flex;align-items: center;border-radius: max(5px,0.1rem);background: #f9f9f9;color: #63666c;margin-top: max(6px,0.1rem);padding: max(10px,0.2rem) max(16px,0.32rem);transition: color .4s ease;}
.newsxq-btn a:first-child{margin-top: 0;}
.newsxq-btn a:hover{color: #3059da;}
.newsxq-btn a p{max-width: calc(100% - max(60px,0.7rem));overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.newsxq-side{width: 4.24rem;padding-left: max(30px,0.68rem);}
.newsxq-side-list{width: 100%;}
.newsxq-side-list .newsLb-main .img{height: 1.84rem;}
.newsxq-side-list .newsLb-main .cont::after{border-left: max(36px,0.66rem) solid transparent;border-bottom: max(36px,0.66rem) solid #3059da;transform: translate(max(36px,0.66rem),max(36px,0.66rem));}
.newsxq-side-list .newsLb-main:hover .cont::after{transform: translate(0,0);}

/* 关于我们 */
.about{background: #fff;width: 100%;overflow: hidden;}
.aboutJj{background: #cfd9e8 url("../images/pages/aboutJs_bg.jpg") no-repeat center/cover;}
.aboutJj-main{width: 100%;align-items: center;}
.aboutJj-main .cont{width: calc(100% - 7.19rem);padding-right: max(24px,0.5rem);}
.aboutJj-main .img{width: 7.19rem;position: relative;box-shadow: 0px max(10px,0.2rem) max(16px,0.32rem) 2px rgba(48, 89, 218, 0.08);}
.aboutJj-main .img .play{width: max(34px,0.4rem);height: max(34px,0.4rem);border-radius: 50%;background: #3059da;color: #fff;position: absolute;z-index: 4;left: max(16px,0.34rem);bottom: max(12px,0.14rem);line-height: 1;cursor: pointer;font-size: max(14px,0.16rem);}
.aboutJj-list{width: 100%;}
.aboutJj-list li{flex: 1;text-align: center;}
.aboutJj-list li .ico{height: max(36px,0.54rem);display: flex;align-items: flex-end;justify-content: center;}
.aboutJj-list li .ico img{max-height: 100%;}
.aboutSm{background: #0b0b0c;}
.aboutSm-imgs{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.aboutSm-imgs img{position: absolute;width: 100%;height: 100%;top: 0;left: 0;opacity: 0;transition: opacity .4s ease;}
.aboutSm-imgs img.active{opacity: 1;}
.aboutSm-imgs::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0,0,0,0.37);z-index: 1;}
.aboutSm-list{width: 100%;position: relative;z-index: 4;transform: translate3d(0,0,10px);}
.aboutSm-list li{flex: 1;position: relative;border-left: 1px solid rgba(255,255,255,0.1);padding: max(40px,1.3rem) 0 max(30px,0.76rem);display: flex;align-items: flex-end;}
.aboutSm-list li:first-child{border-left: none;}
.aboutSm-list li::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(48,89,218,0.9);opacity: 0;transition: opacity .4s ease;}
.aboutSm-list li .cont{position: relative;z-index: 4;transform: translate3d(0,0,4px);color: #fff;width: 100%;display: flex;flex-direction: column;justify-content: space-between;height: 5.6rem;}
.aboutSm-list li .cont .top, .aboutSm-list li .cont .ico{padding: 0 max(22px,0.48rem);position: relative;}
.aboutSm-list li .cont .ico{opacity: 0;transition: opacity .4s ease;}
.aboutSm-list li .cont .ico img{max-width: max(34px,0.44rem);max-height: max(34px,0.44rem);}
.aboutSm-list li .cont .top::before{content: "";position: absolute;top: 0;left: 0;width: max(2px,0.03rem);background: #fff;height: 100%;transform: scaleY(0);opacity: 0;transition: transform .4s ease,opacity .4s ease;transform-origin: top center;}
.aboutSm-list li .cont .top .text{display: none;max-width: 70%;}
.aboutSm-list li:hover::before{opacity: 1;}
.aboutSm-list li:hover .cont .top::before{transform: scaleY(1);opacity: 1;}
.aboutSm-list li:hover .cont .ico{opacity: 1;}
.aboutJs{background: #fff url("../images/pages/aboutJs_bg.jpg") no-repeat center/cover;}
.aboutJs .contain{position: relative;}
.aboutJs .about-title{position: absolute;top: 0;left: 0;}
.aboutJs-loop{width: 100%;flex-direction: row-reverse;align-items: flex-end;}
.aboutJs-loop .gallery{width: 7.57rem;}
.aboutJs-loop .gallery .swiper-container{height: 6.09rem;}
.aboutJs-gallery-link{width: 100%;height: 100%;position: relative;-webkit-mask-image: url("../images/pages/aboutJs_sd.png");mask-image: url("../images/pages/aboutJs_sd.png");mask-size: 100% 100%;}
.aboutJs-gallery-link img{width: 100%;height: 100%;}
.aboutJs-gallery-link::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: url("../images/pages/aboutJs_yy.png") repeat-x left bottom/auto 100%;z-index: 1;}
.aboutJs-gallery-link .cont{position: absolute;z-index: 4;width: 100%;position: absolute;left: 0;bottom: 0;color: #fff;}
.aboutJs-gallery-link .cont .name{align-items: baseline;}
.aboutJs-gallery-link .cont .name span{margin-right: max(6px,0.1rem);}
.aboutJs-gallery-link .cont .text{opacity: 0;transition: opacity .3s cubic-bezier(.435,.25,.15,.965),transform .3s cubic-bezier(.435,.25,.15,.965);transform: translateY(max(30px,0.6rem));}
.aboutJs-loop .gallery .swiper-slide-active .aboutJs-gallery-link .cont .text{opacity: 1;transition: opacity .5s cubic-bezier(.435,.25,.15,.965) .4s, transform .5s cubic-bezier(.435,.25,.15,.965) .4s;transform: translateY(0);}
.aboutJs-loop .thumbs{width: calc(100% - 7.57rem);padding: 0 max(30px,0.7rem) max(46px,0.8rem) 0;}
.aboutJs-loop .thumbs-click{width: 100%;user-select: none;}
.aboutJs-loop .thumbs-click .imgs{position: relative;width: 100%;padding: 0 0 max(6px,0.12rem) max(6px,0.12rem);background: url("../images/pages/aboutJs_sd.png") no-repeat left bottom/calc(100% - max(6px,0.12rem)) auto;transition: background .4s ease;}
.aboutJs-loop .thumbs-click .imgs .img{width: 100%;height: 100%;position: relative;-webkit-mask-image: url("../images/pages/aboutJs_sd.png");mask-image: url("../images/pages/aboutJs_sd.png");mask-size: 100% 100%;}
.aboutJs-loop .thumbs-click .imgs .img img{width: 100%;height: 1.46rem;}
.aboutJs-loop .thumbs-click .cont{width: 100%;}
.aboutJs-loop .thumbs-click.active .cont .name{color: #3059da;}
.aboutJs-loop .thumbs-click.active .imgs{background-image: url("../images/pages/aboutJs_sdH.png");}
.aboutJs-btn>div{width: max(32px,0.46rem);height: max(32px,0.46rem);border-radius: 50%;overflow: hidden;cursor: pointer;pointer-events: auto;position: relative;display: flex;background: #fff;align-items: center;justify-content: center;font-size: max(14px,0.16rem);color: #3059da;line-height: 1;transition: background .4s ease, color .4s ease;}
.aboutJs-btn>div.next{right: 0;transform: rotate(180deg);margin-left: max(10px,0.2rem);}
.aboutJs-btn>div:hover{background: #3059da;color: #fff;}
.aboutLc{background: #0f0e56 url("../images/pages/aboutLc.jpg") no-repeat center/cover;}
.aboutLc-loop{width: 100%;}
.aboutLc-loop .swiper-container{overflow-x: clip;overflow-y: visible;}
.aboutLc-loop .swiper-slide{height: max(320px,4.5rem);display: flex;align-items: flex-end;}
.aboutLc-main{width: 100%;color: #fff;}
.aboutLc-main .title{letter-spacing:max(6px,0.12rem)}
.aboutLc-main .cont{padding: 0 0 max(16px,0.36rem) max(14px,0.3rem);position: relative;}
.aboutLc-main .cont::before, .aboutLc-main .cont::after{content: "";position: absolute;width: 1px;top: 0;left: 0;}
.aboutLc-main .cont::before{height: 100%;background: linear-gradient(to bottom,rgba(255,255,255,0.2) 70%,transparent);}
.aboutLc-main .cont::after{z-index: 1;height: max(22px,0.44rem);background: #fff;}
.aboutLc-btn{justify-content: center;}
.aboutLc-btn>div{width: max(32px,0.46rem);height: max(32px,0.46rem);border-radius: 50%;overflow: hidden;cursor: pointer;pointer-events: auto;position: relative;display: flex;background: #fff;align-items: center;justify-content: center;font-size: max(14px,0.16rem);color: #3059da;line-height: 1;transition: background .4s ease, color .4s ease;}
.aboutLc-btn>div.next{right: 0;transform: rotate(180deg);margin-left: max(10px,0.2rem);}
.aboutLc-btn>div:hover{background: #3059da;color: #fff;}
.aboutRy{background: #fff;}
.aboutRy-wrap{width: 100%;}
.aboutRy-items{width: 100%;display: none;align-items: center;flex-direction: row-reverse;flex-wrap: wrap;}
.aboutRy-items.active{display: flex;}
.aboutRy-imgs{width: 5.13rem;height: 3.38rem;position: relative;}
.aboutRy-imgs .li{position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;opacity: 0;transition: opacity .4s ease;}
.aboutRy-imgs .li img{max-width: 100%;max-height: 100%;box-shadow: 0px max(10px,0.2rem) max(16px,0.32rem) 2px rgba(48, 89, 218, 0.1);}
.aboutRy-imgs .li.active{opacity: 1;}
.aboutRy-loop{width: calc(100% - 5.13rem);padding-right: 1.6rem;position: relative;user-select: none;}
.aboutRy-loop .scroll{height: 4.26rem;overflow: auto;position: relative;}
.aboutRy-loop .scroll::-webkit-scrollbar{width: 0;height: 0}
.aboutRy-loop::before{content: "";position: absolute;width: max(3px,0.06rem);left: 0;top: 0;height: 100%;background: #e9ecee;border-radius: max(3px,0.06rem);}
.aboutRy-link{width: 100%;position: relative;height: 20%;padding-left: max(20px,0.42rem);align-items: center;justify-content: space-between;cursor: pointer;}
.aboutRy-link .year{color: #d5d5d5;opacity: 0;}
.aboutRy-link::before{content: "";position: absolute;width: calc(100% - max(20px,0.42rem));height: 2px;bottom: 0;right: 0;background: #f4f4f1;}
.aboutRy-link:hover .title, .aboutRy-link.active .title{color: #3059da;}
.aboutRy-link::after{content: "";position: absolute;width: max(3px,0.06rem);left: 0;top: 0;height: 100%;background: #3059da;border-radius: max(3px,0.06rem);opacity: 0;transform: scaleY(0);transition: opacity .4s ease, transform .4s ease;}
.aboutRy-link.active::after{opacity: 1;transform: scaleY(1);}
.aboutRy-link.active .year{opacity: 1;}
.aboutHb{background: #f6f6fe;}
.aboutHb-bg .bg img{width: 100%;}
.aboutHb-bg .line{position: absolute;left: 2%;bottom: 0;width: 0%;overflow: hidden;transition: all .4s ease;}
.aboutHb-bg .line img{width: 95.8vw;max-width: unset;}
.aboutHb-wrap{z-index: 2;position: absolute;left: 0;top: 0;width: 100%;height: 100%;}
.aboutHb-logo{padding: 0 1.1rem;}
.aboutHb-logo .swiper-slide{display: flex;justify-content: center;align-items: center;}
.aboutHb-logo-slide{width: 1.4rem;height: 1.4rem;background: #fff;user-select: none;cursor: pointer;border-radius: 50%;transition: background .4s ease;}
.aboutHb-logo-slide img{transition: all .4s ease;max-width: 70%;max-height: 60%;position: relative;z-index: 3;}
.aboutHb-logo-slide:hover, .aboutHb-logo-slide.active{background: #3059da;}
.aboutHb-logo-slide.active img,.aboutHb-logo-slide:hover img{filter: brightness(0) invert(1);}
.aboutHb-desc-box{position: absolute;left: 50%;top: 65%;width: max(360px,5.8rem);margin-left: min(-180px,-2.9rem);z-index: 5;}
.aboutHb-btn{justify-content: center;}
.aboutHb-btn>div{width: max(32px,0.46rem);height: max(32px,0.46rem);border-radius: 50%;overflow: hidden;cursor: pointer;pointer-events: auto;position: relative;display: flex;background: #fff;align-items: center;justify-content: center;font-size: max(14px,0.16rem);color: #3059da;line-height: 1;transition: background .4s ease, color .4s ease;}
.aboutHb-btn>div.next{right: 0;transform: rotate(180deg);margin-left: max(10px,0.2rem);}
.aboutHb-btn>div:hover{background: #3059da;color: #fff;}
.aboutLx{background: #fff;}
.aboutLx-wrap{width: 100%;align-items: center;}
.aboutLx-map{width: 8.3rem;position: relative;}
.aboutLx-map img.bg{width: 100%;}
.aboutLx-map-dot{position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 4;}
.aboutLx-map-dot .dot{position: absolute;width: 1px;height: 1px;}
.aboutLx-map-dot .dot i{position: absolute;width: max(2px,0.06rem);height: max(2px,0.06rem);background: #3059da;border-radius: 50%;top: 50%;left: 50%;margin: min(-1px,-0.03rem) 0 0 min(-1px,-0.03rem);}
.aboutLx-map-dot .dot i::before,.aboutLx-map-dot .dot i::after {content: "";display: block;width: 100%;height: 100%;background: rgba(48, 89, 218, 0.6);border-radius: 50%;position: absolute;top: 0;left: 0;animation: aboutLxRun 2s linear infinite;opacity: 0;}
.aboutLx-map-dot .dot i::before {animation-delay: .6s !important;}
.aboutLx-map-dot .dot i::after {animation-delay: 0s !important;}
.aboutLx-map-dot .dot.on i{background: #ef0f0f;width: max(4px,0.12rem);height: max(4px,0.12rem);margin: min(-2px,-0.06rem) 0 0 min(-2px,-0.06rem);}
.aboutLx-map-dot .dot.on i::before,.aboutLx-map-dot .dot.on i::after{background: rgba(239, 15, 15, 0.6);animation: aboutLxRun2 2s linear infinite;}
@keyframes aboutLxRun{0%{opacity:0;transform:scale(.1)}5%{opacity:1}to{opacity:0;transform:scale(6)}}
@keyframes aboutLxRun2{0%{opacity:0;transform:scale(.1)}5%{opacity:1}to{opacity:0;transform:scale(5)}}
/* -- */
.aboutLx-map-dot .dot.dot1{top: 41%;left: 79%;}
.aboutLx-map-dot .dot.dot2{top: 50.5%;left: 78%;}
.aboutLx-map-dot .dot.dot3{top: 22%;left: 4%;}
.aboutLx-map-dot .dot.dot4{top: 9%;left: 37%;}
.aboutLx-map-dot .dot.dot5{top: 38%;left: 20%;}
.aboutLx-map-dot .dot.dot6{top: 74%;left: 31%;}
.aboutLx-map-dot .dot.dot7{top: 20%;left: 72%;}
.aboutLx-map-dot .dot.dot8{top: 28%;left: 58%;}
.aboutLx-map-dot .dot.dot9{top: 23%;left: 87%;}
.aboutLx-map-dot .dot.dot10{top: 44%;left: 69%;}
.aboutLx-map-dot .dot.dot11{top: 54%;left: 47%;}
.aboutLx-map-dot .dot.dot12{top: 69%;left: 54%;}
.aboutLx-map-dot .dot.dot13{top: 78%;left: 84%;}
.aboutLx-map-dot .dot.dot14{top: 30%;left: 77%;}
.aboutLx-map-dot .dot.dot15{top: 26%;left: 16%;}
.aboutLx-map-dot .dot.dot16{top: 48%;left: 59%;}
/* -- */
.aboutLx-list{width: calc(100% - 8.3rem);}
.aboutLx-list li{width: 100%;margin-top: max(20px,0.48rem);}
.aboutLx-list li:first-child{margin-top: 0;}
.aboutLx-list li .title{align-items: baseline;}
.aboutLx-list li .title span{margin-right: max(6px,0.12rem);}
.aboutLx-more{width: 100%;padding-top: max(4px,0.1rem);}
.aboutLx-more .li{width: 50%;margin-top: max(9px,0.18rem);display: flex;align-items: center;}
.aboutLx-more .li:first-child{width: 100%;}
.aboutLx-more .li .ico{width: max(34px,0.4rem);height: max(34px,0.4rem);border: 2px solid #eaeefb;line-height: 1;font-size: max(16px,0.18rem);color: #3059da;border-radius: 50%;}
.aboutLx-more .li .cont{width: calc(100% - max(32px,0.4rem));padding-left: max(10px,0.2rem);}





/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px){
    /* 1600 × (900) */
}

@media all and (max-width:1590px){
    /* 1440 × (700)  */
    .proxqJs-imgs .swiper-pagination-bullet, .solxqGs-imgs .swiper-pagination-bullet{width: 6px;height: 6px;margin: 0 10px !important;}
    .proxqJs-imgs .swiper-pagination-bullet::after, .solxqGs-imgs .swiper-pagination-bullet::after{width: 16px;height: 16px;margin: -8px 0 0 -8px;}
    .serveXz-menu-item .text a i {width: 12px;height: 12px;}
    .serveXz-menu-item .text a i::before {width: 6px;height: 6px;}
}

@media all and (max-width:1430px){
    /* 1360 */
}

@media all and (max-width:1350px){
    /* 1280 */
}

@media all and (max-width:1270px){
    /* 1152 × (700) */
    .proLb-list li {width: calc(100%/2 - max(8px,0.2rem)) !important;}
}

/* ------------------------平板端-------------------------- */
@media all and (max-width:1100px){
    /* 1024 横屏 */
}

/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px){
    /* 移动终端 360 适配 */
    .sonBan-cont .link{width: 100%;}
    .pro{padding-top: 0;background: #f7f9ff;overflow: hidden;}
    .pro::after,.proCd li .menu i,.proCd li .menu::before{display: none;}
    .proCd{width: 100%;position: relative;top: 0;padding: 28px 0;}
    .proCd::before{content: "";position: absolute;width: 200%;left: -50%;height: 100%;top: 0;background: #fff;}
    .proCd ul{display: flex;flex-wrap: wrap;position: relative;z-index: 4;}
    .proCd li{width: 50%;}
    .proCd li .menu:hover a, .proCd li .menu.active a {color: #333;}
    .proCd li .menu a{padding: 2px 0 2px 12px;height: auto;}
    .proCd li .menu::after{transform: scaleX(1);}
    .proLb{width: 100%;padding: 30px 0 0;}
    .proLb-list ul {margin: -12px 0 0 !important;}
    .proLb-list li {width: 100% !important;margin: 12px 0 0 !important;}
    .proWt-list{width: 100%;padding: 0;}
    .proWt-list .items .cont{width: 100%;text-align: center;}
    .proWt-list .items .link{width: 100%;justify-content: center;margin-top: 16px;}
    .proLb-link-btn{position: relative;opacity: 1;visibility: visible;margin-top: 10px;}
    .proLb-link-canshu{opacity: 1 !important;}
    .sonPlace{display: none;}
    .proxqJs-loop{margin-top: 0;padding-right: 0;}
    .proxqJs-info{width: 100%;}
    .proxqJs-imgs{width: 100%;margin-top: 24px;}
    .proxqJs-imgs .img{height: 216px;}
    .proxqJs-imgs .swiper-pagination-bullet, .solxqGs-imgs .swiper-pagination-bullet{width: 4px;height: 4px;}
    .proxqJs-imgs .swiper-pagination-bullet::after, .solxqGs-imgs .swiper-pagination-bullet::after{width: 14px;height: 14px;margin: -7px 0 0 -7px;}
    .proxqLd-list ul {margin: -12px 0 0 !important;}
    .proxqLd-list li {width: 100% !important;margin: 12px 0 0 !important;min-height: 180px;}
    .proxqCj-list li img{height: 120px;}
    .proxqJs-info{text-align: center;}
    .proxqJs-info .link{justify-content: center;}
    .proxqGg-table{overflow-x:auto}
    .proxqGg-table table{width:1000px}
    .sol-list li .img{width: 100%;}
    .sol-list li .img img{height: 158px;}
    .sol-list li .cont{width: 100%;padding: 20px 0 10px;}
    .solxqGs-info{width: 100%;padding: 0;}
    .solxqGs-imgs{width: 100%;margin-top: 24px;}
    .solxqGs-imgs .img{height: 216px;}
    .solxqGn-list li{width: calc(100%/2 - max(8px,0.2rem)) !important;}
    .solxqCj-link .img{width: 140px;height: 140px;}
    .solxqCj-link .img img{width: 110px;height: 110px;}
    .solxqAl-loop{padding: 0 4%;}
    .solxqAl-loop .swiper-container{width: 100%;overflow: hidden;}
    .solxqAl-loop-limit::after{display: none;}
    .solxqAl-link .img{width: 100%;}
    .solxqAl-link .cont{width: 100%;padding: 20px 0 10px;}
    .solxqAl-link .img img{height: 240px;}
    .serve-head .title{width: 100%;}
    .serve-head .hint{width: 100%;margin-top: 10px;}
    .serveXs-list li{width: calc(100%/2 - max(12px,0.3rem)) !important;padding: 16px;}
    .serveJs{padding: 38px 0;}
    .serveJs .serve-head{position: relative;top: 0;}
    .serveJs-list{margin-top: 24px;}
    .serveJs-list li{width: 100%;flex: none;padding: 14px 0;height: auto;border: none;border-bottom: 1px solid rgba(255,255,255,0.1);}
    .serveJs-list li:first-child{border-top: 1px solid rgba(255,255,255,0.1);}
    .serveJs-list li:last-child{border-right: none;}
    .serveJs-list li .cont{text-align: left;}
    .serveJs-list li .cont .dot{margin-left: 0;margin-right: 0;display: none;}
    .serveJs-list li .cont .text{display: block;}
    .serveXz-menu{padding: 8px 12px;}
    .serveXz-menu-item .name{width: 100%;}
    .serveXz-menu-item .text{width: 100%;}
    .serveXz-menu-item .text a {width: calc(100%/2);}
    .serveXz-menu-item .text a i {width: 10px;height: 10px;}
    .serveXz-menu-item .text a i::before {width: 4px;height: 4px;}
    .serveXz-head li{font-size: 12px;}
    .serveXz-link{font-size: 12px;}
    .serveXz-link li a {width: 62px;height: 24px;border-radius: 12px;font-size: 12px;padding-top: 0px;}
    .serveXz-head li, .serveXz-link li{width: 78px;}
    .serveXz-head li:first-child, .serveXz-link li:first-child {width: calc(100% - 156px);}
    .serveXz-link li:first-child {font-size: 12px;padding: 0 12px 0 30px;}
    .serveXz-link li:first-child i {width: 30px;font-size: 16px;margin-top: -9px;}
    .serveXz-head li:first-child{padding: 0 12px 0 30px;}
    .tech-head .title{font-size: 17px;}
    .techKf-text{font-size: 14px;line-height: 20px;}
    .joinNav-list{display: flex;flex-wrap: wrap;}
    .joinNav-item{width: 45%;margin-top: 8px;}
    .joinNav-item:nth-child(odd){width: 55%;}
    .joinRight{flex: none;width: 100%;margin-top: 30px;}
    .joinInfo-menu .btn span{display: none;}
    .joinLeft{width: 100%;margin: 0;}
    .joinLeft-title{width: 100%;}
    .newsMa-link .img{width: 100%;}
    .newsMa-link .img img{height: 210px;}
    .newsMa-link .cont{width: 100%;padding: 18px 14px;}
    .newsLb-list ul{margin: -14px 0 0 !important;}
    .newsLb-list li{width: 100% !important;margin: 14px 0 0 !important;}
    .newsLb-main .img{height: 172px;}
    .newsLb-main .cont {height: calc(100% - 172px);}
    .newsxq-main{width: 100%;padding: 0;}
    .newsxq-side{width: 100%;margin-top: 24px;padding: 0;}
    .newsxq-side-list .newsLb-main .img{height: 172px;}
    .aboutJj-main .cont{width: 100%;padding: 0;}
    .aboutJj-main .img{width: 100%;margin-top: 24px;}
    .aboutJj-list li{flex: auto;}
    .aboutJj-list li .title{font-size: 11px;}
    .aboutJj-list li .text{display: none;}
    .aboutJj-list li .ico{height: 32px;}
    .aboutSm-list li{flex: none;width: 100%;border: none;border-top: 1px solid rgba(255,255,255,0.1);padding: 28px 0;}
    .aboutSm-list li:first-child{border-top: none;}
    .aboutSm-list li .cont{height: auto;}
    .aboutSm-list li .cont .top .text{max-width: 100%;display: block;}
    .aboutSm-list li .cont .ico{opacity: 1;margin-top: 20px;}
    .aboutJs .about-title{position: relative;}
    .aboutJs{padding-top: 44px;}
    .aboutJs-loop{flex-direction: row;margin-top: 24px;}
    .aboutJs-loop .gallery{width: 100%;}
    .aboutJs-loop .gallery .swiper-container{height: 266px;}
    .aboutJs-loop .thumbs{width: 100%;padding: 0;margin-top: 16px;}
    .aboutJs-btn{position: absolute;top: -24px;right: 0;}
    .aboutLc-loop{margin-top: 28px;}
    .aboutLc-loop .swiper-slide{height: auto;}
    .aboutLc-main{transform: none !important;}
    .aboutRy-items{flex-direction: row;}
    .aboutRy-imgs{width: 100%;height: 200px;}
    .aboutRy-loop{width: 100%;padding: 0;margin-top: 30px;}
    .aboutRy-loop .scroll{height: 200px;}
    .aboutHb{height: 410px;}
    .aboutHb .about-title{text-align: center;}
    .aboutHb-bg{position: absolute;left: 0;bottom: 0;width: 100%;}
    .aboutHb-desc-box{position: relative;left: auto;top: auto;transform: none;width: 100%;padding: 20px 4% 0;margin: 0;}
    .aboutHb-btn{margin-top: 25px;}
    .aboutHb-logo{margin: 0;padding: 0;position: absolute;top: calc(100% - 150px);width: 100%;left: 0;}
    .aboutHb-logo .swiper-slide{padding: 16px 0;}
    .aboutHb-logo-slide{width: 56px;height: 56px;}
    .aboutLx-map{width: 100%;}
    .aboutLx-list{width: 100%;padding: 0;margin-top: 24px;}
    .aboutJs-loop .thumbs-click .imgs .img img{height: 78px;}
}

/* --------------------图片-iPad-调整---------------------- */
@media all and (min-width: 720px) and (max-width: 1000px){
    .proxqCj-list li img{height: 200px;}
    .sol-list li .img img{height: 356px;}
    .solxqAl-link .img img{height: 500px;}
    .newsMa-link .img img{height: 450px;}
    .newsLb-list ul{margin: -14px 0 0 -14px !important;}
    .newsLb-list li{width: calc(50% - 14px) !important;margin: 14px 0 0 14px !important;}
    .newsxq-side-list{display: flex;flex-wrap: wrap;justify-content: space-between;}
    .newsxq-side-list .newsLb-main{width: calc(50% - 7px);}
    .aboutJs-loop .gallery .swiper-container{height: 568px;}
    .aboutHb{height: 460px;}
    .aboutHb-logo {top: calc(100% - 230px);}
    .aboutJs-loop .thumbs-click .imgs .img img{height: 178px;}
}