*{
    box-sizing:border-box !important;
    padding: 0;
    margin: 0; 
    outline:none;
}
html{
    overflow-x: hidden;
}
body{
    font-family: 'Microsoft YaHei', 'Arial';
    padding: 0 !important;
    margin:0 auto; 
    font-size: 16px;
    background: #fff;
    color: #0d173f;
    position: relative;
}
a{
    text-decoration: none;
    color: unset;
}
input:not[type="checkbox"],select,textarea{
    outline:none;
    -webkit-appearance: none;
    appearance:none;
    -moz-appearance:none;
    font-family: 'Microsoft YaHei', 'Arial';
}
select::-ms-expand { display: none !important; }
select{
    position: relative;
    appearance:none; 
}
select{
    padding-right: 15px !important;
    background-image: url(../images/select-down.png) !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: auto !important;
}
select option{
    line-height: 30px;
}
input:-webkit-autofill {
    box-shadow:0 0 0 1000px none inset !important;
}
input:-internal-autofill-previewed,input:-internal-autofill-selected {
    transition: background-color 5000s ease-in-out 0s !important;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
.text-center{
    text-align: center;
}
.container {
    max-width: 1288px;
    padding:0 24px;
    position: relative;
    margin: 0 auto;
}
.maximg img{
    display: block;
    width: 100%;
    height: auto;
}
.clearfix{
    clear: both;
}
.phone-show{
    display: none;
}
.amplify-img{
    overflow: hidden;
    display: block;
}
.amplify-img img {
    display: block;
    transition: all ease .4s;
}
.amplify-img img:hover{
    transform: scale(1.1);
}
/*过渡效果*/
.is-show .transX5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.transX5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    -webkit-transition: .6s .2s;
    transition: .6s .2s
}

.is-show .transX-5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.transX-5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    -webkit-transition: .6s .2s;
    transition: .6s .2s
}

.is-show .transy5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.transy5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    -webkit-transition: .6s .4s;
    transition: .6s .4s
}

