:root{
    --primary: #0055FE;
}

html{
    height: 100%;
}

body{
    min-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "PingFang SC","system-ui";
}

.inner{
    width: 100%;
    height: 100%;
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

header{
    background: #131B30;
    backdrop-filter: blur(2px);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
}

header .inner{
    max-width: 1460px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo{
    margin: 0;
}

.header-logo__image{
    display: block;
    max-height: 70px;
}

.header-nav{
    margin-left: 16px;
    margin-right: 16px;
}

.header-nav__group{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header-nav__item{
    position: relative;
}

.header-nav__item + .header-nav__item{
    margin-left: 24px;
}

.header-nav .header-nav__group >.header-nav__item::after{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    max-width: 120px;
    background-color: #336DF6;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
}

.header-nav .header-nav__item:hover::after,
.header-nav .header-nav__item.active::after{
    transform: translateX(-50%) scale(1);
}

.header-nav__link{
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    box-sizing: border-box;
    padding: 25px 12px;
    display: block;
}

.header-nav__link icon-font{
    margin-left: 4px;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-nav__item:hover .header-nav__link icon-font{
    transform: rotate(180deg);
}

.header-nav__sub{
    color: #333;
    margin: 0;
    padding: 8px 0;
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
    top: 60px;
    left: 50%;
    background-color: #fff;
    border-radius: 8px;
    list-style: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 7px 2px rgba(84, 84, 84, 0.10);
    visibility: hidden;
    opacity: 0;
    max-width: 230px;
    transform: translateX(-50%);
}

.header-nav__sub .header-nav__link{
    padding: 8px 12px;
}

.header-nav__item:hover > .header-nav__sub{
    visibility: visible;
    opacity: 1;
}

.header-nav__sub .header-nav__item + .header-nav__item{
    margin-left: 0;
}

.header-nav__sub .header-nav__link{
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: color 0.3s ease;
}

.header-nav__sub .header-nav__link:hover{
    color: var(--primary);
}

.header-menu{
    font-size: 24px;
    line-height: 1;
    margin-left: 12px;
    cursor: pointer;
    display: none;
}

main{
    flex: 1;
}

header ~ aside{
    position: fixed;
    z-index: 9;
    width: 65vw;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

header ~ aside.active{
    transform: translateX(0);
}

.mask{
    position: fixed;
    z-index: 8;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: show 0.3s ease;
}

@keyframes show {
    0%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        opacity: 1;
        visibility: visible;
    }
}

.animate {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.mask.hide {
    opacity: 0;
    visibility: hidden;
}

.aside-nav__group{
    margin: 0;
    padding: 0;
    list-style: none;
}

.aside-nav__link{
    text-decoration: none;
    padding: 10px 0;
    color: #444;
    display: flex;
    align-items: center;
}

.aside-nav__link icon-font{
    transition: transform 0.3s ease;
}

.aside-nav__label{
    flex: 1 0 0;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.aside-nav__item.active > .aside-nav__link icon-font{
    transform: rotate(180deg);
}

.aside-sub__group{
    margin: 0;
    padding: 0 0 0 1em;
    box-sizing: border-box;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

footer .inner{
    max-width: 1460px;
}

.footer-info{
    background: #F0F0F0;
    padding-top: 68px;
    padding-bottom: 158px;
}

.footer-info__logo{
    height: 56px;
}

.footer-info__img{
    display: block;
    height: 100%;
}

.footer-info__main{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info__config{
    display: flow-root;
    flex: 1 0 0;
}

.footer-config__group{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: -24px -18px 0;
}

.footer-config__item{
    display: flex;
    align-items: flex-start;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
    box-sizing: border-box;
    min-width: 33.333%;
}

.footer-config__item icon-font{
    color: var(--primary);
    font-size: 1.5em;
}

.footer-config__value{
    color: #333;
    margin-left: 17px;
    line-height: 1.5;
    text-decoration: none;
}

.footer-info__platform{
    display: flow-root;
    margin-left: 1.5vw;
}

.footer-platform__group{
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 0 0 -40px;
    list-style: none;
    box-sizing: border-box;
}

.footer-platform__item{
    margin-left: 40px;
    box-sizing: border-box;
}

.footer-platform__link{
    display: block;
}

.footer-platform__link img{
    width: 40px;
    height: 40px;
    display: block;
}

.footer-copyright{
    background: #131B30;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.footer-copyright__text{
    margin: 0;
    line-height: 1.5;
    padding-top: 28px;
    padding-bottom: 28px;
}

.footer-affix{
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 50px;
    height: 50px;
    background-color: #387aff;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: opacity 0.3s ease,visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.footer-affix.active{
    opacity: 1;
    visibility: visible;
}

.banner-slide__item{
    position: relative;
    padding-bottom: 32.3%;
    box-sizing: border-box;
}

.banner-slide__adaptor{
    position: absolute;
    inset: 0;
}

.banner-slide__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slide__wrapper{
    position: absolute;
    color: #fff;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.banner-slide__content{
    width: 100%;
    max-width: 700px;
}

.banner-slide__tag{
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 100px;
    border: 1px solid #DEDEDE;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) -26.19%, rgba(255, 255, 255, 0.20) 81.07%);
    margin-bottom: 16px;
}

.banner-slide__title{
    font-size: 48px;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
}

.banner-slide__sub{
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 1em;
    color: #2F9AFF;
}

.banner-slide__text{
    margin-bottom: 0;
    margin-top: 8px;
    font-size: 24px;
}

.banner-slide__description{
    margin-bottom: 0;
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.5;
}

.banner-slide__button{
    border-radius: 6px;
    color: #fff;
    padding: 9px 24px;
    background: var(--primary);
    display: inline-block;
    text-decoration: none;
    margin-top: 32px;
    transition: background-color 0.3s ease;
}

.banner-slide__button:hover{
    background-color: #2F9AFF;
}

.section-title{
    text-align: center;
}

.section-title__text{
    color: #333;
    font-size: 40px;
    font-weight: normal;
    margin: 0;
}

.section-title__sub{
    color: #999;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-top: 32px;
    margin-bottom: 0;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination-total{
    color: #999;
    font-family: "Source Han Sans CN", system-ui;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 32px;
}

.pagination-group{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-item{
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    border-radius: 3px;
    font-family: "PingFang SC", system-ui;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
}

.pagination-item + .pagination-item{
    margin-left: 8px;
}

.pagination-link{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.pagination-item:not(.disabled):hover .pagination-link,
.pagination-item:not(.disabled).active .pagination-link{
    border-radius: 3px;
    background: #3575FF;
    color: #fff;
}

.pagination-item.disabled .pagination-link{
    cursor: not-allowed;
    opacity: 0.6;
}

/* 首页 */
.home-service{
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-service__content{
    margin-top: 56px;
    display: flow-root;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-service__group{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -12px 0;
    padding: 0;
    list-style: none;
}

.home-service__item{
    width: 33.3333%;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 24px;
    box-sizing: border-box;
}

.home-service__inner{
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #E6E9F0;
    background: #FFF;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.home-service__inner:hover{
    border-color: var(--primary);
    background-color: var(--primary);
}

.home-service__icon{
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.home-service__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-service__text{
    text-align: center;
    margin-top: 40px;
}

.home-service__name{
    color: #1D2129;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    line-height: normal;
    transition: color 0.3s ease;
}

.home-service__inner:hover .home-service__name{
    color: #fff;
}

.home-service__description{
    color: #69717E;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.home-service__inner:hover .home-service__description{
    color: #fff;
}

.home-production{
    padding-top: 120px;
    padding-bottom: 120px;
    background: #F9FAFC;
}

.home-production__content{
    margin-top: 40px;
}

.home-production__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-production__tab .swiper-slide{
    width: auto;
}

.home-production__label{
    color: #69717E;
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 14px;
    cursor: pointer;
    padding-left: 65px;
    padding-right: 65px;
    box-sizing: border-box;
    display: block;
    position: relative;
    --scale: 0
}

.home-production__label::after{
    content: "";
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(var(--scale, 0));
    background-color: var(--primary);
    width: 80%;
    transition: transform 0.3s ease;
}


.swiper-slide-thumb-active .home-production__label{
    color: #1D2129;
    --scale: 1;
}

.home-production__panel{
    margin-top: 107px;
}

.home-production__sub{
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 0;
}

.home-production__main{
    width: 50%;
    max-width: 465px;
    margin-right: 24px;
}

.home-production__name{
    color: #333;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.home-production__function{
    margin-top: 40px;
    display: flow-root;
}

.home-production__group{
    padding: 0;
    margin:-24px -16px 0 -16px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.home-production__item{
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    color: #666;
    font-size: 20px;
    min-width: 50%;
    margin-top: 24px;
}

.home-production__item::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-right: 12px;
}

.home-production__image{
    width: 50%;
    max-width: 586px;
}

.home-production__img{
    display: block;
    width: 100%;
}

.home-partner{
    background: url("../images/home-partner.png") no-repeat center center / cover;
    padding-top: 170px;
    padding-bottom: 56px;
}

.home-partner__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-partner__image{
    width: 48%;
    max-width: 380px;
    margin-right: 2%;
}

.home-partner__img{
    display: block;
    width: 100%;
}

.home-partner__content{
    width: 50%;
    max-width: 532px;
}

.home-partner__title{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
}

.home-partner__sub{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-top: 40px;
    margin-bottom: 0;
}

.home-partner__description{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 0;
}

.home-partner__pagination{
    display: flex;
    justify-content: center;
    margin-top: 140px;
}

.home-partner__pagination .swiper-pagination-bullet{
    width: 36px;
    height: 4px;
    border-radius: 0;
    background-color: rgba(255,255,255,0.6);
}

.home-customer{
    padding-top: 120px;
    padding-bottom: 146px;
}

.home-customer__content{
    margin-top: 56px;
    display: flow-root;
}

.home-customer__group{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -32px -16px 0 -16px;
}

.home-customer__item{
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
    width: 20%;
    box-sizing: border-box;
}

.home-customer__image{
    position: relative;
    padding-bottom: 35.433%;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #EBEBEB;
    box-shadow: 0 0 38px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.home-customer__image:hover{
    transform: scale(1.1);
}

.home-customer__adaptor{
    position: absolute;
    inset: 0;
    padding: 22px 32px;
    box-sizing: border-box;
}

.home-customer__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.home-contact{
    padding-top: 90px;
    padding-bottom: 90px;
    background: url("../images/home-contact.png") no-repeat center center / cover;
}

.home-section__content{
    text-align: center;
}

.home-section__title{
    color: #FFF;
    font-size: 36px;
    line-height: normal;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.home-section__button{
    border-radius: 6px;
    color: #fff;
    padding: 9px 24px;
    background: var(--primary);
    display: inline-block;
    text-decoration: none;
    margin-top: 32px;
    transition: background-color 0.3s ease;
}

.home-section__button:hover{
    background-color: #2F9AFF;
}

/* 关于我们 */
.about-slide__text{
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 0;
}

.about-lifecycle{
    padding-top: 120px;
    padding-bottom: 105px;
    --released: 20px;
}

.about-lifecycle__title{
    text-align: center;
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.about-lifecycle__content{
    position: relative;
    z-index: 1;
    margin-top: 45px;
    display: flow-root;
    overflow: hidden;
}

.about-lifecycle__content::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #EEF5FF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-lifecycle__content .inner{
    position: relative;
}

.about-lifecycle .swiper-slide{
    width: auto;
    max-width: 350px;
    height: 280px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.about-lifecycle .swiper-slide:nth-child(odd){
    justify-content: flex-end;
}

.about-lifecycle__wrapper{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: calc(50% - var(--released));
}

.about-lifecycle .swiper-slide:nth-child(even) .about-lifecycle__wrapper{
    flex-direction: column-reverse;
}

.about-lifecycle .swiper-slide:nth-child(even) .about-lifecycle__wrapper .about-lifecycle__text{
    flex-direction: inherit;
}

.about-lifecycle__time{
    color: var(--primary);
    font-size: 32px;
    font-weight: 400;
    height: 32px;
    line-height: 1;
    margin: 0;
    position: relative;
    text-align: center;
}

.about-lifecycle__time::before{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 8px solid rgba(255, 255, 255, 0.9);
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
}

.about-lifecycle .swiper-slide:nth-child(odd) .about-lifecycle__time::before{
    transform: translate(-50%, -34px);
}

.about-lifecycle .swiper-slide:nth-child(even) .about-lifecycle__time::before{
    transform: translate(-50%, 37px);
}

.about-lifecycle__text{
    display: flex;
    flex-direction: column;
    color: #69717E;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.about-lifecycle .swiper-slide:nth-child(odd) .about-lifecycle__text{
    margin-top: 20px;
}

.about-lifecycle .swiper-slide:nth-child(even) .about-lifecycle__text{
    margin-bottom: 20px;
}

.about-lifecycle__text pre{
    font-family: inherit;
    white-space: normal;
    margin: 0;
}

.about-lifecycle__prev,
.about-lifecycle__next{
    position: absolute;
    z-index: 2;
    top: 0;
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #578ffd;
    opacity: 0.8;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(0,85,254,0.15);
}

.about-lifecycle__prev{
    left: -45px;
}

.about-lifecycle__next{
    right: -45px;
}

.about-lifecycle__prev.swiper-button-disabled,
.about-lifecycle__next.swiper-button-disabled{
    visibility: hidden;
    opacity: 0;
}

.about-security{
    padding-top: 120px;
    padding-bottom: 120px;
    background: url("../images/about-security.png") #151745 no-repeat center center / cover;
}

.about-security__title{
    color: #FFF;
    font-family: "Source Han Sans CN", system-ui;
    font-size: 40px;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.about-security__content{
    display: flow-root;
    margin-top: 56px;
}

.about-security__group{
    display: flex;
    flex-wrap: wrap;
    margin: -16px -8px 0;
    list-style: none;
    padding: 0;
}

.about-security__item{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 16px;
    box-sizing: border-box;
}

.about-security__inner{
    background: #fff;
    height: 100%;
    text-align: center;
    border-radius: 4px;
    padding: 36px 56px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.about-security__inner:hover{
    background-color: var(--primary);
    --color: #fff;
}

.about-security__name{
    color: var(--color, #333);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
    margin: 0;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.about-security__description{
    color: var(--color, #69717E);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: normal;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.about-attention{
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-attention__title{
    text-align: center;
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.about-attention__content{
    margin-top: 56px;
    background: url("../images/about-attention.png") no-repeat left top / cover;
    display: flex;
    justify-content: flex-end;
}

.about-attention__group{
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.90);
}

.about-attention__item{
    display: flex;
    align-items: center;
    padding: 56px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.about-attention__item:hover{
    background: var(--primary);
}

.about-attention__icon{
    width: 64px;
    height: 64px;
    margin-right: 32px;
    flex-shrink: 0;
}

.about-attention__img{
    display: block;
    width: 100%;
    height: 100%;
}

.about-attention__text{
    flex: 1 0 0;
}

.about-attention__name{
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    margin: 0;
    padding-bottom: 16px;
}

.about-attention__name::after{
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FFF;
}


.about-attention__description{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: 0;
}

.system-special{
    padding-top: 180px;
    padding-bottom: 120px;
}

.system-special__title{
    text-align: center;
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.system-special__content{
    margin-top: 56px;
    display: flow-root;
}

.system-special__group{
    list-style: none;
    padding: 0;
    margin: -32px -16px 0;
    display: flex;
    flex-wrap: wrap;
}

.system-special__item{
    width: 25%;
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.system-special__inner{
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
}

.system-special__inner:hover{
    background: linear-gradient(105deg, #1133D8 0.56%, #1F5CF4 95.66%);
    --color: #fff;
}

.system-special__icon{
    width: 48px;
    height: 48px;
    color: var(--color, black);
}

.system-special__icon icon-font{
    font-size: 48px;
}

.system-special__text{
    margin-top: 16px;
}

.system-special__name{
    color: var(--color, #333);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

.system-special__description{
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--color, #69717E);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.system-price{
    display: flex;
    justify-content: center;
}

.system-price__side{
    width: 38.85%;
}

.system-price__image{
    height: 100%;
    position: relative;
}

.system-price__adaptor{
    position: absolute;
    inset: 0;
}

.system-price__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.system-price__main{
    flex: 1;
    width: 0;
    color: #fff;
    background: linear-gradient(90deg, #0E346C -45.52%, #151745 71.72%);
}

.system-price__main{
    padding: 100px 86px;
    box-sizing: border-box;
}

.system-price__title{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.system-price__content{
    display: flow-root;
    margin-top: 48px;
}

.system-price__group{
    padding: 0;
    margin: 0;
    list-style: none;
}

.system-price__item + .system-price__item{
    margin-top: 40px;
}

.system-price__name{
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.system-price__description{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    margin-top: 6px;
}

.system-advantage{
    padding-top: 120px;
    padding-bottom: 150px;
}

.system-advantage__title{
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.system-advantage__content{
    margin-top: 56px;
    display: flow-root;
}

.system-advantage__group{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -24px -12px 0 -12px;
}

.system-advantage__item{
    width: 20%;
    margin-top: 24px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.system-advantage__icon{
    display: flex;
    justify-content: center;
}

.system-advantage__img{
    width: 138px;
    height: 138px;
    object-fit: contain;
}

.system-advantage__description{
    color: #333;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 13px;
    margin-bottom: 0;
}

.database-special{
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgba(247, 247, 247, 0.60);
}

.database-special__title{
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.database-special__content{
    display: flow-root;
    margin-top: 56px;
}

.database-special__group{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -24px -12px 0 -12px;
}

.database-special__item{
    width: 33.333%;
    margin-top: 24px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.database-special__inner{
    height: 100%;
    background: #fff;
    text-align: center;
    padding: 44px;
    box-sizing: border-box;
}

.database-special__data{
    color: var(--primary);
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.database-special__value{
    font-weight: 600;
}

.database-special__label{
    font-size: 28px;
    margin-left: 8px;
}

.database-special__sup{
    font-size: 24px;
    align-self: flex-start;
}

.database-special__description{
    color: #69717E;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-top: 18px;
    margin-bottom: 0;
}

.database-solution{
    padding-top: 72px;
    padding-bottom: 120px;
    background: #151745;
    color: #fff;
}

.database-solution__title{
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.database-solution__content{
    margin-top: 60px;
    display: flow-root;
}

.database-solution__group{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: -58px -29px 0 -29px;
    padding: 0;
}

.database-solution__item{
    width: 50%;
    padding-left: 29px;
    padding-right: 29px;
    margin-top: 58px;
    box-sizing: border-box;
}

.database-solution__inner{
    height: 100%;
    padding: 32px 32px 97px 32px;
    border: 2px solid #265597;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
}

.database-solution__inner::after{
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 64px;
    height: 58px;
    background: url("../images/quote.svg") no-repeat center center / contain;
}

.database-solution__inner:hover{
    border-color: #fff;
    transform: translateY(-16px);
}

.database-solution__name{
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.database-solution__text{
    margin-top: 20px;
    line-height: 1.8;
}

.database-solution__text pre{
    font-family: inherit;
    white-space: normal;
    margin: 0;
}

.service-provide{
    padding-top: 120px;
    padding-bottom: 120px;
}

.service-provide__title{
    color: #333;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin: 0;
}

.service-provide__content{
    margin-top: 56px;
    display: flow-root;
}

.service-provide__group{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-provide__item{
    width: 25%;
    height: 100%;
    box-sizing: border-box;
}

.service-provide__inner{
    width: 100%;
    padding-bottom: 200%;
    position: relative;
}

.service-provide__adaptor{
    position: absolute;
    inset: 0;
}

.service-provide__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
}

.service-provide__wrapper{
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 24px;
    box-sizing: border-box;
    color: #fff;
    transition: background-color 0.3s ease;
}

.service-provide__item:hover .service-provide__wrapper{
    background-color: rgba(31,92,244,0.6);
}

.service-provide__text{
    transform: translateY(85px);
    transition: all 0.3s ease;
}

.service-provide__item:hover .service-provide__text{
    transform: translateY(310px);
}

.service-provide__icon{
    position: absolute;
    left: 50%;
    top: 200px;
    width: 95px;
    height: 95px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-provide__icon img{
    display: block;
    width: 100%;
    height: 100%;
}

.service-provide__item:hover .service-provide__icon{
    opacity: 1;
    visibility: visible;
}

.service-provide__name{
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.service-provide__description{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.news-list{
    padding-top: 120px;
    padding-bottom: 110px;
}

.news-list__content{
    display: flow-root;
}

.news-list__group{
    margin: -32px -16px 0 -16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.news-list__item{
    width: 33.3333%;
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.news-list__inner{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #EEE;
    background: #FFF;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.news-list__inner:hover{
    --color: #fff;
    --scale: 1.1;
    background-color: var(--primary);
}

.news-list__image{
    position: relative;
    padding-bottom: 55.78%;
}

.news-list__adaptor{
    position: absolute;
    overflow: hidden;
    inset: 0;
}

.news-list__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--scale, 1));
    transition: transform 0.3s ease;
}

.news-list__text{
    padding: 16px;
    box-sizing: border-box;
}

.news-list__name{
    color: var(--color,#333);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    transition: color 0.3s ease;
}

.news-list__description{
    color: var(--color,#666);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 0;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list__date{
    color: var(--color,#999);
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 14px;
    transition: color 0.3s ease;
}

.news-list__pagination{
    margin-top: 84px;
}

.news-detail__main{
    padding-top: 120px;
    padding-bottom: 60px;
}

.news-detail__header{

}

.news-detail__title{
    color: #333;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.news-detail__date{
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin-top: 12px;
}

.news-detail__body{
    display: flow-root;
    max-width: 1024px;
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;
}

.news-detail__body video,
.news-detail__body img,
.news-detail__body iframe{
    max-width: 100%;
}

.news-recommend{
    padding-top: 60px;
    padding-bottom: 120px;
}

.news-recommend .swiper-slide{
    width: 380px;
}


.news-recommend__more{
    text-align: center;
    margin-top: 56px;
}

.news-recommend__link{
    color: #999;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-recommend__link:hover{
    color: var(--primary);
}

.security-section__group{
    padding: 0;
    margin: 0;
    list-style: none;
}

.security-section__item{
    padding-top: 120px;
    padding-bottom: 120px;
}

.security-section__item:nth-child(even){
    background: #F6F8FA;
}

.security-section__item .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.security-section__item:nth-child(even) .inner{
    flex-direction: row-reverse;
}

.security-section__main{
    width: 40%;
}

.security-section__title{
    color: #333;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
}

.security-section__content{
    color: #666;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 24px;
    margin-bottom: 0;
}

.security-section__side{
    width: 50%;
    flex-shrink: 0;
}

.security-section__img{
    display: block;
    width: 100%;
}

.contact-map{
    padding-top: 120px;
    padding-bottom: 180px;
}

.contact-map__header{
    text-align: center;
}

.contact-map__title{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.contact-map__sub{
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 32px;
    margin-bottom: 0;
}

.contact-map__content{
    margin-top: 45px;
    padding-bottom: 55%;
    position: relative;
}

.contact-map__adaptor{
    position: absolute;
    inset: 0;
}

.contact-map__wrapper{
    width: 100%;
    height: 100%;
}

.contact-map__default{
    display: block;
    width: 100%;
    height: 100%;
}

.contact-footer{
    background: url("../images/contact-footer-bg.png") no-repeat center center / cover;
    padding-top: 95px;
    padding-bottom: 140px;
}

.contact-footer .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1460px;
}

.contact-footer__info{
    width: 45%;
    max-width: 490px;
}

.contact-footer__logo{
    height: 56px;
}

.contact-footer__logo img{
    display: block;
    height: 100%;
}

.contact-footer__config{
    display: flow-root;
    margin-top: 50px;
}

.contact-footer__config-group{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: -24px -12px 0 -12px;
}

.contact-footer__config-item{
    display: flex;
    align-items: center;
    margin-top: 24px;
    padding-left: 12px;
    padding-right: 12px;
    min-width: 50%;
    box-sizing: border-box;
}

.contact-footer__config-item icon-font{
    color: var(--primary);
    font-size: 1.5em;
}

.contact-footer__config-value{
    color: #333;
    margin-left: 17px;
    line-height: 1.5;
    text-decoration: none;
}

.contact-footer__platform{
    margin-top: 175px;
}

.contact-footer__platform-title{
    color: #333;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 24px;
}

.contact-footer__platform-group{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-footer__platform-item + .contact-footer__platform-item{
    margin-left: 40px;
}

.contact-footer__platform-link{
    display: block;
    width: 40px;
    height: 40px;
}

.contact-footer__platform-link img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-footer__form{
    width: 48%;
    flex-shrink: 0;
}

.contact-footer__form-title{
    font-size: 32px;
    font-weight: 400;
    margin: 0;
}

.contact-footer__form-title span{
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-left: 7px;
}

.contact-footer__form-element{
    border-radius: 16px;
    background: #FFF;
    margin-top: 52px;
    padding: 56px 64px;
}

.contact-footer__form-group{
    list-style: none;
    margin: -28px -12px 0 -12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-footer__form-item{
    margin-top: 28px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    width: 50%;
}

.contact-footer__form-item.full-width{
    width: 100%;
}

.contact-footer__form-types{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 24px;
    margin: -12px -6px 0 -6px;
}

.contact-footer__form-checkbox{
    min-width: 25%;
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-left: 6px;
    padding-right: 6px;
    box-sizing: border-box;
}

.contact-footer__form-checkbox input{
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.contact-footer__form-checkbox span{
    margin-left: 8px;
}

.contact-footer__form-label{
    display: block;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
}

.contact-footer__form-label.required:before{
    content:"*";
    color: #f00;
    font-size: 18px;
}

.contact-footer__form-wrapper{
    display: block;
}

.contact-footer__form-flex{
    display: flex;
}

.contact-footer__form-flex input{
    flex: 1 0 0;
}

.contact-footer__form-captcha{
    height: 49px;
    width:100px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 16px;
    cursor: pointer;
}

.contact-footer__form-input,
.contact-footer__form-textarea{
    width: 100%;
    border-radius: 8px;
    border: 1px solid #EEE;
    background: #FFF;
    padding: 16px;
    outline-color: var(--primary);
    outline-width: 1px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
}

.contact-footer__form-textarea{
    width: 100%;
    height: 150px;
}

.contact-footer__form-submit{
    width: 100%;
    color: #fff;
    border-radius: 8px;
    background: var(--primary);
    padding: 12px 18px;
    box-sizing: border-box;
    text-align: center;
    border: none;
    line-height: 1.6;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-footer__form-submit:hover{
    background-color: #2F9AFF;
}

.message{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    padding: 11px 15px;
    z-index: 10;
    font-size: 14px;
    background-color: #ccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.message icon-font{
    margin-right: 8px;
    font-size: 16px;
}

.message-success{
    background-color: #f0f9eb;
    border-color: #e1f3d8;
    color: #67c23a;
}

.message-error{
    background-color: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}