html,body,h1,h2,h3,h4,h5,h6,p,ul,li,img,dl,dt,dd,div,label,button,input,textarea,select,footer,header,section,a,span{ margin:0; padding:0; -moz-box-sizing: border-box; box-sizing: border-box; overflow-scrolling: touch; -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(255,255,255,0); tap-highlight-color: rgba(255,255,255,0); }
a{ text-decoration: none; color: #000; font-size: 16px; }
img{ border:0; display: block; }
input,select,textarea,button{ outline: none; resize: none; }
*:focus{ outline: none; }
input, select{ -webkit-appearance: none; }

@font-face {
    /* font-family: "HanSansCN";
    font-weight: normal;
    font-style: normal;
    src: url('../font/SourceHanSansCN-Normal.ttf') format('truetype'); */
}

::-moz-selection{
    background-color: #587BB3;
    color: #fff;
}
::selection{
    background-color: #587BB3;
    color: #fff;
}

html{ 
    -webkit-overflow-scrolling: touch; 
    width: 100%;
    height: 100dvb;
    color: #333; 
    font-size: 16px;
}

:root{
    --w12: 1344px;
    --w11: 1136px;
    --w10: 944px;
    --w9: 760px;
}

.w12{
    width: 1344px;
    margin: auto;
}
.w11{
    width: 1136px;
    margin: auto;
}
.w10{
    width: 944px;
    margin: auto;
}
.w9{
    width: 760px;
    margin: auto;
}


.overflow{
    height: 100%;
    overflow: hidden;
}

.bgcolor{
    background-color: rgba(234, 237, 242, 1);
}

.bgcolor1{
    background-color: #f8f8f8;
}
.bgcolor1 .section-header{
    /* position: static; */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 22px 0 22px;
}

.scroll-snap{
    width: 100%;
    height: 100dvh;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    -webkit-scroll-snap-type: y mandatory;
        -ms-scroll-snap-type: y mandatory;
            scroll-snap-type: y mandatory;
}

.full-page{
    width: 100%;
    /* height: 100vh; */
}

[v-cloak]{
    display: none;
}


.full-loading{
    position: fixed;
    inset: 0;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 99999;
}


/* 返回顶部 */
.back-top{
    position: fixed;
    bottom: 10%;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 99;
    cursor: pointer;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    pointer-events: none;
}
.back-top.show{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.back-top .icon{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}
.back-top::before{
    content: "";
    display: block;
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #fff;
    border-radius: 50%;
}

/*向下滑动*/
.mouse-down{
    position: absolute;
    z-index: 99;
    bottom: 5%;
    left: 50%;
    cursor: pointer;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    /* pointer-events: none; */
}
.mouse-down.show{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.mouse-down .icon{
    display: block;
    margin: auto;
    width: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.mouse-down .text{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(23, 73, 152, 1);
}
.mouse-down:hover .icon{
    -webkit-animation: mousedown 0.9s infinite;
       -moz-animation: mousedown 0.9s infinite;
         -o-animation: mousedown 0.9s infinite;
            animation: mousedown 0.9s infinite;
}
@-webkit-keyframes mousedown{
    100%{
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}
@-moz-keyframes mousedown{
    100%{
        -moz-transform: translateY(10px);
             transform: translateY(10px);
    }
}
@-o-keyframes mousedown{
    100%{
        -o-transform: translateY(10px);
           transform: translateY(10px);
    }
}
@keyframes mousedown{
    100%{
        -webkit-transform: translateY(10px);
           -moz-transform: translateY(10px);
             -o-transform: translateY(10px);
                transform: translateY(10px);
    }
}



/* 了解更多 */
.block-more{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;        
}
.block-more.center{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.block-more.end{
    -webkit-box-pack: end;
    -webkit-justify-content: end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.block-more .more{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.block-more .more .text{
    font-size: 14px;
    color: rgba(0, 59, 156, 1);
}
.block-more .more::before{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    bottom: -4px;
    height: 1px;
    background-color: rgba(0, 59, 156, 1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.block-more .more .icon{
    width: 10px;
    margin-left: 9px;
}
.block-more .more:hover::before{
    width: 100%;
}


/*公共头部*/
.section-header{
    scroll-snap-align: start;
    scroll-snap-stop: always;  
    position: fixed;
    /* position: sticky; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 199;
    /* padding: 30px 0 25px;   */
    padding: 25px 0 25px;     
    -webkit-transition: 0.3s ease-in;      
    -o-transition: 0.3s ease-in;      
    -moz-transition: 0.3s ease-in;      
    transition: 0.3s ease-in;
}
.section-header .content{
    position: relative;
}
.section-header .top{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    height: 54px;
}
.section-header .top-left{
    width: 286px;
    height: 100%;
    /* padding-left: 16px;   */
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(60px);
            backdrop-filter: blur(60px);
    border-radius: 10px;
    margin-right: 24px;  
    display: -webkit-box;  
    display: -webkit-flex;  
    display: -moz-box;  
    display: -ms-flexbox;  
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-header .top-left .logo{
    /* width: 254px; */
    height: 37px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    position: absolute;
    left: 50%;
    top: -50px;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
.section-header .top-left .logo1{
    top: 50%;
    opacity: 1;
}
.section-header .top-right{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
.section-header .top-right .search{
    width: 90px;
    height: 100%;
    margin-left: 70px;
    background-color: rgba(88, 123, 179, 1);
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;  
    -webkit-box-pack: center;  
    -webkit-justify-content: center;  
       -moz-box-pack: center;  
        -ms-flex-pack: center;  
            justify-content: center;  
    -webkit-transition: 0.3s;  
    -o-transition: 0.3s;  
    -moz-transition: 0.3s;  
    transition: 0.3s;
}
.section-header .top-right .search .icon-search{
    width: 18px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-header .top-right .search:hover{
    background-color: rgb(64, 97, 150);
}
.section-header .top-right .search:hover .icon-search{
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
.section-header .navbar{
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;    
    gap: 5.5%;        
    background-color: rgba(255, 255, 255, 0.5); 
    border-radius: 10px;
    -webkit-backdrop-filter: blur(60px);
            backdrop-filter: blur(60px);
}
.section-header .navbar .menu{
    list-style: none;
    position: relative;
    height: 100%;
}
.section-header .navbar .menu-handle{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    position: relative;
}
.section-header .navbar .menu-handle::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 1px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.9s;
    -o-transition: 0.9s;
    -moz-transition: 0.9s;
    transition: 0.9s;
    width: 0;
    height: 1px;
    background-color: #fff;
    opacity: 0;
}
.section-header .navbar .menu-handle .text{
    color: rgba(51, 51, 51, 1);
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-header .navbar .menu-handle .arrow{
    display: block;
    display: none;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    border-top-color: #fff;
    margin: 7px 0 0 4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    display: none;
}
.section-header .navbar .menu-drop{
    width: 120px;
    text-align: center;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 70px;
    border: solid 1px #999;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    padding: 10px 10px;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -webkit-transform: translate(-50%, 40px);
       -moz-transform: translate(-50%, 40px);
        -ms-transform: translate(-50%, 40px);
         -o-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
    display: none;
}
.section-header .navbar .menu-drop .sub-menu a{
    display: block;
    padding: 10px 0;
    white-space: nowrap;
}
.section-header .navbar .menu-handle:hover .text{
    color: rgba(0, 59, 156, 1);
    font-weight: bold;
}
.section-header .navbar .active .menu-handle .text{
    color: rgba(0, 59, 156, 1);
    font-weight: bold;
}
.section-header .navbar .menu:hover .menu-drop{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
       -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}
.section-header .navbar .menu:hover .menu-handle .arrow{
    -webkit-transform: translate(0, -5px) rotate(180deg);
       -moz-transform: translate(0, -5px) rotate(180deg);
        -ms-transform: translate(0, -5px) rotate(180deg);
         -o-transform: translate(0, -5px) rotate(180deg);
            transform: translate(0, -5px) rotate(180deg);
}
.section-header.hide{
    /* visibility: hidden; */
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
}
.section-header.down .top-left .logo1{
    top: -50px;
    opacity: 0;
}
.section-header.down .top-left .logo2{
    top: 50%;
    opacity: 1;
}


/*公共尾部*/
.section-footer{    
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/bg-footer.png);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
    padding: 110px 0 0;
    position: relative;
}
.section-footer ul, li{
    list-style: none;
}
.section-footer .content1{
    padding: 0 100px;
}
.section-footer .content1 .item0{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.section-footer .content1 .item0 .row-left{
    font-size: 11px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.section-footer .content1 .item0 h3{
    font-size: 32px;
    font-weight: normal;
    color: #004FAA;
    margin-bottom: 10px;
}
.section-footer .content1 .item0 p{
    font-size: 20px;
    color: #004FAA;
}
.section-footer .content1 .item0 .row-right{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-footer .content1 .item0 .row-right a{
    margin-left: 36px;
    position: relative;
}
.section-footer .content1 .item0 .row-right .icon{
    max-width: 32px;
    max-height: 26px;
}
.section-footer .content1 .item0 .pop{
    text-align: center;
    border: solid 2px #003B9C;
    background-color: #fff;
    color: #003B9C;
    font-size: 12px;
    font-family: "MiSansNormal";
    white-space: nowrap;
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translate(-50%, 0);
       -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-footer .content1 .item0 .pop .img{
    width: 100%;
}
.section-footer .content1 .item0 .pop::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -6px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background-color: #003B9C;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.section-footer .content1 .item0 .phone .pop{
    width: auto;
    padding: 6px 10px;
    font-size: 16px;
}
.section-footer .content1 .item0 a:hover .pop{
    opacity: 1;
    visibility: visible;
}
.section-footer .content1 .item-line{
    height: 1px;
    background-color: rgb(0, 79, 170, 0.2);  
    margin: 40px 0 38px;
}
.section-footer .content1 .item-nav{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;  
    -webkit-box-align: start;    
    -webkit-align-items: flex-start;    
       -moz-box-align: start;    
        -ms-flex-align: start;    
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;    
    padding: 0 0 50px;  
}
.section-footer .content1 .item-nav a{
    font-size: 20px;
    color: #003B9C;
    position: relative;
}
.section-footer .content1 .item-nav a::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -4px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #003B9C;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-footer .content1 .item-nav a:hover::after{
    width: 100%
}
.section-footer .content-copyright{
    text-align: center;
    padding: 40px 0;
    background-color: #587BB3;
    border-radius: 20px 20px 0 0;
}
.section-footer .content-copyright .row{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.61);
}
.section-footer .content-copyright .row a{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.61);
}


/* banner图 */
.section-banner{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    background-position: center 0;
    background-repeat: no-repeat;
    -o-background-size: cover;
       background-size: cover;
    overflow: hidden;   
}
.section-banner .banner{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    /* position: absolute;
    top: 0;
    left: 0;
    min-height: 100%; */
}
.section-banner.index{
    padding: 110px 0 0;
    height: 100dvh;
    border-radius: 20px;
}
.section-banner.index .banner{
    /* min-height: 100%; */
}
.section-banner.index .swiper-container{
    border-radius: 20px 20px 65px 65px;
}
.section-banner.index .swiper-slide{
    border-radius: 20px;
}
.section-banner .banner.pc{
    display: block;
}
.section-banner .banner.mobile{
    display: none;
}
.section-banner .fluid-glass{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 64px;
    color: #fff;
}
.section-banner .zoom{
    width: 300px;
    height: 300px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    /* backdrop-filter: blur(1px); */
    background-color: rgb(255, 255, 255, 0.3);
    /* border: solid 1px rgba(114, 168, 255, 0.5); */
    border-radius: 50%;
    /* box-shadow: 0 0 20px inset rgba(114, 168, 255, 1); */
    /* box-shadow: 0 0 20px inset rgba(219, 233, 255, 1); */
    /* transition: 0.1s; */
    /* mix-blend-mode: multiply; */
    overflow: hidden;
    visibility: hidden;
}
.section-banner .zoom.move{
    visibility: visible;
}
.section-banner .zoom::after{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px inset rgba(219, 233, 255, 1);
    mix-blend-mode: multiply;
    mix-blend-mode: overlay;
}
.section-banner .zoom img{
    position: absolute;
    left: 0;
    top: 0;
}
.section-banner .zoom canvas{
    position: absolute;
    left: 0;
    top: 0;
}
.section-banner .content{
    position: absolute;
    left: 50%;
    top: 45%;  
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.section-banner .item-title{
    white-space: nowrap;
}
.section-banner .item-title .zh{
    font-size: 48px;
    font-weight: 400;
    color: #0F0F0F;
}
.section-banner .item-title .en{
    font-size: 60px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -55%;
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 79, 170, 0.2)), to(rgba(0, 79, 170, 0.04)));
    background-image: -webkit-linear-gradient(top, rgba(0, 79, 170, 0.2), rgba(0, 79, 170, 0.04));
    background-image: -moz-linear-gradient(top, rgba(0, 79, 170, 0.2), rgba(0, 79, 170, 0.04));
    background-image: -o-linear-gradient(top, rgba(0, 79, 170, 0.2), rgba(0, 79, 170, 0.04));
    background-image: linear-gradient(to bottom, rgba(0, 79, 170, 0.2), rgba(0, 79, 170, 0.04));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-banner .item-btns{
    margin-top: 18px;
    margin-bottom: -30px;
}
.section-banner .item-btns .btn{
    display: block;
    width: 120px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: #E89033;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}
.section-banner .item-btns .btn:hover{
    background-color: #e08422;
}
.section-banner .swiper-container{
    width: 100%;
    height: 100%;
    -webkit-clip-path: ellipse(120% 100% at 50% 0%);
            clip-path: ellipse(120% 100% at 50% 0%);
}
.section-banner .swiper-slide{
    overflow: hidden;
}
.section-banner .swiper-slide::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 70px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../images/bg-banner-line1.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    width: var(--w11);
}


/*关于我们*/
.section-index-about{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/index/bg-about.png);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% cover;
       background-size: 100% cover;
    height: 100dvh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -25px;
}
.section-index-about .content{
}
.section-index-about .item-title{
    text-align: center;
    position: relative;
}
.section-index-about .item-title .zh{
    font-size: 32px;
    font-weight: 600;
}
.section-index-about .item-title .en{
    font-size: 56px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: -80%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-index-about .item1{
    line-height: 28px;
    color: rgba(51, 51, 51, 1);
    margin-top: 55px;
}
.section-index-about .item1{
    text-align: center;
    font-size: 20px;
    margin-top: 55px;
}
.section-index-about .item2{
    width: 68%;
    margin: auto;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    color: rgba(51, 51, 51, 0.7);
    margin-top: 16px;
}
.section-index-about .block-more{
    margin-top: 44px;
}
.section-index-about .item-data{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
    text-align: center;
    margin-top: 65px;
}
.section-index-about .item-data dt{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.section-index-about .item-data dd{
    font-size: 14px;
    color: #666;
    margin-top: -8px;
}
.section-index-about .item-data .number{
    font-size: 64px;
    font-weight: bold;
    color: #587BB3;
}
.section-index-about .item-data .unit{
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0 20px 5px;
}
.section-index-about .item-data .s0{
    font-size: 14px;
    color: #666;
}
.section-index-about .item-data .s1{
    font-size: 14px;
    color: #587BB3;
    margin-left: -4px;
}
.section-index-about .item-data .s3{
    font-size: 14px;
    color: #587BB3;
    font-weight: bold;
}


/*产品与解决方案*/
.section-index-product-solution{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/index/bg-product1.png);
    background-position: center right;
    background-repeat: no-repeat;
    -o-background-size: auto 100%;
       background-size: auto 100%;
    margin-top: -40px;
}
.section-index-product-solution .inner{
    /* height: 100dvh; */
    height: -webkit-calc(100dvh + 40px);
    height: -moz-calc(100dvh + 40px);
    height: calc(100dvh + 40px);
    background-image: url(../images/index/bg-product.png);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 100px 0 100px;      
}
.section-index-product-solution .content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}
.section-index-product-solution .item-title{
    text-align: center;
    position: relative;
    width: 100%;
}
.section-index-product-solution .item-title .zh{
    font-size: 32px;
    font-weight: 600;
}
.section-index-product-solution .item-title .en{
    font-size: 56px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: -80%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-index-product-solution .item1{
    width: 77%;
    margin: auto;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    color: rgba(51, 51, 51, 0.7);
    margin-top: 15px;
}
.section-index-product-solution .block-more{
    margin-top: 20px;
    width: 100%;
}
.section-index-product-solution .item2{
    /* height: 450px; */
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    position: relative;
}
.section-index-product-solution .item2::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}
.section-index-product-solution .item2 .bgimg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-index-product-solution .item2 .bgimg .bg{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: none;   
}
.section-index-product-solution .item2 .list{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.section-index-product-solution .item2 .icon1{
    display: block;
    width: 64px;
    margin: auto;
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}
.section-index-product-solution .item2 .row1{
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin-top: 25px;
}
.section-index-product-solution .item2 .row2{
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 25px;
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}
.section-index-product-solution .item2 .row3{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    width: 50%;
    margin: auto;
    margin-top: 16px;
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    text-align: center;
}
.section-index-product-solution .item2 .block-more{
    margin-top: 25px;
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}
.section-index-product-solution .item2 .block-more .more .text{
    color: #fff;
}
.section-index-product-solution .item2 .block-more .more::before{
    background-color: #fff;
}
.section-index-product-solution .item2 .list:hover .icon1{
    opacity: 1;
}
.section-index-product-solution .item2 .list:hover .row2{
    opacity: 1;
}
.section-index-product-solution .item2 .list:hover .row3{
    opacity: 1;
}
.section-index-product-solution .item2 .list:hover .block-more{
    opacity: 1;
}
.section-index-product-solution .item2 .bgimg .active{
    display: block;
}
.section-index-product-solution .item2 .list.active .icon1{
    opacity: 1;
}
.section-index-product-solution .item2 .list.active .row2{
    opacity: 1;
}
.section-index-product-solution .item2 .list.active .row3{
    opacity: 1;
}
.section-index-product-solution .item2 .list.active .block-more{
    opacity: 1;
}

.section-index-product-solution .swiper-container{
    width: 100%;
    padding: 30px 0 70px;
}
.section-index-product-solution .swiper-slide{
    width: 368px;
    margin-right: 16px;
}
.section-index-product-solution .swiper-slide .block{
    display: block;
    width: 100%;
    height: 193px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-product-solution .swiper-slide .block:nth-child(1){
    margin-top: 0;
}
.section-index-product-solution .swiper-slide .block::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 59, 156, 0.3);
}
.section-index-product-solution .swiper-slide .img{
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: auto;
}
.section-index-product-solution .swiper-slide .detail{
    padding: 0 22px;
    position: absolute;
    inset: 0;
    color: #fff;
    padding: 0 42px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(40%);
       -moz-transform: translateY(40%);
        -ms-transform: translateY(40%);
         -o-transform: translateY(40%);
            transform: translateY(40%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-product-solution .swiper-slide .title{
    font-size: 16px;
}
.section-index-product-solution .swiper-slide .brief{
    font-size: 14px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-product-solution .block:hover{
    -webkit-transform: translateY(-12px);
       -moz-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
         -o-transform: translateY(-12px);
            transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(0, 59, 156, 0.3);
}
.section-index-product-solution .block:hover .detail{
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
}
.section-index-product-solution .block:hover .brief{
    opacity: 1;
}
.section-index-product-solution .swiper-pagination{
    position: static;
    margin-top: 15px;
    display: block;
}
.section-index-product-solution .swiper-pagination-bullet{
    width: 32px;
    height: 4px;
    border-radius: 8px;
    background-color: rgba(0, 59, 156, 0.2);
    margin: 0 4px;
    mix-blend-mode: multiply;
    opacity: 1; 
    -webkit-transition: 0.6s; 
    -o-transition: 0.6s; 
    -moz-transition: 0.6s; 
    transition: 0.6s;
}
.section-index-product-solution .swiper-pagination-bullet-active{
    background-color: rgba(0, 59, 156, 1);
    width: 60px;
    opacity: 1; 
}


/*技术与服务*/
.section-index-technical-service{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/index/bg-technical-service.png);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    position: relative;
    margin-top: -40px;
    overflow: hidden;
}
.section-index-technical-service .inner{
    -webkit-clip-path: path('M0,0 Q672,99 1344,0 L1344,1000 L0,1000 L0,0 Z');
            clip-path: path('M0,0 Q672,99 1344,0 L1344,1000 L0,1000 L0,0 Z');
}
.section-index-technical-service .content{
    height: 110dvh;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;        
    position: relative;
}
.section-index-technical-service .content-left{
    /* width: 52%; */
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    /* padding: 130px 110px 0 0; */
    padding: 130px 130px 0 0;
}
.section-index-technical-service .content-left .item-title{
    position: relative;
}
.section-index-technical-service .content-left .item-title .zh{
    font-size: 32px;
    font-weight: 600;
}
.section-index-technical-service .content-left .item-title .en{
    font-size: 52px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -80%;
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.section-index-technical-service .content-left .block-more{
    margin-top: 20px;
}
.section-index-technical-service .content-left .item0{
    font-size: 18px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    margin-top: 130px;
}
.section-index-technical-service .content-left .item1{
    font-size: 14px;
    line-height: 28px;
    color: rgba(51, 51, 51, 1);
    margin-top: 18px;
}
.section-index-technical-service .content-left .item2{
    margin-top: 80px;
}
.section-index-technical-service .content-left .item2 .icon{ 
    display: block;
    width: 34px;
}
.section-index-technical-service .content-left .item3{
    font-size: 14px;
    color: rgba(0, 59, 156, 1);
    margin-top: 80px;
}
.section-index-technical-service .content-left .item4{
    overflow: hidden;
}
.section-index-technical-service .content-left .item-partners{
    margin: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.section-index-technical-service .content-left .item-partners .list{
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-index-technical-service .content-left .item-partners .list a{
    margin: 0 5px;
    display: block;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-index-technical-service .content-left .item-partners img{
    display: block;
    max-width: 105px;
    max-height: 70px;
}
.section-index-technical-service .content-right{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    width: 530px;        
}
.section-index-technical-service .content-right .swiper-container{
    flex: 1;
    height: -webkit-calc(100vh + 70px);
    height: -moz-calc(100vh + 70px);
    height: calc(100vh + 70px);
    /* border: solid 1px red; */
}
.section-index-technical-service .content-right .swiper-container2{
    /* height: calc(100vh - 20px); */
    /* margin-top: 20px; */
}
.section-index-technical-service .content-right .swiper-slide{
    width: 252px;
    height: auto;
    /* height: 350px; */
    /* max-height: 350px; */
    overflow: hidden;
    margin-top: 12px;
    border-radius: 10px;
    -webkit-clip-path: ellipse(120% 100% at 50% 0%);
            clip-path: ellipse(120% 100% at 50% 0%);
}
.section-index-technical-service .content-right .swiper-slide a{
    display: block;
    width: 100%;
    /* height: 100%; */
    max-height: 350px;
    position: relative;
}
.section-index-technical-service .content-right .swiper-slide .img{
    width: 100%;
    /* min-height: 100%; */
    -o-object-fit: cover;
       object-fit: cover;
}
.section-index-technical-service .content-right .swiper-slide a::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    top: 0;
    background-image: url(../images/bg-mask1.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    visibility: hidden;   
}
.section-index-technical-service .content-right .item:nth-child(1) .list:nth-child(2n) a::after{
    background-image: url(../images/bg-mask2.png);
}
.section-index-technical-service .content-right .item:nth-child(2) .list:nth-child(2n+1) a::after{
    background-image: url(../images/bg-mask2.png);
}


/*新闻中心*/
.section-index-news{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/index/bg-news.png);
    background-position: center 9px;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    /* background-color: #5d7cb5; */
    min-height: 100dvh;
    padding: 110px 0 80px;
    position: relative;
    margin-top: -50px;
    margin-bottom: -60px;
}
.section-index-news::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 80px;
    background-image: url(../images/bg-radius-line4.png);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-index-news .content{
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-index-news .item-title{
    position: relative;
    text-align: center;
}
.section-index-news .item-title .zh{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}
.section-index-news .item-title .en{
    font-size: 56px;
    font-weight: 300;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -80%;
    color: rgba(255, 255, 255, 0.07);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-index-news .item-tabs{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 25px;
}
.section-index-news .tab-list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.section-index-news .tab-list .tab{
    background-color: #244170;
    border-radius: 10px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 16px;
    padding: 0 35px;
    height: 40px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-news .tab-list .tab:hover{
    background-color: #fff;
    color: #003E9D;
}
.section-index-news .tab-list .active{
    background-color: #fff;
    color: #003E9D;
}
.section-index-news .block-more .more .text{
    color: #fff;
}
.section-index-news .block-more .more::before{
    background-color: #fff;
}
.section-index-news .item-news{
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;        
    margin-top: 30px;
    display: none;
}
.section-index-news .item-news.active{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.section-index-news .item-news .list a{
    display: block;
    background-color: #fff;
    padding: 22px 22px 20px;
    border-radius: 10px;
    position: relative;
}
.section-index-news .item-news .list .imgbox{
    width: 100%;
    height: 326px;
    border-radius: 10px;
    overflow: hidden;
}
.section-index-news .item-news .list .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-news .item-news .list .time{
    font-size: 14px;
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-index-news .item-news .list .tag{
    font-size: 10px;
    display: inline-block;
    width: 82px;
    height: 18px;
    line-height: 18px;
    background-color: #E89033;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    margin-left: 20px;
}
.section-index-news .item-news .list .title{
    font-size: 18px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-index-news .item-news .list .brief{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 50px 0 0;
}
.section-index-news .item-news .list .icon-more{
    display: block;
    width: 14px;
    position: absolute;
    right: 30px;
    bottom: 44px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-index-news .news-first{
    width: 656px;
}
.section-index-news .news-list{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 24px;
}
.section-index-news .news-list .list{
    margin-bottom: 22px;
}
.section-index-news .news-list .list a{
    padding: 21px 24px;
}
.section-index-news .news-list .list .time{
    margin-top: 1px;
}
.section-index-news .news-list .list .brief{
    -webkit-line-clamp: 2; 
    color: rgba(0, 0, 0, 0.5);
}
.section-index-news .news-list .list .icon-more{
    bottom: 62px;
}
.section-index-news .item-news .list:hover .img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.section-index-news .item-news .list:hover .icon-more{
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
         -o-transform: scale(1.3);
            transform: scale(1.3);
}


/*公司简介*/
.section-about-company-profile{
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.section-about-company-profile .inner{
    position: relative;
    padding: 120px 0 100px;
}
.section-about-company-profile .inner::before{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -70px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 770px;
    height: 740px;
    background-image: url(../images/about/bg-company-profile2.png);
    background-position: right 60%;
    background-repeat: no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}
.section-about-company-profile .item-title{
    position: relative;
    text-align: center;
}
.section-about-company-profile .item-title .zh{
    font-size: 24px;
    font-weight: 600;
}
.section-about-company-profile .item-title .en{
    font-size: 32px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: -110%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-about-company-profile .content{
    margin-top: 45px;
}
.section-about-company-profile .row{
    font-size: 22px;
    color: #A3A3A3;
    margin: 8px 5.3%;
    line-height: 1.5;
    position: relative;
    /* background-image: linear-gradient(to right, #003B9C, #003B9C);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 0 33px; */
}
.section-about-company-profile .row .copy{
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: #003B9C;
}



/*多元兼容 科技向善*/
.section-about-multi-compatibility{
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.section-about-multi-compatibility .item-title{
    text-align: center;
}
.section-about-multi-compatibility .item-title .title{
    font-size: 28px;
    font-weight: bold;
    color: #203F89;
}
.section-about-multi-compatibility .item-img{
    margin-top: 40px;
    height: 430px;
    overflow: hidden;
}
.section-about-multi-compatibility .item-img .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: none;
}
.section-about-multi-compatibility .item-img .active{
    display: block;
}
.section-about-multi-compatibility .item1{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background-color: #F0F0F0;
    border-radius: 0 0 10px 10px;
    min-height: 200px;
}
.section-about-multi-compatibility .item1 .list{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    padding: 30px 24px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-about-multi-compatibility .item1 .list::before{
    content: "";
    display: block;
    width: 0;
    position: absolute;
    left: 0;
    top: 0px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#D35A31), to(#003B9C));
    background: -webkit-linear-gradient(left, #D35A31, #003B9C);
    background: -moz-linear-gradient(left, #D35A31, #003B9C);
    background: -o-linear-gradient(left, #D35A31, #003B9C);
    background: linear-gradient(to right, #D35A31, #003B9C);
    opacity: 0;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}
.section-about-multi-compatibility .item1 .list .title{
    color: #333;     
    font-size: 20px;   
    font-weight: bold;
}
.section-about-multi-compatibility .item1 .list .brief{
  margin-top: 20px;
}
.section-about-multi-compatibility .item1 .list .text{
    color: #333;
    font-size: 16px;
}
.section-about-multi-compatibility .item1 .list.active{
    background-color: #f8f8f8;
}
.section-about-multi-compatibility .item1 .list.active::before{
    opacity: 1;
    width: 100%;
}
.section-about-multi-compatibility .item2{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 44px;
       -moz-column-gap: 44px;
            column-gap: 44px;
    margin-top: 120px;
    overflow: hidden;
}
.section-about-multi-compatibility .item2 .item2-info{
    width: 245px;
}
.section-about-multi-compatibility .item2 .item2-img{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    border-radius: 10px;
    overflow: hidden;
}
.section-about-multi-compatibility .item2 .list{
    width: 140px;
    height: 420px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.section-about-multi-compatibility .item2 .item2-info .list{
    display: none;
    width: 100%;
}
.section-about-multi-compatibility .item2 .list .imgbox{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.section-about-multi-compatibility .item2 .list .imgbox .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-about-multi-compatibility .item2 .list .imgbox .title{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-about-multi-compatibility .item2 .list .imgbox .order{
    font-size: 96px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 100;
}
.section-about-multi-compatibility .item2 .list .imgbox .name{
    color: #fff;
    position: relative;
    top: -30px;
    margin-left: 10px;
    display: none;
}
.section-about-multi-compatibility .item2 .list .info{
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}  
.section-about-multi-compatibility .item2 .list .info .title{
    font-size: 20px;   
    font-weight: bold;
    width: 100%;
}
.section-about-multi-compatibility .item2 .list .info .brief{
    line-height: 1.5;
    width: 100%;
}
.section-about-multi-compatibility .item2 .list.active{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
}
.section-about-multi-compatibility .item2 .item2-info .list.active{
    display: block;
}
.section-about-multi-compatibility .item2 .list.active .imgbox .title{
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.section-about-multi-compatibility .item2 .list.active .imgbox .name{
    display: block;
}


/*发展历程*/
.section-about-development-history{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-image: url(../images/about/bg-development-history.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    margin-top: 100px;
    padding: 85px 0 90px;
}
.section-about-development-history .content{
    position: relative;
}
.section-about-development-history .item-title{
    position: relative;
}
.section-about-development-history .item-title .zh{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.section-about-development-history .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -75%;
    color: rgba(255, 255, 255, 0.2);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-about-development-history .swiper-container{
    width: 100%;
    padding: 0 0 20px;
    margin-top: 140px;
}
.section-about-development-history .swiper-slide{
    width: 22%;
    width: 245px;
    height: 240px;
}
.section-about-development-history .swiper-slide::before{
    content: "";
    display: block;
    position: absolute;
    left: 14px;
    top: 40px;
    bottom: 16px;
    width: 10px;
    background-image: url(../images/about/bg-development-history4.png);
    background-position: 0 0;
    background-repeat: repeat-y;
    -o-background-size: 8px auto;
       background-size: 8px auto;
}
.section-about-development-history .swiper-slide .line{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 35px;
}
.section-about-development-history .swiper-slide .line::before{
    content: "";
    display: block;
    position: absolute;
    left: 6px;
    top: 6px;
    width: 25px;
    height: 25px;
    background-image: url(../images/about/bg-development-history3.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-about-development-history .swiper-slide:hover .line::before{
    background-image: url(../images/about/bg-development-history2.png);
    width: 35px;
    height: 35px;
    left: 0;
    top: 3px;
}
.section-about-development-history .swiper-slide .line::after{
    content: "";
    display: block;
    position: absolute;
    left: 8px;
    bottom: -9px;
    width: 19px;
    height: 19px;
    background-image: url(../images/about/bg-development-history3.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}
.section-about-development-history .swiper-slide .time{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 0 10px 0 48px;
}
.section-about-development-history .swiper-slide .detail{
    font-size: 16px;
    color: #fff;
    padding: 18px 10px 0 48px;
    line-height: 1.5;
}
.section-about-development-history .swiper-pagination{
    margin-top: 25px;
    display: block;
}
.section-about-development-history .swiper-pagination-bullet{
    width: 32px;
    height: 4px;
    border-radius: 8px;
    background-color: rgba(0, 59, 156, 0.2);
    margin: 0 4px;
    mix-blend-mode: multiply;
    opacity: 1; 
    -webkit-transition: 0.6s; 
    -o-transition: 0.6s; 
    -moz-transition: 0.6s; 
    transition: 0.6s;
}
.section-about-development-history .swiper-pagination-bullet-active{
    background-color: rgba(0, 59, 156, 1);
    width: 60px;
    opacity: 1; 
}
.section-about-development-history .swiper-arrow{
    width: 61px;
    height: 61px;
    background-color: rgb(255, 255, 255, 0.2);
    border-radius: 50%;
    background-image: url(../images/icon-swiper-arrow-left1.png);
    background-position: center center;
    background-repeat: no-repeat;
    -o-background-size: 11px auto;
       background-size: 11px auto;
    left: -80px;
    margin-top: 0;
    top: 24%;
}
.section-about-development-history .swiper-arrow::after{
    display: none;
}
.section-about-development-history .swiper-button-next{
    background-image: url(../images/icon-swiper-arrow-right1.png);
    left: auto;
    right: -80px;
}
.section-about-development-history .swiper-container .swiper-scrollbar{
    bottom: 18px;
    height: 1px;
    background-color: rgb(217, 217, 217, 0.4);
    z-index: 0;
}
.section-about-development-history .swiper-container .swiper-scrollbar-drag{
    background-color: #D9D9D9;
}
.section-about-development-history .scroll{
    display: block;
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 20px;
    height: 1px;
    background-color: rgb(217, 217, 217, 0.4);
}
.section-about-development-history .scroll .bar{
    width: 22%;
    height: 1px;
    background-color: #D9D9D9;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}



/*资质荣誉*/
.section-about-honor{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 100px 0 70px;
    overflow: hidden;
}
.section-about-honor .content{
    position: relative;
}
.section-about-honor .item-title{
    position: relative;
}
.section-about-honor .item-title .zh{
    font-size: 24px;
    font-weight: 600;
    color: #0F0F0F;
}
.section-about-honor .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-about-honor .content-tabs{
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.section-about-honor .content-tabs .tab{
    font-size: 14px;
    padding: 5px 0;
    margin-right: 74px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-about-honor .content-tabs .tab:hover{
    color: #244170;
    font-weight: bold;
    font-size: 18px;
}
.section-about-honor .content-tabs .tab.active{
    color: #244170;
    font-weight: bold;
    font-size: 18px;
}
.section-about-honor .swiper-container{
    width: 100%;
    padding: 30px 0 50px;
    overflow: visible;
    display: none;
}
.section-about-honor .swiper-container.active{
    display: block;
}
.section-about-honor .swiper-slide{
    width: 270px;
    height: 390px;
    box-shadow: 0px 24px 34px rgba(208, 226, 238, 0.4);
    margin-right: 16px;
    /* padding: 35px 24px; */
    border-radius: 10px;
}
.section-about-honor .swiper-slide .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-about-honor .swiper-arrow{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.section-about-honor .swiper-arrow div{
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255, 0.2);
    border-radius: 50%;
    background-image: url(../images/icon-swiper-arrow-left2.png);
    background-position: center center;
    background-repeat: no-repeat;
    -o-background-size: 11px auto;
       background-size: 11px auto;
    margin-top: 0;
    position: static;
    margin-right: 100px;
}
.section-about-honor .swiper-arrow div::after{
    display: none;
}
.section-about-honor .swiper-arrow .swiper-button-next{
    background-image: url(../images/icon-swiper-arrow-right2.png);
}



/*技术服务简介*/
.section-services-profile{
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.section-services-profile .inner{
    padding: 100px 0 60px;
}
.section-services-profile .item-title{
    position: relative;
}
.section-services-profile .item-title .zh{
    font-size: 24px;
    font-weight: 500;
}
.section-services-profile .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -80%;
    color: rgba(0, 79, 170, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-services-profile .content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 80px;
}
.section-services-profile .content-left .imgbox{
    display: block;
    width: 560px;
    height: 440px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-clip-path: ellipse(165% 100% at 50% 0%);
            clip-path: ellipse(165% 100% at 50% 0%);
    position: relative;
}
.section-services-profile .content-left .imgbox::after{
    pointer-events: none;
    content: "";
    display: block;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    background-image: url(../images/services/bg-radius.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-services-profile .content-left .imgbox .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-services-profile .content-right{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 80px;
}
.section-services-profile .item1{
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 28px;
}
.section-services-profile .item2{
    font-size: 16px;
    color: rgba(51, 51, 51, 0.7);
    line-height: 22px;
    margin-top: 24px;
}



/*应用案例*/
.section-services-case{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 60px 0 70px;
    overflow: hidden;
}
.section-services-case .item-title{
    position: relative;
}
.section-services-case .item-title .zh{
    font-size: 24px;
    font-weight: 500;
    color: #0F0F0F;
}
.section-services-case .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-services-case .item-line{
    height: 1px;
    background-color: rgba(217, 217, 217, 0.9);
    margin: 10px 0 70px;
}
.section-services-case .swiper-container{
    width: 100%;
    padding: 30px 0 50px;
    margin-top: 30px;
}
.section-services-case .swiper-slide{
    width: 270px;
    margin-right: 16px;
    cursor: pointer;
}
.section-services-case .swiper-slide .img{
    width: 100%;
    height: 174px;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-services-case .swiper-slide .line{
    display: block;
    width: 100%;
    margin-top: -10px;
}
.section-services-case .swiper-slide .text{
    text-align: center;
    font-weight: 400;
    margin-top: 22px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-services-case .swiper-arrow{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.section-services-case .swiper-arrow div{
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255, 0.2);
    border-radius: 50%;
    background-image: url(../images/icon-swiper-arrow-left2.png);
    background-position: center center;
    background-repeat: no-repeat;
    -o-background-size: 11px auto;
       background-size: 11px auto;
    margin-top: 0;
    position: static;
    margin-right: 100px;
}
.section-services-case .swiper-arrow div::after{
    display: none;
}
.section-services-case .swiper-arrow .swiper-button-next{
    background-image: url(../images/icon-swiper-arrow-right2.png);
}
.section-services-case2 .swiper-slide .text{
    text-align: left;
    font-weight: normal;
    margin-top: 14px;
}



/*产品与解决方案*/
.section-products{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 100px 0 100px;
}
.section-products .item-title{
    position: relative;
    white-space: nowrap;
}
.section-products .item-title .zh{
    font-size: 24px;
    font-weight: 600;
    color: #0F0F0F;
}
.section-products .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-products .content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 70px;
}
.section-products .content-left{
    width: 180px;
}
.section-products .tabs-list .tab{
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
}
.section-products .tabs-list .icon{
    width: 42px;
    height: 42px;
    margin-right: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-products .tabs-list .icon .img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.section-products .tabs-list .icon .img2{
    display: none;
}
.section-products .tabs-list .text{
    display: inline-block;
    color: #33333380;
    font-size: 20px;
    position: relative;
}
.section-products .tabs-list .text::after{
    content: '';
    display: block;
    height: 20px;
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -20px;
    background-image: url(../images/bg-product-tab-radius.png);
    background-position: center center;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    opacity: 0;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    -moz-transition: 0.1s;
    transition: 0.1s;
}
.section-products .tabs-list .tab:hover .text{
    color: #003B9C;
}
.section-products .tabs-list .active .text::after{
    opacity: 1;
}
.section-products .tabs-list .active .text{
    color: #003B9C;
}
.section-products .content-right{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    /* margin-left: 100px; */
}
.section-products .banner{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.section-products .banner .img{
    display: block;
    width: 100%;
    height: 215px;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-products .banner .text{
    position: absolute;
    left: 35px;
    right: 35px;
    top: 35px;
}
.section-products .banner .text .title{
    color: #fff;
    font-size: 24px;
}
.section-products .banner .text .brief{
    color: #fff;
    font-size: 14px;
    margin-top: 25px;
    width: 60%;
}
.section-products .item-list{
    display: grid;     
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.section-products .item-list .list{
    margin-top: 30px;
}
.section-products .item-list a{
    display: block;
    position: relative;
}
/* .section-products .item-list a::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 20px;
    border: solid 1px #003B9C;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
} */
.section-products .item-list .imgbox{
    width: 100%;
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 45px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* border-top: solid 1px #003B9C; */
    box-shadow: 0 10px 30px rgb(208, 226, 238, 0.4);
    position: relative;
}
.section-products .item-list .imgbox::before{
    content: '';
    display: block;
    position: absolute;
    width: 180%;
    height: 170%;
    left: -40%;
    top: -35%;
    background: -webkit-gradient(linear, left top, left bottom, from(#003B9C), color-stop(rgba(0, 59, 156, 0)), to(rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, #003B9C, rgba(0, 59, 156, 0), rgba(255, 255, 255, 1));
    background: -moz-linear-gradient(top, #003B9C, rgba(0, 59, 156, 0), rgba(255, 255, 255, 1));
    background: -o-linear-gradient(top, #003B9C, rgba(0, 59, 156, 0), rgba(255, 255, 255, 1));
    background: linear-gradient(to bottom, #003B9C, rgba(0, 59, 156, 0), rgba(255, 255, 255, 1));
    opacity: 0;
}
@-webkit-keyframes border-move {
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-moz-keyframes border-move {
    100%{
        -moz-transform: rotate(360deg);
             transform: rotate(360deg);
    }
}
@-o-keyframes border-move {
    100%{
        -o-transform: rotate(360deg);
           transform: rotate(360deg);
    }
}
@keyframes border-move {
    100%{
        -webkit-transform: rotate(360deg);
           -moz-transform: rotate(360deg);
             -o-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.section-products .item-list .imgbox:hover::before{
    opacity: 1;
    -webkit-animation: border-move 4s linear infinite;
       -moz-animation: border-move 4s linear infinite;
         -o-animation: border-move 4s linear infinite;
            animation: border-move 4s linear infinite;
}
.section-products .item-list .imgbox::after{
    content: '';
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    background: #fff;
    border-radius: 10px;
}
/* .section-products .item-list .imgbox::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #003B9C, rgba(0, 59, 156, 0));
}
.section-products .item-list .imgbox::after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #003B9C, rgba(0, 59, 156, 0));
} */
.section-products .item-list .img{
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    z-index: 3;
}
.section-products .item-list .title{
    font-size: 24px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: normal;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-products .item-list .brief{
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-products .item-list .block-more{
    margin-top: 20px;
}
.section-products .item-list .list:hover .img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}



/*新闻中心*/
.section-news-center{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 100px 0 120px;
}
.section-news-center .content-title{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-news-center .item-title{
    position: relative;
    white-space: nowrap;
}
.section-news-center .item-title .zh{
    font-size: 24px;
    font-weight: 500;
    color: #0F0F0F;
}
.section-news-center .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-news-center .item-news-list{
    display: grid;     
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 0 0;
}
.section-news-center .item-news-list .list{
    margin-top: 40px;
}
.section-news-center .item-news-list a{
    display: block;
    position: relative;
}
.section-news-center .item-news-list .imgbox{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}
.section-news-center .item-news-list .list:nth-child(1) .imgbox{
    /* display: block; */
}
.section-news-center .item-news-list .list:nth-child(2) .imgbox{
    /* display: block; */
}
.section-news-center .item-news-list .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-news-center .item-news-list .tag{
    font-size: 10px;
    display: inline-block;
    width: 82px;
    height: 18px;
    line-height: 18px;
    background-color: #E89033;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    margin-left: 20px;
}
.section-news-center .item-news-list .title{
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-news-center .item-news-list .brief{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-news-center .item-news-list .block-more{
    margin-top: 20px;
}
.section-news-center .item-news-list .list:hover .img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.section-news-center .item-news-list .list:hover .more::before{
    width: 100%;
}
.section-news-center .item-pagination{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
}
.section-news-center .el-pagination .el-pager li{
    font-weight: normal;
}
.section-news-center .el-pagination .el-pager li.active{
    background: #003B9C!important;
}


.section-news-list{
    padding-top: 0;
}
.section-news-list .item-news-list{
    display: block;
}
.section-news-list .item-news-list .list{
}

.section-news-search .item-title{
    font-size: 18px;   
    margin-top: 80px;
}
.section-news-search .item-search{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    margin-top: 24px;
}
.section-news-search .item-search .input{
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
    background: #E9E9E9;
    border: 0;
    border-radius: 5px;
    padding: 0 15px;
}
.section-news-search .item-search .input::-webkit-input-placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .input:-moz-placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .input::-moz-placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .input:-ms-input-placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .input::-ms-input-placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .input::placeholder{
    font-size: 14px;
    color: rgb(0, 0, 0, 0.2);
}
.section-news-search .item-search .btn{
    width: 160px;
    height: 100%;
    margin-left: 16px;
    background-color: rgba(88, 123, 179, 1);
    border-radius: 5px;
    border: 0;
    color: #fff;
    cursor: pointer;
}

.section-news-center-list{
    margin-top: 80px;
}
.section-news-center-list .item-news-list .list .imgbox{
    display: block;
}
.section-news-center-list .item-news-list .list:nth-child(1) .imgbox{
    display: block;
}
.section-news-center-list .item-news-list .list:nth-child(2) .imgbox{
    display: block;
}
.section-news-center-list .item-news-list .list:nth-child(3) .imgbox{
    display: block;
}


/*定制服务*/
.el-dialog .el-dialog__header .el-dialog__close{
    font-size: 30px;
    color: #000;
}
.el-dialog .item-title{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-top: -32px;
}
.dialog-customized-service .item1{
    margin-top: 20px;
    color: #000;
    font-size: 16px;
}
.dialog-customized-service .item-form{
    margin-top: 24px;
}
.dialog-customized-service .el-form-item{
    margin-bottom: 10px;
}
.dialog-customized-service .el-form-item__content{
    line-height: normal;
}
.dialog-customized-service .el-input__inner{
    height: 48px;
    background: #F0F0F0;
    font-size: 16px;
}
.dialog-customized-service .dialog-footer{
    padding: 30px 0 10px;
}
.dialog-customized-service .dialog-footer .el-button{
    background: #E89033;
    width: 100%;
    height: 48px;
}
.dialog-customized-service .item-code .btn{
    width: 100px;
    height: 100%;
    /* cursor: pointer; */
    text-align: center;
    padding: 0;
}
.dialog-customized-service .item-code{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.dialog-customized-service .item-code .btn:hover{
    background-color: #F5F7FA;
}
.dialog-customized-service .item-code .imgcode{
    height: 48px;
    margin-left: 10px;
    cursor: pointer;
}
.dialog-customized-service .item-code .el-form-item__content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}



/*新闻中心*/
.section-contact-us{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 150px 0 150px;
}
.section-contact-us .item-list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;     
    gap: 75px;
}
.section-contact-us .item-list .list{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.section-contact-us .item-list .list:nth-child(1){
    width: 215px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
       -moz-box-flex: 0;
        -ms-flex: none;
            flex: none;
}
.section-contact-us .item-list .imgbox{
    width: 100%;
    margin-top: 49px;
}
.section-contact-us .item-list .img{
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-contact-us .item-list .title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}
.section-contact-us .item-list .brief{
    line-height: 1.5;
}
.section-contact-us .item-list .detail{
    margin-top: 20px;
    padding: 14px 11px 20px;
    border-radius: 5px;
    background-color: #DDE4EE;
}
.section-contact-us .item-list .ewm{
    background-color: #fff;
    min-height: 90px;
}
.section-contact-us .item-list .ewm .img{
    width: 100%;
}
.section-contact-us .item-list .info{
    margin-top: 15px;
}
.section-contact-us .item-list .text{
    display: block;
    font-size: 14px;
    padding: 3px 0;
}
.section-contact-us .item-list .bold{
    font-weight: bold;
}
.section-contact-us .item-list a.text:hover{
    text-decoration: underline;
}




/*产品与解决方案*/
.section-product-list{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 100px 0 0;
}
.section-product-list .item-title{
    position: relative;
    white-space: nowrap;
}
.section-product-list .item-title .zh{
    font-size: 24px;
    font-weight: 500;
    color: #0F0F0F;
}
.section-product-list .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-product-list .item-subtitle{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
}
.section-product-list .item-subtitle .t1{
    width: 34%;
    font-size: 20px;
    font-weight: bold;
}
.section-product-list .item-subtitle .t2{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}
.section-product-list .item-list{
    display: grid;     
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 38px;
}
.section-product-list .item-list .list{
    border: solid 1px #F0F0F0;
    border-radius: 10px;
    height: 176px;
}
.section-product-list .item-list a{
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    padding: 20px;
}
.section-product-list .item-list .imgbox{
    width: 53%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(157, 157, 157, 0.4);
    margin-right: 16px;
}
.section-product-list .item-list .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.section-product-list .item-list .detail{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.section-product-list .item-list .title{
    font-size: 16px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-product-list .item-list .brief{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.section-product-list .item-list .block-more{
    margin-top: 18px;
}
.section-product-list .item-list .block-more .text{
    color: #2570EB;
    font-size: 12px;
}
.section-product-list .item-list .list:hover .img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.section-product-list .item-list .list:hover .more::before{
    width: 100%;
}
.section-product-list .item-pagination{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
}
.section-product-list .el-pagination .el-pager li{
    font-weight: normal;
}
.section-product-list .el-pagination .el-pager li.active{
    background: #003B9C!important;
}



/*功能化学品*/
.section-product-list2{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    padding: 120px 0 0;
}
.section-product-list2 .item-title{
    position: relative;
}
.section-product-list2 .item-title .zh{
    font-size: 24px;
    font-weight: 500;
    color: #0F0F0F;
}
.section-product-list2 .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 0;
    top: -70%;
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-product-list2 .swiper-container{
    width: 100%;
    padding: 30px 0 50px;
    margin-top: 30px;
}
.section-product-list2 .swiper-slide{
    width: 369px;
    margin-right: 15px;
    overflow: hidden;
}
.section-product-list2 .swiper-slide .imgbox{
    width: 100%;
    height: 200px;
    background-color: rgb(157, 157, 157, 0.4);
    border-radius: 5px;
    overflow: hidden;
}
.section-product-list2 .swiper-slide .imgbox .img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.section-product-list2 .swiper-slide .title{
    font-weight: 400;
    margin-top: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-product-list2 .swiper-slide .brief{
    margin-top: 14px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




/*服务客户*/
.section-serving-customers{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    padding: 80px 0 150px;
    margin-top: 80px;
    background-image: url(../images/bg-serving-customers.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-serving-customers .item-title{
    position: relative;
    text-align: center;
}
.section-serving-customers .item-title .zh{
    font-size: 24px;
    font-weight: 500;
    color: #0F0F0F;
}
.section-serving-customers .item-title .en{
    font-size: 32px;
    font-weight: 300;
    position: absolute;
    left: 50%;
    top: -70%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    color: rgba(15, 15, 15, 0.05);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-transform: uppercase;
}
.section-serving-customers .swiper-container{
    width: 100%;
    margin-top: 55px;
}
.section-serving-customers .swiper-wrapper{
    -webkit-transition-timing-function: linear !important;
       -moz-transition-timing-function: linear !important;
         -o-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
}
.section-serving-customers .swiper-slide{
    width: auto;
    height: 64px;
    margin-right: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-serving-customers .swiper-slide .imgbox{
    height: 64px;
}
.section-serving-customers .swiper-slide .imgbox .img{
    max-height: 100%;
}



/*产品与解决方案详情*/
.section-product-detail{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: 100px;
}
.section-product-detail .content{
    position: relative;
    padding: 0 0 5px;
}
.section-product-detail .content::after{
    content: "";
    display: block;
    height: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/bg-product-detail-radius.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-product-detail .inner{
    width: 100%;
    height: 376px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #fff;
    border-radius: 10px 10px 20px 20px;
    padding: 0 30px 0 50px;
    -webkit-clip-path: ellipse(210% 100% at 50% 0%);
            clip-path: ellipse(210% 100% at 50% 0%);
}
.section-product-detail .content-left .item1{
    font-size: 32px;
    color: #0F0F0F;
}
.section-product-detail .content-left .item2{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    margin-top: 26px;
}
.section-product-detail  .content-left .btn{
    display: block;
    width: 120px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: #E89033;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 45px;
}
.section-product-detail  .content-left .btn:hover{
    background-color: #e08422;
}
.section-product-detail .content-right{
    margin-left: 140px;
}
.section-product-detail .content-right .imgbox{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 300px;
    height: 300px;
    overflow: hidden;
}
.section-product-detail .content-right .imgbox .img{
    width: 100%;
}


/*产品与解决方案详情-产品简介*/
.section-product-detail2{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: 50px;
}
.section-product-detail2 .item1{
    font-size: 18px;
    font-weight: bold;
}
.section-product-detail2 .item2{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-top: 20px;
}


/*产品与解决方案详情-基本参数*/
.section-product-detail3{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: 50px;
}
.section-product-detail3 .item1{
    font-size: 18px;
    font-weight: bold;
}
.section-product-detail3 .item2{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    border: solid 1px #000;
    border-radius: 10px;
    margin-top: 22px;
    overflow: hidden;
}
.section-product-detail3 .item2 table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.section-product-detail3 .item2 table td{
    border-left: solid 1px #000;
    border-top: solid 1px #000;
    padding: 18px;
    font-size: 14px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}
.section-product-detail3 .item2 thead td{
    border-top: 0;
    color: rgba(0, 0, 0, 1);
}
.section-product-detail3 .item2 thead tr td:nth-child(1){
    border-left: 0;
}
.section-product-detail3 .item2 tbody tr td:nth-child(1){
    border-left: 0;
    color: rgba(0, 0, 0, 1);
}


/*产品与解决方案详情-使用方法*/
.section-product-detail4{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: 40px;
}
.section-product-detail4 .item1{
    font-size: 18px;
    font-weight: bold;
}
.section-product-detail4 .item2{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 24px;
    margin-top: 15px;
}
.section-product-detail4 .item2 p{
    margin: 0;
}
.section-product-detail4 .blank{
    height: 100px;
}



/*面包屑导航*/
.section-breadcrumb{
    margin-top: 24px;
}
.section-breadcrumb .nav{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
}
.section-breadcrumb .list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.section-breadcrumb .list::before{
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: rgba(15, 15, 15, 0.6);
    margin: 0 16px;
}
.section-breadcrumb .list:nth-child(1)::before{
    display: none;
}
.section-breadcrumb .list a{
    color: rgba(15, 15, 15, 0.6);
    font-size: 14px;
}
.section-breadcrumb .list a:hover{
    color: rgba(0, 59, 156, 1);
    text-decoration: underline;
}



/*新闻详情页面*/
.section-news-detail{
    margin-top: 55px;
}
.section-news-detail .content{
    margin: auto;
    position: relative;
}
.section-news-detail .item-title{
    margin-bottom: 4px;
}
.section-news-detail .item-title h1{
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
}
.section-news-detail .item-time{
    text-align: center;
    position: relative;
    margin-top: 20px;
    padding: 0 0 25px;
}
.section-news-detail .item-time::after{
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: -15%;
    right: -15%;
    background-image: url(../images/bg-news-detail-radius.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-news-detail .content::after{
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: -15%;
    right: -15%;
    background-image: url(../images/bg-news-detail-radius.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
}
.section-news-detail .content-file{
    padding: 10px 0 110px;
}
.section-news-detail .content-file a{
    display: inline-block;
    background-color: #E6ECF4;
    padding: 10px;
}
.section-news-detail .content-file a:hover{
    text-decoration: underline;
}
.section-news-detail .content-detial{
    font-size: 16px;
    line-height: 1.7;
    margin-top: 50px;
    padding: 0 0 60px;
    position: relative;
}
.section-news-detail .content-detial img{
    display: block;
    margin: auto;
    width: 100%;
    /* padding: 8px 0; */
}
.section-news-detail .content-detial video{
    display: block;
    max-width: 100%;
    width: 100%!important;
    height: auto!important;
}
.section-news-detail .content-detial p{
    padding: 8px 0;
}
.section-news-detail .content-detial table{
    border-collapse: collapse;
    min-width: 100%;
}
.section-news-detail .content-detial table td{
    border-width: 1px;
    border-style: solid;
    border-color: #bbb;
}


/*新闻详情-上一篇、下一篇*/
.section-news-turning .content{
    padding: 45px 0 30px;
}
.section-news-turning .content .list{
    padding: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-news-turning .content .list a:hover{
    color: #003B9C;
}



.dialog-services-case .el-dialog{
    padding: 0 20px;
}
.dialog-services-case .swiper-slide{
    width: 100%;
}
.dialog-services-case .swiper-container{
    margin-top: 40px;
}
.dialog-services-case .swiper-slide img{
    width: 100%;
    display: block;
}
.dialog-services-case .swiper-pagination{
    text-align: center;
    position: static;
    margin-top: 20px;
}
.dialog-services-case .swiper-pagination-bullet{
    width: 32px;
    height: 4px;
    background: rgba(0, 59, 156, 0.2);
    border-radius: 7px;
    opacity: 1;
    margin: 0 4px;
}
.dialog-services-case .swiper-pagination-bullet-active{
    background: #003B9C;
    width: 58px;
}
.dialog-services-case .content1{
    margin-top: 30px;
}
.dialog-services-case .content1 p{
    font-size: 16px;
    line-height: 1.8;
}
.dialog-services-case .content1 img{
    width: 100%;
    display: block;
}


html .el-message{
    min-width: auto;
}


.section-404{
    text-align: center;
    padding: 200px 0 100px;
}
.section-404 .row1{
    font-size: 50px;
    font-weight: bold;
}
.section-404 .row2{
    font-size: 40px;
    margin-top: 10px;
}
.section-404 .row3{
    margin-top: 30px;
}
.section-404 .row3 a{
    display: inline-block;
    padding: 12px 30px;
    background-color: #003B9C;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}