@charset "utf-8";
body {
    overflow-x: hidden;
}

/* header */
header {
    height: 80px;
    background: rgba(53, 83, 135, 0.2);
    position: fixed;
    z-index: 9;
    width: 100%;
    transition: all .5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    /* 头部第二种状态 */
}

header .headBd {
    align-items: center;
}

header .logo {
    height: 26px;
    display: flex;
    align-items: center;
}

header .logo a {
    display: block;
    height: 100%;
}

header .logo img {
  height: 100%;
}

header .logo .logo-normal {
    display: none;
    height: 100%;
}

header .logo .btn-home {
    line-height: 1;
    margin-left: 10px;
}

header .logo .btn-home .icon-home {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_home_white.svg) 0 0/cover no-repeat;
    transition: all .5s;
}

header .logo .btn-home:hover .icon-home {
    transform: scale(1.05);
}

header .navBar {
    align-items: center;
}

header .navBar > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .navBar > ul > li {
    position: relative;
    margin: 0 10px;
}

header .navBar > ul > li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    left: 50%;
    background-color: #fff;
    transition: all .5s;
    opacity: 0;
    position: absolute;
    bottom: 0;
}

header .navBar > ul > li:first-child {
    margin-left: 0;
}

header .navBar > ul > li > a {
    display: block;
    line-height: 80px;
    font-size: 16px;
    color: #fff;
}

header .navBar > ul > li > a i {
    font-size: 10px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

header .navBar > ul > li:hover > a ,header .navBar > ul > li.active > a {
    color: #fff;
    font-weight: bold;
}

header .navBar > ul > li:hover::after ,header .navBar > ul > li.active::after {
    left: 0;
    width: 100%;
    opacity: 1;
}

header .navBar > ul > li:hover .subnav {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) scale(1);
}

header .subnav {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0);
    transition: all .5s;
    background: rgba(53, 83, 135, 0.2);
    width: 200px;
    padding: 10px 0;
}

header .subnav ul {
    text-align: center;
}

header .subnav ul li a {
    font-size: 16px;
    white-space: nowrap;
    padding: 5px 10px;
    color: #fff;
    display: block;
    padding: 5px 10px;
}

header .subnav ul li a:hover {
    font-weight: bold;
}

header .language {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

header .language a {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    color: rgba(255, 255, 255, 0.5);
}

header .language a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

header .language a:last-child {
    padding-right: 0;
}

header .language a:last-child::after {
    display: none;
}

header .language a.cur, header .language a:hover {
    color: #fff;
}

header .btn-search {
    margin-left: 10px;
}

header .btn-search .icon-srh {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_srh_white.svg) 0 0/cover no-repeat;
}

header .btn-baojia {
    margin-left: 10px;
}

header .btn-baojia a {
    display: block;
    text-align: center;
    min-width: 104px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    background: #2C85B8;
    padding: 0 16px;
}

header .btn-baojia a:hover {
    background: #0f2e63;
}

header .nav-button {
    position: relative;
    width: 24px;
    height: 60px;
    text-align: center;
    z-index: 11;
    font-size: 0;
    float: right;
    display: none;
}

header .nav-button div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 24px;
    height: 16px;
}

header .nav-button span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 0 auto;
    line-height: 2px;
    position: static;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

header .nav-button span.top-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

header .nav-button span.center-hr {
    margin: 5px auto;
}

header .nav-button span.bottom-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

header .nav-button.active span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
}

header .nav-button.active span.top-hr {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

header .nav-button.active span.center-hr {
    display: none;
}

header .nav-button.active span.bottom-hr {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

header.inheader {
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background: transparent;
}

header.active, header:hover, header.allActive {
    background: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* 导航 */
}

header.active .btn-home .icon-home, header:hover .btn-home .icon-home, header.allActive .btn-home .icon-home {
    background-image: url(../img/icon_home_blue.svg);
}

header.active .navBar > ul > li:hover > a,
header:hover .navBar > ul > li:hover > a,
header.allActive .navBar > ul > li:hover > a ,
header.active .navBar > ul > li.active > a,
header:hover .navBar > ul > li.active > a,
header.allActive .navBar > ul > li.active > a {
    color: #2C85B8;
}

header.active .navBar > ul > li > a, header:hover .navBar > ul > li > a, header.allActive .navBar > ul > li > a {
    color: #000;
}

header.active .navBar > ul > li > a, header:hover .navBar > ul > li > a, header.allActive .navBar > ul > li > a {
    color: #000;
}

header.active .navBar > ul > li::after, header:hover .navBar > ul > li::after, header.allActive .navBar > ul > li::after {
    background: #2C85B8;
}

header.active .subnav, header:hover .subnav, header.allActive .subnav {
    background: #fff;
}

header.active .subnav ul li a, header:hover .subnav ul li a, header.allActive .subnav ul li a {
    color: #000;
}

header.active .subnav ul li a:hover, header:hover .subnav ul li a:hover, header.allActive .subnav ul li a:hover {
    color: #2C85B8;
}

header.active .logo-normal, header:hover .logo-normal, header.allActive .logo-normal {
    display: block;
}

header.active .logo-white, header:hover .logo-white, header.allActive .logo-white {
    display: none;
}

header.active .language a::after, header:hover .language a::after, header.allActive .language a::after {
    background: #000;
}

header.active .language a, header:hover .language a, header.allActive .language a {
    color: rgba(0, 0, 0, 0.7);
}

header.active .language a.cur, header:hover .language a.cur, header.allActive .language a.cur {
    color: #000;
}

header.active .nav-button span, header:hover .nav-button span, header.allActive .nav-button span {
    background: #000;
}

header .mb-nav {
    display: none;
}

header .mb-nav ul li {
    width: 50%;
    text-align: center;
    padding: 10px 0;
}

header .mb-nav ul li .icon {
    width: 90px;
    margin: 0 auto;
}

header .mb-nav ul li .icon img {
    width: 100%;
}

/* 隐藏二级导航 */
.dropdown-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
}

.dropdown-nav .inwrap {
    /* padding: 60px 0 40px; */
}

.dropdown-nav .inwrap > ul {
    justify-content: space-between;
}

.dropdown-nav .inwrap > ul > li {
    text-align: center;
    width: 15.44118%;
    padding: 60px 0 40px;
    transition: all .3s;
}

.dropdown-nav .inwrap > ul > li span {
    font-weight: bold;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.dropdown-nav .nav2 ul li {
    line-height: 40px;
    color: rgba(0, 0, 0, 0.5);
}

/* 搜索框 */
.searchbar {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.searchField {
    background-color: #fff;
    padding: 40px 0;
}

.searchField .inwrap {
    background: #E6EDF5;
    height: 52px;
    align-items: center;
    padding: 0 10px;
}

.searchField .icon-sousuo {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_srh_black.svg) center center no-repeat;
}

.searchField .iptline {
    flex: 1;
}

.searchField .iptline input {
    width: 100%;
    outline: none;
    background: transparent;
}

.searchField button {
    cursor: pointer;
    background: transparent;
}

.searchField .icon-close {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon_close_black.svg) center center no-repeat;
    transition: all .5s;
}

.searchField .icon-close:hover {
    transform: rotate(180deg);
}

.searchField.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    position: fixed;
}

.searchField .form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.searchField .txt {
    flex: 1;
}

.searchField .txt input[type='text'] {
    background: #eee;
    width: 100%;
    height: 45px;
    padding: 0 20px;
    outline: none;
}

.searchField .btn-searach {
    width: 60px;
    height: 45px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2C85B8 url(../img/icon_srh_white.svg) center center no-repeat;
}

.searchField .btn-searach i {
    display: block;
    font-size: 26px;
}

.searchField .btn-searach:hover {
    opacity: .9;
}
header .headBd .language-mb {
    display:none;
}
@media screen and (max-width: 1600px) {
    header .logo {
        height:20px;
    }
    header .logo .btn-home .icon-home {
        height:24px;
        width: 24px
    }
    header .navBar > ul > li {
        margin: 0  0.5vw;
    }
    header .language {
        margin-left: 20px;
    }
    header .navBar > ul > li:last-child {
        margin-right: 0;
    }
    header .navBar > ul > li > a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1440px) {
    header .logo .btn-home {
        margin-left: 10px;
    }
    header .navBar > ul > li {
        margin: 0  0.5vw;
    }
    header .language {
        margin-left: 10px;
    }
    header .btn-baojia {
        margin-left: 10px;
    }
    header .btn-search {
        margin-left: 10px;
    }
    .searchField .txt input[type='text'] {
        height: 38px;
    }
    .searchField .btn-searach {
        height: 38px;
    }
    header .language a {
        padding: 0 8px;
        font-size: 14px;
    }
    header .btn-search .icon-srh {
        width:24px;
        height:24px;
    }
    header .btn-baojia a {
        font-size: 14px;
    }
}

@media screen and (max-width: 1300px) {
    header .logo {
        height: 16px;
        display: flex;
        align-items: center;
    }
    header .logo .btn-home .icon-home {
        height:20px;
        width: 20px
    }
    header .logo .btn-home {
        margin-top: -2px;
        margin-left: 5px;
    }
    header .logo .btn-home .icon-home {
        width: 20px;
        height: 20px;
    }
    header .navBar > ul > li {
        /* margin: 0  0.8vw; */
    }
    header .navBar > ul > li > a {
        font-size: 14px; 
    }
    header .language {
        /* margin-left: 30px; */
    }
    header .btn-baojia a {
        height: 30px;
        line-height: 30px;
    }
    header .btn-search .icon-srh {
        height: 20px;
        width: 20px;
    }
    header .language a {
        padding:0 5px;
    }
}

@media screen and (max-width: 1200px) {
    header .navBar > ul > li > a {
        font-size: 14px;
    }
    header .navBar > ul > li {
        margin: 0 .1vw;
    }
    header .logo .btn-home {
        display:none;
    }
    header .btn-baojia a {
        padding:0 8px;
    }
    header .language ,header .btn-baojia ,header .btn-search { margin-left:5px;}
}

@media screen and (max-width: 1024px) {
    header {
        height: 60px;
    }
    header .logo {
        height:20px;
    }
    header .logo .btn-home {
        display:block;
    }
    header .nav-button {
        display: block;
    }
    header .btn-search .icon-srh ,header .logo .btn-home .icon-home {
        width:26px;
        height:26px;
    }
    header .navBar {
        display: none;
    }
    .dropdown-nav .inwrap {
        background: #fff;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        padding: 0;
    }
    .dropdown-nav .inwrap > ul {
        display: block;
        padding: 20px 0;
    }
    .dropdown-nav .inwrap > ul > li {
        width: 100%;
        margin-left: 0;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: returnToNormal;
        animation-name: returnToNormal;
        padding: 0;
    }
    .dropdown-nav .inwrap > ul > li > a {
        width: 100%;
        line-height: 50px;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .dropdown-nav .inwrap > ul > li > a::after {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        transform: rotate(45deg);
        border: 1px solid #000;
        border-left: none;
        border-bottom: none;
        transition: all .5s;
        margin-right: 40px;
    }
    .dropdown-nav .inwrap > ul > li > a span {
        margin-bottom: 0;
        line-height: 50px;
    }
    .dropdown-nav .inwrap > ul > li.active > a::after {
        transform: rotate(135deg);
    }
    .dropdown-nav .inwrap li ul {
        background-color: #efefef;
        padding: 10px 0;
        transition: none;
    }
    .dropdown-nav .inwrap .nav2 {
        display: none;
    }
    .dropdown-nav .inwrap .nav2 ul li {
        text-align: left;
        padding: 0 10px;
    }
    header .btn-search {
        position: absolute;
        right: 60px;
        display: none;
    }
    header .btn-baojia {
        margin: 10px auto;
    }
    header .btn-baojia a {
        margin: 0 auto;
    }
    header .language {
        margin-left: 0;
        justify-content: center;
    }
    header .language a:first-child {
        padding-left: 0;
    }
    header .language a::after {
        background: #000;
    }
    header .language a {
        color: rgba(0, 0, 0, 0.7);
    }
    header .language a.cur {
        color: #000;
    }
    header.active .nav-button span, header:hover .nav-button span {
        background: #000;
    }
    .searchField {
        padding: 20px 0;
    }
    header  .headBd .language-mb  {
        position: absolute !important;
        right: 60px;
        top: 18px;
        display: block;
    }
    header .headBd {
        width: calc(100% - 40px)!important;
    }
}
@media screen and (max-width: 520px) {
    header .logo {
        height: 25px!important;
    } 
    header .logo a:not(.btn-home) {
        width:100% !important;
        height: 15px!important;
        margin-left:10px!important;
    }
    header .logo a:first-child ,header .logo a:nth-child(2) {
        margin-left:0px!important;
    }
    header .headBd .language-mb {
        right:45px;
    }
}
@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* banner */
.banner-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.banner-swiper .swiper-slide {
    height: 100vh;
    background: center center /cover no-repeat;
    position: relative;
    z-index: 1;
}

.banner-swiper .swiper-slide::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(30, 55, 95, 0.65) 0%, rgba(30, 55, 95, 0) 70%, rgba(30, 55, 95, 0) 100%);
    z-index: 2;
}

.banner-swiper .swiper-slide .wrap {
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 4;
    mix-blend-mode: screen;
}

.banner-swiper .swiper-slide .word {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.banner-swiper .swiper-slide h1 {
    transition: all 1s;
    transition-delay: 0s;
    opacity: 0;
    transform: translateY(40px);
    color: #fff;
    font-weight: 600;
}

.banner-swiper .swiper-slide p {
    transition: all 1s;
    transition-delay: 1s;
    opacity: 0;
    transform: translateY(40px);
    margin-top: 20px;
    color: #fff;
    line-height: 1.5;
}

.banner-swiper .swiper-slide .Bmore {
    transition: all 1s;
    transition-delay: 0.8s;
    opacity: 0;
    transform: translateY(40px);
    margin-top: 100px;
}

.banner-swiper .swiper-slide .Bmore img {
    width: 18px;
    transition: all .5s;
}

.banner-swiper .swiper-slide .Bmore a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 168px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    margin: 0 auto;
}

.banner-swiper .swiper-slide .Bmore a:hover {
    background: #2c85b8;
    border-color: #2C85B8;
}

.banner-swiper .swiper-slide .Bmore a:hover img {
    transform: translateX(20%);
}

.banner-swiper .swiper-slide-active h1 {
    opacity: 1;
    transform: translateY(0px);
}

.banner-swiper .swiper-slide-active h2 {
    opacity: 1;
    transform: translateY(0px);
}

.banner-swiper .swiper-slide-active p, .banner-swiper .swiper-slide-active .Bmore {
    opacity: 1;
    transform: translateY(0px);
}

/* 切换组件 S */
.button-bar {
    position: absolute;
    top: 50%;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 100%;
    opacity: 1;
    z-index: 2;
    transition: all .5s;
    left: -5.53846%;
}

.swiper-button-prev::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_swiper_prev_black.svg) 0 0/cover no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-prev:hover {
    background: #2C85B8;
}

.swiper-button-prev:hover::before {
    background-image: url(../img/icon_swiper_prev_white.svg);
}

.swiper-button-next {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 100%;
    opacity: 1;
    z-index: 2;
    transition: all .5s;
    right: -5.53846%;
}

.swiper-button-next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_swiper_next_black.svg) 0 0/cover no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-next:hover {
    background: #2C85B8;
}

.swiper-button-next:hover::before {
    background-image: url(../img/icon_swiper_next_white.svg);
}

.swiper-button-pagination {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 36px !important;
    z-index: 5;
    text-align: center;
}

.swiper-button-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 20px;
    opacity: 0.2;
    background: #FFFFFF;
    transition: all .5s;
}

.swiper-button-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-pagination {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 5;
    text-align: center;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 20px;
    opacity: 0.2;
    background: #FFFFFF;
    transition: all .5s;
}

.swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 切换组件 E */
@keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1600px) {
    .swiper-button-prev {
        left: -8%;
    }
    .swiper-button-next {
        right: -8%;
    }
    .swiper-button-prev::before, .swiper-button-next::before {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@media screen and (max-width: 1280px) {
    .banner-swiper .swiper-slide .Bmore a {
        height: 40px;
        width: 148px;
    }
}

@media screen and (max-width: 1024px) {
    .banner-swiper .swiper-slide {
        height: 50vw;
    }
    .banner-swiper .swiper-slide .Bmore {
        margin-top: 50px;
    }
    .banner-swiper .swiper-slide p {
        margin-top: 10px;
    }
    .swiper-button-pagination {
        bottom: 15px !important;
    }
    .swiper-pagination .swiper-pagination-bullet, .swiper-button-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 2px;
    }
}

@media screen and (max-width: 768px) {
    .banner-swiper .swiper-slide .Bmore {
        margin-top: 25px;
    }
    .banner-swiper .swiper-slide {
        height: 50vw;
    }
    .banner-swiper .swiper-slide .Bmore a {
        padding:6px;
        font-size: 14px;
    }
}

@media screen and (max-width: 520px) {
    .banner-swiper .swiper-slide {
        height: 70vw;
    }
}

@media screen and (max-width: 425px) {
    .banner-swiper .swiper-slide {
        height: 80vw;
    }
    .banner-swiper .swiper-slide h1 {
        font-size: 28px;
    }
    .banner-swiper .swiper-slide p {
        font-size: 14px;
    }
}

.boxCont {
    padding: 100px 0;
    position: relative;
}

.title {
    margin-bottom: 60px;
    align-items: center;
}

.title h2 {
    position: relative;
    text-align: center;
    font-weight: 600;
    color: #2C85B8;
    margin-bottom: 20px;
    line-height: 1;
}

.title p {
    text-align: center;
    line-height: 20px;
}

.btn-more a {
    display: inline-flex;
    min-width: 168px;
    /* padding: 0 16px; */
    height: 46px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    padding: 0 10px 0 20px;
}

.btn-more a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
    margin-left: 8px;
    transition: all .5s;
}

.btn-more a:hover {
    background: #2C85B8;
    border-color: #2C85B8;
}

.btn-more a:hover::after {
    transform: translateX(50%);
}

.btn-more button {
    display: flex;
    width: 128px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #fff;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    background: transparent;
    transition: all .5s;
    cursor: pointer;
}

.btn-more button::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
    margin-left: 8px;
    transition: all .5s;
}

.btn-more button:hover {
    background: #2C85B8;
    border-color: #2C85B8;
}

.btn-more button:hover::after {
    transform: translateX(50%);
}

/* 产品系列 */
.index-product {
    padding: 20px;
    background: #fff;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.index-product ul {
    margin-left: -10px;
    margin-right: -10px;
}

.index-product ul li {
    width: 50%;
    padding: 0 10px 20px;
}

.index-product .inbox {
    background: #000;
    display: flex;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
}

.index-product .inbox::after {
    content: '';
    position: absolute;
    border: 1px solid #2C85B8;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
    transition: all .5s;
}

.index-product .inbox h2 {
    color: #fff;
    font-weight: normal;
}

.index-product .inbox p {
    color: #fff;
    word-break:keep-all;
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    /* height: 81px; */
    width: 100%;
    text-align: center;
    padding:0 5%;
}

.index-product .inbox h2, .index-product .inbox p, .index-product .inbox .btns, .index-product .inbox .img {
    position: relative;
    z-index: 2;
}

.index-product .inbox:hover::after {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.index-product .btns {
    margin: 30px 0;
    display: flex;
    gap: 50px;
}

.index-product .btns a {
    position: relative;
    display: flex;
    align-items: center;
    color: #2C85B8;
    padding: 12px 20px;
    border-radius: 100px;
}

.index-product .btns a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/icon_zx_go_blue.svg) 0 0/cover no-repeat;
    margin-left: 12px;
    transition: all .5s;
}

.index-product .btns a:hover {
    background: #fff;
}

.index-product .btns a:hover::after {
    transform: translateX(50%);
}