.is-show .transy-5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.transy-5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    -webkit-transition: .6s .4s;
    transition: .6s .4s
}
/*头部样式*/
.header{
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: rgba(0, 0, 0, .07) 0px 10px 30px 0px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-left: auto;
    margin-right: auto;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a{
    display: block;
}
.logo a img{
    display: block;
    height: 48px;
    width: auto;
}
.header-inner-r{
    display: flex;
    align-items: center;
}
.top-search-icon{
    display: block;
    margin-left: 25px;
}
.top-search-icon i{
    font-size: 22px;
    color: #03a4f1;
}
.mxnav{
    display: flex;
    align-items: center;
}
.mxnav>li{
    padding: 37px 25px;
    position: relative;
}
.mxnav>li.current-menu-item>a{
    color: #03a4f1;
    font-weight: bold;
}
.mxnav>li.menu-item-has-children>a::after{
    content: "\e87e";
    font-family: "iconfont" !important;
    font-size: 12px;
    position: absolute;
    top:50%;
    margin-top: -6px;
    right: -16px;
    color: #0d173f;
    transition: all ease .4s;
}
.mxnav>li.menu-item-has-children>a:hover::after{
    transform: scaleY(-1);
    color: #03a4f1;
}
.mxnav>li>a{
    display: block;
    position: relative;
}
.mxnav .sub-menu{
    display: none;
    background: #fff;
    border-radius: 3px;
    border:1px solid #e5e5e5;
    position: absolute;
    z-index: 5;
    width: max-content;
    min-width: 180px;
    top:95px;
    left:50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%, 0);
}
.mxnav>li:hover>.sub-menu{
    display: block;
    padding: 0 15px;
}
.mxnav .sub-menu>li{
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxnav .sub-menu>li:last-child{
    border-bottom: none;
}
.mxnav .sub-menu>li>a{
    display: block;
    padding: 12px 0;
    font-size: 15px;
    position: relative;
}
.mxnav .sub-menu>li>a::after{
    content: "\e87e";
    font-family: "iconfont" !important;
    font-size: 12px;
    position: absolute;
    top:50%;
    margin-top: -6px;
    right: 0;
    color: #999;
    transform: rotate(-90deg);
}
.mxnav a:hover{
    color: #03a4f1;
}
/*底部样式*/
.site-footer{
    background-color: #051229;
    background-image: url(../images/ftbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.footer-top{
    padding: 65px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom{
    padding: 24px  0;
}
.footer-bottom-inner{
    font-size: 14px;
    opacity: .6;
}
.footer-bottom-inner a:hover{
    text-decoration: underline;
}
.footer-top-inner{
    display: flex;
    justify-content: space-between;
}
.footer-menu{
    flex:1;
}
.footer-contacts{
    width: 21%;
    flex:none;
}
.footernav{
    display: flex;
}
.footernav>li{
    flex:1;
}
.footernav>li>a, .footer-contacts h3{
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.footernav>li>ul{
    margin-top: 15px;
}
.footernav>li>ul>li>a{
    display: block;
    font-size: 14px;
    opacity: .6;
    line-height: 32px;
} 
.footernav>li>ul>li>a:hover{
    text-decoration: underline;
}
.footer-contact-lists{
    margin-top: 18px;
}
.footer-contact-lists li{
    display: flex;
    margin-top: 8px;
}
.footer-contact-lists li svg{
    height: 20px;
    width: auto;
    margin-right: 15px;
    margin-top: 1px;
}
.contact-text{
    font-size: 14px;
    opacity: .6;
    line-height: 24px;
}
.contact-text a:hover{
    text-decoration: underline;
}
.footer-ewms{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.footer-ewms li{
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-ewms li img{
    display: block;
    width: 100%;
    height: auto;
}
.footer-ewms li span{
    display: block;
    font-size: 14px;
    opacity: .6;
    margin-top: 10px;
}
/*banner区块儿样式*/
.web-banner .swiper-slide{
    height: 780px;
    overflow: hidden;
    position: relative;
}
.web-banner .swiper-slide .banner-bgimg{
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.web-banner .swiper-slide .banner-bgimg.phone-banner-img{
    display: none;
}
.web-banner .swiper-slide .swiper-slide-inner{
    position: absolute;
    width: 100%;
    left:0;
    top:50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9;
}
.web-banner .swiper-slide .banner-mask{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    z-index: 2;
    background: linear-gradient(to right, #051229 0%,rgba(5, 18, 41, 0.9) 20%, rgba(5, 18, 41, 0.1) 100%);

}
.web-banner .swiper-slide .slide-content{
    color: #fff;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: center;
}
.web-banner .swiper-slide .slide-content .banner-subtitle{
    font-size: 16px;
    color: #03a4f1;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    margin-bottom: 15px;
}
.web-banner .swiper-slide .slide-content .banner-title{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.web-banner .swiper-slide .slide-content .banner-title span{
    color: #03a4f1;
}
.web-banner .swiper-slide .slide-content .banner-description{
    font-size: 18px;
    line-height: 36px;
}
.web-banner .swiper-slide .slide-content .banner-description p{
    margin-bottom: 15px;
}
.web-banner .swiper-slide .slide-content .banner-button{
    margin-top: 20px;
}
.web-banner .swiper-slide .slide-content .banner-button a{
    display: flex;
    height: 65px;
    padding: 0 35px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    background: #03a4f1;
    border-radius: 5px;
    letter-spacing: 2px;
    position: relative;
}
.web-banner .swiper-slide .slide-content .banner-button a svg{
    height: 36px;
    width: auto;
    margin-left: 10px;
}

/* SVG 图标动画 */
.flashscale-bt a svg {
    animation: flashScale 1.2s infinite ease-in-out;
    transform-origin: center;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    z-index: 2;
    position: relative;
}

/* 多层脉冲光圈动画 */
.flashscale-bt a::before,
.flashscale-bt a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 65px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: 0;
    animation: ripple 2.4s infinite ease-out;
}

.flashscale-bt a::after {
    animation-delay: 1.2s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* SVG 自身呼吸+闪光 */
@keyframes flashScale {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        filter: drop-shadow(0 0 20px rgba(255, 255, 200, 1));
    }
}
body .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: none;
    opacity: 1;
    border:2px solid #03a4f1;
}
body .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #03a4f1;
}
.web-banner .swiper-pagination{
    bottom: 30px !important;
}
body .swiper-button-next, body .swiper-button-prev{
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-top: -24px;
}
body .swiper-button-next:after, body .swiper-button-prev:after{
    font-size: 18px;
    color: #fff;
}
.web-banner .swiper-button-prev, .web-banner .swiper-rtl .swiper-button-next{
    left:8%
}
.web-banner .swiper-button-next, .web-banner .swiper-rtl .swiper-button-prev{
    right:8%
}
/*区块儿通用*/
.default-block{
    padding: 85px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.default-block-inner{
    position: relative;
    z-index: 2;
}
.default-block-hd{
    margin-bottom: 20px;
}
.block-hd-with-bt{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.block-hd-with-bt .block-hd-r .default-bt{
    margin-bottom: 15px;
}
.default-block-hd .block-sub-title{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    font-weight: bold;
    color: #03a4f1;
    padding: 0 30px;
    border:1px dashed #03a4f1;
    margin-bottom: 15px;
}
.default-block-hd.light-block-hd .block-sub-title{
    color: #fff;
}
.default-block-hd h2{
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.default-block-hd.light-block-hd h2{
    color: #fff;
}
/*服务卡片*/
.service-banner{
    position: relative;
    margin-top: 30px;
}
.service-banner .swiper{
    border-right: 1px solid #e5e5e5;
}
.service-slide-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border:1px solid #e5e5e5;
    border-right:none;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    position: relative;
}
.service-banner .swiper .swiper-slide:last-child .service-slide-inner{
    border-right: none;
}
.service-slide-inner:hover::before{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/card-item-bgimg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .03;
    position: absolute;
    top:0;
    left:0;
}
.service-slide-inner:hover{
    background: #03a4f1;
    color: #fff;
}
.service-banner .swiper-slide{
    height: auto;
}
.service-slide-inner>svg{
    height: 58px;
    width: auto;
    display: block;
    margin-bottom: 15px;
    position: static;
    z-index: 2;
}
.service-slide-inner:hover>svg path{
    fill:#fff !important;
}
.service-slide-inner h3{
    margin-bottom: 20px;
    position: static;
    z-index: 2;
}
.service-slide-inner h3 a{
    display: block;
    font-size: 20px;
}
.service-slide-inner h3 a:hover{
    text-decoration: underline;
}
.service-slide-inner p{
    font-size: 15px;
    line-height: 24px;
    color: #444;
    margin-bottom: 35px;
    position: static;
    z-index: 2;
}
.service-slide-inner:hover p{
    color: #fff;
}
.service-card-bt{
    margin-top: auto;
    margin-bottom: 0;
    position: static;
    z-index: 2;
}
.service-card-bt a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #03a4f1;
    border-radius: 3px;
    position: relative;
    padding: 0 35px;
}
.service-slide-inner:hover .service-card-bt a{
    background: #ff6600;
}
.service-card-bt a svg{
    display: block;
    height: 27px;
    margin-left: 2px;
}
.service-slide-inner:hover .service-card-bt a svg path{
    fill:#fff !important;
}
.service-banner .swiper-pagination,
.case-banner .swiper-pagination,
.certificate-banner .swiper-pagination
{
    position: relative;
    margin-top: 35px;
}
body .service-banner .swiper-button-prev, 
body .service-banner .swiper-rtl .swiper-button-next,
body .case-banner .swiper-button-prev, 
body .case-banner .swiper-rtl .swiper-button-next,
body .certificate-banner .swiper-button-prev, 
body .certificate-banner .swiper-rtl .swiper-button-next{
    left:-70px;
}
body .service-banner .swiper-button-next, 
body .service-banner .swiper-rtl .swiper-button-prev,
body .case-banner .swiper-button-next, 
body .case-banner .swiper-rtl .swiper-button-prev,
body .certificate-banner .swiper-button-next, 
body .certificate-banner .swiper-rtl .swiper-button-prev{
    right:-70px;
}
body .service-banner .swiper-button-next, 
body .service-banner .swiper-button-prev,
body .case-banner .swiper-button-next, 
body .case-banner .swiper-button-prev,
body .certificate-banner .swiper-button-next, 
body .certificate-banner .swiper-button-prev{
    background: #03a4f1 !important;
    box-shadow: 0 0 16px rgba(23, 34, 42, 0.4);
}
body .service-banner.with-pagination .swiper-button-next, 
body .service-banner.with-pagination .swiper-button-prev,
body .case-banner.with-pagination .swiper-button-next, 
body .case-banner.with-pagination .swiper-button-prev,
body .certificate-banner.with-pagination .swiper-button-next, 
body .certificate-banner.with-pagination .swiper-button-prev{
    margin-top: -48px;
}
body .service-banner .swiper-button-next.swiper-button-disabled, 
body .service-banner .swiper-button-prev.swiper-button-disabled,
body .case-banner .swiper-button-next.swiper-button-disabled, 
body .case-banner .swiper-button-prev.swiper-button-disabled,
body .certificate-banner .swiper-button-next.swiper-button-disabled, 
body .certificate-banner .swiper-button-prev.swiper-button-disabled{
    background: rgba(0, 0, 0, 0.3) !important;
    box-shadow: none;
}
/*关于区块儿*/
.about-block .default-block-inner{
    display: flex;
    justify-content: space-between;
}
.about-block .default-block-l,
.about-block .default-block-r{
    width: calc(50% - 24px);
}
.about-text{
    font-size: 16px;
    line-height: 30px;
    color: #444;
    margin-bottom: 20px;
}
.about-text p{
    margin-bottom: 10px;
}
.about-text p:last-child{
    margin-bottom: 0;
}
.about-culture{
    color: #444;
}
.about-culture p{
    line-height: 26px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}
.about-culture p:last-child{
    margin-bottom: 0;
}
.about-culture p strong{
    color: #051229;
}
.about-culture p::before{
    content: "\e63d";
    font-family: "iconfont" !important;
    font-size: 18px;
    color: #03a4f1;
    position: absolute;
    left:0;
    top:1px;
}
.default-bt{
    display: flex;
}
.default-bt a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 0 45px;
    background: #03a4f1;
    transition: all ease .4s;
}
.default-bt a svg{
    height: 22px;
    width: auto;
    margin-left: 7px;
    margin-bottom: -1px;
}
.about-block .default-bt{
    margin-top: 40px;
}
.default-bt:hover a{
    opacity: .8;
}
.default-block-r{
    display: flex;
}
.default-block-r .about-thumb{
    flex:1;
    overflow: hidden;
}
.default-block-r .about-thumb img{
    display: block;
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: center;
}
.default-block-r .about-datas{
    flex:none;
    width: 230px;
    margin-left: 24px;
}
.about-data-item{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.about-datas .about-data-item:last-child{
    margin-bottom: 0;
}
.data-num{
    color: #03a4f1;
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-bottom: 10px;
}
.data-num span{
    display: block;
}
.data-num span.unit{
    font-weight: bold;
}
.about-data-item h4{
    font-size: 20px;
    color: #051229;
}
.about-data-item p{
    font-size: 15px;
    color: #444;
    line-height: 24px;
    margin-top: 10px;
}
/*优势卡片*/
.adv-lists{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-right: -30px;
}
.adv-lists li{
    width: 25%;
    padding-right: 30px;
    margin-bottom: 30px;
}
.adv-item{
    padding: 35px 32px;
    background: #1e2c41;
    border:1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: 100%;
    color: #fff;
}
.adv-item svg{
    height: 48px;
    width: auto;
    margin-bottom: 15px;
}
.adv-item h3{
    font-size: 18px;
    line-height: 30px;
}
.adv-item p{
    font-size: 15px;
    line-height: 30px;
    margin-top: 15px;
    text-align: left;
    opacity: .82;
}
/*案例幻灯区块儿*/
.case-banner{
    position: relative;
}
.case-item-inner{
    border:1px solid #e5e5e5;
}
.case-item-text{
    padding: 24px;
}
.case-item-text .case-cat{
    display: flex;
    align-items: center;
    color: #03a4f1;
    font-size: 15px;
    margin-bottom: 10px;
}
.case-item-text .case-cat svg{
    height:18px;
    width: auto;
    margin-right: 3px;
}
.case-item-text h3 a{
    display: block;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-item-text h3 a:hover{
    text-decoration: underline;
    color: #03a4f1;
}
/*自由编辑区块儿*/
.free-edit-block .default-block-hd{
    margin-bottom: 45px;
}
/*文章详情页*/
.pagecon{
    color: var(--dim-gray-color);
    line-height: 30px;
    font-size: 16px;
}
.pagecon h1{
    font-size: 30px;
    margin-bottom: 18px;
}
.pagecon h2{
    font-size: 24px;
    margin-bottom: 18px;
}
.pagecon h3{
    font-size: 20px;
    margin-bottom: 18px;
}
.pagecon h4{
    font-size: 18px;
    margin-bottom: 18px;
}
.pagecon h5{
    font-size: 16px;
    margin-bottom: 18px;
}
.pagecon ul, .pagecon ol{
    margin: 0px 0 18px 0 !important;
}
.pagecon ol li{
    line-height: 30px;
    list-style-type:auto;
    list-style-position:inside;
}
.pagecon ul li{
    line-height: 30px;
    list-style-type:none;
    padding: 3px 0 0 20px;
    position: relative;
}
.pagecon ul li::before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    background: #051229;
    left: 0;
    top:15px;
    position: absolute;
}
.pagecon  table {
    border: 1px solid #f5f5f5;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 18px;
}
.pagecon table tr:nth-child(odd) {
    background: #fafafa;
}
.pagecon table tr {
    height: 40px;
    line-height: 40px;
}
.pagecon table tr td {
    border: 1px solid #f5f5f5;
    padding: 0 15px;
}
.pagecon img{
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 18px;
    margin-bottom: 18px;
}
.pagecon p{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}
.pagecon p a{
    color: var(--main-blue-color);
}
.pagecon p a:hover{
    text-decoration: underline;
}
.pagecon > :last-child {
    margin-bottom: 0;
}
.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
}
.aligncenter p.wp-caption-text {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: -5px;
    color: #999;
}
/*新闻区块儿*/
.news-block-wrap{
    display: flex;
    justify-content: space-between;
}
.news-block-wrap .news-block-l,
.news-block-wrap .news-block-r{
    width: calc(50% - 12px);
}
.news-block-first-post{
    background: #03a4f1;
    color: #fff;
}
.first-item-text{
    padding: 24px 30px;
}
.first-item-text h3 a{
    font-size: 22px;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.first-item-text h3 a:hover{
    text-decoration: underline;
}
.first-item-text p{
    font-size: 15px;
    line-height: 24px;
    opacity: .8;
    margin-top: 10px;
    margin-bottom: 10px;
}
.post-metas{
    display: flex;
    align-items: center;
}
.post-meta-item{
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 14px;
}
.post-metas .post-meta-item:last-child{
    margin-right: 0;
}
.post-meta-item svg{
    height: 15px;
    width: auto;
    margin-right: 6px;
}
.first-item-text .post-meta-item svg path{
    fill: #fff !important;
}
.first-item-text .post-meta-item{
    opacity: .8;
}
.news-block-list-item{
    display: flex;
    border:1px solid #e5e5e5;
    margin-bottom: 24px;
}
.news-block-lists .news-block-list-item:last-child{
    margin-bottom: 0;
}
.news-block-list-item .post-thumb{
    width: 38%;
    overflow: hidden;
}
.news-block-list-item .post-thumb img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news-block-list-item .news-block-item-text{
    padding: 25px 24px;
    width: 62%;
}
.news-block-item-text h3 a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
}
.news-block-item-text h3 a:hover{
    text-decoration: underline;
    color: #03a4f1;
}
.news-block-item-text p{
    font-size: 15px;
    color: #444;
    line-height: 24px;
    margin: 10px 0;
}
/*客户区块儿*/
.costomer-block{
    position: relative;
}
.costomer-block .customer-block-bgimg{
    position: absolute;
    max-width: 100%;
    height: auto;
    bottom: 0;
    right:0;
    z-index: 1;
}
.customers-lists{
    display: flex;
    flex-wrap: wrap;
}
.customers-lists li{
    width: 14.28%;
}
.customers-lists li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border:1px solid #e5e5e5;
    height: 110px;
    margin-left: -1px;
    margin-top: -1px;
    background: #fff;
}
.customers-lists li a img{
    max-width: 120px;
    max-height: 60px;
}
/*内页banner区块*/
.page-banner{
    height: 480px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-banner .page-banner-mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 1;
    background: #051229;
    opacity: .7;
}
.page-banner-inner{
    width: 100%;
    position: relative;
    z-index: 2;
}
.page-banner-inner-con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.page-banner-inner-con h1{
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}
.page-banner-inner-con .breadcrumbs{
    display: flex;
    align-items: center;
    font-size: 16px;
    opacity: .8;
}
.banner-breadcrumbs .breadcrumbs span.active{
    color: #fff;
}
.breadcrumbs i{
    transform: rotate(-90deg);
    display: block;
    padding: 0 5px;
    font-size: 14px;
    margin-top: 1px;
}
/*证书幻灯*/
.certificate-banner .swiper-slide{
    height: auto;
}
.certificate-img{
    overflow: hidden;
    height: 100%;
    border:1px solid #e5e5e5;
    background: #fff;
}
.certificate-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.certificate-item-inner{
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.certificate-item-inner h3{
    font-size: 16px;
    font-weight: normal;
    margin-top: 12px;
    text-align: center;
}
/*专业团队区块儿*/
.team-lists{
    display: flex;
    margin-right: -30px;
    margin-bottom: -30px;
}
.team-lists li{
    width: 25%;
    padding-right: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.team-item h3{
    font-size: 20px;
    margin-top: 18px;
    font-weight: normal;
}
.team-item span{
    display: inline-block;
    font-size: 16px;
    color: #999;
    margin-top: 6px;
}
/*联系区块儿*/
.contact-block-bd>div{
    margin-bottom: 50px;
}
.contact-block-bd>div:last-child{
    margin-bottom: 0;
}
.contact-block-main{
    display: flex;
}
.contact-block-l{
    width: 30%;
    flex:none;
    background: #03a4f1;
    position: relative;
    padding: 45px;
    color: #fff;
}
.contact-block-l::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
    background-image: url(../images/contactbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .1;
}
.contact-block-r{
    flex:1;
    padding: 45px 100px;
    background: #f4f8fd;
}
.contact-lists{
    position: relative;
    z-index: 2;
}
.contact-lists li{
    display: flex;
    margin-bottom: 45px;
}
.contact-lists li:last-child{
    margin-bottom: 0;
}
.ewm-lists{
    margin-top: 45px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    margin-right: -24px;
    margin-bottom: -15px;
}
.ewm-lists li{
    width: 50%;
    padding-right: 24px;
    margin-bottom: 15px;
}
.ewm-item img{
    display: block;
    width: 100%;
    height: auto;
}
.ewm-item p{
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}
.contact-icon{
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex:none;
}
.contact-icon svg{
    max-width: 24px;
    max-height: 24px;
}
.contact-text-wrap h3{
    font-size: 18px;
    margin-bottom: 5px;
}
.contact-text-wrap .contact-con{
    opacity: .8;
    font-size: 16px;
    line-height: 24px;
}
.contact-text-wrap .contact-con a:hover{
    opacity: 1;
    text-decoration: underline;
}
.contact-block-r h2{
    font-size: 30px;
}
.contact-block-r .form-des{
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}
div.wpforms-container-full{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.contact-block-r div.wpforms-container{
    margin-top: 20px !important;
}
.wpforms-container .wpforms-field.wpforms-field-layout{
    padding: 0 !important;
}
.wpforms-container .wpforms-field{
    padding: 10px 0 !important;
}
div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea{
    background-color: #fff !important;
    border-radius: 0 !important;
    color: #051229 !important;
    border: none !important;
    font-size: 15px !important;
    outline: none !important;
    padding: 0 15px !important;
    box-shadow: none !important;
    height: 50px !important;
    line-height: 50px !important;
}
body div.wpforms-container-full .wpforms-form textarea{
    height: 98px !important;
    line-height: 24px !important;
    padding: 10px 15px !important;
}
body div.wpforms-container-full .wpforms-form .wpforms-submit-container{
    margin-top: 0 !important;
    padding-top: 15px !important;
}
div.wpforms-container-full input[type=submit], div.wpforms-container-full button[type=submit], div.wpforms-container-full .wpforms-page-button{
    height: 50px !important;
    line-height: 50px !important;
    font-size: 15px !important;
    font-weight: normal !important;
    border-radius: 0 !important;
    background: #03a4f1 !important;
    width: 168px !important;
    text-align: center;
}
/*常见问题区块*/
.question-lists{
    margin-bottom: -20px;
}
.question-lists>li{
    margin-bottom: 20px;
}
.question-item{
    background: #fff;
    border:1px solid #f1f1f1;
    padding: 0 24px;
    border-radius: 5px;
}
.question-item-hd{
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.question-item-hd h3{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.question-item-bt i{
    font-size: 34px;
    color: #03a4f1;
    display: block;
}
.question-item-bt i.icon-xianxingtubiaozhizuomoban-02{
    display: none;
}
.question-item.active .question-item-bt i.icon-xianxingtubiaozhizuomoban-02{
    display: block;
}
.question-item.active .question-item-bt i.icon-jiajia{
    display: none;
}
.question-item-bd{
    padding: 15px 0px 20px 0px;
    border-top:1px dashed #c9d1d1;
    display: none;
}
.question-item.active .question-item-bd{
    display: block;
}
.question-item-bd{
    opacity: .8;
}
/*通用单页面*/
.default-page-wrap{
    width: 850px;
    margin: 0 auto;
}
/*文章详情页*/
.post-main-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 80px;
}
.single-service .post-main-inner{
    margin-top: 45px;
    margin-bottom: 0;
    align-items: flex-start;
}
.post-main-l{
    width: 68%;
    background: #fff;
}
.post-main-l .pagecon{
    padding-bottom: 45px;
}
.post-main-r{
    width: calc(32% - 30px);
    border:1px solid #e5e5e5;
    padding: 30px;
}
.page-title{
    font-size: 30px;
    line-height: 40px;
}
.single-metas{
    display: flex;
    align-items: center;
    margin-top: 25px;
    color: #999;
    font-size: 15px;
}
.single-metas>span{
    display: block;
    margin-right: 20px;
}
.page-con-header{
    margin-bottom: 25px;
}
.post-share{
    margin: 0 10px;
    display: flex;
    align-items: center;
}
.bdshare-button-style1-16 a,.bdshare-button-style1-16 .bds_more {
    background-image: none !important;
    padding-left: 0 !important;
    font-size: 24px !important;
    color: #777 !important
}

.bdshare-button-style1-16 a:last-child {
    margin-right: 0 !important
}

.bdshare-button-style1-16 a.icon-xinlangweibo:hover {
    color: #ff763b !important;
    opacity: 1 !important
}

.bdshare-button-style1-16 a.icon-logo-qq:hover {
    color: #56b6e7 !important;
    opacity: 1 !important
}

.bdshare-button-style1-16 a.icon-logo-wechat:hover {
    color: #7bc549 !important;
    opacity: 1 !important
}

.bdshare-button-style1-16 a.icon-QQkongjian:hover {
    color: #fdbe3d !important;
    opacity: 1 !important
}
.single-tags{
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}
.single-tags span{
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.single-tags a{
    display: block;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    font-size: 14px;
    padding: 0 15px;
    background: #f4f8fd;
    margin-right: 5px;
    margin-bottom: 5px;
}
.single-tags a:hover{
    color: #fff;
    background: #03a4f1;
}
.single-tags a:last-child{
    margin-right: 0;
}
.prenext{
    display: flex;
    justify-content: space-between;
}
.prenextpart{
    width: calc(50% - 10px);
    background: #f4f8fd;
    padding: 24px;
}
.prenextpart a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.prenextpart a:hover{
    color: #03a4f1;
    text-decoration: underline;
}
.prenextpart .next{
    text-align: right;
}
.jticon{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.prenextpart .next .jticon{
    justify-content: end;
}
.jticon span{
    font-size: 16px;
    font-family: "AlibabaPuHui-Bold", sans-serif;
}
.jticon i{
    font-size: 16px;
    font-weight: 100;
    color: #999;
    display: flex;
    margin-bottom: -2px;
    margin-right: 5px;
    margin-left: -5px;
}
.pre .jticon i{
    transform: rotate(90deg);
}
.next .jticon i{
    transform: rotate(-90deg);
    margin-right: -5px;
    margin-left: 5px;
}
.related-posts{
    margin-top: 45px;
}
.sidebar-title{
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
    position: relative;
}
.related-posts .post-item h3 a{
    font-size: 16px;
    line-height: 24px;
}
.related-posts .post-item p{
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}
.related-posts .post-item span{
    margin: 15px 0 7px 0;
}
.post-sidebar-menu li{
    margin-bottom: 4px;
}
.post-sidebar-menu li:last-child{
    margin-bottom: 0;
}
.post-sidebar-menu li a{
    display: flex;
    align-items: center;
    height: 40px;
    background: #f4f8fd;
    padding-left: 15px;
}
.post-sidebar-menu li a img{
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.post-sidebar-menu li a h4{
    font-weight: normal;
    font-size: 14px;
}
.post-sidebar-menu li .num{
    color: #666;
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    min-width: 40px;
    text-align: center;
    background: #e9eff7;
    margin-right: 0;
    margin-left: auto;
}
.sidebar-wrap .sidebar-title{
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.post-sidebar-menu li a:hover, .post-sidebar-menu li.current-item a{
    color: #03a4f1;
}
.post-sidebar-menu li.current-item a h4{
    font-weight: bold;
}
.post-sidebar-menu li.current-item a .num{
    color: #03a4f1;
}
.sidebar-wrap{
    margin-bottom: 35px;
}
.post-main-r .sidebar-wrap:last-child{
    margin-bottom: 0;
}
.popular-news-lists li{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.popular-news-lists li:last-child{
    margin-bottom: 0;
}
.popular-news-lists li .pp-new-l{
    width: 34%;
}
.popular-news-lists li .pp-new-r{
    width: 66%;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.popular-news-lists li .pp-new-r h4 a{
    display: block;
    font-size: 15px;
    line-height: 22px;
    max-height: 44px;
    overflow: hidden;
    font-family: "AlibabaPuHui-Regular", sans-serif;
    margin-top: -2px;
}
.popular-news-lists li .pp-new-r h4 a:hover{
    color: #03a4f1;
    text-decoration: underline;
}
.popular-news-lists li .post-item-metas{
    margin-top: 8px;
    font-size: 13px;
    color: #999;
}
.related-posts .post-lists{
    margin-right: -24px;
    margin-bottom: -24px;
    display: flex;
    flex-wrap: wrap;
}
.related-posts .post-lists li{
    padding-right: 24px;
    margin-bottom: 24px;
    width: 33.33%;
}
.related-posts .post-lists li .post-list-item{
    height: 100%;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}
.related-posts .post-item-text{
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex:1;
}
.related-posts .post-item-text h3 a{
    font-size: 15px;
    line-height: 20px;
    max-height: 40px;
    display: block;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
    white-space:normal !important;
}
.related-posts .post-item-text h3 a:hover{
    color: #03a4f1;
    text-decoration: underline;
}
.hot-tags{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -5px;
}
.hot-tags a{
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    border-radius: 3px;
    font-size: 13px;
    background: #f4f8fd;
    margin-right: 5px;
    margin-bottom: 5px;
}
.hot-tags a:hover{
    color: #fff;
    background: #03a4f1;
}
div.code-toolbar{
    margin-bottom: 15px;
}
.breadcrumbs{
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumbs span.active{
    color: #999;
}
.post-item-meta{
    color: #999;
    font-size: 14px;
}
.post-item-meta i{
    color: #03a4f1;
    margin-right: 3px;
}
.post-item-more{
    display: flex;
    margin-top: auto;
    margin-bottom: 0;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}
.post-item-more i{
    padding-left: 5px;
    font-size: 15px;
    font-weight: normal;
}
.post-item-more:hover{
    color: #03a4f1;
}
.related-posts .case-item-text .case-cat{
    margin-bottom: 0;
    font-size: 14px;
}
.related-posts .case-item-text .case-cat svg{
    height: 16px;
}
/*服务项目*/
.service-form div.wpforms-container-full input[type=date], 
.service-form div.wpforms-container-full input[type=datetime], 
.service-form div.wpforms-container-full input[type=datetime-local], 
.service-form div.wpforms-container-full input[type=email], 
.service-form div.wpforms-container-full input[type=month], 
.service-form div.wpforms-container-full input[type=number], 
.service-form div.wpforms-container-full input[type=password], 
.service-form div.wpforms-container-full input[type=range], 
.service-form div.wpforms-container-full input[type=search], 
.service-form div.wpforms-container-full input[type=tel], 
.service-form div.wpforms-container-full input[type=text], 
.service-form div.wpforms-container-full input[type=time], 
.service-form div.wpforms-container-full input[type=url], 
.service-form div.wpforms-container-full input[type=week], 
.service-form div.wpforms-container-full select, 
.service-form div.wpforms-container-full textarea{
    background: #f4f8fd !important;
}
.service-form h3{
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}
.service-form div.wpforms-container-full input[type=submit], 
.service-form div.wpforms-container-full button[type=submit], 
.service-form div.wpforms-container-full .wpforms-page-button{
    width: 100% !important;
}
div.wpforms-container-full input[type=submit]:focus:after,div.wpforms-container-full button[type=submit]:focus:after,div.wpforms-container-full .wpforms-page-button:focus:after {
    display: none !important;
}
.single-service .related-posts{
    margin-top: 0;
    margin-bottom: 80px;
}
.single-service .related-posts .post-lists li{
    width: 25%;
}
/*服务列表*/
.service-list{
    margin-right: -30px;
    margin-bottom: -30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.service-list li{
    width: 33.33%;
    padding-right: 30px;
    margin-bottom: 30px;
}
.service-list li .service-slide-inner{
    border-right:1px solid #e5e5e5;
}
.service-card-more{
    margin-top:auto;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
    position: static;
    z-index: 2;
}
.service-card-more i{
    font-weight: normal;
}
/*新闻列表*/
.list-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.list-menu li{
    margin: 0 5px;
}
.list-menu li a{
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    min-width: 126px;
    border-radius: 3px;
    background: #f7f6f5;
    font-size: 16px;
}
.list-menu li a:hover, .list-menu li.current-item a{
    background: #03a4f1;
    color: #fff;
}
.post-lists{
    display: flex;
    margin-right: -30px;
    margin-bottom: -30px;
    flex-wrap: wrap;
}
.post-lists li{
    width: 33.33%;
    padding-right: 30px;
    margin-bottom: 30px;
}
.post-list-item{
    height: 100%;
    border:1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}
.post-item-text{
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex:1;
}
.post-item-text h3{
    margin: 12px 0;
}
.related-posts .post-lists .post-item-text h3{
    margin: 0;
}
.post-item-text h3 a{
    font-size: 18px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-item-text p{
    font-size: 15px;
    color: #444;
    line-height: 24px;
    margin-bottom: 20px;
}
.post-item-text .post-item-more{
    margin-top: auto;
    margin-bottom: 0;
}
/*分页样式*/
.page_navi{
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.page_navi a{
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    width: 40px;
    border-radius: 3px;
    margin: 2px 4px;
    background: #f7f6f5;
}
.page_navi a i{
    font-size: 14px;
    font-weight: 100;
    transform: rotate(-90deg);
    display: block;
}
.page_navi a:hover, .page_navi a.current{
    background: #03a4f1;
    color: #fff;
}
.page_navi a.connot-click{
    color: #a5a5a5;
}.page_navi a.connot-click:hover{
    background: #f7f6f5;
}
.page_navi a.navi-pre i{
    transform: rotate(90deg);
}
body.tax-service_cat .post-item-text h3 a{
    margin-top: 0;
}
.no-results{
    font-size: 18px;
    margin-top: 45px;
    text-align: center;
}
/*404页面*/
.error-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 200px 0;
    align-items: center;
}
.error-inner img{
    display: block;
    max-width: 100%;
    height: auto;
}
.error-inner h1{
    font-size: 48px;
    margin: 45px 0 25px 0;
}
.error-inner a{
    display: block;
    color: #03a4f1;
    text-decoration: underline;
    font-size: 18px;
}
/*搜索弹窗*/
.search-popup{
    background: rgba(0, 0, 0, 0.66);
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}
.search-popup-box{
    background-color: #03a4f1;
    padding: 45px;
    color: #fff;
    width: 60%;
    position: relative;
    background-image: url(../images/cxt.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.search-popup-box h2{
    font-size: 26px;
    font-family: 'Microsoft YaHei', 'Arial';
    margin-bottom: 15px;
}
.search-popup-box .close-search-pupup{
    position: absolute;
    top:20px;
    right:20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 36px;
    display: block;
}
.search-popup-box .close-search-pupup i{
    font-size: 22px;
}
.searchform{
    width: 100%;
    display: flex;
    align-items: center;
}
.searchform input{
    height: 50px;
    line-height: 50px;
    border:1px solid rgba(255, 255, 255, 0.3);
    background: none;
    color: #fff !important;
    padding: 0 15px;
    display: block;
    flex:1;
    border-radius: 3px 0 3px 0;
    border-right:0;
}
.searchform input::input-placeholder{
	color: #fff;
    opacity: .4;
}
.searchform input::-webkit-input-placeholder{
	color: #fff;
    opacity: .4;
}
.searchform input::-moz-placeholder{
	color: #fff;
    opacity: .4;
}
.searchform input::-moz-placeholder{
	color: #fff;
    opacity: .4;
}
.searchform input::-ms-input-placeholder{	
	color: #fff;
    opacity: .4;
}

.searchform input:-webkit-autofill {
    -webkit-text-fill-color: #fff;
}
.searchform button{
    width: 120px;
    height: 50px;
    border:1px solid rgba(255, 255, 255, 0.3);
    background: none;
    color: #fff;
    padding: 0 15px;
    display: block;
    flex:none;
    border-radius: 0 5px 5px 0;
    text-align: center;
    cursor: pointer;
}
.searchform button i{
    color: #fff;
    font-size: 18px;
}
/*在线客服*/
.web-kefu{
    position: fixed;
    right: 0px;
    bottom: 100px;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 5px 10px 0px;
}
.web-kefu ul li{
    position: relative;
}
.web-kefu ul li:first-child::after{
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, 0.38);
    position: absolute;
    left:13px;
    right:13px;
    bottom: 0;
    z-index: 9;
}
.web-kefu ul li>a{
    display: flex;
    flex-direction: column;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #03a4f1;
    transition: all ease .4s;
    position: relative;
    z-index: 9;
}
.web-kefu ul li>a span{
    font-size: 14px;
    display: block;
    margin-top: 5px;
}
.web-kefu ul li:first-child a{
    border-radius: 5px 5px 0 0;
}
.web-kefu ul li:last-child{
    margin-top: 8px;
}
.web-kefu ul li:last-child a{
    border-radius: 5px;
}
.web-kefu ul li:nth-child(2) a{
    border-radius: 0 0 5px 5px;
}
.web-kefu ul li>a i{
    font-size: 28px;
}
.kf-popoup{
    position: absolute;
    right:-220px;
    bottom: 0;
    padding: 20px 10px;
    background: #fff;
    width: 220px;
    transition: all ease .4s;
    min-height: 45px;
    display: block;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 5px 10px 0px;
    border:1px solid #e5e5e5;
    font-size: 20px;
    font-weight: bold;
    color: #03a4f1;
}
.kf-popoup .kf-tell-item{
    margin-bottom: 10px;
}
.kf-popoup .kf-tell-item h3{
    font-size: 15px;
    font-weight: normal;
    color: #999;
    margin-bottom: 6px;
}
.kf-popoup .kf-tell-item:last-child{
    margin-bottom: 0;
}
.web-kefu ul li.active>.kf-popoup{
    right: 80px;
}
.phone-menu{
    display: none;
}

/**
* Navigation Defaults
*/
.nav {
    position: fixed;
    z-index: 999;
    opacity: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
}
.nav--active{
    height: 100% !important;
}
.nav--active .nav {
opacity: 1;
}
.nav__list {
margin: 0;
border-top: 1px solid #e5e5e5;
}
.nav__list li {
list-style-type: none;
}
.nav__list>li{
padding: 0 24px;
position: relative;
line-height: 50px;
}
.nav__list li a{
font-size: 16px;
text-decoration: none;
opacity: 1;
-webkit-transition: opacity 300ms ease-in-out;
transition: opacity 300ms ease-in-out;
line-height: 50px;
}
.nav__list>li>a{
display: block;
border-bottom: 1px solid #e5e5e5;
}
.nav__list li.current-menu-item>a, .nav__list li:hover a, .nav__list ul li.current-menu-item>a{
color: #03a4f1;
}
.nav__list>li.menu-item-has-children span.iconfont {
font-size: 18px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
right: 0;
top: 0;
line-height: 50px;
z-index: 9999;
padding: 0 20px;
color: #999;
display: block;
}
.nav__list>li.menu-item-has-children.show span.iconfont {
transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
}
.nav__list>li.show .sub-menu{
display: block;
}
.nav__list>li.bigshow .sub-menu{
display: block;
}
.nav__list .sub-menu{
display: none;
padding-left: 15px;
padding-top: 10px;
}
.nav__list .sub-menu li a{
    color: #434343;
    display: block;
    font-size: 15px;
}
.nav__list .sub-menu li .sub-menu{
display: none;
position: fixed;
top:0px;
left:0;
bottom:0;
right:0;
z-index: 999999;
padding: 0 15px;
}
.nav__list .sub-menu li .sub-menu.sub--active{
display: block;
}
.nav__list .sub-menu li .sub-menu li a{
    color: #000;
    display: block;
    border-bottom: 1px solid #e5e5e5;
}
.nav__list .sub-menu li .sub-menu li a.menu_back{
vertical-align: middle;
}
.nav__list .sub-menu li .sub-menu li a.menu_back i{
display: inline-block;
transform:rotate(180deg);
margin-right: 5px;
vertical-align: middle;
font-size: 18px;
}
.nav__list .sub-menu li .sub-menu li a.menu_back span{
vertical-align: middle;
display: inline-block;
}
/* Default navigation icon */
.nav__trigger {
display: block;
    position: fixed;
    width: 25px;
    right: 24px;
    z-index: 9999;
    padding: 18px 0;
    height: 54px;
    top:-7px;
}
/* .nav--active .nav__icon, .fixheader .nav__icon, .fixed .nav__icon, .header:hover .nav__icon{
    background: #24262b;
}
.nav--active .nav__icon:before, .fixheader .nav__icon:before, .fixed .nav__icon:before, .header:hover .nav__icon:before{
    background: #24262b;
}
.nav--active .nav__icon:after, .fixheader .nav__icon:after, .fixed .nav__icon:after, .header:hover .nav__icon:after{
    background: #24262b;
} */
.nav__icon {
display: inline-block;
position: relative;
width: 25px;
height: 1px;
background-color: #03a4f1;
}
.nav__icon:before,
.nav__icon:after {
content: '';
display: block;
width: 25px;
height: 1px;
position: absolute;
background: #03a4f1;
-webkit-transition-property: margin, -webkit-transform;
transition-property: margin, -webkit-transform;
transition-property: margin, transform;
transition-property: margin, transform, -webkit-transform;
-webkit-transition-duration: 300ms;
        transition-duration: 300ms;
}
.nav__icon:before {
margin-top: -9px;
}
.nav__icon:after {
margin-top: 9px;
}
/* Don't nest if you don't have to. */
/**
* Style #1
*/
.style-1 .nav {
-webkit-transform: translateX(-100%);
        transform: translateX(-100%);
width: 100%;
top: 0;
padding-top: 54px;
}
.style-1 .nav__link {
opacity: 0;
-webkit-transition-delay: 500ms;
        transition-delay: 500ms;
}
.style-1 .nav--active .nav__link {
opacity: 1;
font-size: 16px;
line-height: 45px;
}
.style-1 .nav--active .nav {
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
-webkit-transform: translateX(0);
        transform: translateX(0);
    background: #fff;
    width: 100%;
    left:0;
    bottom:0;
}
.style-1 .nav--active .nav__icon {
background: rgba(0, 0, 0, 0);
}
.style-1 .nav--active .nav__icon:before {
margin-top: 0;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
background: #03a4f1;
}
.style-1 .nav--active .nav__icon:after {
margin-top: 0;
-webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: #03a4f1;
}
.banner-breadcrumbs .breadcrumbs{
    padding: 0;
}
.wp-caption{
    width: 100% !important;
}
@media (max-width: 1288px){
    .mxnav>li{
        padding: 37px 18px;
    }
    .web-banner .swiper-slide .slide-content .banner-title{
        font-size: 48px;
    }
    .web-banner .swiper-slide .slide-content .banner-description{
        font-size: 16px;
        line-height: 30px;
    }
    .web-banner .swiper-slide .slide-content .banner-subtitle{
        font-size: 14px;
    }
    .web-banner .swiper-slide .slide-content .banner-button a{
        height: 55px;
        font-size: 20px;
    }
    .web-banner .swiper-slide .slide-content .banner-button a svg{
        height: 30px;
    }
    .service-card-bt a{
        font-size: 18px;
        padding: 0 20px;
        width: 100%;
    }
}
@media (max-width: 1000px){
    .mxnav{
        display: none;
    }
    .phone-menu{
        display: block;
    }
    .logo{
        position: relative;
        z-index: 9999;
    }
    .logo a img{
        height: 34px;
        width: auto;
        margin: 10px 0;
    }
    .top-search-icon{
        z-index: 9999;
        position: absolute;
        height: 54px;
        line-height: 54px;
        right: 65px;
        top:0
    }
    .search-popup-box{
        width: 100%;
        margin: 24px;
        padding: 25px;
    }
    .searchform select{
        width: 80px;
    }
    .searchform button{
        width: 50px;
    }
    .search-popup-box h2{
        font-size: 20px;
    }
    .web-banner .swiper-slide .banner-bgimg.phone-banner-img{
        display: block;
    }
    .web-banner .swiper-slide .banner-bgimg.pc-banner-img{
        display: none;
    }
    .web-banner .swiper-slide{
        height: 280px;
    }
    .web-banner .swiper-slide .slide-content{
        width: 100%;
    }
    .web-banner .swiper-slide .slide-content .banner-title{
        font-size: 24px;
        margin-bottom: 10px;
        letter-spacing: 0;
    }
    .web-banner .swiper-slide .slide-content .banner-description{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
    .web-banner .swiper-slide .slide-content .banner-subtitle{
        display: none;
    }
    .web-banner .swiper-slide .slide-content .banner-button{
        margin-top: 5px;
    }
    .web-banner .swiper-slide .slide-content .banner-button a{
        height: 45px;
        font-size: 16px;
        padding: 0 20px;
    }
    .web-banner .swiper-slide .slide-content .banner-button a svg{
        height: 18px;
    }
    .web-banner .swiper-pagination{
        display: none;
    }
    .web-banner .swiper-button-prev, .web-banner .swiper-rtl .swiper-button-next{
        left:24px;
    }
    .web-banner .swiper-button-next, .web-banner .swiper-rtl .swiper-button-prev{
        right:24px;
    }
    .default-block{
        padding: 45px 0;
    }
    .default-block-hd .block-sub-title{
        height: 32px;
        line-height: 32px;
        font-size: 14px;
        padding: 0 24px;
        margin-bottom: 10px;
    }
    .default-block-hd h2{
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 0;
    }
    .default-block-hd{
        margin-bottom: 15px;
    }
    body .service-banner .swiper-button-next, body .service-banner .swiper-rtl .swiper-button-prev, body .case-banner .swiper-button-next, body .case-banner .swiper-rtl .swiper-button-prev, body .certificate-banner .swiper-button-next, body .certificate-banner .swiper-rtl .swiper-button-prev{
        right:-18px;
    }
    body .service-banner .swiper-button-prev, body .service-banner .swiper-rtl .swiper-button-next, body .case-banner .swiper-button-prev, body .case-banner .swiper-rtl .swiper-button-next, body .certificate-banner .swiper-button-prev, body .certificate-banner .swiper-rtl .swiper-button-next{
        left:-18px;
    }
    .about-block .default-block-inner{
        display: block;
    }
    .about-block .default-block-l, .about-block .default-block-r{
        width: 100%;
    }
    .about-block .default-block-r{
        margin-top: 24px;
        display: block;
    }
    .default-block-r .about-datas{
        width: 100%;
        margin-top: 24px;
        margin-left: 0;
    }
    .service-card-bt a {
        font-size: 16px;
        padding: 0 20px;
        width: 100%;
        height: 45px;
    }
    .service-card-bt a svg{
        height: 20px;
        margin-left: 0px;
    }
    .about-text{
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .about-culture p {
        line-height: 24px;
        margin-bottom: 12px;
        font-size: 15px;
    }
    .about-block .default-bt{
        margin-top: 24px;
    }
    .default-bt a {
        height: 45px;
        font-size: 14px;
        padding: 0 24px;
    }
    .adv-lists {
        display: block;
        margin-bottom: -24px;
        margin-right: 0px;
    }
    .adv-lists li{
        width: 100%;
        padding-right: 0px;
        margin-bottom: 24px;
    }
    .block-hd-r{
        display: none;
    }
    .free-edit-block .default-block-hd{
        margin-bottom: 24px;
    }
    .news-block-wrap{
        display: block;
    }
    .news-block-wrap .news-block-l, .news-block-wrap .news-block-r{
        width: 100%;
    }
    .news-block-wrap .news-block-r{
        margin-top: 24px;
    }
    .news-block-list-item{
        display: block;
    }
    .news-block-list-item .post-thumb{
        width: 100%;
    }
    .news-block-list-item .news-block-item-text{
        width: 100%;
    }
    .customers-lists li{
        width: 50%;
    }
    .footer-top{
        padding: 45px 0;
    }
    .footer-top-inner{
        display: block;
    }
    .footer-contacts{
        width: 100%;
    }
    .footer-menu{
        display: none;
    }
    .footer-bottom{
        padding: 15px 0;
    }
    html, .header, .site-main{
        overflow-x: hidden !important;
    }
    .page-banner{
        height: 240px;
    }
    .page-banner-inner-con h1{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .page-banner-inner-con .breadcrumbs{
        font-size: 14px;
    }
    .breadcrumbs{
        font-size: 14px;
    }
    .contact-block-bd>div{
        margin-bottom: 24px;
    }
    .contact-block-main{
        display: block;
    }
    .contact-block-l{
        width: 100%;
        padding: 30px;
    }
    .contact-block-r{
        padding: 30px;
    }
    div.wpforms-container-full input[type=submit], div.wpforms-container-full button[type=submit], div.wpforms-container-full .wpforms-page-button{
        width: 100% !important;
    }
    .default-page-wrap{
        width: 100%;
    }
    .list-menu {
        flex-wrap: wrap;
        margin-bottom: 14px;
    }
    .list-menu li{
        margin-bottom: 10px;
    }
    .post-lists{
        display: block;
        margin-right: 0;
        margin-bottom: -24px;
    }
    .post-lists li{
        width: 100%;
        padding-right: 0;
        margin-bottom: 24px;
    }
    .service-list{
        display: block;
        margin-right: 0;
        margin-bottom: -24px;
    }
    .service-list li{
        width: 100%;
        padding-right: 0;
        margin-bottom: 24px;
    }
    .post-main-inner{
        display: block;
    }
    .post-main-l{
        width: 100%;
        margin-bottom: 24px;
    }
    .single-tags{
        flex-wrap: wrap;
    }
    .post-main-r{
        width: 100%;
        margin-top: 24px;
        padding: 24px 20px;
    }
    .post-main-l .pagecon{
        padding-bottom: 24px;
    }
    .related-posts .post-lists{
        display: block;
        margin-right: 0;
        margin-bottom: -24px;
    }
    .single-service .related-posts .post-lists li{
        width: 100%;
    }
    .related-posts .post-lists li{
        width: 100%;
        padding-right: 0;
        margin-bottom: 24px;
    }
    .single-metas>span{
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .single-metas>span:last-child{
        width: 100%;
    }
    .single-metas{
        flex-wrap: wrap;
    }
    .post-share{
        margin-left: 0;
    }
}