.index-product .img {
    width: 400px;
    height: 280px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.index-product .img img {
    height: 100%;
}

/* 应用领域 */
.index-apparea {
    overflow: hidden;
    background: #fff;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 0;
}

.index-apparea .swiper-apparea {
    overflow: hidden;
}

.index-apparea ul {
    clear: both;
    display: flex;
}

.index-apparea ul li {
    padding: 0 10px;
}

.index-apparea ul li .inbox {
    background: #E6EDF5;
    width: 26.04167vw;
    height: 100%;
}

.index-apparea ul li .img {
    height: 26.04167vw;
    overflow: hidden;
}

.index-apparea ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-apparea ul li .txt {
    padding: 40px;
    text-align: center;
    /* height: 234px; */
}

.index-apparea ul li .txt h2 {
    font-weight: 400;
    margin-bottom: 20px;
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.index-apparea ul li .txt p {
    word-break: keep-all;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 3; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
}

.index-apparea ul li .inbox:hover .img img {
    transform: scale(1.05);
}

/* 公司简介 */
.index-intro {
    background: radial-gradient(49% 98% at 0% 0%, #1F72A1 0%, #0D1E43 100%);
    overflow: hidden;
    position: relative;
}

.index-intro .hd {
    position: relative;
    z-index: 2;
}

.index-intro .hd .lt {
    width: 51.47059%;
    padding-top: 100px;
}

.index-intro .hd .title {
    margin-bottom: 20px;
}

.index-intro .hd .title h2 {
    text-align: left;
    color: #fff;
}

.index-intro .hd .txt p {
    line-height: 2;
    text-align: left;
    color: #fff;
}
p {
    word-break:keep-all;
}

.index-intro .hd .btn-more {
    margin-top: 140px;
}

.index-intro .hd .rt {
    width: 33.08824%;
}

.index-intro .hd .rt .img {
    animation: rotate360 12s infinite linear;
}

.index-intro .hd .rt img {
    width: 100%;
}

.index-intro .bd {
    margin-top: 90px;
    position: relative;
    z-index: 2;
}

.index-intro .bd ul {
    justify-content: space-between;
}

.index-intro .bd ul li {
    opacity: 0.8;
    transition: all .5s;
}

.index-intro .bd ul li .in-box {
    display: flex;
    color: #fff;
}

.index-intro .bd ul li .counter {
    font-size: 70px;
    line-height: 1;
}

.index-intro .bd ul li .fnt34 {
    font-size: 34px;
    line-height: 1;
}

.index-intro .bd ul li p {
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

.index-intro .bd ul li:hover {
    color: #2C85B8;
}

.index-intro .another-class {
    position: absolute;
    bottom: -15%;
    width: 100%;
    left: 0;
    z-index: 1;
    height: 70%;
}

/* 最新新闻 */
.index-news {
    overflow: hidden;
    background: #DCE7F0;
}

.index-news .tit-lt {
    align-items: center;
}

.index-news .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.index-news .tabs li {
    position: relative;
    padding: 0 30px;
    font-weight: 400;
}

.index-news .tabs li::after {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: #D8D8D8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.index-news .tabs li:last-child::after {
    display: none;
}

.index-news .tabs li.active a {
    color: #2C85B8;
}

.index-news .item {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    height: 0;
    overflow: hidden;
}

.index-news .item.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.index-news .item .swiper-news {
    position: relative;
}

.index-news .item .swiper-slide a {
    display: block;
    background: #fff;
}

.index-news .item .swiper-slide .img {
    padding: 8px;
    height: 18.22917vw;
    overflow: hidden;
}

.index-news .item .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-news .item .swiper-slide .info {
    padding: 10px 25px 30px;
}

.index-news .item .swiper-slide .txt h2 {
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 20px;
}

.index-news .item .swiper-slide .txt p {
    color: rgba(0, 0, 0, 0.6);
    height: 60px;
    line-height: 30px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-news .item .swiper-slide .other {
    margin-top: 30px;
}

.index-news .item .swiper-slide .other .ly {
    color: #000;
}

.index-news .item .swiper-slide .other .dt {
    color: #000;
    display: flex;
    align-items: center;
}

.index-news .item .swiper-slide .other .dt::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/icon_datetime.svg) center center/cover no-repeat;
    margin-right: 6px;
    flex-shrink: 0;
}

.index-news .item .swiper-slide a:hover .img img {
    transform: scale(1.05);
}

.index-news .item .btn-more {
    text-align: center;
    margin-top: 50px;
}

.index-news .item .btn-more a {
    margin: 0 auto;
    width: 178px;
    background: #2C85B8;
    border-color: #2C85B8;
}

.index-news .item .button-bar {
    width: 34.89583vw;
}

@media screen and (max-width: 1440px) {
    .boxCont, .index-apparea {
        padding: 70px 0;
    }
    .boxCont .title {
        margin-bottom: 40px;
    }
    .title {
        margin-bottom: 40px;
    }
    .index-product {
        padding: 10px;
    }
    .index-product ul {
        margin-left: -5px;
        margin-right: -5px;
    }
    .index-product ul li {
        padding: 0 5px 10px;
    }
    .index-apparea ul li .txt {
        padding: 30px;
        /* height: 200px; */
    }
    .index-apparea ul li .txt h2 {
        margin-bottom: 10px;
    }
    .index-intro .hd .btn-more {
        margin-top: 60px;
    }
    .index-intro .bd ul li .counter {
        font-size: 60px;
    }
    .index-news .tabs {
        margin-top: 20px;
    }
    .index-news .item ul li .img {
        height: 222px;
    }
    .index-product .img {
        max-width:90%;
        max-height:280px;
    }
    .index-product .img img {
        max-width:100%;
        max-height:100%;
        height:auto;
    }
}

@media screen and (max-width: 1280px) {
    .boxCont, .index-apparea {
        padding: 60px 0;
    }
    .boxCont .title {
        margin-bottom: 30px;
    }
    .index-product .btns a {
        padding: 8px 20px;
    }
    .index-apparea ul li .txt {
        padding: 20px;
    }
    .index-intro .hd .btn-more {
        margin-top: 60px;
    }
    .index-intro .bd ul li .counter {
        font-size: 60px;
    }
    .index-product .item ul li .img {
        height: 350px;
    }
    .index-solution .item1 .img {
        height: 560px;
    }
    .index-solution .item2 .img {
        height: 270px;
    }
    .index-news .item ul li .img {
        height: 222px;
    }
}

@media screen and (max-width: 1024px) {
    .boxCont, .index-apparea {
        padding: 50px 0;
    }
    .index-apparea ul li .txt {
        padding: 30px;
        height: 200px;
    }
    .index-apparea ul li .inbox {
        width: 30vw;
    }
    .index-apparea ul li .img {
        height: 30vw;
    }
    .index-intro .hd .btn-more {
        margin-top: 30px;
    }

    .btn-more a {
        width: 148px;
        height: 38px;
        padding-left: 12px;
    }
    .index-intro .hd .lt {
        padding-top: 50px;
    }
    .index-intro .bd ul li .counter {
        font-size: 40px;
    }
    .index-product .tabs ul li a {
        padding: 20px;
        white-space: nowrap;
    }
    .index-product .item ul li .img {
        height: 295px;
    }
    .index-intro .bd ul li .in-box {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .index-intro .bd ul li {
        margin-bottom: 20px;
    }
    .index-intro .hd .btn-more {
        margin-top: 20px;
    }
    .index-news .item .button-bar {
        width: 44vw;
    }
    .index-product .btns a {
        padding: 5px 10px;
    }

    .index-product .btns a::after {
        margin-left: 6px;
    }
    .index-intro .hd .txt p {
        /* font-size:14px; */
    }
}

@media screen and (max-width: 768px) {
    .index-product .inbox {
        padding-top: 50px;
    }
    .index-apparea ul li .txt {
        padding: 20px;
        height: 200px;
    }
    .index-apparea ul li .inbox {
        width: 40vw;
    }
    .index-apparea ul li .img {
        height: 40vw;
    }
    .index-intro .hd .rt {
        width: 100%;
    }
    .index-intro .hd .lt {
        width: 100%;
    }
    .index-intro .hd .lt {
        padding-top: 0;
    }
    .index-intro .hd .rt {
        width: 100%;
        margin-top: 20px;
    }
    .index-intro .hd .rt .img {
        width: 50%;
        margin: 0 auto;
    }
    .index-intro .another-class {
        bottom: -30%;
    }
    .index-intro .bd {
        margin-top: 45px;
    }
    .index-intro .bd ul li .counter {
        font-size: 30px;
    }
    .index-news .item .button-bar {
        display: none;
    }
    .index-news .item .swiper-slide .img {
        height: 50vw;
    }
    .index-product .img {
        align-items:center;
    }
}

@media screen and (max-width: 520px) {
    .index-product .inbox {
        padding-top: 50px;
    }
    .index-product ul {
        flex-wrap: wrap;
    }
    .index-product ul li {
        width: 100%;
        margin-top: 10px;
    }
    .index-product ul li:first-child {
        margin-top: 0;
    }
    .index-apparea .title {
        padding: 0 20px;
    }
    .index-apparea ul li .txt {
        padding: 10px;
        height: 160px;
    }
    .index-apparea ul li .inbox {
        width: 70vw;
    }
    .index-apparea ul li .img {
        height: 70vw;
    }
    .index-intro .hd .rt .img {
        width: 100%;
    }
    .index-intro .bd ul li {
        width: 50%;
    }
    .index-intro .hd .rt .video-box {
        width: 100%;
    }
    .index-intro .another-class {
        bottom: -40%;
    }
    .footer .ft-hd {
        padding-top: 40px;
    }
}

/* 应用安全宇宙 */
@keyframes rain {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(100%);
    }
}

/* footer */
.footer {
    background: #221714;
    overflow: hidden;
}

.footer .ft-hd {
    padding: 75px 0 35px;
}

.footer .ft-hd .ft-info {
    width: 34.33824%;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .ft-hd .ft-info .logo {
    width: 200px;
    margin-bottom: 50px;
}

.footer .ft-hd .ft-info .logo img {
    width: 100%;
}

.footer .ft-hd .ft-info .linkus {
    color: #fff;
}

.footer .ft-hd .ft-info .linkus span {
    display: block;
    color: #2C85B8;
    margin-top: 10px;
    margin-bottom: 30px;
}

.footer .ft-hd .ft-info .qrcodes {
    margin-top: 55px;
}

.footer .ft-hd .ft-info .qrcodes ul {
    gap: 40px;
}

.footer .ft-hd .ft-info .qrcodes ul li {
    text-align: center;
}

.footer .ft-hd .ft-info .qrcodes ul li .img {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    margin: 0 auto;
}

.footer .ft-hd .ft-info .qrcodes ul li .img img {
    width: 100%;
}

.footer .ft-hd .ft-info .qrcodes ul li p {
    color: #fff;
    margin-top: 15px;
}

.footer .ft-hd .ft-nav {
    justify-content: flex-end;
    padding-left: 5%;
}

.footer .ft-hd .ft-nav ul {
    gap: 30px;
}
.footer .ft-hd .ft-nav ul li {
    width:25%;
}

.footer .ft-hd .ft-nav h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer .ft-hd .ft-nav h2 a {
    color: #fff;
}

.footer .ft-hd .ft-nav dl {
    font-size: 16px;
    /* white-space: nowrap; */
    /* word-break: break-word; */
}

.footer .ft-hd .ft-nav dl a {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}
.footer .ft-hd .ft-nav dl dd {
    margin-bottom: 20px;
}

.footer .ft-hd .ft-nav dl a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer .ft-bd {
    padding: 9px 0;
}

.footer .ft-bd span {
    color: rgba(255, 255, 255, 0.3);
}

.footer .ft-bd .fr img {
    margin-right: 10px;
}

/* 浮窗 */
.rightFixed {
    position: fixed;
    right: 20px;
    bottom: 15%;
    z-index: 9;
}

.rightFixed ul {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.rightFixed ul li {
    width: 60px;
    height: 60px;
    background: #fff;
    position: relative;
}

.rightFixed ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.rightFixed ul li .icon {
    display: block;
    width: 30px;
    height: 30px;
    background: center center /cover no-repeat;
}

.rightFixed ul li .icon-tel {
    background-image: url(../img/icon_right03_black.svg);
}

.rightFixed ul li .icon-wx {
    background-image: url(../img/icon_right02_black.svg);
}

.rightFixed ul li .icon-top {
    background-image: url(../img/icon_right01_black.svg);
}

.rightFixed ul li:hover {
    background: #2C85B8;
}

.rightFixed ul li:hover .icon-tel {
    background-image: url(../img/icon_right03.svg);
}

.rightFixed ul li:hover .icon-wx {
    background-image: url(../img/icon_right02.svg);
}

.rightFixed ul li:hover .icon-top {
    background-image: url(../img/icon_right01.svg);
}

.rightFixed ul .li-tel {
    overflow: hidden;
    width: 60px;
}

.rightFixed ul .box-tel {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transition: all .5s;
    background: #fff;
    overflow: hidden;
}

.rightFixed ul .box-tel a {
    flex-shrink: 0;
}

.rightFixed ul .box-tel .tt {
    white-space: nowrap;
    padding: 0;
    width: 0;
    transition: all .5s;
}

.rightFixed ul .box-tel .tt b {
    color: #2C85B8;
}

.rightFixed ul .li-tel:hover {
    overflow: inherit;
}

.rightFixed ul .li-tel:hover .box-tel .tt {
    width: 230px;
    padding: 0 10px;
}

.rightFixed ul .li-tel:hover .box-tel {
    padding-left: 10px;
    width: auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.rightFixed ul .li-tel:hover .box-tel a {
    background: #fff;
    width: auto;
}

.rightFixed ul .li-tel:hover .box-tel .icon-tel {
    background-image: url(../img/icon_right03_black.svg);
}

.rightFixed ul .qrcode-kf {
    position: absolute;
    right: calc(100% + 10px);
    top: 0;
    text-align: center;
    opacity: 0;
    visibility: visible;
    transition: all .5s;
    transform: translateX(20%);
}

.rightFixed ul .qrcode-kf .in-qr {
    padding: 14px 10px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.rightFixed ul .qrcode-kf .qrc {
    width: 110px;
}

.rightFixed ul .qrcode-kf .qrc img {
    width: 100%;
}

.rightFixed ul .qrcode-kf p {
    margin-top: 10px;
}

.rightFixed ul li:hover .qrcode-kf {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media screen and (max-width: 1600px) {
    .footer .ft-hd .ft-nav ul {
        gap: 8vw;
    }
    .footer .ft-bd {
        font-size: 14px;
        gap: 20px;
    }
    .footer .ft-bd .fl {
        flex: 1;
    }
}

@media screen and (max-width: 1440px) {
    .footer .ft-hd .ft-info .qrcodes ul li .img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .footer .ft-hd .ft-nav {
        padding-left: 20px;
    }
    .footer .ft-hd .ft-nav ul {
        gap: 2vw;
    }
}

@media screen and (max-width: 1280px) {
    .footer .ft-hd .ft-nav ul {
        gap: 3vw;
    }
    .footer .ft-hd .ft-nav ul li {
        max-width:160px;

    }
    .footer .ft-hd .ft-nav dl {
        /* word-wrap: break-word; */
    }
}

@media screen and (max-width: 1024px) {
    .footer .ft-hd {
        padding-top: 40px;
        padding-bottom: 0;
    }
    .footer .ft-bd span {
        width: 100%;
        display: block;
        text-align: center;
        float: none !important;
    }
    .footer .ft-hd .ft-info .logo {
        height: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .footer .ft-hd .ft-info .logo {
        height: 20px;
        margin-bottom: 25px;
        width: auto;
    }
    .footer .ft-hd .ft-info .logo img {
        width: auto;
        height: 100%;
    }
    .footer .ft-hd .ft-info .qrcodes {
        margin: 30px 0 30px;
    }
    .footer .ft-hd .ft-info .qrcodes ul li .img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        border-radius: 8px;
    }
    .footer .ft-hd .ft-info {
        width: 100%;
        border-right: none;
        text-align: center;
    }
    .footer .ft-hd .ft-nav {
        display: none;
    }
    .footer .ft-hd .ft-info .qrcodes ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer .ft-hd ul {
        width: 100%;
    }
    .footer .ft-hd .ft-info .qrcodes ul {
        gap: 0;
    }
    .footer .ft-hd .ft-info .qrcodes ul li {
        margin-right: 0;
        margin: 5px;
    }
    .footer .ft-bd {
        flex-wrap: wrap;
        gap: 0;
    }
}

@media screen and (max-width: 768px) {
    .rightFixed {
        bottom: 10%;
    }
    .rightFixed ul li {
        width: 30px;
        height: 30px;
    }
    .rightFixed ul li a {
        width: 30px;
        height: 30px;
    }
    .rightFixed ul li .icon {
        width: 16px;
        height: 16px;
    }
    .rightFixed ul .li-tel {
        width: 30px;
    }
    .rightFixed ul .li-tel:hover .box-tel .tt {
        width: 200px;
    }
    .footer .ft-hd .ft-info .qrcodes ul li .img {
        border-radius: 8px;
    }
    .rightFixed ul .qrcode-kf .qrc {
        width: 90px;
    }
    .rightFixed ul .qrcode-kf .in-qr {
        padding: 7px 6px;
    }
}

/* 内页banner */
.in-banner {
    position: relative;
    height: 30.20833vw;
    background: center center /cover no-repeat;
}

.in-banner::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
}

.in-banner .in-banner-box {
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.in-banner .in-txt h2 {
    letter-spacing: 0.2em;
}

.in-banner .in-txt p {
    margin-top: 20px;
}

/* 内页导航 */
.in-navigation {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    z-index: 5;
}

.in-navigation .nav-choose {
    position: relative;
}

.in-navigation .nav-choose span {
    display: flex;
    /* width: 146px; */
    background: #2C85B8;
    position: relative;
    padding-left: 15px;
    padding: 0 30px 0 15px;
    align-items: center;
    line-height: 60px;
    color: #fff;
    cursor: pointer;
}

.in-navigation .nav-choose span::after {
    content: '';
    width: 12px;
    height: 6px;
    background: url(../img/icon_arrow_right.svg) center center/cover no-repeat;
    transition: all .5s;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.in-navigation .nav-choose .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    transform: translateY(20px);
    z-index: 9;
}

.in-navigation .nav-choose .dropdown .in-box {
    position: relative;
    background: #2C85B8;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.in-navigation .nav-choose .dropdown .in-box::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom: 12px solid #2C85B8;
    transform: translateX(-50%) rotate(0deg);
    position: absolute;
    top: -24px;
    left: 50%;
}

.in-navigation .nav-choose .dropdown .in-box a {
    display: block;
    text-align: center;
    color: #fff;
    padding: 20px 10px;
}

.in-navigation .nav-choose .dropdown .in-box a:hover {
    font-weight: bold;
    background: #0D1E43;
}

.in-navigation .nav-choose:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.in-navigation .nav-choose:hover span::after {
    transform: translateY(-50%) rotate(180deg);
}

.in-navigation .nav-right {
    overflow: hidden;
}

.in-navigation .nav-right ul {
    gap: 40px;
}

.in-navigation .nav-right ul li a {
    padding: 15px 0;
    display: inline-block;
    line-height: 1.5;
    position: relative;
}

.in-navigation .nav-right ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #2C85B8;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.in-navigation .nav-right ul li a:hover {
    color: #2C85B8;
    font-weight: bold;
}

.in-navigation .nav-right ul li.active a {
    color: #2C85B8;
    font-weight: bold;
}

.in-navigation .nav-right ul li.active a::after {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.in-navigation.fixed-nav {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 5;
}

@media screen and (max-width: 1280px) {
    .in-banner {
        height: 30vw;
    }
    .in-navigation .nav-right ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .in-navigation .nav-choose span {
        line-height: 50px;
    }
    .in-navigation .nav-right ul {
        gap: 15px;
    }
    .in-navigation .nav-right ul li a {
        line-height: 50px;
        white-space: nowrap;
    }
    .in-navigation.fixed-nav {
        top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .in-banner {
        height: 40vw;
    }
    .in-banner .in-txt p {
        margin-top: 10px;
    }
    .in-navigation .nav-choose {
        margin-right:20px;
    }
    .in-navigation .nav-right {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

@media screen and (max-width: 520px) {
    .in-banner {
        height: 300px;
    }
    .in-banner h2 {
        font-size: 20px;
    }
    .nav-choose > span {
        margin-right: 20px;
    }
    .in-navigation .nav-choose span {
        /* width: 120px; */
    }
    .in-navigation ul {
        gap: 10px;
    }
    .in-navigation .nav-right {
        flex: 1;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.page-txt {
    padding: 50px 30% 50px 0;
}

.page-txt p {
    font-weight: normal;
    /* max-width: 60%; */
}

.page-txt strong {
    color: #2C85B8;
}

.page-products {
    padding-bottom: 80px;
}

.page-products ul.products-lists {
    margin-left: -10px;
    margin-right: -10px;
    justify-content: center;
}

.page-products ul.products-lists li {
    width: 33.33%;
    padding: 0 10px 20px;
}

.page-products ul.products-lists .inbox {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    padding: 0px 0px 40px 0px;
}

.page-products ul.products-lists .inbox .img {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-products ul.products-lists .inbox .img img {
    max-width: 100%;
    max-height: 100%;
    transition: all .5s;
}

.page-products ul.products-lists .inbox .info {
    text-align: center;
    padding: 0 10px;
}

.page-products ul.products-lists .inbox .info h2 {
    text-align: center;
    color: #2C85B8;
    width: 100%;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.page-products ul.products-lists .inbox .info p {
    /* word-break: break-all; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.page-products ul.products-lists .inbox .btn-more a {
    min-width: 138px;
    height: 40px;
    background: #2C85B8;
    margin: 20px auto 0;
}

.page-products ul.products-lists .inbox:hover .img img {
    transform: scale(1.01);
}

/* 翻页 */
.pages {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.pagination {
    gap: 20px;
    display: flex;
}

.pagination li {
    min-width: 50px;
    height: 50px;
    background: #F2F2F2;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    padding: 0 20px;
}

.pagination li.active {
    color: #fff;
    background: #2C85B8;
}

@media screen and (max-width: 1024px) {
    .page-txt {
        padding: 30px 0;
    }
    .page-txt p {
        max-width: 80%;
    }
    .pagination {
        gap: 10px;
    }
    .pagination li {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        line-height: 38px;
    }
    .page-products ul.products-lists .inbox .img {
        height: 260px;
    }
}

@media screen and (max-width: 768px) {
    .page-products ul.products-lists .inbox {
        padding-bottom: 20px;
    }
    .page-products ul.products-lists li {
        width: 50%;
    }
    .page-products ul.products-lists .inbox .btn-more a {
        width: 120px;
        margin-top: 10px;
    }
    .pagination {
        gap: 6px;
    }
    .pagination li {
        min-width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .page-txt p {
        max-width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .page-txt {
        font-size: 18px;
    }
    .page-products ul.products-lists .inbox .info {
        padding: 0 10px;
    }
    .page-products ul.products-lists li {
        width: 100%;
    }
    .page-products ul.products-lists .inbox .img {
        height: 70vw;
    }
}

/* 资源下载 */
.download-lists {
    margin-left: -10px;
    margin-right: -10px;
}

.download-lists li {
    width: 25%;
    padding: 0 10px 40px;
}

.download-lists a {
    display: block;
}

.download-lists a .img {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.download-lists a .img img {
    width: 100%;
    height: 100%;
    transition: all .5s;
    object-fit: cover;
}

.download-lists a .img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(44, 133, 184, 0.8);
    left: 0;
    top: 0;
    z-index: 2;
    position: absolute;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.download-lists a .img .view {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
    z-index: 3;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.download-lists a .img .view .icon {
    display: block;
    width: 36px;
    height: 36px;
    background: url(../img/icon_chakan.svg) 0 0/cover no-repeat;
    z-index: 3;
    margin: 0 auto 10px;
}

.download-lists a .info {
    text-align: center;
}

.download-lists a .info p {
    margin-top: 20px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.download-lists a:hover .img img {
    transform: scale(1.01);
}

.download-lists a:hover .img::after {
    opacity: 1;
    visibility: visible;
}

.download-lists a:hover .img .view {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1440px) {
    .download-lists a .img {
        height: 388px;
    }
}

@media screen and (max-width: 1280px) {
    .download-lists a .img {
        height: 370px;
    }
}

@media screen and (max-width: 1024px) {
    .download-lists a .img {
        height: 328px;
    }
}

@media screen and (max-width: 768px) {
    .download-lists {
        margin-left: -5px;
        margin-right: -5px;
    }
    .download-lists li {
        width: 50%;
        padding: 0 5px 20px;
    }
    .download-lists a .img {
        height: 61vw;
    }
}

@media screen and (max-width: 520px) {
    .in-banner .in-txt p {
        font-size: 14px;
    }
}

/* 应用领域 */
.appLy-lists {
    margin-left: -10px;
    margin-right: -10px;
}

.appLy-lists li {
    width: 33.33%;
    padding: 0 10px 2cap;
}
.appLy-lists .inbox {
    height:100%;
    background: #E6EDF5;
}
.appLy-lists a {
    display: block;
    height: 100%;
}

.appLy-lists a .img {
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.appLy-lists a .img img {
    width: 100%;
    height: 100%;
    transition: all .5s;
    object-fit: cover;
}

.appLy-lists a .info {
    text-align: center;
    /* background: #E6EDF5; */
    padding: 20px 40px;
    color: #000;
    transition: all .5s;
}
.appLy-lists a .info h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height: 1.3;
}
.appLy-lists a .info p {
    margin-top: 20px;
    line-height: 28px;
    /* height: 56px; */
    font-size: 14px;
@charset
"utf-8";
    body {
        overflow-x: hidden;
    }

    /* header */
    header {
        height: 80px;
        background: rgba(53, 83, 135, 0.2);
        position: fixed;
        z-index: 9;
        width: 100%;
        transition: all .5s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        /* 头部第二种状态 */
    }
    header .headBd {
        align-items: center;
    }
    header .logo {
        height: 26px;
        display: flex;
        align-items: center;
    }
    header .logo a {
        display: block;
        height: 100%;
    }
    header .logo img {
        height: 100%;
    }
    header .logo .logo-normal {
        display: none;
        height: 100%;
    }
    header .logo .btn-home {
        line-height: 1;
        margin-left: 10px;
    }
    header .logo .btn-home .icon-home {
        display: inline-block;
        width: 30px;
        height: 30px;
        background: url(../img/icon_home_white.svg) 0 0/cover no-repeat;
        transition: all .5s;
    }
    header .logo .btn-home:hover .icon-home {
        transform: scale(1.05);
    }
    header .navBar {
        align-items: center;
    }
    header .navBar > ul {
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    header .navBar > ul > li {
        position: relative;
        margin: 0 10px;
    }
    header .navBar > ul > li::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        left: 50%;
        background-color: #fff;
        transition: all .5s;
        opacity: 0;
        position: absolute;
        bottom: 0;
    }
    header .navBar > ul > li:first-child {
        margin-left: 0;
    }
    header .navBar > ul > li > a {
        display: block;
        line-height: 80px;
        font-size: 16px;
        color: #fff;
    }
    header .navBar > ul > li > a i {
        font-size: 10px;
        margin-left: 5px;
        position: relative;
        top: -1px;
    }
    header .navBar > ul > li:hover > a ,header .navBar > ul > li.active > a {
        color: #fff;
        font-weight: bold;
    }
    header .navBar > ul > li:hover::after ,header .navBar > ul > li.active::after {
        left: 0;
        width: 100%;
        opacity: 1;
    }
    header .navBar > ul > li:hover .subnav {
        opacity: 1;
        visibility: visible;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-50%) scale(1);
    }
    header .subnav {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) scale(0);
        transition: all .5s;
        background: rgba(53, 83, 135, 0.2);
        width: 200px;
        padding: 10px 0;
    }
    header .subnav ul {
        text-align: center;
    }
    header .subnav ul li a {
        font-size: 16px;
        white-space: nowrap;
        padding: 5px 10px;
        color: #fff;
        display: block;
        padding: 5px 10px;
    }
    header .subnav ul li a:hover {
        font-weight: bold;
    }
    header .language {
        font-size: 16px;
        display: flex;
        align-items: center;
        margin-left: 20px;
    }
    header .language a {
        display: inline-block;
        padding: 0 10px;
        position: relative;
        color: rgba(255, 255, 255, 0.5);
    }
    header .language a::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        background: rgba(255, 255, 255, 0.2);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    header .language a:last-child {
        padding-right: 0;
    }
    header .language a:last-child::after {
        display: none;
    }
    header .language a.cur, header .language a:hover {
        color: #fff;
    }
    header .btn-search {
        margin-left: 10px;
    }
    header .btn-search .icon-srh {
        display: block;
        width: 30px;
        height: 30px;
        background: url(../img/icon_srh_white.svg) 0 0/cover no-repeat;
    }
    header .btn-baojia {
        margin-left: 10px;
    }
    header .btn-baojia a {
        display: block;
        text-align: center;
        min-width: 104px;
        color: #fff;
        height: 40px;
        line-height: 40px;
        border-radius: 100px;
        background: #2C85B8;
        padding: 0 16px;
    }
    header .btn-baojia a:hover {
        background: #0f2e63;
    }
    header .nav-button {
        position: relative;
        width: 24px;
        height: 60px;
        text-align: center;
        z-index: 11;
        font-size: 0;
        float: right;
        display: none;
    }
    header .nav-button div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 24px;
        height: 16px;
    }
    header .nav-button span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        display: block;
        margin: 0 auto;
        line-height: 2px;
        position: static;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
    }
    header .nav-button span.top-hr {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    header .nav-button span.center-hr {
        margin: 5px auto;
    }
    header .nav-button span.bottom-hr {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    header .nav-button.active span {
        position: absolute;
        top: 50%;
        margin-top: -1px;
        left: 0;
    }
    header .nav-button.active span.top-hr {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }
    header .nav-button.active span.center-hr {
        display: none;
    }
    header .nav-button.active span.bottom-hr {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }
    header.inheader {
        border-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        background: transparent;
    }
    header.active, header:hover, header.allActive {
        background: #fff;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* 导航 */
    }
    header.active .btn-home .icon-home, header:hover .btn-home .icon-home, header.allActive .btn-home .icon-home {
        background-image: url(../img/icon_home_blue.svg);
    }
    header.active .navBar > ul > li:hover > a,
    header:hover .navBar > ul > li:hover > a,
    header.allActive .navBar > ul > li:hover > a ,
    header.active .navBar > ul > li.active > a,
    header:hover .navBar > ul > li.active > a,
    header.allActive .navBar > ul > li.active > a {
        color: #2C85B8;
    }
    header.active .navBar > ul > li > a, header:hover .navBar > ul > li > a, header.allActive .navBar > ul > li > a {
        color: #000;
    }
    header.active .navBar > ul > li > a, header:hover .navBar > ul > li > a, header.allActive .navBar > ul > li > a {
        color: #000;
    }
    header.active .navBar > ul > li::after, header:hover .navBar > ul > li::after, header.allActive .navBar > ul > li::after {
        background: #2C85B8;
    }
    header.active .subnav, header:hover .subnav, header.allActive .subnav {
        background: #fff;
    }
    header.active .subnav ul li a, header:hover .subnav ul li a, header.allActive .subnav ul li a {
        color: #000;
    }
    header.active .subnav ul li a:hover, header:hover .subnav ul li a:hover, header.allActive .subnav ul li a:hover {
        color: #2C85B8;
    }
    header.active .logo-normal, header:hover .logo-normal, header.allActive .logo-normal {
        display: block;
    }
    header.active .logo-white, header:hover .logo-white, header.allActive .logo-white {
        display: none;
    }
    header.active .language a::after, header:hover .language a::after, header.allActive .language a::after {
        background: #000;
    }
    header.active .language a, header:hover .language a, header.allActive .language a {
        color: rgba(0, 0, 0, 0.7);
    }
    header.active .language a.cur, header:hover .language a.cur, header.allActive .language a.cur {
        color: #000;
    }
    header.active .nav-button span, header:hover .nav-button span, header.allActive .nav-button span {
        background: #000;
    }
    header .mb-nav {
        display: none;
    }
    header .mb-nav ul li {
        width: 50%;
        text-align: center;
        padding: 10px 0;
    }
    header .mb-nav ul li .icon {
        width: 90px;
        margin: 0 auto;
    }
    header .mb-nav ul li .icon img {
        width: 100%;
    }

    /* 隐藏二级导航 */
    .dropdown-nav {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
    }

    .dropdown-nav .inwrap {
        /* padding: 60px 0 40px; */
    }

    .dropdown-nav .inwrap >
    ul {
        justify-content: space-between;
    }

    .dropdown-nav .inwrap >
    ul > li {
        text-align: center;
        width: 15.44118%;
        padding: 60px 0 40px;
        transition: all .3s;
    }

    .dropdown-nav .inwrap >
    ul > li span {
        font-weight: bold;
        line-height: 1;
        display: block;
        margin-bottom: 15px;
    }

    .dropdown-nav .nav2
    ul li {
        line-height: 40px;
        color: rgba(0, 0, 0, 0.5);
    }

    /* 搜索框 */
    .searchbar {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        z-index: 10;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .searchField {
        background-color: #fff;
        padding: 40px 0;
    }

    .searchField .inwrap {
        background: #E6EDF5;
        height: 52px;
        align-items: center;
        padding: 0 10px;
    }

    .searchField .icon-sousuo {
        display: block;
        width: 30px;
        height: 30px;
        background: url(../img/icon_srh_black.svg) center center no-repeat;
    }

    .searchField .iptline {
        flex: 1;
    }

    .searchField .iptline
    input {
        width: 100%;
        outline: none;
        background: transparent;
    }

    .searchField
    button {
        cursor: pointer;
        background: transparent;
    }

    .searchField .icon-close {
        display: block;
        width: 30px;
        height: 30px;
        background: url(../img/icon_close_black.svg) center center no-repeat;
        transition: all .5s;
    }

    .searchField .icon-close:
    hover {
        transform: rotate(180deg);
    }

    .searchField.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        position: fixed;
    }

    .searchField .form {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .searchField .txt {
        flex: 1;
    }

    .searchField .txt
    input[type='text'] {
        background: #eee;
        width: 100%;
        height: 45px;
        padding: 0 20px;
        outline: none;
    }

    .searchField .btn-searach {
        width: 60px;
        height: 45px;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2C85B8 url(../img/icon_srh_white.svg) center center no-repeat;
    }

    .searchField .btn-searach
    i {
        display: block;
        font-size: 26px;
    }

    .searchField .btn-searach:
    hover {
        opacity: .9;
    }

    @media screen and (
        max-width: 1600px) {
        header .logo {
            height:20px;
        }
        header .logo .btn-home .icon-home {
            height:24px;
            width: 24px}
        header .navBar > ul > li {
            margin: 0  0.5vw;
        }
        header .language {
            margin-left: 20px;
        }
        header .navBar > ul > li:
        last-child {
            margin-right: 0;
        }
        header .navBar > ul > li > a {
            font-size: 16px;
        }
    }

    @media screen and (
        max-width: 1440px) {
        header .logo .btn-home {
            margin-left: 10px;
        }
        header .navBar > ul > li {
            margin: 0  0.5vw;
        }
        header .language {
            margin-left: 10px;
        }
        header .btn-baojia {
            margin-left: 10px;
        }
        header .btn-search {
            margin-left: 10px;
        }
        .searchField .txt input[type=
  'text'] {
            height: 38px;
        }
        .searchField .btn-searach {
            height: 38px;
        }
        header .language a {
            padding: 0 8px;
            font-size: 14px;
        }
        header .btn-search .icon-srh {
            width:24px;
            height:24px;
        }
        header .btn-baojia a {
            font-size: 14px;
        }
    }

    @media screen and (
        max-width: 1300px) {
        header .logo {
            height: 16px;
            display: flex;
            align-items: center;
        }
        header .logo .btn-home .icon-home {
            height:20px;
            width: 20px}
        header .logo .btn-home {
            margin-top: -2px;
            margin-left: 5px;
        }
        header .logo .btn-home .icon-home {
            width: 20px;
            height: 20px;
        }
        header .navBar > ul > li {
            /* margin: 0  0.8vw; */
        }
        header .navBar > ul > li > a {
            /* font-size: 16px; */
        }
        header .language {
            /* margin-left: 30px; */
        }
        header .btn-baojia a {
            height: 30px;
            line-height: 30px;
        }
        header .btn-search .icon-srh {
            height: 20px;
            width: 20px;
        }
        header .language a {
            padding:0 5px;
        }
    }

    @media screen and (
        max-width: 1200px) {
        header .navBar > ul > li > a {
            font-size: 14px;
        }
        header .navBar > ul > li {
            margin: 0 .1vw;
        }
        header .logo .btn-home {
            display:none;
        }
        header .btn-baojia a {
            padding:0 8px;
        }
        header .language ,header .btn-baojia ,header .btn-search {
            margin-left:5px;}
    }

    @media screen and (
        max-width: 1024px) {
        header {
            height: 60px;
        }
        header .logo {
            height:20px;
        }
        header .logo .btn-home {
            display:block;
        }
        header .nav-button {
            display: block;
        }
        header .btn-search .icon-srh ,header .logo .btn-home .icon-home {
            width:26px;
            height:26px;
        }
        header .navBar {
            display: none;
        }
        .dropdown-nav .inwrap {
            background: #fff;
            width: 100%;
            height: calc(100vh - 60px);
            overflow-y: auto;
            padding: 0;
        }
        .dropdown-nav .inwrap > ul {
            display: block;
            padding: 20px 0;
        }
        .dropdown-nav .inwrap > ul > li {
            width: 100%;
            margin-left: 0;
            -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            -webkit-animation-name: returnToNormal;
            animation-name: returnToNormal;
            padding: 0;
        }
        .dropdown-nav .inwrap > ul > li > a {
            width: 100%;
            line-height: 50px;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }
        .dropdown-nav .inwrap > ul > li > a::
        after {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            transform: rotate(45deg);
            border: 1px solid #000;
            border-left: none;
            border-bottom: none;
            transition: all .5s;
            margin-right: 40px;
        }
        .dropdown-nav .inwrap > ul > li > a span {
            margin-bottom: 0;
            line-height: 50px;
        }
        .dropdown-nav .inwrap > ul > li.active > a::
        after {
            transform: rotate(135deg);
        }
        .dropdown-nav .inwrap li ul {
            background-color: #efefef;
            padding: 10px 0;
            transition: none;
        }
        .dropdown-nav .inwrap .nav2 {
            display: none;
        }
        .dropdown-nav .inwrap .nav2 ul li {
            text-align: left;
            padding: 0 10px;
        }
        header .btn-search {
            position: absolute;
            right: 60px;
        }
        header .btn-baojia {
            margin: 10px auto;
        }
        header .btn-baojia a {
            margin: 0 auto;
        }
        header .language {
            margin-left: 0;
            justify-content: center;
        }
        header .language a:
        first-child {
            padding-left: 0;
        }
        header .language a::
        after {
            background: #000;
        }
        header .language a {
            color: rgba(0, 0, 0, 0.7);
        }
        header .language a.cur {
            color: #000;
        }
        header.active .nav-button span, header:
        hover .nav-button span {
            background: #000;
        }
        .searchField {
            padding: 20px 0;
        }
    }

    @-webkit-keyframes returnToNormal {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes returnToNormal {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    /* banner */
    .banner-swiper {
        position: relative;
        width: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .banner-swiper .swiper-slide {
        height: 100vh;
        background: center center /cover no-repeat;
        position: relative;
        z-index: 1;
    }

    .banner-swiper .swiper-slide::
    before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: linear-gradient(90deg, rgba(30, 55, 95, 0.65) 0%, rgba(30, 55, 95, 0) 70%, rgba(30, 55, 95, 0) 100%);
        z-index: 2;
    }

    .banner-swiper .swiper-slide .wrap {
        height: 100%;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        z-index: 4;
        mix-blend-mode: screen;
    }

    .banner-swiper .swiper-slide .word {
        position: absolute;
        z-index: 2;
        text-align: center;
        width: 100%;
    }

    .banner-swiper .swiper-slide
    h1 {
        transition: all 1s;
        transition-delay: 0s;
        opacity: 0;
        transform: translateY(40px);
        color: #fff;
        font-weight: 600;
    }

    .banner-swiper .swiper-slide
    p {
        transition: all 1s;
        transition-delay: 1s;
        opacity: 0;
        transform: translateY(40px);
        margin-top: 20px;
        color: #fff;
        line-height: 1.5;
    }

    .banner-swiper .swiper-slide .Bmore {
        transition: all 1s;
        transition-delay: 0.8s;
        opacity: 0;
        transform: translateY(40px);
        margin-top: 100px;
    }

    .banner-swiper .swiper-slide .Bmore
    img {
        width: 18px;
        transition: all .5s;
    }

    .banner-swiper .swiper-slide .Bmore
    a {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px;
        gap: 10px;
        width: 168px;
        height: 46px;
        border-radius: 100px;
        border: 1px solid #FFFFFF;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        font-size: 16px;
        margin: 0 auto;
    }

    .banner-swiper .swiper-slide .Bmore
    a:hover {
        background: #2c85b8;
        border-color: #2C85B8;
    }

    .banner-swiper .swiper-slide .Bmore
    a:hover img {
        transform: translateX(20%);
    }

    .banner-swiper .swiper-slide-active
    h1 {
        opacity: 1;
        transform: translateY(0px);
    }

    .banner-swiper .swiper-slide-active
    h2 {
        opacity: 1;
        transform: translateY(0px);
    }

    .banner-swiper .swiper-slide-active
    p, .banner-swiper .swiper-slide-active .Bmore {
        opacity: 1;
        transform: translateY(0px);
    }

    /* 切换组件 S */
    .button-bar {
        position: absolute;
        top: 50%;
        height: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
    }

    .swiper-button-prev {
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 100%;
        opacity: 1;
        z-index: 2;
        transition: all .5s;
        left: -5.53846%;
    }

    .swiper-button-prev::
    before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        background: url(../img/icon_swiper_prev_black.svg) 0 0/cover no-repeat;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .swiper-button-prev:
    hover {
        background: #2C85B8;
    }

    .swiper-button-prev:
    hover::before {
        background-image: url(../img/icon_swiper_prev_white.svg);
    }

    .swiper-button-next {
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 100%;
        opacity: 1;
        z-index: 2;
        transition: all .5s;
        right: -5.53846%;
    }

    .swiper-button-next::
    before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        background: url(../img/icon_swiper_next_black.svg) 0 0/cover no-repeat;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .swiper-button-next:
    hover {
        background: #2C85B8;
    }

    .swiper-button-next:
    hover::before {
        background-image: url(../img/icon_swiper_next_white.svg);
    }

    .swiper-button-pagination {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 36px !important;
        z-index: 5;
        text-align: center;
    }

    .swiper-button-pagination .swiper-pagination-bullet {
        width: 50px;
        height: 4px;
        border-radius: 20px;
        opacity: 0.2;
        background: #FFFFFF;
        transition: all .5s;
    }

    .swiper-button-pagination .swiper-pagination-bullet-active {
        opacity: 1;
    }

    .swiper-pagination {
        position: absolute;
        width: 100%;
        left: 0;
        z-index: 5;
        text-align: center;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 50px;
        height: 4px;
        border-radius: 20px;
        opacity: 0.2;
        background: #FFFFFF;
        transition: all .5s;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        opacity: 1;
    }

    /* 切换组件 E */
    @keyframes rotate360 {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @media screen and (
        max-width: 1600px) {
        .swiper-button-prev {
            left: -8%;
        }
        .swiper-button-next {
            right: -8%;
        }
        .swiper-button-prev::
        before, .swiper-button-next::before {
            transform: translate(-50%, -50%) scale(0.8);
        }
    }

    @media screen and (
        max-width: 1280px) {
        .banner-swiper .swiper-slide .Bmore a {
            height: 40px;
            width: 148px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .banner-swiper .swiper-slide {
            height: 50vw;
        }
        .banner-swiper .swiper-slide .Bmore {
            margin-top: 50px;
        }
        .banner-swiper .swiper-slide p {
            margin-top: 10px;
        }
        .swiper-button-pagination {
            bottom: 15px !important;
        }
        .swiper-pagination .swiper-pagination-bullet, .swiper-button-pagination .swiper-pagination-bullet {
            width: 25px;
            height: 2px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .banner-swiper .swiper-slide .Bmore {
            margin-top: 25px;
        }
        .banner-swiper .swiper-slide {
            height: 50vw;
        }
        .banner-swiper .swiper-slide .Bmore a {
            padding:6px;
            font-size: 14px;
        }
    }

    @media screen and (
        max-width: 520px) {
        .banner-swiper .swiper-slide {
            height: 70vw;
        }
    }

    @media screen and (
        max-width: 425px) {
        .banner-swiper .swiper-slide {
            height: 80vw;
        }
        .banner-swiper .swiper-slide h1 {
            font-size: 28px;
        }
        .banner-swiper .swiper-slide p {
            font-size: 14px;
        }
    }

    .boxCont {
        padding: 100px 0;
        position: relative;
    }

    .title {
        margin-bottom: 60px;
        align-items: center;
    }

    .title
    h2 {
        position: relative;
        text-align: center;
        font-weight: 600;
        color: #2C85B8;
        margin-bottom: 20px;
        line-height: 1;
    }

    .title
    p {
        text-align: center;
        line-height: 20px;
    }

    .btn-more
    a {
        display: inline-flex;
        min-width: 168px;
        /* padding: 0 16px; */
        height: 46px;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        border: 1px solid #fff;
        padding: 0 10px 0 20px;
    }

    .btn-more
    a::after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
        margin-left: 8px;
        transition: all .5s;
    }

    .btn-more
    a:hover {
        background: #2C85B8;
        border-color: #2C85B8;
    }

    .btn-more
    a:hover::after {
        transform: translateX(50%);
    }

    .btn-more
    button {
        display: flex;
        width: 128px;
        height: 46px;
        border-radius: 8px;
        border: 1px solid #fff;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        background: transparent;
        transition: all .5s;
        cursor: pointer;
    }

    .btn-more
    button::after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
        margin-left: 8px;
        transition: all .5s;
    }

    .btn-more
    button:hover {
        background: #2C85B8;
        border-color: #2C85B8;
    }

    .btn-more
    button:hover::after {
        transform: translateX(50%);
    }

    /* 产品系列 */
    .index-product {
        padding: 20px;
        background: #fff;
        overflow: hidden;
        max-width: 1920px;
        margin: 0 auto;
    }

    .index-product
    ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .index-product
    ul li {
        width: 50%;
        padding: 0 10px 20px;
    }

    .index-product .inbox {
        background: #000;
        display: flex;
        padding-top: 100px;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
    }

    .index-product .inbox::
    after {
        content: '';
        position: absolute;
        border: 1px solid #2C85B8;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        position: absolute;
        left: 10px;
        top: 10px;
        z-index: 1;
        opacity: 0;
        transform: scale(1.1);
        visibility: hidden;
        transition: all .5s;
    }

    .index-product .inbox
    h2 {
        color: #fff;
        font-weight: normal;
    }

    .index-product .inbox
    p {
        color: #fff;
        word-break:keep-all;
        display:-webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient:vertical;
        overflow:hidden;
        /* height: 81px; */
        width: 100%;
        text-align: center;
        padding:0 5%;
    }

    .index-product .inbox
    h2, .index-product .inbox p, .index-product .inbox .btns, .index-product .inbox .img {
        position: relative;
        z-index: 2;
    }

    .index-product .inbox:
    hover::after {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }

    .index-product .btns {
        margin: 30px 0;
        display: flex;
        gap: 50px;
    }

    .index-product .btns
    a {
        position: relative;
        display: flex;
        align-items: center;
        color: #2C85B8;
        padding: 12px 20px;
        border-radius: 100px;
    }

    .index-product .btns
    a::after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../img/icon_zx_go_blue.svg) 0 0/cover no-repeat;
        margin-left: 12px;
        transition: all .5s;
    }

    .index-product .btns
    a:hover {
        background: #fff;
    }

    .index-product .btns
    a:hover::after {
        transform: translateX(50%);
    }

    .index-product .img {
        width: 400px;
        height: 280px;
        display: flex;
        align-items: end;
        justify-content: center;
    }

    .index-product .img
    img {
        height: 100%;
    }

    /* 应用领域 */
    .index-apparea {
        overflow: hidden;
        background: #fff;
        max-width: 1920px;
        margin: 0 auto;
        padding: 100px 0;
    }

    .index-apparea .swiper-apparea {
        overflow: hidden;
    }

    .index-apparea
    ul {
        clear: both;
        display: flex;
    }

    .index-apparea
    ul li {
        padding: 0 10px;
    }

    .index-apparea
    ul li .inbox {
        background: #E6EDF5;
        width: 26.04167vw;
        height: 100%;
    }

    .index-apparea
    ul li .img {
        height: 26.04167vw;
        overflow: hidden;
    }

    .index-apparea
    ul li .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .index-apparea
    ul li .txt {
        padding: 40px;
        text-align: center;
        /* height: 234px; */
    }

    .index-apparea
    ul li .txt h2 {
        font-weight: 400;
        margin-bottom: 20px;
        line-height:1.3;
        display:-webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .index-apparea
    ul li .txt p {
        word-break: keep-all;
        /* display: -webkit-box; */
        /* -webkit-line-clamp: 3; */
        /* -webkit-box-orient: vertical; */
        /* overflow: hidden; */
    }

    .index-apparea
    ul li .inbox:hover .img img {
        transform: scale(1.05);
    }

    /* 公司简介 */
    .index-intro {
        background: radial-gradient(49% 98% at 0% 0%, #1F72A1 0%, #0D1E43 100%);
        overflow: hidden;
        position: relative;
    }

    .index-intro .hd {
        position: relative;
        z-index: 2;
    }

    .index-intro .hd .lt {
        width: 51.47059%;
        padding-top: 100px;
    }

    .index-intro .hd .title {
        margin-bottom: 20px;
    }

    .index-intro .hd .title
    h2 {
        text-align: left;
        color: #fff;
    }

    .index-intro .hd .txt
    p {
        line-height: 2;
        text-align: left;
        color: #fff;
    }
    p {
        word-break:keep-all;
    }

    .index-intro .hd .btn-more {
        margin-top: 140px;
    }

    .index-intro .hd .rt {
        width: 33.08824%;
    }

    .index-intro .hd .rt .img {
        animation: rotate360 12s infinite linear;
    }

    .index-intro .hd .rt
    img {
        width: 100%;
    }

    .index-intro .bd {
        margin-top: 90px;
        position: relative;
        z-index: 2;
    }

    .index-intro .bd
    ul {
        justify-content: space-between;
    }

    .index-intro .bd
    ul li {
        opacity: 0.8;
        transition: all .5s;
    }

    .index-intro .bd
    ul li .in-box {
        display: flex;
        color: #fff;
    }

    .index-intro .bd
    ul li .counter {
        font-size: 70px;
        line-height: 1;
    }

    .index-intro .bd
    ul li .fnt34 {
        font-size: 34px;
        line-height: 1;
    }

    .index-intro .bd
    ul li p {
        text-align: center;
        margin-top: 10px;
        color: #fff;
    }

    .index-intro .bd
    ul li:hover {
        color: #2C85B8;
    }

    .index-intro .another-class {
        position: absolute;
        bottom: -15%;
        width: 100%;
        left: 0;
        z-index: 1;
        height: 70%;
    }

    /* 最新新闻 */
    .index-news {
        overflow: hidden;
        background: #DCE7F0;
    }

    .index-news .tit-lt {
        align-items: center;
    }

    .index-news .tabs {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }

    .index-news .tabs
    li {
        position: relative;
        padding: 0 30px;
        font-weight: 400;
    }

    .index-news .tabs
    li::after {
        content: '';
        display: block;
        width: 1px;
        height: 18px;
        background: #D8D8D8;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .index-news .tabs
    li:last-child::after {
        display: none;
    }

    .index-news .tabs
    li.active a {
        color: #2C85B8;
    }

    .index-news .item {
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
        height: 0;
        overflow: hidden;
    }

    .index-news .item.active {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

    .index-news .item .swiper-news {
        position: relative;
    }

    .index-news .item .swiper-slide
    a {
        display: block;
        background: #fff;
    }

    .index-news .item .swiper-slide .img {
        padding: 8px;
        height: 18.22917vw;
        overflow: hidden;
    }

    .index-news .item .swiper-slide .img
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .index-news .item .swiper-slide .info {
        padding: 10px 25px 30px;
    }

    .index-news .item .swiper-slide .txt
    h2 {
        font-weight: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1;
        margin-bottom: 20px;
    }

    .index-news .item .swiper-slide .txt
    p {
        color: rgba(0, 0, 0, 0.6);
        height: 60px;
        line-height: 30px;
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .index-news .item .swiper-slide .other {
        margin-top: 30px;
    }

    .index-news .item .swiper-slide .other .ly {
        color: #000;
    }

    .index-news .item .swiper-slide .other .dt {
        color: #000;
        display: flex;
        align-items: center;
    }

    .index-news .item .swiper-slide .other .dt::
    before {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        background: url(../img/icon_datetime.svg) center center/cover no-repeat;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .index-news .item .swiper-slide
    a:hover .img img {
        transform: scale(1.05);
    }

    .index-news .item .btn-more {
        text-align: center;
        margin-top: 50px;
    }

    .index-news .item .btn-more
    a {
        margin: 0 auto;
        width: 178px;
        background: #2C85B8;
        border-color: #2C85B8;
    }

    .index-news .item .button-bar {
        width: 34.89583vw;
    }

    @media screen and (
        max-width: 1440px) {
        .boxCont, .index-apparea {
            padding: 70px 0;
        }
        .boxCont .title {
            margin-bottom: 40px;
        }
        .title {
            margin-bottom: 40px;
        }
        .index-product {
            padding: 10px;
        }
        .index-product ul {
            margin-left: -5px;
            margin-right: -5px;
        }
        .index-product ul li {
            padding: 0 5px 10px;
        }
        .index-apparea ul li .txt {
            padding: 30px;
            /* height: 200px; */
        }
        .index-apparea ul li .txt h2 {
            margin-bottom: 10px;
        }
        .index-intro .hd .btn-more {
            margin-top: 60px;
        }
        .index-intro .bd ul li .counter {
            font-size: 60px;
        }
        .index-news .tabs {
            margin-top: 20px;
        }
        .index-news .item ul li .img {
            height: 222px;
        }
    }

    @media screen and (
        max-width: 1280px) {
        .boxCont, .index-apparea {
            padding: 60px 0;
        }
        .boxCont .title {
            margin-bottom: 30px;
        }
        .index-product .btns a {
            padding: 8px 20px;
        }
        .index-apparea ul li .txt {
            padding: 20px;
        }
        .index-intro .hd .btn-more {
            margin-top: 60px;
        }
        .index-intro .bd ul li .counter {
            font-size: 60px;
        }
        .index-product .item ul li .img {
            height: 350px;
        }
        .index-solution .item1 .img {
            height: 560px;
        }
        .index-solution .item2 .img {
            height: 270px;
        }
        .index-news .item ul li .img {
            height: 222px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .boxCont, .index-apparea {
            padding: 50px 0;
        }
        .index-apparea ul li .txt {
            padding: 30px;
            height: 200px;
        }
        .index-apparea ul li .inbox {
            width: 30vw;
        }
        .index-apparea ul li .img {
            height: 30vw;
        }
        .index-intro .hd .btn-more {
            margin-top: 30px;
        }

        .btn-more a {
            width: 148px;
            height: 38px;
            padding-left: 12px;
        }
        .index-intro .hd .lt {
            padding-top: 50px;
        }
        .index-intro .bd ul li .counter {
            font-size: 40px;
        }
        .index-product .tabs ul li a {
            padding: 20px;
            white-space: nowrap;
        }
        .index-product .item ul li .img {
            height: 295px;
        }
        .index-intro .bd ul li .in-box {
            text-align: center;
            align-items: center;
            justify-content: center;
        }
        .index-intro .bd ul li {
            margin-bottom: 20px;
        }
        .index-intro .hd .btn-more {
            margin-top: 20px;
        }
        .index-news .item .button-bar {
            width: 44vw;
        }
        .index-product .btns a {
            padding: 5px 10px;
        }

        .index-product .btns a::
        after {
            margin-left: 6px;
        }
        .index-intro .hd .txt p {
            /* font-size:14px; */
        }
    }

    @media screen and (
        max-width: 768px) {
        .index-product .inbox {
            padding-top: 50px;
        }
        .index-apparea ul li .txt {
            padding: 20px;
            height: 200px;
        }
        .index-apparea ul li .inbox {
            width: 40vw;
        }
        .index-apparea ul li .img {
            height: 40vw;
        }
        .index-intro .hd .rt {
            width: 100%;
        }
        .index-intro .hd .lt {
            width: 100%;
        }
        .index-intro .hd .lt {
            padding-top: 0;
        }
        .index-intro .hd .rt {
            width: 100%;
            margin-top: 20px;
        }
        .index-intro .hd .rt .img {
            width: 50%;
            margin: 0 auto;
        }
        .index-intro .another-class {
            bottom: -30%;
        }
        .index-intro .bd {
            margin-top: 45px;
        }
        .index-intro .bd ul li .counter {
            font-size: 30px;
        }
        .index-news .item .button-bar {
            display: none;
        }
        .index-news .item .swiper-slide .img {
            height: 50vw;
        }
    }

    @media screen and (
        max-width: 520px) {
        .index-product .inbox {
            padding-top: 50px;
        }
        .index-product ul {
            flex-wrap: wrap;
        }
        .index-product ul li {
            width: 100%;
            margin-top: 10px;
        }
        .index-product ul li:
        first-child {
            margin-top: 0;
        }
        .index-apparea .title {
            padding: 0 20px;
        }
        .index-apparea ul li .txt {
            padding: 10px;
            height: 160px;
        }
        .index-apparea ul li .inbox {
            width: 70vw;
        }
        .index-apparea ul li .img {
            height: 70vw;
        }
        .index-intro .hd .rt .img {
            width: 100%;
        }
        .index-intro .bd ul li {
            width: 50%;
        }
        .index-intro .hd .rt .video-box {
            width: 100%;
        }
        .index-intro .another-class {
            bottom: -40%;
        }
        .footer .ft-hd {
            padding-top: 40px;
        }
    }

    /* 应用安全宇宙 */
    @keyframes rain {
        from {
            transform: translateY(0%);
        }
        to {
            transform: translateY(100%);
        }
    }

    /* footer */
    .footer {
        background: #221714;
        overflow: hidden;
    }

    .footer .ft-hd {
        padding: 75px 0 35px;
    }

    .footer .ft-hd .ft-info {
        width: 34.33824%;
        padding-right: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer .ft-hd .ft-info .logo {
        width: 200px;
        margin-bottom: 50px;
    }

    .footer .ft-hd .ft-info .logo
    img {
        width: 100%;
    }

    .footer .ft-hd .ft-info .linkus {
        color: #fff;
    }

    .footer .ft-hd .ft-info .linkus
    span {
        display: block;
        color: #2C85B8;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .footer .ft-hd .ft-info .qrcodes {
        margin-top: 55px;
    }

    .footer .ft-hd .ft-info .qrcodes
    ul {
        gap: 40px;
    }

    .footer .ft-hd .ft-info .qrcodes
    ul li {
        text-align: center;
    }

    .footer .ft-hd .ft-info .qrcodes
    ul li .img {
        width: 140px;
        height: 140px;
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        padding: 10px;
        margin: 0 auto;
    }

    .footer .ft-hd .ft-info .qrcodes
    ul li .img img {
        width: 100%;
    }

    .footer .ft-hd .ft-info .qrcodes
    ul li p {
        color: #fff;
        margin-top: 15px;
    }

    .footer .ft-hd .ft-nav {
        justify-content: flex-end;
        padding-left: 5%;
    }

    .footer .ft-hd .ft-nav
    ul {
        gap: 30px;
    }
    .footer .ft-hd .ft-nav
    ul li {
        width:25%;
    }

    .footer .ft-hd .ft-nav
    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer .ft-hd .ft-nav
    h2 a {
        color: #fff;
    }

    .footer .ft-hd .ft-nav
    dl {
        font-size: 16px;
        /* white-space: nowrap; */
        word-break: break-word;
    }

    .footer .ft-hd .ft-nav
    dl a {
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.5;
    }
    .footer .ft-hd .ft-nav
    dl dd {
        margin-bottom: 20px;
    }

    .footer .ft-hd .ft-nav
    dl a:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    .footer .ft-bd {
        padding: 9px 0;
    }

    .footer .ft-bd
    span {
        color: rgba(255, 255, 255, 0.3);
    }

    .footer .ft-bd .fr
    img {
        margin-right: 10px;
    }

    /* 浮窗 */
    .rightFixed {
        position: fixed;
        right: 20px;
        bottom: 15%;
        z-index: 9;
    }

    .rightFixed
    ul {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }

    .rightFixed
    ul li {
        width: 60px;
        height: 60px;
        background: #fff;
        position: relative;
    }

    .rightFixed
    ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
    }

    .rightFixed
    ul li .icon {
        display: block;
        width: 30px;
        height: 30px;
        background: center center /cover no-repeat;
    }

    .rightFixed
    ul li .icon-tel {
        background-image: url(../img/icon_right03_black.svg);
    }

    .rightFixed
    ul li .icon-wx {
        background-image: url(../img/icon_right02_black.svg);
    }

    .rightFixed
    ul li .icon-top {
        background-image: url(../img/icon_right01_black.svg);
    }

    .rightFixed
    ul li:hover {
        background: #2C85B8;
    }

    .rightFixed
    ul li:hover .icon-tel {
        background-image: url(../img/icon_right03.svg);
    }

    .rightFixed
    ul li:hover .icon-wx {
        background-image: url(../img/icon_right02.svg);
    }

    .rightFixed
    ul li:hover .icon-top {
        background-image: url(../img/icon_right01.svg);
    }

    .rightFixed
    ul .li-tel {
        overflow: hidden;
        width: 60px;
    }

    .rightFixed
    ul .box-tel {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        transition: all .5s;
        background: #fff;
        overflow: hidden;
    }

    .rightFixed
    ul .box-tel a {
        flex-shrink: 0;
    }

    .rightFixed
    ul .box-tel .tt {
        white-space: nowrap;
        padding: 0;
        width: 0;
        transition: all .5s;
    }

    .rightFixed
    ul .box-tel .tt b {
        color: #2C85B8;
    }

    .rightFixed
    ul .li-tel:hover {
        overflow: inherit;
    }

    .rightFixed
    ul .li-tel:hover .box-tel .tt {
        width: 230px;
        padding: 0 10px;
    }

    .rightFixed
    ul .li-tel:hover .box-tel {
        padding-left: 10px;
        width: auto;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
    }

    .rightFixed
    ul .li-tel:hover .box-tel a {
        background: #fff;
        width: auto;
    }

    .rightFixed
    ul .li-tel:hover .box-tel .icon-tel {
        background-image: url(../img/icon_right03_black.svg);
    }

    .rightFixed
    ul .qrcode-kf {
        position: absolute;
        right: calc(100% + 10px);
        top: 0;
        text-align: center;
        opacity: 0;
        visibility: visible;
        transition: all .5s;
        transform: translateX(20%);
    }

    .rightFixed
    ul .qrcode-kf .in-qr {
        padding: 14px 10px;
        background: #FFFFFF;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }

    .rightFixed
    ul .qrcode-kf .qrc {
        width: 110px;
    }

    .rightFixed
    ul .qrcode-kf .qrc img {
        width: 100%;
    }

    .rightFixed
    ul .qrcode-kf p {
        margin-top: 10px;
    }

    .rightFixed
    ul li:hover .qrcode-kf {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    @media screen and (
        max-width: 1600px) {
        .footer .ft-hd .ft-nav ul {
            gap: 8vw;
        }
        .footer .ft-bd {
            font-size: 14px;
            gap: 20px;
        }
        .footer .ft-bd .fl {
            flex: 1;
        }
    }

    @media screen and (
        max-width: 1440px) {
        .footer .ft-hd .ft-info .qrcodes ul li .img {
            width: 100px;
            height: 100px;
            margin: 0 auto;
        }
        .footer .ft-hd .ft-nav {
            padding-left: 20px;
        }
        .footer .ft-hd .ft-nav ul {
            gap: 2vw;
        }
    }

    @media screen and (
        max-width: 1280px) {
        .footer .ft-hd .ft-nav ul {
            gap: 3vw;
        }
        .footer .ft-hd .ft-nav ul li {
            max-width:160px;

        }
        .footer .ft-hd .ft-nav dl {
            word-wrap: break-word;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .footer .ft-hd {
            padding-top: 40px;
            padding-bottom: 0;
        }
        .footer .ft-bd span {
            width: 100%;
            display: block;
            text-align: center;
            float: none !important;
        }
        .footer .ft-hd .ft-info .logo {
            height: 20px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .footer .ft-hd .ft-info .logo {
            height: 20px;
            margin-bottom: 25px;
            width: auto;
        }
        .footer .ft-hd .ft-info .logo img {
            width: auto;
            height: 100%;
        }
        .footer .ft-hd .ft-info .qrcodes {
            margin: 30px 0 30px;
        }
        .footer .ft-hd .ft-info .qrcodes ul li .img {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            border-radius: 8px;
        }
        .footer .ft-hd .ft-info {
            width: 100%;
            border-right: none;
            text-align: center;
        }
        .footer .ft-hd .ft-nav {
            display: none;
        }
        .footer .ft-hd .ft-info .qrcodes ul {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer .ft-hd ul {
            width: 100%;
        }
        .footer .ft-hd .ft-info .qrcodes ul {
            gap: 0;
        }
        .footer .ft-hd .ft-info .qrcodes ul li {
            margin-right: 0;
            margin: 5px;
        }
        .footer .ft-bd {
            flex-wrap: wrap;
            gap: 0;
        }
    }

    @media screen and (
        max-width: 768px) {
        .rightFixed {
            bottom: 10%;
        }
        .rightFixed ul li {
            width: 30px;
            height: 30px;
        }
        .rightFixed ul li a {
            width: 30px;
            height: 30px;
        }
        .rightFixed ul li .icon {
            width: 16px;
            height: 16px;
        }
        .rightFixed ul .li-tel {
            width: 30px;
        }
        .rightFixed ul .li-tel:
        hover .box-tel .tt {
            width: 200px;
        }
        .footer .ft-hd .ft-info .qrcodes ul li .img {
            border-radius: 8px;
        }
        .rightFixed ul .qrcode-kf .qrc {
            width: 90px;
        }
        .rightFixed ul .qrcode-kf .in-qr {
            padding: 7px 6px;
        }
    }

    /* 内页banner */
    .in-banner {
        position: relative;
        height: 30.20833vw;
        background: center center /cover no-repeat;
    }

    .in-banner::
    before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
    }

    .in-banner .in-banner-box {
        display: flex;
        align-items: center;
        height: 100%;
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .in-banner .in-txt
    h2 {
        letter-spacing: 0.2em;
    }

    .in-banner .in-txt
    p {
        margin-top: 20px;
    }

    /* 内页导航 */
    .in-navigation {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: #fff;
        position: relative;
        z-index: 5;
    }

    .in-navigation .nav-choose {
        position: relative;
    }

    .in-navigation .nav-choose
    span {
        display: flex;
        width: 146px;
        background: #2C85B8;
        position: relative;
        padding-left: 15px;
        align-items: center;
        line-height: 60px;
        color: #fff;
        cursor: pointer;
    }

    .in-navigation .nav-choose
    span::after {
        content: '';
        width: 12px;
        height: 6px;
        background: url(../img/icon_arrow_right.svg) center center/cover no-repeat;
        transition: all .5s;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .in-navigation .nav-choose .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding-top: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
        transform: translateY(20px);
        z-index: 9;
    }

    .in-navigation .nav-choose .dropdown .in-box {
        position: relative;
        background: #2C85B8;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    }

    .in-navigation .nav-choose .dropdown .in-box::
    before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: 12px solid transparent;
        border-bottom: 12px solid #2C85B8;
        transform: translateX(-50%) rotate(0deg);
        position: absolute;
        top: -24px;
        left: 50%;
    }

    .in-navigation .nav-choose .dropdown .in-box
    a {
        display: block;
        text-align: center;
        color: #fff;
        padding: 20px 10px;
    }

    .in-navigation .nav-choose .dropdown .in-box
    a:hover {
        font-weight: bold;
        background: #0D1E43;
    }

    .in-navigation .nav-choose:
    hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .in-navigation .nav-choose:
    hover span::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .in-navigation .nav-right {
        overflow: hidden;
    }

    .in-navigation .nav-right
    ul {
        gap: 40px;
    }

    .in-navigation .nav-right
    ul li a {
        display: inline-block;
        line-height: 60px;
        position: relative;
    }

    .in-navigation .nav-right
    ul li a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #2C85B8;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
    }

    .in-navigation .nav-right
    ul li a:hover {
        color: #2C85B8;
        font-weight: bold;
    }

    .in-navigation .nav-right
    ul li.active a {
        color: #2C85B8;
        font-weight: bold;
    }

    .in-navigation .nav-right
    ul li.active a::after {
        opacity: 1;
        width: 100%;
        visibility: visible;
    }

    .in-navigation.fixed-nav {
        position: fixed;
        top: 80px;
        width: 100%;
        z-index: 5;
    }

    @media screen and (
        max-width: 1280px) {
        .in-banner {
            height: 30vw;
        }
        .in-navigation .nav-right ul {
            gap: 20px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .in-navigation .nav-choose span {
            line-height: 50px;
        }
        .in-navigation .nav-right ul {
            gap: 15px;
        }
        .in-navigation .nav-right ul li a {
            line-height: 50px;
            white-space: nowrap;
        }
        .in-navigation.fixed-nav {
            top: 60px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .in-banner {
            height: 40vw;
        }
        .in-banner .in-txt p {
            margin-top: 10px;
        }
        .in-navigation .nav-choose {
            margin-right:20px;
        }
        .in-navigation .nav-right {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
        }
    }

    @media screen and (
        max-width: 520px) {
        .in-banner {
            height: 300px;
        }
        .in-banner h2 {
            font-size: 20px;
        }
        .nav-choose > span {
            margin-right: 20px;
        }
        .in-navigation .nav-choose span {
            width: 120px;
        }
        .in-navigation ul {
            gap: 10px;
        }
        .in-navigation .nav-right {
            flex: 1;
            overflow-x: auto;
            overflow-y: hidden;
        }
    }

    .page-txt {
        padding: 50px 30% 50px 0;
    }

    .page-txt
    p {
        font-weight: normal;
        max-width: 60%;
    }

    .page-txt
    strong {
        color: #2C85B8;
    }

    .page-products {
        padding-bottom: 80px;
    }

    .page-products
    ul.products-lists {
        margin-left: -10px;
        margin-right: -10px;
    }

    .page-products
    ul.products-lists li {
        width: 33.33%;
        padding: 0 10px 20px;
    }

    .page-products
    ul.products-lists .inbox {
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #FFFFFF;
        padding: 0px 0px 40px 0px;
    }

    .page-products
    ul.products-lists .inbox .img {
        height: 330px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .page-products
    ul.products-lists .inbox .img img {
        max-width: 100%;
        max-height: 100%;
        transition: all .5s;
    }

    .page-products
    ul.products-lists .inbox .info {
        text-align: center;
        padding: 0 10px;
    }

    .page-products
    ul.products-lists .inbox .info h2 {
        text-align: center;
        color: #2C85B8;
        width: 100%;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .page-products
    ul.products-lists .inbox .info p {
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        width: 100%;
    }

    .page-products
    ul.products-lists .inbox .btn-more a {
        min-width: 138px;
        height: 40px;
        background: #2C85B8;
        margin: 20px auto 0;
    }

    .page-products
    ul.products-lists .inbox:hover .img img {
        transform: scale(1.01);
    }

    /* 翻页 */
    .pages {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 30px;
    }

    .pagination {
        gap: 20px;
        display: flex;
    }

    .pagination
    li {
        min-width: 50px;
        height: 50px;
        background: #F2F2F2;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
        transition: all .3s;
        padding: 0 20px;
    }

    .pagination
    li.active {
        color: #fff;
        background: #2C85B8;
    }

    @media screen and (
        max-width: 1024px) {
        .page-txt {
            padding: 30px 0;
        }
        .page-txt p {
            max-width: 80%;
        }
        .pagination {
            gap: 10px;
        }
        .pagination li {
            min-width: 38px;
            height: 38px;
            padding: 0 10px;
            line-height: 38px;
        }
        .page-products ul.products-lists .inbox .img {
            height: 260px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .page-products ul.products-lists .inbox {
            padding-bottom: 20px;
        }
        .page-products ul.products-lists li {
            width: 50%;
        }
        .page-products ul.products-lists .inbox .btn-more a {
            width: 120px;
            margin-top: 10px;
        }
        .pagination {
            gap: 6px;
        }
        .pagination li {
            min-width: 30px;
            height: 30px;
            line-height: 30px;
        }
        .page-txt p {
            max-width: 100%;
        }
    }

    @media screen and (
        max-width: 520px) {
        .page-txt {
            font-size: 18px;
        }
        .page-products ul.products-lists .inbox .info {
            padding: 0 10px;
        }
        .page-products ul.products-lists li {
            width: 100%;
        }
        .page-products ul.products-lists .inbox .img {
            height: 70vw;
        }
    }

    /* 资源下载 */
    .download-lists {
        margin-left: -10px;
        margin-right: -10px;
    }

    .download-lists
    li {
        width: 25%;
        padding: 0 10px 40px;
    }

    .download-lists
    a {
        display: block;
    }

    .download-lists
    a .img {
        height: 460px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .download-lists
    a .img img {
        width: 100%;
        height: 100%;
        transition: all .5s;
        object-fit: cover;
    }

    .download-lists
    a .img::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(44, 133, 184, 0.8);
        left: 0;
        top: 0;
        z-index: 2;
        position: absolute;
        transition: all .5s;
        opacity: 0;
        visibility: hidden;
    }

    .download-lists
    a .img .view {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        color: #fff;
        text-align: center;
        z-index: 3;
        transition: all .5s;
        opacity: 0;
        visibility: hidden;
    }

    .download-lists
    a .img .view .icon {
        display: block;
        width: 36px;
        height: 36px;
        background: url(../img/icon_chakan.svg) 0 0/cover no-repeat;
        z-index: 3;
        margin: 0 auto 10px;
    }

    .download-lists
    a .info {
        text-align: center;
    }

    .download-lists
    a .info p {
        margin-top: 20px;
    }

    .download-lists
    a:hover .img img {
        transform: scale(1.01);
    }

    .download-lists
    a:hover .img::after {
        opacity: 1;
        visibility: visible;
    }

    .download-lists
    a:hover .img .view {
        opacity: 1;
        visibility: visible;
    }

    @media screen and (
        max-width: 1440px) {
        .download-lists a .img {
            height: 388px;
        }
    }

    @media screen and (
        max-width: 1280px) {
        .download-lists a .img {
            height: 370px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .download-lists a .img {
            height: 328px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .download-lists {
            margin-left: -5px;
            margin-right: -5px;
        }
        .download-lists li {
            width: 50%;
            padding: 0 5px 20px;
        }
        .download-lists a .img {
            height: 61vw;
        }
    }

    @media screen and (
        max-width: 520px) {
        .in-banner .in-txt p {
            font-size: 14px;
        }
    }

    /* 应用领域 */
    .appLy-lists {
        margin-left: -10px;
        margin-right: -10px;
    }

    .appLy-lists
    li {
        width: 33.33%;
        padding: 0 10px 2cap;
    }

    .appLy-lists
    a {
        display: block;
    }

    .appLy-lists
    a .img {
        height: 440px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .appLy-lists
    a .img img {
        width: 100%;
        height: 100%;
        transition: all .5s;
        object-fit: cover;
    }

    .appLy-lists
    a .info {
        text-align: center;
        background: #E6EDF5;
        padding: 20px 40px;
        color: #000;
        transition: all .5s;
    }

    .appLy-lists
    a .info p {
        margin-top: 20px;
        line-height: 28px;
        height: 56px;
        font-size: 14px;
    }

    .appLy-lists
    a:hover .img img {
        transform: scale(1.01);
    }

    .appLy-lists
    a:hover .info {
        background: #2C85B8;
        color: #fff;
    }

    @media screen and (
        max-width: 1440px) {
        .appLy-lists a .img {
            height: 370px;
        }
    }

    @media screen and (
        max-width: 1280px) {
        .appLy-lists a .img {
            height: 356px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .appLy-lists a .img {
            height: 320px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .appLy-lists {
            margin-left: -5px;
            margin-right: -5px;
        }
        .appLy-lists li {
            width: 50%;
            padding: 0 5px 10px;
        }
        .appLy-lists a .img {
            height: 35vw;
        }
        .appLy-lists a .info p {
            margin-top: 10px;
            line-height: 1.5;
        }
        .appLy-lists a .info {
            padding: 10px 20px;
        }
    }

    @media screen and (
        max-width: 520px) {
        .appLy-lists li {
            width: 100%;
        }
        .appLy-lists a .img {
            height: 90vw;
        }
    }

    /* 弹窗 */
    .mask-bg {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(30px);
        position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        z-index: 20;
        display: none;
    }

    .mask-bg .popup-ziyuan {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .mask-bg .close {
        position: absolute;
        right: 0;
        top: 0;
        width: 66px;
        height: 66px;
        background: url(../img/icon_close.svg) 0 0/cover no-repeat;
        cursor: pointer;
        transition: all .5s;
        z-index: 3;
    }

    .mask-bg .close:
    hover {
        transform: rotate(180deg);
    }

    .mask-bg .swiper-pagination {
        bottom: 5%;
    }

    .mask-bg .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .popup-main {
        width: 400px;
        position: relative;
    }

    .popup-main .button-bar {
        width: 120%;
        top: 50%;
    }

    .popup-main .swiper-ziyuan {
        overflow: hidden;
        min-height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-main .inbox {
        width: 100%;
        min-height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-main .img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-main .img
    img {
        max-width: 100%;
        max-height: 100%;
    }

    .popup-main .txt {
        text-align: center;
        margin-top: 25px;
        color: #fff;
    }

    .form-zixun {
        background: #fff;
    }

    .form-zixun .hd {
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding: 30px;
    }

    .form-zixun .hd
    h2 {
        color: #2C85B8;
    }

    .form-zixun .hd
    p {
        color: rgba(0, 0, 0, 0.5);
        margin-top: 10px;
    }

    .form-zixun .bd {
        padding: 30px;
    }

    .form-zixun .bd
    li {
        width: 100%;
        margin-bottom: 30px;
    }

    .form-zixun .bd .name {
        width: 110px;
        margin-right: 20px;
    }

    .form-zixun .bd .email {
        flex: 1;
    }

    .form-zixun .bd .tit {
        margin-bottom: 10px;
    }

    .form-zixun .bd .tit
    b {
        color: #B81F6A;
        margin-right: 5px;
    }

    .form-zixun .bd .ipt {
        height: 50px;
        background: #F5F5F5;
    }

    .form-zixun .bd .ipt
    input[type="text"] {
        height: 100%;
        padding: 14px 20px;
        width: 100%;
        background: transparent;
        font-size: 16px;
        outline: none;
    }

    .form-zixun .btn {
        padding-top: 10px;
    }

    .form-zixun .btn .btn-submit {
        background: #2C85B8;
        height: 50px;
        color: #fff;
        font-size: 16px;
        width: 100%;
        cursor: pointer;
        transition: all .5s;
    }

    .form-zixun .btn .btn-submit:
    hover {
        background: #0f2e63;
    }

    @media screen and (
        min-height: 1060px) {
        .popup-main {
            width: 500px;
        }
        .form-zixun .btn {
            padding-top: 50px;
        }
    }

    @media screen and (
        max-width: 1440px) {
        .mask-bg .close {
            width: 50px;
            height: 50px;
        }
        .popup-main {
            width: 400px;
        }
        .form-zixun .hd {
            padding: 20px;
        }
        .form-zixun .bd {
            padding: 20px;
        }
        .form-zixun .btn {
            padding-top: 20px;
        }
        .form-zixun .bd li {
            margin-bottom: 20px;
        }
        .popup-main .txt {
            margin-top: 15px;
        }
    }

    @media screen and (
        max-width: 1280px) {
        .popup-main {
            width: 300px;
        }
        .form-zixun .btn {
            padding-top: 10px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .mask-bg .close {
            width: 30px;
            height: 30px;
        }
        .popup-main {
            width: 53vh;
        }
        .popup-main .inbox, .form-zixun {
            height: 75vh;
        }
        .popup-main .txt {
            margin-top: 10px;
        }
        .form-zixun .bd .ipt {
            height: 40px;
        }
        .form-zixun .bd .ipt input[type=
  "text"] {
            padding: 10px;
        }
        .form-zixun .btn .btn-submit {
            height: 40px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .popup-main .button-bar {
            display: none;
        }
    }

    @media screen and (
        max-width: 425px) {
        .popup-main {
            width: 100vw;
        }
        .popup-main .inbox {
            height: 70vh;
        }
    }

    /* 新闻中心 */
    .news-lists {
        margin-left: -10px;
        margin-right: -10px;
    }

    .news-lists
    li {
        padding: 0 10px 20px;
        width: 33.33%;
    }

    .news-lists
    li .inbox a {
        display: block;
    }

    .news-lists
    li .inbox .img {
        height: 264px;
        overflow: hidden;
    }

    .news-lists
    li .inbox .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .news-lists
    li .inbox .info {
        padding: 25px 25px 30px;
    }

    .news-lists
    li .inbox .txt h2 {
        font-weight: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1;
        margin-bottom: 20px;
    }

    .news-lists
    li .inbox .txt p {
        color: rgba(0, 0, 0, 0.6);
        height: 60px;
        line-height: 30px;
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-lists
    li .inbox .other {
        margin-top: 30px;
    }

    .news-lists
    li .inbox .other .ly {
        color: #000;
    }

    .news-lists
    li .inbox .other .dt {
        color: #000;
        display: flex;
        align-items: center;
    }

    .news-lists
    li .inbox .other .dt::before {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        background: url(../img/icon_datetime.svg) center center/cover no-repeat;
        margin-right: 6px;
        flex-shrink: 0;
    }

    /* .news-lists li .inbox a:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
} */

    .news-lists
    li .inbox a:hover .img img {
        transform: scale(1.05);
    }

    @media screen and (
        max-width: 1440px) {
        .news-lists li .inbox .img {
            height: 220px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .news-lists li .inbox .img {
            height: 190px;
        }
        .news-lists li .inbox .info {
            padding: 15px 10px 15px;
        }
        .news-lists li .inbox .txt h2 {
            margin-bottom: 10px;
        }
        .news-lists li .inbox .other {
            margin-top: 20px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .news-lists {
            margin-left: -5px;
            margin-right: -5px;
        }
        .news-lists li {
            width: 50%;
            padding: 0 5px 10px;
        }
        .news-lists li .inbox .img {
            height: 27vw;
        }
    }

    @media screen and (
        max-width: 520px) {
        .news-lists li {
            width: 100%;
        }
        .news-lists li .inbox .img {
            height: 53vw;
        }
    }

    /* 产品详情 */
    .prodt-floor1 {
        overflow: hidden;
        padding-top: 80px;
        background: #fff;
    }

    .prodt-floor1 .wrap {
        padding: 25px 0;
    }

    .prodt-floor1 .lt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        padding-right: 5%;
    }

    .prodt-floor1 .lt
    h2 {
        color: #2C85B8;
        margin-bottom: 20px;
    }

    .prodt-floor1 .lt .btn-more {
        margin-top: 100px;
    }

    .prodt-floor1 .lt .btn-more
    a {
        border-color: #2C85B8;
        color: #2C85B8;
    }

    .prodt-floor1 .lt .btn-more
    a::after {
        background-image: url(../img/icon_zx_go_blue.svg);
    }

    .prodt-floor1 .lt .btn-more
    a:hover {
        color: #fff;
    }

    .prodt-floor1 .lt .btn-more
    a:hover::after {
        background-image: url(../img/icon_zx_go.svg);
        background-size: contain;
    }

    .prodt-floor1 .rt {
        width: 33.08824%;
    }

    .prodt-floor1 .rt
    img {
        width: 100%;
    }

    .prodt-floor2 {
        overflow: hidden;
        padding: 120px 0;
        background: #E6EDF5;
    }

    .prodt-floor2 .lt {
        width: 38.23529%;
    }

    .prodt-floor2 .lt
    h2 {
        margin-bottom: 20px;
    }

    .prodt-floor2 .lt
    h2 strong {
        color: #2C85B8;
    }

    .prodt-floor2 .lt
    p {
        /* text-align: justify; */
        line-height: 34px;
        margin-bottom: 10px;
    }

    .prodt-floor2 .rt {
        width: 50%;
    }

    .prodt-floor2 .rt
    ul {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .prodt-floor2 .rt
    ul li .inbox {
        align-items: center;
    }
    .prodt-floor2 .rt
    ul li img {
        border-radius: 10px;
    }
    .prodt-floor2 .rt
    ul li .icon {
        width: 80px;
        height: 80px;
        background: #fff;
        border-radius: 10px;
        flex-shrink: 0;
        margin-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prodt-floor2 .rt
    ul li .icon img {
        max-width: 80%;
        max-height: 80%;
        border-radius: 0;
    }

    .prodt-floor2 .rt
    ul li .tt h2 {
        color: #2C85B8;
    }

    .prodt-floor2 .rt
    ul li .tt p {
        margin-top: 5px;
    }

    .prodt-floor3 {
        overflow: hidden;
        padding: 120px 0;
        background: #E6EDF5;
    }

    .prodt-floor3 .lt {
        width: 44.11765%;
    }

    .prodt-floor3 .lt
    img {
        width: 100%;
    }

    .prodt-floor3 .rt {
        width: 50%;
        padding-top: 20px;
        padding-right: 74px;
    }

    .prodt-floor3 .rt
    h2 {
        margin-bottom: 60px;
        font-weight: normal;
    }

    .prodt-floor3 .rt
    h2 strong {
        color: #2C85B8;
    }

    .prodt-floor3 .rt .accordion .item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .prodt-floor3 .rt .accordion .item .hd {
        position: relative;
        line-height: 28px;
        cursor: pointer;
    }

    .prodt-floor3 .rt .accordion .item .hd::
    after {
        content: '';
        display: block;
        border: 2px solid #000000;
        transform: translate(-2px, -50%) rotate(-135deg);
        width: 9px;
        height: 9px;
        position: absolute;
        right: 0;
        top: 50%;
        border-top: none;
        border-right: none;
        transition: all .5s;
    }

    .prodt-floor3 .rt .accordion .item .bd {
        display: none;
    }

    .prodt-floor3 .rt .accordion .item .bd
    ul {
        padding-top: 10px;
        line-height: 1.8;
    }

    .prodt-floor3 .rt .accordion .item .bd
    ul li {
        font-size: 14px;
        padding-left: 20px;
        position: relative;
        line-height: 28px;
    }

    .prodt-floor3 .rt .accordion .item .bd
    ul li::before {
        content: '';
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 100%;
        position: absolute;
        left: 7px;
        top: 12px;
        background: #000;
    }

    .prodt-floor3 .rt .accordion .item.active .hd {
        color: #2C85B8;
        font-weight: bold;
    }

    .prodt-floor3 .rt .accordion .item.active .hd::
    after {
        border-color: #2C85B8;
        transform: translate(-2px, -50%) rotate(-45deg);
    }

    .prodt-floor4 {
        padding: 120px 0;
        overflow: hidden;
    }

    .prodt-floor4 .lt {
        width: 33.08824%;
        overflow: hidden;
    }

    .prodt-floor4 .lt
    h2 {
        font-weight: normal;
    }

    .prodt-floor4 .lt
    h2 strong {
        color: #2C85B8;
    }

    .prodt-floor4 .lt .swiper-product {
        margin-top: 68px;
    }

    .prodt-floor4 .lt .swiper-product .img
    img {
        width: 100%;
    }

    .prodt-floor4 .lt .swiper-product .swiper-pagination {
        position: relative;
        bottom: 0;
    }

    .prodt-floor4 .lt .swiper-product .swiper-pagination .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.2);
        opacity: 1;
    }

    .prodt-floor4 .lt .swiper-product .swiper-pagination .swiper-pagination-bullet-active {
        background: #2C85B8;
    }

    .prodt-floor4 .rt {
        width: 61.76471%;
    }

    .prodt-floor4 .rt
    table td {
        padding: 20px;
    }

    .prodt-floor4 .rt
    table td:first-child {
        font-weight: bold;
        white-space: nowrap;
    }

    .prodt-floor4 .rt
    table td:last-child {
        text-align: right;
    }

    .prodt-floor4 .rt
    table tr td {
        background: #F2F2F2;
    }

    .prodt-floor4 .rt
    table tr:nth-child(2n) td {
        background: #fff;
    }

    @media screen and (
        max-width: 1024px) {
        .prodt-floor1 {
            padding-top: 60px;
        }
        .prodt-floor2 {
            padding: 60px 0;
        }
        .prodt-floor2 .rt ul li .icon {
            width: 60px;
            height: 60px;
        }
        .prodt-floor2 .rt ul {
            gap: 25px;
        }
        .prodt-floor1 .lt .btn-more {
            margin-top: 50px;
        }
        .prodt-floor3 {
            padding: 60px 0;
        }
        .prodt-floor3 .rt h2 {
            margin-bottom: 30px;
        }
        .prodt-floor3 .rt .accordion .item {
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .prodt-floor4 {
            padding: 60px 0;
        }
        .prodt-floor4 .lt .swiper-product {
            margin-top: 30px;
        }
        .prodt-floor4 .rt table td {
            padding: 10px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .prodt-floor1 .lt {
            width: 100%;
            flex: auto;
            margin-bottom: 20px;
        }
        .prodt-floor1 .rt {
            width: 100%;
            text-align: center;
        }
        .prodt-floor1 .rt img {
            max-width: 100%;
            width: auto;
        }
        .prodt-floor2 .lt {
            width: 100%;
            margin-bottom: 20px;
        }
        .prodt-floor2 .rt {
            width: 100%;
        }
        .prodt-floor3 .lt {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }
        .prodt-floor3 .lt img {
            max-width: 100%;
            width: auto;
        }
        .prodt-floor3 .rt {
            width: 100%;
            padding-right: 0;
        }
        .prodt-floor4 .lt {
            width: 100%;
            margin-bottom: 20px;
        }
        .prodt-floor4 .rt {
            width: 100%;
        }
    }

    /* 公司简介 */
    .page-intro {
        background: #fff;
        padding: 100px 0;
        overflow: hidden;
        position: relative;
    }

    .page-intro .hd {
        position: relative;
        z-index: 2;
    }

    .page-intro .hd .lt {
        width: 51.47059%;
    }

    .page-intro .hd .title {
        margin-bottom: 20px;
    }

    .page-intro .hd .title
    h2 {
        text-align: left;
    }

    .page-intro .hd .txt
    p {
        line-height: 2;
        /* text-align: justify; */
        margin-bottom: 10px;
    }

    .page-intro .hd .rt {
        width: 42.94118%;
        margin-top: 70px;
    }

    .page-intro .hd .rt .img
    img {
        width: 100%;
    }

    .page-intro .hd .rt
    img {
        width: 100%;
    }

    .page-intro .hd .rt .video-box
    video {
        width: 100%;
    }

    .page-intro .bd {
        margin-top: 90px;
        position: relative;
        z-index: 2;
    }

    .page-intro .bd
    ul {
        justify-content: space-between;
    }

    .page-intro .bd
    ul li {
        opacity: 0.8;
        transition: all .5s;
    }

    .page-intro .bd
    ul li .in-box {
        display: flex;
    }

    .page-intro .bd
    ul li .counter {
        font-size: 70px;
        line-height: 1;
    }

    .page-intro .bd
    ul li .fnt34 {
        font-size: 34px;
        line-height: 1;
    }

    .page-intro .bd
    ul li p {
        text-align: center;
        margin-top: 10px;
    }

    .page-intro .bd
    ul li:hover {
        color: #2C85B8;
    }

    .page-intro .another-class {
        position: absolute;
        bottom: -15%;
        width: 100%;
        left: 0;
        z-index: 1;
        height: 70%;
    }

    .page-Founder {
        overflow: hidden;
        padding-top: 49px;
        position: relative;
    }

    .page-Founder::
    before {
        content: '';
        display: block;
        width: 36.45833%;
        height: 334px;
        background: #2C85B8;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .page-Founder .wrap {
        position: relative;
        z-index: 2;
    }

    .page-Founder .lt {
        width: 35%;
        display: flex;
        align-items: end;
    }

    .page-Founder .lt
    img {
        width: 100%;
        height: auto;
    }

    .page-Founder .rt {
        width: 51.47059%;
        margin-top: 90px;
        padding-bottom: 30px;
    }

    .page-Founder .rt .title {
        margin-bottom: 30px;
    }

    .page-Founder .rt .title
    h2 {
        text-align: left;
    }

    .page-Founder .rt .txt {
        line-height: 34px;
    }

    .page-Founder .rt .txt
    p {
        /* text-align: justify; */
        margin-bottom: 10px;
    }

    .page-Founder .rt .tt {
        margin-top: 60px;
    }

    .page-Founder .rt .tt
    p {
        color: #2C85B8;
        font-weight: bold;
        line-height: 34px;
    }

    .page-Founder .rt .yinhao {
        text-align: right;
        margin-top: 10px;
    }

    .page-Founder .rt .yinhao
    img {
        width: 69px;
    }

    .page-coreteam {
        background: #E6EDF5;
        padding: 100px 0;
    }

    .page-coreteam .hd {
        margin-bottom: 70px;
    }

    .page-coreteam .hd
    h2 {
        flex: 1;
        padding-right: 20px;
        color: #2C85B8;
    }

    .page-coreteam .hd .tt {
        width: 74.26471%;
    }

    .page-coreteam .hd .tt
    p {
        line-height: 34px;
        margin-bottom: 20px;
    }

    .page-coreteam .hd .tt
    p:last-child {
        margin-bottom: 0;
    }

    .page-coreteam .bd
    ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .page-coreteam .bd
    ul li {
        width: 25%;
        padding: 10px;
    }

    .page-coreteam .bd
    ul li .img {
        margin-bottom: 30px;
        height: 400px;
        overflow: hidden;
    }

    .page-coreteam .bd
    ul li .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .page-coreteam .bd
    ul li .info {
        padding: 0 23px 0 30px;
    }

    .page-coreteam .bd
    ul li .info h2 {
        line-height: 1;
        margin-bottom: 20px;
    }

    .page-coreteam .bd
    ul li .info p {
        line-height: 34px;
        opacity: 0.5;
        word-break:keep-all;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .page-coreteam .bd
    ul li .inbox:hover .img img {
        transform: scale(1.05);
    }

    .page-coreteam .bd
    ul li .inbox:hover .info h2 {
        color: #2C85B8;
    }

    .page-progress {
        padding: 100px 0;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .page-progress .title
    h2 {
        text-align: left;
    }

    .page-progress .line {
        margin-bottom: 60px;
        overflow: hidden;
    }

    .page-progress .line
    img {
        width: 100%;
    }

    .page-progress .swiper-progress {
        position: relative;
    }

    .page-progress .swiper-progress .swiper-slide {
        padding: 0 20px;
    }

    /* .page-progress .swiper-progress .swiper-slide:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

    .page-progress .swiper-progress .swiper-slide .years {
        color: #2C85B8;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .page-progress .swiper-progress .swiper-slide
    h2 {
        height: 56px;
        margin-bottom: 20px;
    }

    .page-progress .swiper-progress .swiper-slide
    p {
        color: rgba(0, 0, 0, 0.5);
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 90px;
        line-height: 30px;
    }

    .page-progress .swiper-progress .swiper-pagination {
        top: auto;
        bottom: 0;
        position: relative;
        margin-top: 50px;
    }

    .page-progress .swiper-progress .swiper-pagination-progressbar {
        background: #F2F2F2;
    }

    .page-progress .swiper-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #2C85B8;
    }

    .page-progress .hd {
        padding-bottom: 100px;
    }

    .page-progress .ft {
        position: relative;
    }

    .page-progress .ft .swiper-button-prev, .page-progress .ft .swiper-button-next {
        background: #E6EDF5;
    }

    .page-progress .ft .swiper-button-prev:
    hover, .page-progress .ft .swiper-button-next:hover {
        background: #2C85B8;
    }

    .page-progress .big-swiper {
        position: relative;
    }

    .page-progress .mySwiper2 {
        overflow: hidden;
        margin-bottom: 20px;
    }

    .page-progress .mySwiper2 .swiper-slide {
        position: relative;
    }

    .page-progress .mySwiper2 .swiper-slide .txt {
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
    }

    .page-progress .mySwiper2 .img {
        width: 100%;
        height: 680px;
        overflow: hidden;
    }

    .page-progress .mySwiper2 .img
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .page-progress .mySwiper {
        overflow: hidden;
    }

    .page-progress .mySwiper .swiper-slide {
        cursor: pointer;
        height: 128px;
        overflow: hidden;
    }

    .page-progress .mySwiper .swiper-slide
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .page-progress .mySwiper .swiper-slide:
    hover img {
        transform: scale(1.01);
    }

    @media screen and (
        max-width: 1440px) {
        .page-intro .bd ul li .counter {
            font-size: 60px;
        }
        .page-intro {
            padding: 80px 0;
        }
        .page-intro .bd {
            margin-top: 70px;
        }
        .page-Founder .lt {
            width: 40%;
        }
        .page-coreteam .bd ul li .img {
            height: 337px;
        }
        .page-coreteam {
            padding: 80px 0;
        }
        .page-progress {
            padding: 80px 0;
        }
        .page-progress .mySwiper2 .img {
            height: 578px;
        }
        .page-progress .mySwiper .swiper-slide {
            height: 105px;
        }
        .page-progress .hd {
            padding-bottom: 80px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .page-intro .bd ul li .counter {
            font-size: 40px;
        }
        .page-intro {
            padding: 50px 0;
        }
        .page-intro .bd {
            margin-top: 50px;
        }
        .page-Founder::
        before {
            height: 200px;
        }
        .page-coreteam .bd ul {
            margin-left: -5px;
            margin-right: -5px;
        }
        .page-coreteam .bd ul li {
            padding: 5px;
        }
        .page-coreteam .bd ul li .info h2 {
            margin-bottom: 10px;
        }
        .page-coreteam .bd ul li .img {
            margin-bottom: 15px;
        }
        .page-coreteam .bd ul li .info {
            padding: 0 10px;
        }
        .page-coreteam {
            padding: 50px 0;
        }
        .page-progress {
            padding: 80px 0;
        }
        .page-progress .line {
            margin-bottom: 30px;
        }
        .page-progress .swiper-progress .swiper-slide .years {
            margin-bottom: 10px;
        }
        .page-progress .swiper-progress .swiper-slide h2 {
            margin-bottom: 10px;
        }
        .page-progress .swiper-progress .swiper-slide p {
            line-height: 28px;
            height: 84px;
        }
        .page-progress .hd {
            padding-bottom: 50px;
        }
        .page-progress .mySwiper2 {
            margin-bottom: 10px;
        }
        .page-progress .mySwiper2 .img {
            height: 52vw;
        }
        .page-Founder .rt .tt {
            margin-top: 30px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .page-intro .bd ul li .counter {
            font-size: 30px;
        }
        .page-intro .bd {
            margin-top: 30px;
        }
        .page-intro .hd .lt {
            width: 100%;
        }
        .page-intro .hd .rt {
            width: 100%;
            margin-top: 20px;
            text-align: center;
        }
        .page-intro .hd .rt .img img {
            max-width: 100%;
            width: auto;
        }
        .page-intro .bd ul li {
            width: 50%;
            margin-bottom: 20px;
        }
        .page-intro .bd ul li .in-box {
            text-align: center;
            align-items: center;
            justify-content: center;
        }
        .page-Founder .wrap {
            flex-direction: column-reverse;
        }
        .page-Founder .rt {
            width: 100%;
        }
        .page-Founder .lt {
            width: 100%;
        }
        .page-Founder .lt .img {
            margin: 0 auto;
        }
        .page-Founder .rt {
            margin-top: 0;
        }
        .page-Founder .rt .tt {
            margin-top: 30px;
        }
        .page-Founder .rt .yinhao img {
            width: 39px;
        }
        .page-coreteam .bd ul li {
            width: 50%;
        }
        .page-coreteam .bd ul li .info p {
            line-height: 28px;
        }
        .page-coreteam .bd ul li .img {
            height: 60vw;
        }
        .page-coreteam .hd {
            margin-bottom: 35px;
        }
        .page-progress .title {
            margin-bottom: 20px;
        }
        .btnbar {
            display: none;
        }
        .page-progress .mySwiper2 .swiper-slide .txt {
            height: 60px;
        }
        .page-progress .mySwiper .swiper-slide {
            height: 100px;
        }
    }

    @media screen and (
        max-width: 520px) {
        .page-coreteam .hd {
            flex-wrap: wrap;
        }
        .page-coreteam .hd h2 {
            width: 100%;
            flex: auto;
            margin-bottom: 20px;
        }
        .page-coreteam .hd .tt {
            width: 100%;
        }
        .page-coreteam .hd .tt p {
            margin-bottom: 10px;
            line-height: 28px;
        }
        .page-progress .mySwiper .swiper-slide {
            height: 70px;
        }
    }

    /* 热招岗位 */
    .page-recruit {
        padding-bottom: 80px;
        overflow: hidden;
    }

    .page-recruit .choice-menu {
        width: 200px;
        margin-right: 30px;
    }

    .page-recruit .choice-menu .item {
        padding: 30px 0;
    }

    .page-recruit .choice-menu .item
    h2 {
        margin-bottom: 20px;
    }

    .page-recruit .choice-menu
    ul li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .page-recruit .choice-menu
    ul li:last-child {
        margin-bottom: 0;
    }

    .page-recruit .choice-menu
    ul li span {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 1px solid #CCCCCC;
        border-radius: 3px;
        margin-right: 10px;
        transition: all .5s;
        cursor: pointer;
        background: center center no-repeat;
    }

    .page-recruit .choice-menu
    ul li.active span {
        border-color: #2C85B8;
        background: #2C85B8 url(../img/icon_checked.svg) center center no-repeat;
    }

    .page-recruit .recruit-result {
        flex: 1;
        position: relative;
        padding-left: 30px;
    }

    .page-recruit .recruit-result::
    before {
        content: '';
        display: block;
        width: 1px;
        height: 50%;
        background: rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 0;
        top: 0;
    }

    .page-recruit .result-list .item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .page-recruit .result-list .item .hd {
        padding: 20px 0;
    }

    .page-recruit .result-list .item .hd
    h2 {
        margin-bottom: 20px;
        cursor: pointer;
    }

    .page-recruit .result-list .item .other {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .page-recruit .result-list .item .other .time {
        color: rgba(0, 0, 0, 0.4);
    }

    .page-recruit .result-list .item .other .labels {
        color: rgba(0, 0, 0, 0.2) span;
        color-color: #000;
    }

    .page-recruit .result-list .item .bd {
        background: #E6EDF5;
        padding: 20px;
        border-radius: 10px;
        gap: 40px;
        flex-direction: column;
        display: none;
        line-height: 2;
    }

    .page-recruit .result-list .item .bd .txt {
        line-height: 30px;
        margin-bottom: 30px;
    }

    .page-recruit .result-list .item .bd .txt
    ul {
        counter-reset: item-counter;
    }

    .page-recruit .result-list .item .bd .txt
    ul li {
        padding-left: 30px;
        position: relative;
    }

    .page-recruit .result-list .item .bd .txt
    ul li::before {
        counter-increment: item-counter;
        content: counter(item-counter) ". ";
        position: absolute;
        left: 5px;
    }

    .page-recruit .result-list .item .bd .toudi
    a {
        color: #355387;
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: bold;
    }

    .page-recruit .result-list .item .bd .toudi
    a:hover {
        text-decoration: none;
    }

    .page-recruit .pages {
        padding-top: 50px;
    }

    @media screen and (
        max-width: 1024px) {
        .page-recruit .choice-menu {
            width: 150px;
            margin-right: 20px;
        }
        .page-recruit .recruit-result {
            padding-left: 20px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .page-recruit .choice-menu {
            width: 90px;
            margin-right: 20px;
        }
        .page-recruit .recruit-result {
            padding-left: 20px;
        }
        .page-recruit .choice-menu .item {
            padding: 20px 0;
        }
    }

    @media screen and (
        max-width: 520px) {
        .page-recruit .choice-menu {
            width: 100%;
            margin-right: 0;
        }
        .page-recruit .choice-menu ul {
            display: flex;
        }
        .page-recruit .choice-menu ul li {
            margin-bottom: 0;
            margin-right: 20px;
        }
        .page-recruit .choice-menu ul li:
        last-child {
            margin-right: 0;
        }
        .page-recruit .choice-menu .item {
            padding: 10px 0 20px;
        }
        .page-recruit .choice-menu .item h2 {
            margin-bottom: 10px;
        }
        .page-recruit .choice-menu ul li span {
            margin-right: 5px;
        }
        .page-recruit .result-list .item .hd {
            padding: 20px 0;
        }
        .page-recruit .recruit-result {
            padding-left: 0;
            width: 100%;
        }
        .page-recruit .recruit-result::
        before {
            display: none;
        }
        .page-recruit .result-list .item .bd {
            padding: 10px;
            border-radius: 5px;
        }
        .page-recruit .result-list .item .hd h2 {
            margin-bottom: 10px;
        }
        .page-recruit > div {
            flex-wrap: wrap;
        }
    }

    .page-contact {
        overflow: hidden;
        padding: 100px 0;
    }

    .page-contact .inner {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .page-contact .text {
        position: relative;
        z-index: 3;
        flex: 1;
    }

    .page-contact .text .didian {
        width: 40.88586%;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .page-contact .text .didian
    img {
        width: 100%;
    }

    .page-contact .text .hd {
        margin-bottom: 20px;
        padding-top: 26px;
    }

    .page-contact .text .hd
    h2 {
        font-weight: 600;
        color: #2C85B8;
        line-height: 1;
    }

    .page-contact .text .hd
    p {
        margin-top: 20px;
        color: #666666;
        font-size: 12px;
        border-bottom: 1px solid #EBEBEB;
        padding-bottom: 20px;
        display: inline-block;
        letter-spacing: 0.2em;
    }

    .page-contact .text .bd {
        margin-bottom: 27px;
    }

    .page-contact .text .bd
    p {
        font-size: 15px;
        line-height: 34px;
    }

    .page-contact .text .ft {
        display: flex;
        position: relative;
        z-index: 3;
    }

    .page-contact .text .ft
    a {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 120px; */
        padding: 0 10px;
        height: 40px;
        font-size: 15px;
        text-align: center;
        margin-right: 20px;
        box-sizing: border-box;
    }

    .page-contact .text .ft
    a:first-child {
        background-color: #2C85B8;
        color: #fff;
    }

    .page-contact .text .ft
    a:first-child:hover {
        opacity: .8;
    }

    .page-contact .text .ft
    a:last-child {
        background: #E6EDF5;
        color: #2C85B8;
    }

    .page-contact .text .ft
    a:last-child:hover {
        background-color: #2C85B8;
        color: #fff;
    }

    .page-contact .didian {
        width: 17.64706%;
    }

    .page-contact .didian
    img {
        width: 100%;
    }

    .page-contact .mapbox {
        width: 44.11765%;
        height: 320px;
        margin-top: 30px;
    }

    .page-contact #map {
        width: 100%;
        height: 100%;
    }

    @media screen and (
        max-width: 1440px) {
        .page-contact {
            padding: 80px 0;
        }
        .page-contact .mapbox {
            height: 292px;
        }
        .page-contact .text .hd p {
            letter-spacing: 0.05em;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .page-contact {
            padding: 50px 0;
        }
    }

    @media screen and (
        max-width: 768px) {
        .page-contact .mapbox {
            width: 100%;
        }
        .page-contact .didian {
            width: 30%;
        }
        .page-contact .text .hd p {
            letter-spacing: 0.2px;
        }
        .page-contact .text .ft  {
            flex-wrap:wrap;
        }
        .page-contact .text .ft a {
            width:200px;
            margin-bottom:20px;
            margin-left:auto;
            margin-right: auto;
        }
    }

    @media screen and (
        max-width: 520px) {
        .page-contact .didian {
            display: none;
        }
    }

    /* 案例中心 */
    .page-cases {
        padding-bottom: 80px;
        overflow: hidden;
    }

    .cases-lists {
        margin-left: -10px;
        margin-right: -10px;
    }

    .cases-lists
    li {
        width: 25%;
        padding: 10px;
    }

    .cases-lists
    li .img {
        height: 220px;
        position: relative;
        overflow: hidden;
    }

    .cases-lists
    li .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

    .cases-lists
    li .img .showbox {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 133, 184, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
    }

    .cases-lists
    li .img .showbox .icon-view {
        display: block;
        width: 36px;
        height: 36px;
        background: url(../img/icon_view.svg) 0 0/cover no-repeat;
        margin-bottom: 20px;
    }

    .cases-lists
    li .txt {
        padding-top: 20px;
    }

    .cases-lists
    li .txt h2 {
        font-weight: normal;
        line-height: 24px;
        height: 48px;
        word-break: break-all;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

    .cases-lists
    li a:hover .img img {
        transform: scale(1.05);
    }

    .cases-lists
    li a:hover .img .showbox {
        opacity: 1;
        visibility: visible;
    }

    @media screen and (
        max-width: 1440px) {
        .cases-lists li .img {
            height: 185px;
        }
    }

    @media screen and (
        max-width: 1024px) {
        .page-cases {
            padding-bottom: 50px;
        }
        .cases-lists {
            margin-left: -5px;
            margin-right: -5px;
        }
        .cases-lists li {
            padding: 5px;
        }
        .cases-lists li .img {
            height: 160px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .cases-lists li {
            width: 50%;
        }
        .cases-lists li .img {
            height: 33vw;
        }
        .cases-lists li .txt {
            padding-top: 10px;
        }
    }

    /* 详情 */
    .detail-main {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .detail-main .hd {
        padding: 80px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .detail-main .hd
    h2 {
        width: 71.69118%;
        padding-right: 10%;
    }

    .detail-main .hd .datetime {
        line-height: 70px;
        color: #B2B2B2;
    }

    .detail-main .detail-content {
        width: 73.82353%;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 30px;
        padding-top: 60px;
    }

    .detail-main .detail-content
    h2 {
        margin-bottom: 10px;
    }

    .detail-main .detail-content
    p {
        line-height: 2.14286;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: calc(100% - 80px);
    }

    .detail-main .detail-content
    img {
        max-width: 100%;
    }

    .detail-main .img-txt {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 50px 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        margin: 50px 0;
    }

    .detail-main .img-txt
    p {
        font-weight: bold;
        text-align: center;
    }

    .detail-main .img-txt
    img {
        max-width: 100%;
    }

    .detail-main .prevnext {
        margin-top: 50px;
    }

    .detail-main .prevnext
    ul {
        margin-left: -10px;
        margin-right: -10px;
        display: flex;
    }

    .detail-main .prevnext
    ul li {
        width: 50%;
        padding: 0 10px;
    }

    .detail-main .prevnext
    ul li a {
        display: block;
        background: #F2F2F2;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .detail-main .prevnext
    ul li .icon {
        display: inline-block;
        width: 18px;
        height: 12px;
        background: center center /cover no-repeat;
        margin: 0 10px;
    }

    .detail-main .prevnext
    ul li .icon-prev {
        background-image: url(../img/icon_swiper_prev_black.svg);
    }

    .detail-main .prevnext
    ul li .icon-next {
        background-image: url(../img/icon_swiper_next_black.svg);
    }

    .detail-main .prevnext
    ul li a:hover .icon-prev {
        background-image: url(../img/icon_swiper_prev_blue.svg);
    }

    .detail-main .prevnext
    ul li a:hover .icon-next {
        background-image: url(../img/icon_swiper_next_blue.svg);
    }

    .detail-main .cases-lists {
        width: 100%;
    }

    .detail-main .cases-lists
    li {
        width: 100%;
        padding-bottom: 0;
        padding-top: 0;
    }

    .detail-main .right-relative {
        width: 23.89706%;
        padding-top: 60px;
    }

    .detail-main .right-relative .tt {
        margin-bottom: 20px;
    }

    @media screen and (
        max-width: 1024px) {
        .detail-main {
            padding-top: 60px;
        }
        .detail-main .hd {
            padding: 60px 0;
        }
        .detail-main .detail-content {
            padding-top: 30px;
        }
        .detail-main .right-relative {
            padding-top: 30px;
        }
    }

    @media screen and (
        max-width: 768px) {
        .detail-main .hd {
            padding: 30px 0;
        }
        .detail-main .hd > div {
            flex-wrap: wrap;
        }
        .detail-main .hd h2 {
            width: 100%;
            padding-top: 0;
        }
        .detail-main .hd .datetime {
            line-height: 35px;
        }
        .detail-main .detail-content {
            width: 100%;
        }
        .detail-main .bd > div {
            flex-wrap: wrap;
        }
        .detail-main .detail-content {
            padding-right: 0;
            border-right: none;
        }
        .detail-main .img-txt {
            padding: 25px  10px;
        }
        .detail-main .prevnext ul li p {
            display: none;
        }
        .detail-main .right-relative {
            width: 100%;
        }
        .detail-main .cases-lists {
            display: flex;
            flex-wrap: wrap;
        }
        .detail-main .cases-lists li {
            width: 50%;
            padding: 10px 5px;
        }
        .detail-main .img-txt {
            border-radius: 10px;
            margin: 25px 0;
        }
        .detail-main .hd h2 {
            font-size: 20px;
            padding-right: 0;
        }
    }

    /* 表单 */
    .main-form {
        background: #E6EDF5;
        padding: 200px 0 144px;
    }

    .main-form-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .main-form-box .form-zixun {
        height: auto;
    }

    @media screen and (
        max-width: 520px) {
        .main-form {
            padding: 160px 0 80px;
        }
    }
    .form-zixun .bd .ipt
    textarea {
        padding:14px 20px;
    }
    .highlight {
        background: #f2f2f2;
    }
    .swiper-progress .swiper-wrapper {
        transition-timing-function:linear !important;
        -webkit-transition-timing-function: linear !important;
        -moz-transition-timing-function: linear !important;
        -ms-transition-timing-function: linear !important;
        -o-transition-timing-function: linear !important;
        transition-timing-function: linear !important;
    }
    .popup-main .img {
        /* height: 623px; */
        /* background: #fff; */}

    .swiper-slide .form-zixun .btn {
        margin-top: 0;
    }
    @media screen and (
        max-width:1440px) {
        .popup-main .img {height: 560px;
            /* background: #fff; */}
    }
    @media screen and (
        max-width: 1024px){
        .popup-main .inbox, .form-zixun {
            height: 75vh;
        }
    }
    @media screen and (
        max-width: 425px) {
        .popup-main .inbox ,.popup-main .inbox, .form-zixun {
            height: 70vh;
        }
    };
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.appLy-lists a:hover {
    background: #2C85B8;
}
.appLy-lists a:hover .img img {
    transform: scale(1.01);
}

.appLy-lists a:hover .info {
    /* background: #2C85B8; */
    color: #fff;
}

@media screen and (max-width: 1440px) {
    .appLy-lists a .img {
        height: 370px;
    }
}

@media screen and (max-width: 1280px) {
    .appLy-lists a .img {
        height: 356px;
    }
}

@media screen and (max-width: 1024px) {
    .appLy-lists a .img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .appLy-lists {
        margin-left: -5px;
        margin-right: -5px;
    }
    .appLy-lists li {
        width: 50%;
        padding: 0 5px 10px;
    }
    .appLy-lists a .img {
        height: 35vw;
    }
    .appLy-lists a .info p {
        margin-top: 10px;
        line-height: 1.5;
    }
    .appLy-lists a .info {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 520px) {
    .appLy-lists li {
        width: 100%;
    }
    .appLy-lists a .img {
        height: 90vw;
    }
}

/* 弹窗 */
.mask-bg {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 20;
    display: none;
}

.mask-bg .popup-ziyuan {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mask-bg .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 66px;
    background: url(../img/icon_close.svg) 0 0/cover no-repeat;
    cursor: pointer;
    transition: all .5s;
    z-index: 3;
}

.mask-bg .close:hover {
    transform: rotate(180deg);
}

.mask-bg .swiper-pagination {
    bottom: 5%;
}

.mask-bg .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
}

.popup-main {
    width: 400px;
    position: relative;
}

.popup-main .button-bar {
    width: 120%;
    top: 50%;
}

.popup-main .swiper-ziyuan {
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-main .inbox {
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-main .img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-main .img img {
    max-width: 100%;
    max-height: 100%;
}

.popup-main .txt {
    text-align: center;
    margin-top: 25px;
    color: #fff;
}

.form-zixun {
    background: #fff;
}

.form-zixun .hd {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.form-zixun .hd h2 {
    color: #2C85B8;
}

.form-zixun .hd p {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.form-zixun .bd {
    padding: 30px;
}

.form-zixun .bd li {
    width: 100%;
    margin-bottom: 30px;
}

.form-zixun .bd .name {
    width: 110px;
    margin-right: 20px;
}

.form-zixun .bd .email {
    flex: 1;
}

.form-zixun .bd .tit {
    margin-bottom: 10px;
}

.form-zixun .bd .tit b {
    color: #B81F6A;
    margin-right: 5px;
}

.form-zixun .bd .ipt {
    height: 50px;
    background: #F5F5F5;
}

.form-zixun .bd .ipt input[type="text"] {
    height: 100%;
    padding: 14px 20px;
    width: 100%;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.form-zixun .btn {
    padding-top: 10px;
}

.form-zixun .btn .btn-submit {
    background: #2C85B8;
    height: 50px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all .5s;
}

.form-zixun .btn .btn-submit:hover {
    background: #0f2e63;
}

@media screen and (min-height: 1060px) {
    .popup-main {
        width: 500px;
    }
    .form-zixun .btn {
        padding-top: 50px;
    }
}

@media screen and (max-width: 1440px) {
    .mask-bg .close {
        width: 50px;
        height: 50px;
    }
    .popup-main {
        width: 400px;
    }
    .form-zixun .hd {
        padding: 20px;
    }
    .form-zixun .bd {
        padding: 20px;
    }
    .form-zixun .btn {
        padding-top: 20px;
    }
    .form-zixun .bd li {
        margin-bottom: 20px;
    }
    .popup-main .txt {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1280px) {
    .popup-main {
        width: 300px;
    }
    .form-zixun .btn {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .mask-bg .close {
        width: 30px;
        height: 30px;
    }
    .popup-main {
        width: 53vh;
    }
    .popup-main .inbox, .form-zixun {
        height: 75vh;
    }
    .popup-main .txt {
        margin-top: 10px;
    }
    .form-zixun .bd .ipt {
        height: 40px;
    }
    .form-zixun .bd .ipt input[type="text"] {
        padding: 10px;
    }
    .form-zixun .btn .btn-submit {
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .popup-main .button-bar {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    .popup-main {
        width: 100vw;
    }
    .popup-main .inbox {
        height: 70vh;
    }
}

/* 新闻中心 */
.news-lists {
    margin-left: -10px;
    margin-right: -10px;
}

.news-lists li {
    padding: 0 10px 20px;
    width: 33.33%;
}
.news-lists li .inbox  {
    height: 100%;
}
.news-lists li .inbox a {
    display: block;
    height: 100%;
}

.news-lists li .inbox .img {
    height: 264px;
    overflow: hidden;
}

.news-lists li .inbox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.news-lists li .inbox .info {
    padding: 25px 25px 30px;
}

.news-lists li .inbox .txt h2 {
    font-weight: normal;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height: 1;
    margin-bottom: 20px;
}

.news-lists li .inbox .txt p {
    color: rgba(0, 0, 0, 0.6);
    /* height: 60px; */
    line-height: 30px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-lists li .inbox .other {
    margin-top: 30px;
}

.news-lists li .inbox .other .ly {
    color: #000;
}

.news-lists li .inbox .other .dt {
    color: #000;
    display: flex;
    align-items: center;
}

.news-lists li .inbox .other .dt::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/icon_datetime.svg) center center/cover no-repeat;
    margin-right: 6px;
    flex-shrink: 0;
}

/* .news-lists li .inbox a:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
} */

.news-lists li .inbox a:hover .img img {
    transform: scale(1.05);
}

@media screen and (max-width: 1440px) {
    .news-lists li .inbox .img {
        height: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .news-lists li .inbox .img {
        height: 190px;
    }
    .news-lists li .inbox .info {
        padding: 15px 10px 15px;
    }
    .news-lists li .inbox .txt h2 {
        margin-bottom: 10px;
    }
    .news-lists li .inbox .other {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .news-lists {
        margin-left: -5px;
        margin-right: -5px;
    }
    .news-lists li {
        width: 50%;
        padding: 0 5px 10px;
    }
    .news-lists li .inbox .img {
        height: 27vw;
    }
}

@media screen and (max-width: 520px) {
    .news-lists li {
        width: 100%;
    }
    .news-lists li .inbox .img {
        height: 53vw;
    }
}

/* 产品详情 */
.prodt-floor1 {
    overflow: hidden;
    padding-top: 80px;
    background: #fff;
}

.prodt-floor1 .wrap {
    padding: 25px 0;
}

.prodt-floor1 .lt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-right: 5%;
}

.prodt-floor1 .lt h2 {
    color: #2C85B8;
    margin-bottom: 20px;
}

.prodt-floor1 .lt .btn-more {
    margin-top: 100px;
}

.prodt-floor1 .lt .btn-more a {
    border-color: #2C85B8;
    color: #2C85B8;
}

.prodt-floor1 .lt .btn-more a::after {
    background-image: url(../img/icon_zx_go_blue.svg);
}

.prodt-floor1 .lt .btn-more a:hover {
    color: #fff;
}

.prodt-floor1 .lt .btn-more a:hover::after {
    background-image: url(../img/icon_zx_go.svg);
    background-size: contain;
}

.prodt-floor1 .rt {
    width: 33.08824%;
}

.prodt-floor1 .rt img {
    width: 100%;
}

.prodt-floor2 {
    overflow: hidden;
    padding: 120px 0;
    background: #E6EDF5;
}

.prodt-floor2 .lt {
    width: 38.23529%;
}

.prodt-floor2 .lt h2 {
    margin-bottom: 20px;
}

.prodt-floor2 .lt h2 strong {
    color: #2C85B8;
}

.prodt-floor2 .lt p {
    /* text-align: justify; */
    line-height: 34px;
    margin-bottom: 10px;
}

.prodt-floor2 .rt {
    width: 50%;
}

.prodt-floor2 .rt ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.prodt-floor2 .rt ul li .inbox {
    align-items: center;
}
.prodt-floor2 .rt ul li img {
    border-radius: 10px;
}
.prodt-floor2 .rt ul li .icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prodt-floor2 .rt ul li .icon img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 0;
}

.prodt-floor2 .rt ul li .tt h2 {
    color: #2C85B8;
}

.prodt-floor2 .rt ul li .tt p {
    margin-top: 5px;
}

.prodt-floor3 {
    overflow: hidden;
    padding: 120px 0;
    background: #E6EDF5;
}

.prodt-floor3 .lt {
    width: 44.11765%;
}

.prodt-floor3 .lt img {
    width: 100%;
}

.prodt-floor3 .rt {
    width: 50%;
    padding-top: 20px;
    padding-right: 74px;
}

.prodt-floor3 .rt h2 {
    margin-bottom: 60px;
    font-weight: normal;
}

.prodt-floor3 .rt h2 strong {
    color: #2C85B8;
}

.prodt-floor3 .rt .accordion .item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.prodt-floor3 .rt .accordion .item .hd {
    position: relative;
    line-height: 28px;
    cursor: pointer;
}

.prodt-floor3 .rt .accordion .item .hd::after {
    content: '';
    display: block;
    border: 2px solid #000000;
    transform: translate(-2px, -50%) rotate(-135deg);
    width: 9px;
    height: 9px;
    position: absolute;
    right: 0;
    top: 50%;
    border-top: none;
    border-right: none;
    transition: all .5s;
}

.prodt-floor3 .rt .accordion .item .bd {
    display: none;
}

.prodt-floor3 .rt .accordion .item .bd ul {
    padding-top: 10px;
    line-height: 1.8;
}

.prodt-floor3 .rt .accordion .item .bd ul li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    line-height: 28px;
}

.prodt-floor3 .rt .accordion .item .bd ul li::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    position: absolute;
    left: 7px;
    top: 12px;
    background: #000;
}

.prodt-floor3 .rt .accordion .item.active .hd {
    color: #2C85B8;
    font-weight: bold;
}

.prodt-floor3 .rt .accordion .item.active .hd::after {
    border-color: #2C85B8;
    transform: translate(-2px, -50%) rotate(-45deg);
}

.prodt-floor4 {
    padding: 120px 0;
    overflow: hidden;
}

.prodt-floor4 .lt {
    width: 33.08824%;
    overflow: hidden;
}

.prodt-floor4 .lt h2 {
    font-weight: normal;
}

.prodt-floor4 .lt h2 strong {
    color: #2C85B8;
}

.prodt-floor4 .lt .swiper-product {
    margin-top: 68px;
}

.prodt-floor4 .lt .swiper-product .img img {
    width: 100%;
}

.prodt-floor4 .lt .swiper-product .swiper-pagination {
    position: relative;
    bottom: 0;
}

.prodt-floor4 .lt .swiper-product .swiper-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.prodt-floor4 .lt .swiper-product .swiper-pagination .swiper-pagination-bullet-active {
    background: #2C85B8;
}

.prodt-floor4 .rt {
    width: 61.76471%;
}

.prodt-floor4 .rt table td {
    padding: 20px;
}

.prodt-floor4 .rt table td:first-child {
    font-weight: bold;
    white-space: nowrap;
}

.prodt-floor4 .rt table td:last-child {
    text-align: right;
}

.prodt-floor4 .rt table tr td {
    background: #F2F2F2;
}

.prodt-floor4 .rt table tr:nth-child(2n) td {
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .prodt-floor1 {
        padding-top: 60px;
    }
    .prodt-floor2 {
        padding: 60px 0;
    }
    .prodt-floor2 .rt ul li .icon {
        width: 60px;
        height: 60px;
    }
    .prodt-floor2 .rt ul {
        gap: 25px;
    }
    .prodt-floor1 .lt .btn-more {
        margin-top: 50px;
    }
    .prodt-floor3 {
        padding: 60px 0;
    }
    .prodt-floor3 .rt h2 {
        margin-bottom: 30px;
    }
    .prodt-floor3 .rt .accordion .item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .prodt-floor4 {
        padding: 60px 0;
    }
    .prodt-floor4 .lt .swiper-product {
        margin-top: 30px;
    }
    .prodt-floor4 .rt table td {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .prodt-floor1 .lt {
        width: 100%;
        flex: auto;
        margin-bottom: 20px;
    }
    .prodt-floor1 .rt {
        width: 100%;
        text-align: center;
    }
    .prodt-floor1 .rt img {
        max-width: 100%;
        width: auto;
    }
    .prodt-floor2 .lt {
        width: 100%;
        margin-bottom: 20px;
    }
    .prodt-floor2 .rt {
        width: 100%;
    }
    .prodt-floor3 .lt {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .prodt-floor3 .lt img {
        max-width: 100%;
        width: auto;
    }
    .prodt-floor3 .rt {
        width: 100%;
        padding-right: 0;
    }
    .prodt-floor4 .lt {
        width: 100%;
        margin-bottom: 20px;
    }
    .prodt-floor4 .rt {
        width: 100%;
    }
}

/* 公司简介 */
.page-intro {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.page-intro .hd {
    position: relative;
    z-index: 2;
}

.page-intro .hd .lt {
    width: 51.47059%;
}

.page-intro .hd .title {
    margin-bottom: 20px;
}

.page-intro .hd .title h2 {
    text-align: left;
}

.page-intro .hd .txt p {
    line-height: 2;
    /* text-align: justify; */
    margin-bottom: 10px;
}

.page-intro .hd .rt {
    width: 42.94118%;
    margin-top: 70px;
}

.page-intro .hd .rt .img img {
    width: 100%;
}

.page-intro .hd .rt img {
    width: 100%;
}

.page-intro .hd .rt .video-box video {
    width: 100%;
}

.page-intro .bd {
    margin-top: 90px;
    position: relative;
    z-index: 2;
}

.page-intro .bd ul {
    justify-content: space-between;
}

.page-intro .bd ul li {
    opacity: 0.8;
    transition: all .5s;
}

.page-intro .bd ul li .in-box {
    display: flex;
}

.page-intro .bd ul li .counter {
    font-size: 70px;
    line-height: 1;
}

.page-intro .bd ul li .fnt34 {
    font-size: 34px;
    line-height: 1;
}

.page-intro .bd ul li p {
    text-align: center;
    margin-top: 10px;
}

.page-intro .bd ul li:hover {
    color: #2C85B8;
}

.page-intro .another-class {
    position: absolute;
    bottom: -15%;
    width: 100%;
    left: 0;
    z-index: 1;
    height: 70%;
}

.page-Founder {
    overflow: hidden;
    padding-top: 49px;
    position: relative;
}

.page-Founder::before {
    content: '';
    display: block;
    width: 36.45833%;
    height: 334px;
    background: #2C85B8;
    position: absolute;
    left: 0;
    bottom: 0;
}

.page-Founder .wrap {
    position: relative;
    z-index: 2;
}

.page-Founder .lt {
    width: 35%;
    display: flex;
    align-items: end;
}

.page-Founder .lt img {
    width: 100%;
    height: auto;
}

.page-Founder .rt {
    width: 51.47059%;
    margin-top: 90px;
    padding-bottom: 30px;
}

.page-Founder .rt .title {
    margin-bottom: 30px;
}

.page-Founder .rt .title h2 {
    text-align: left;
}

.page-Founder .rt .txt {
    line-height: 34px;
}

.page-Founder .rt .txt p {
    /* text-align: justify; */
    margin-bottom: 10px;
}

.page-Founder .rt .tt {
    margin-top: 60px;
}

.page-Founder .rt .tt p {
    color: #2C85B8;
    font-weight: bold;
    line-height: 34px;
}

.page-Founder .rt .yinhao {
    text-align: right;
    margin-top: 10px;
}

.page-Founder .rt .yinhao img {
    width: 69px;
}

.page-coreteam {
    background: #E6EDF5;
    padding: 100px 0;
}

.page-coreteam .hd {
    margin-bottom: 70px;
}

.page-coreteam .hd h2 {
    flex: 1;
    padding-right: 20px;
    color: #2C85B8;
}

.page-coreteam .hd .tt {
    width: 74.26471%;
}

.page-coreteam .hd .tt p {
    line-height: 34px;
    margin-bottom: 20px;
}

.page-coreteam .hd .tt p:last-child {
    margin-bottom: 0;
}

.page-coreteam .bd ul {
    margin-left: -10px;
    margin-right: -10px;
}

.page-coreteam .bd ul li {
    width: 25%;
    padding: 10px;
}

.page-coreteam .bd ul li .img {
    margin-bottom: 30px;
    height: 400px;
    overflow: hidden;
}

.page-coreteam .bd ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.page-coreteam .bd ul li .info {
    padding: 0 23px 0 30px;
}

.page-coreteam .bd ul li .info h2 {
    line-height: 1;
    margin-bottom: 20px;
}

.page-coreteam .bd ul li .info p {
    line-height: 34px;
    opacity: 0.5;
    word-break:keep-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.page-coreteam .bd ul li .inbox:hover .img img {
    transform: scale(1.05);
}

.page-coreteam .bd ul li .inbox:hover .info h2 {
    color: #2C85B8;
}

.page-progress {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.page-progress .title h2 {
    text-align: left;
}

.page-progress .line {
    margin-bottom: 60px;
    overflow: hidden;
}

.page-progress .line img {
    width: 100%;
}

.page-progress .swiper-progress {
    position: relative;
}

.page-progress .swiper-progress .swiper-slide {
    padding: 0 20px;
}

/* .page-progress .swiper-progress .swiper-slide:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

.page-progress .swiper-progress .swiper-slide .years {
    color: #2C85B8;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-progress .swiper-progress .swiper-slide h2 {
    height: 56px;
    margin-bottom: 20px;
}

.page-progress .swiper-progress .swiper-slide p {
    color: rgba(0, 0, 0, 0.5);
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 90px;
    line-height: 30px;
}

.page-progress .swiper-progress .swiper-pagination {
    top: auto;
    bottom: 0;
    position: relative;
    margin-top: 50px;
}

.page-progress .swiper-progress .swiper-pagination-progressbar {
    background: #F2F2F2;
}

.page-progress .swiper-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #2C85B8;
}

.page-progress .hd {
    padding-bottom: 100px;
}

.page-progress .ft {
    position: relative;
}

.page-progress .ft .swiper-button-prev, .page-progress .ft .swiper-button-next {
    background: #E6EDF5;
}

.page-progress .ft .swiper-button-prev:hover, .page-progress .ft .swiper-button-next:hover {
    background: #2C85B8;
}

.page-progress .big-swiper {
    position: relative;
}

.page-progress .mySwiper2 {
    overflow: hidden;
    margin-bottom: 20px;
}

.page-progress .mySwiper2 .swiper-slide {
    position: relative;
}

.page-progress .mySwiper2 .swiper-slide .txt {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-progress .mySwiper2 .img {
    width: 100%;
    height: 680px;
    overflow: hidden;
}

.page-progress .mySwiper2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.page-progress .mySwiper {
    overflow: hidden;
}

.page-progress .mySwiper .swiper-slide {
    cursor: pointer;
    height: 128px;
    overflow: hidden;
}

.page-progress .mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.page-progress .mySwiper .swiper-slide:hover img {
    transform: scale(1.01);
}

@media screen and (max-width: 1440px) {
    .page-intro .bd ul li .counter {
        font-size: 60px;
    }
    .page-intro {
        padding: 80px 0;
    }
    .page-intro .bd {
        margin-top: 70px;
    }
    .page-Founder .lt {
        width: 40%;
    }
    .page-coreteam .bd ul li .img {
        height: 337px;
    }
    .page-coreteam {
        padding: 80px 0;
    }
    .page-progress {
        padding: 80px 0;
    }
    .page-progress .mySwiper2 .img {
        height: 578px;
    }
    .page-progress .mySwiper .swiper-slide {
        height: 105px;
    }
    .page-progress .hd {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .page-intro .bd ul li .counter {
        font-size: 40px;
    }
    .page-intro {
        padding: 50px 0;
    }
    .page-intro .bd {
        margin-top: 50px;
    }
    .page-Founder::before {
        height: 200px;
    }
    .page-coreteam .bd ul {
        margin-left: -5px;
        margin-right: -5px;
    }
    .page-coreteam .bd ul li {
        padding: 5px;
    }
    .page-coreteam .bd ul li .info h2 {
        margin-bottom: 10px;
    }
    .page-coreteam .bd ul li .img {
        margin-bottom: 15px;
    }
    .page-coreteam .bd ul li .info {
        padding: 0 10px;
    }
    .page-coreteam {
        padding: 50px 0;
    }
    .page-progress {
        padding: 80px 0;
    }
    .page-progress .line {
        margin-bottom: 30px;
    }
    .page-progress .swiper-progress .swiper-slide .years {
        margin-bottom: 10px;
    }
    .page-progress .swiper-progress .swiper-slide h2 {
        margin-bottom: 10px;
    }
    .page-progress .swiper-progress .swiper-slide p {
        line-height: 28px;
        height: 84px;
    }
    .page-progress .hd {
        padding-bottom: 50px;
    }
    .page-progress .mySwiper2 {
        margin-bottom: 10px;
    }
    .page-progress .mySwiper2 .img {
        height: 52vw;
    }
    .page-Founder .rt .tt {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .page-intro .bd ul li .counter {
        font-size: 30px;
    }
    .page-intro .bd {
        margin-top: 30px;
    }
    .page-intro .hd .lt {
        width: 100%;
    }
    .page-intro .hd .rt {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .page-intro .hd .rt .img img {
        max-width: 100%;
        width: auto;
    }
    .page-intro .bd ul li {
        width: 50%;
        margin-bottom: 20px;
    }
    .page-intro .bd ul li .in-box {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .page-Founder .wrap {
        flex-direction: column-reverse;
    }
    .page-Founder .rt {
        width: 100%;
    }
    .page-Founder .lt {
        width: 100%;
    }
    .page-Founder .lt .img {
        margin: 0 auto;
    }
    .page-Founder .rt {
        margin-top: 0;
    }
    .page-Founder .rt .tt {
        margin-top: 30px;
    }
    .page-Founder .rt .yinhao img {
        width: 39px;
    }
    .page-coreteam .bd ul li {
        width: 50%;
    }
    .page-coreteam .bd ul li .info p {
        line-height: 28px;
    }
    .page-coreteam .bd ul li .img {
        height: 60vw;
    }
    .page-coreteam .hd {
        margin-bottom: 35px;
    }
    .page-progress .title {
        margin-bottom: 20px;
    }
    .btnbar {
        display: none;
    }
    .page-progress .mySwiper2 .swiper-slide .txt {
        height: 60px;
    }
    .page-progress .mySwiper .swiper-slide {
        height: 100px;
    }
}

@media screen and (max-width: 520px) {
    .page-coreteam .hd {
        flex-wrap: wrap;
    }
    .page-coreteam .hd h2 {
        width: 100%;
        flex: auto;
        margin-bottom: 20px;
    }
    .page-coreteam .hd .tt {
        width: 100%;
    }
    .page-coreteam .hd .tt p {
        margin-bottom: 10px;
        line-height: 28px;
    }
    .page-progress .mySwiper .swiper-slide {
        height: 70px;
    }
}

/* 热招岗位 */
.page-recruit {
    padding-bottom: 80px;
    overflow: hidden;
}

.page-recruit .choice-menu {
    width: 200px;
    margin-right: 30px;
}

.page-recruit .choice-menu .item {
    padding: 30px 0;
}

.page-recruit .choice-menu .item h2 {
    margin-bottom: 20px;
}

.page-recruit .choice-menu ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.page-recruit .choice-menu ul li:last-child {
    margin-bottom: 0;
}

.page-recruit .choice-menu ul li span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    margin-right: 10px;
    transition: all .5s;
    cursor: pointer;
    background: center center no-repeat;
}

.page-recruit .choice-menu ul li.active span {
    border-color: #2C85B8;
    background: #2C85B8 url(../img/icon_checked.svg) center center no-repeat;
}

.page-recruit .recruit-result {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.page-recruit .recruit-result::before {
    content: '';
    display: block;
    width: 1px;
    height: 50%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 0;
}

.page-recruit .result-list .item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-recruit .result-list .item .hd {
    padding: 20px 0;
}

.page-recruit .result-list .item .hd h2 {
    margin-bottom: 20px;
    cursor: pointer;
}

.page-recruit .result-list .item .other {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-recruit .result-list .item .other .time {
    color: rgba(0, 0, 0, 0.4);
}

.page-recruit .result-list .item .other .labels {
    color: rgba(0, 0, 0, 0.2) span;
    color-color: #000;
}

.page-recruit .result-list .item .bd {
    background: #E6EDF5;
    padding: 20px;
    border-radius: 10px;
    gap: 40px;
    flex-direction: column;
    display: none;
    line-height: 2;
}

.page-recruit .result-list .item .bd .txt {
    line-height: 30px;
    margin-bottom: 30px;
}

.page-recruit .result-list .item .bd .txt ul {
    counter-reset: item-counter;
}

.page-recruit .result-list .item .bd .txt ul li {
    padding-left: 30px;
    position: relative;
}

.page-recruit .result-list .item .bd .txt ul li::before {
    counter-increment: item-counter;
    content: counter(item-counter) ". ";
    position: absolute;
    left: 5px;
}

.page-recruit .result-list .item .bd .toudi a {
    color: #355387;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: bold;
}

.page-recruit .result-list .item .bd .toudi a:hover {
    text-decoration: none;
}

.page-recruit .pages {
    padding-top: 50px;
}

@media screen and (max-width: 1024px) {
    .page-recruit .choice-menu {
        width: 150px;
        margin-right: 20px;
    }
    .page-recruit .recruit-result {
        padding-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .page-recruit .choice-menu {
        width: 90px;
        margin-right: 20px;
    }
    .page-recruit .recruit-result {
        padding-left: 20px;
    }
    .page-recruit .choice-menu .item {
        padding: 20px 0;
    }
}

@media screen and (max-width: 520px) {
    .page-recruit .choice-menu {
        width: 100%;
        margin-right: 0;
    }
    .page-recruit .choice-menu ul {
        display: flex;
    }
    .page-recruit .choice-menu ul li {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .page-recruit .choice-menu ul li:last-child {
        margin-right: 0;
    }
    .page-recruit .choice-menu .item {
        padding: 10px 0 20px;
    }
    .page-recruit .choice-menu .item h2 {
        margin-bottom: 10px;
    }
    .page-recruit .choice-menu ul li span {
        margin-right: 5px;
    }
    .page-recruit .result-list .item .hd {
        padding: 20px 0;
    }
    .page-recruit .recruit-result {
        padding-left: 0;
        width: 100%;
    }
    .page-recruit .recruit-result::before {
        display: none;
    }
    .page-recruit .result-list .item .bd {
        padding: 10px;
        border-radius: 5px;
    }
    .page-recruit .result-list .item .hd h2 {
        margin-bottom: 10px;
    }
    .page-recruit > div {
        flex-wrap: wrap;
    }
}

.page-contact {
    overflow: hidden;
    padding: 100px 0;
}

.page-contact .inner {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

.page-contact .text {
    position: relative;
    z-index: 3;
    flex: 1;
}

.page-contact .text .didian {
    width: 40.88586%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-contact .text .didian img {
    width: 100%;
}

.page-contact .text .hd {
    margin-bottom: 20px;
    padding-top: 26px;
}

.page-contact .text .hd h2 {
    font-weight: 600;
    color: #2C85B8;
    line-height: 1;
}

.page-contact .text .hd p {
    margin-top: 20px;
    color: #666666;
    font-size: 12px;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 20px;
    display: inline-block;
    letter-spacing: 0.2em;
}

.page-contact .text .bd {
    margin-bottom: 27px;
}

.page-contact .text .bd p {
    font-size: 15px;
    line-height: 34px;
}

.page-contact .text .ft {
    display: flex;
    position: relative;
    z-index: 3;
}

.page-contact .text .ft a {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 120px; */
    padding: 0 10px;
    height: 40px;
    font-size: 15px;
    text-align: center;
    margin-right: 20px;
    box-sizing: border-box;
}

.page-contact .text .ft a:first-child {
    background-color: #2C85B8;
    color: #fff;
}

.page-contact .text .ft a:first-child:hover {
    opacity: .8;
}

.page-contact .text .ft a:last-child {
    background: #E6EDF5;
    color: #2C85B8;
}

.page-contact .text .ft a:last-child:hover {
    background-color: #2C85B8;
    color: #fff;
}

.page-contact .didian {
    width: 17.64706%;
}

.page-contact .didian img {
    width: 100%;
}

.page-contact .mapbox {
    width: 44.11765%;
    height: 320px;
    margin-top: 30px;
}

.page-contact #map {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1440px) {
    .page-contact {
        padding: 80px 0;
    }
    .page-contact .mapbox {
        height: 292px;
    }
    .page-contact .text .hd p {
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 1024px) {
    .page-contact {
        padding: 50px 0;
    }
}

@media screen and (max-width: 768px) {
    .page-contact .mapbox {
        width: 100%;
    }
    .page-contact .didian {
        width: 30%;
    }
    .page-contact .text .hd p {
        letter-spacing: 0.2px;
    }
    .page-contact .text .ft  {
        flex-wrap:wrap;
    }
    .page-contact .text .ft a {
        width:200px;
        margin-bottom:20px;
        margin-left:auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 520px) {
    .page-contact .didian {
        display: none;
    }
}

/* 案例中心 */
.page-cases {
    padding-bottom: 80px;
    overflow: hidden;
}

.cases-lists {
    margin-left: -10px;
    margin-right: -10px;
}

.cases-lists li {
    width: 25%;
    padding: 10px;
}

.cases-lists li .img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.cases-lists li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.cases-lists li .img .showbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 133, 184, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.cases-lists li .img .showbox .icon-view {
    display: block;
    width: 36px;
    height: 36px;
    background: url(../img/icon_view.svg) 0 0/cover no-repeat;
    margin-bottom: 20px;
}

.cases-lists li .txt {
    padding-top: 20px;
}

.cases-lists li .txt h2 {
    font-weight: normal;
    line-height: 24px;
    /* height: 48px; */
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.cases-lists li a:hover .img img {
    transform: scale(1.05);
}

.cases-lists li a:hover .img .showbox {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1440px) {
    .cases-lists li .img {
        height: 185px;
    }
}

@media screen and (max-width: 1024px) {
    .page-cases {
        padding-bottom: 50px;
    }
    .cases-lists {
        margin-left: -5px;
        margin-right: -5px;
    }
    .cases-lists li {
        padding: 5px;
    }
    .cases-lists li .img {
        height: 160px;
    }
}

@media screen and (max-width: 768px) {
    .cases-lists li {
        width: 50%;
    }
    .cases-lists li .img {
        height: 33vw;
    }
    .cases-lists li .txt {
        padding-top: 10px;
    }
}

/* 详情 */
.detail-main {
    padding-top: 80px;
    padding-bottom: 80px;
}

.detail-main .hd {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-main .hd h2 {
    width: 71.69118%;
    padding-right: 10%;
}

.detail-main .hd .datetime {
    line-height: 70px;
    color: #B2B2B2;
}

.detail-main .detail-content {
    width: 73.82353%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 30px;
    padding-top: 60px;
}

.detail-main .detail-content h2 {
    margin-bottom: 10px;
}

.detail-main .detail-content p {
    line-height: 2.14286;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 80px);
}

.detail-main .detail-content img {
    max-width: 100%;
}

.detail-main .img-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin: 50px 0;
}

.detail-main .img-txt p {
    font-weight: bold;
    text-align: center;
}

.detail-main .img-txt img {
    max-width: 100%;
}

.detail-main .prevnext {
    margin-top: 50px;
}

.detail-main .prevnext ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
}

.detail-main .prevnext ul li {
    width: 50%;
    padding: 0 10px;
}

.detail-main .prevnext ul li a {
    display: block;
    background: #F2F2F2;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-main .prevnext ul li .icon {
    display: inline-block;
    width: 18px;
    height: 12px;
    background: center center /cover no-repeat;
    margin: 0 10px;
}

.detail-main .prevnext ul li .icon-prev {
    background-image: url(../img/icon_swiper_prev_black.svg);
}

.detail-main .prevnext ul li .icon-next {
    background-image: url(../img/icon_swiper_next_black.svg);
}

.detail-main .prevnext ul li a:hover .icon-prev {
    background-image: url(../img/icon_swiper_prev_blue.svg);
}

.detail-main .prevnext ul li a:hover .icon-next {
    background-image: url(../img/icon_swiper_next_blue.svg);
}

.detail-main .cases-lists {
    width: 100%;
}

.detail-main .cases-lists li {
    width: 100%;
    padding-bottom: 0;
    padding-top: 0;
}

.detail-main .right-relative {
    width: 23.89706%;
    padding-top: 60px;
}

.detail-main .right-relative .tt {
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .detail-main {
        padding-top: 60px;
    }
    .detail-main .hd {
        padding: 60px 0;
    }
    .detail-main .detail-content {
        padding-top: 30px;
    }
    .detail-main .right-relative {
        padding-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .detail-main .hd {
        padding: 30px 0;
    }
    .detail-main .hd > div {
        flex-wrap: wrap;
    }
    .detail-main .hd h2 {
        width: 100%;
        padding-top: 0;
    }
    .detail-main .hd .datetime {
        line-height: 35px;
    }
    .detail-main .detail-content {
        width: 100%;
    }
    .detail-main .bd > div {
        flex-wrap: wrap;
    }
    .detail-main .detail-content {
        padding-right: 0;
        border-right: none;
    }
    .detail-main .img-txt {
        padding: 25px  10px;
    }
    .detail-main .prevnext ul li p {
        display: none;
    }
    .detail-main .right-relative {
        width: 100%;
    }
    .detail-main .cases-lists {
        display: flex;
        flex-wrap: wrap;
    }
    .detail-main .cases-lists li {
        width: 50%;
        padding: 10px 5px;
    }
    .detail-main .img-txt {
        border-radius: 10px;
        margin: 25px 0;
    }
    .detail-main .hd h2 {
        font-size: 20px;
        padding-right: 0;
    }
}

/* 表单 */
.main-form {
    background: #E6EDF5;
    padding: 200px 0 144px;
}

.main-form-box {
    max-width: 500px;
    margin: 0 auto;
}

.main-form-box .form-zixun {
    height: auto;
}

@media screen and (max-width: 520px) {
    .main-form {
        padding: 160px 0 80px;
    }
}
.form-zixun .bd .ipt textarea {
    padding:14px 20px;
}
.highlight {
    background: #f2f2f2;
}
.swiper-progress .swiper-wrapper {
    transition-timing-function:linear !important;
    -webkit-transition-timing-function: linear !important;
    -moz-transition-timing-function: linear !important;
    -ms-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.popup-main .img {/* height: 623px; *//* background: #fff; */}

.swiper-slide .form-zixun .btn {
    margin-top: 0;
}
@media screen and (max-width:1440px) {
    .popup-main .img {height: 560px;/* background: #fff; */}
}
@media screen and (max-width: 1024px){
    .popup-main .inbox, .form-zixun {
        height: 75vh;
    }
}
@media screen and (max-width: 425px) {
    .popup-main .inbox ,.popup-main .inbox, .form-zixun {
        height: 70vh;
    }
}
.right-relative .cases-lists li {
    margin-bottom: 20px;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.detail-main .detail-content {
    float: left;
}
.detail-main .right-relative {
    position: sticky; float: right; top: 40px;
}
/* 20250325新增 */
header .headBd {
    width: 90%;
}
header .headBd .language  {
    position: relative;
}
header .headBd .language .cur { display: flex; align-items: center; justify-content: center;}
header .headBd .icon-language {
    display: inline-block; width: 25px; height: 25px; background: url(../img/icon_language_white.svg) center center /cover no-repeat; transition: all .3s;
}


.language .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100px;
    padding-top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    transform: translate(-50%, 20px);
    z-index: 9;
}
header .language a::after {display: none;}

.language .dropdown .in-box {
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.language .dropdown .in-box a {
    color: #333; text-align: center;display: block;
}
.language .dropdown .in-box a:hover {
    color: #2C85B8; font-weight: bold;
}

.language .dropdown .in-box::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom: 12px solid #fff;
    transform: translateX(-50%) rotate(0deg);
    position: absolute;
    top: -24px;
    left: 50%;
}

header .headBd .language:hover .icon-language ,header.active .language a.cur .icon-language, header:hover .language a.cur .icon-language, header.allActive .language a.cur .icon-language {
    background-image: url(../img/icon_language_black.svg);
}
header .headBd .language:hover .dropdown {
    opacity: 1; visibility: visible;
    transform: translate(-50%, 0px);
}
.banner-swiper .swiper-slide { height: 80vh;}
.banner-swiper .mouse {
    width: 40px; height: 40px; background: url(../img/icon_banner_mouse.svg) center center /cover no-repeat; position: absolute; left: 50%; bottom: 20px; margin-left: -20px; z-index: 5;
    animation: updown 2s infinite linear;
}
.banner-swiper .swiper-button-pagination {
    bottom: 80px !important;
}

@keyframes updown {
    0% {
        transform: translateY(-20%);
        opacity: 0.2;
    }
    25% {
        transform: translateY(0%);
        opacity: 0.5;
    }
    50% {
        transform: translateY(23.89706%);
        opacity: 0.8;
    }
    75% {
        transform: translateY(0%);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20%);
        opacity: 0.2;
    }
}


.index-apparea .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.index-apparea .tabs li {
    position: relative;
    padding: 0 30px;
    font-weight: 400;
}

.index-apparea .tabs li::after {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: #D8D8D8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.index-apparea .tabs li:last-child::after {
    display: none;
}

.index-apparea .tabs li.active a {
    color: #2C85B8;
}

.index-apparea .item {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    height: 0;
    overflow: hidden;
}

.index-apparea .item.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}
@media screen and (max-width: 1440px) {
    .index-apparea .tabs {
        margin-top: 20px;
    }
}