
/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 590px;
    background-color: #eceefd;
}
.banner .swiper {    
    max-width: 1920px;
    margin:  0 auto;
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
/* .swiper-slide::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    display: block;
    content: '';
    background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0) 70%,rgba(0,0,0,0.1) 100%);
} */
 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 50%;
    width: 1280px;
    transform: translateX(-50%);
    text-align: left;
    padding-left: 110px;
 }
.swiper-pagination-bullet {
    position: relative;
    width: 20px;
    height: 6px;
    border-radius: 0;
    /* background-color: var(--bd-grey); */
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.swiper-pagination-bullet-active {
    width: 50px;
    opacity: 0.9;
}
.swiper-pagination-bullet::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 20px;
    content: '';
    background-color: transparent;
    transition: width 3s linear;
}
.swiper-pagination-bullet-active::after {
    width: 100%;
    background-color: var(--primary-blue);
}
.swiper-button-next, .swiper-button-prev {
    padding: 30px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.swiper-button-prev {
    left: 0px;
}
.swiper-button-next {
    right: 0px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 0.8;
}
.banner:hover .swiper-button-prev {
    left: 50px;
    opacity: 0.8;
}
.banner:hover .swiper-button-next {
    right: 50px;
    opacity: 0.8;
}


/* main */
.main-wrap {
    padding-bottom: 80px;
}
.main-wrap.banner {
    padding: 0;
}
.main-wrap-box {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}
.system-con {
    text-align: center;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
    animation-fill-mode: both;
}
.system-con img {
    animation-name: fadein;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
    animation-fill-mode: both;
    animation-duration: 1s;
}
.aday-con {
    text-align: center;
}
.software .main-wrap-tit-ch {
    position: relative;
    z-index: 1;
}
.main-tit-bd {
    margin: -10px auto 0;
    width: 660px;
    height: 10px;
    background-color: var(--primary-blue);
    border-radius: 5px;
    opacity: 0.3;
}
/* @keyframes fadein {
    from {
        opacity: 0;
       transform: perspective(30px) rotateX(100deg) translateZ(1000px) scale(0.3);
        transform-origin: center top;
    }

    to {
        opacity: 1;
        transform: perspective(30px) rotateX(0deg) translateZ(0) scale(1);
        transform-origin: center center;
    }
} */
@keyframes fadein {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(-200px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.main-wrap-tit {
    padding: 60px 0 30px 0;
    font-size: 38px;
    text-align: center;
}
.main-wrap-tit-ch {
    font-weight: bold;
}
.main-wrap-tit-en {
    font-size: 20px;
    color: var(--black-bd);
}


/* software */
.main-wrap.main-wrap-box.software {
    padding-bottom: 10px;
}
.main-wrap-con.soft-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.soft-box {
    position: relative;
    flex: 1;
    display: flex;
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
}
.soft-box::after {
    position: absolute;
    top: 20%;
    right: 0;
    content: '';
    width: 1px;
    height: 60%;
    background-color: #e5e5e5;
}
.hexin {
    background-color: var(--black-bd);
}
.advantages {
    padding-bottom: 0;
    background-image: linear-gradient(to bottom, #fdfdfd, #fbfbfc);
}
.hexin .soft-box::after {
    display: none;
}
.hexin .soft-box .soft-img {
    margin: 0 auto;
    width: 130px;
}
.soft-box:last-of-type::after {
    background-color: transparent;
}
.soft-img img {
    width: 100%;
}
.soft-icon {
    width: 25px;
    height: 20px;
    margin-right: 5px;
} 
.soft-info {
    flex: 1;
    position: relative;
    padding: 20px 15px;
    text-align: center;
}
.soft-tit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
}
.soft-des {
    color: var(--black-9);
    font-size: 14px;
    line-height: 22px;
}

.case-info {
    display: flex;
    flex-wrap: wrap;
}
.case-box {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 30px;
    flex: 1;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(0, 68, 255, 0.1);
    box-shadow: 3px 3px 5px rgba(0, 59, 221, 0.1);
}

.case-box .soft-icon {
    display: block;
    margin: 0 auto;
    width: 42px;
    height: 42px;
} 
.case-box .soft-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-box .case-box .soft-info {
    flex: 1;
    position: relative;
    padding: 20px 15px;
    text-align: center;
}
.case-box .soft-tit {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 22px;
    height: 90px;
    font-weight: bold;
    color: var(--black-1);
    text-align: center;
}
.case-box .soft-des {
    color: var(--black-6);
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}


.applay {
    background-color: var(--black-bd);
}
.applay .case-info {
    justify-content: center;
}
.applay .case-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    flex: 0 0 400px;
    background-color: #ffffff;
}
.applay .case-box.big {
    flex: 0 0 610px;
}
.applay .case-box .soft-icon {
    flex: 0 0 190px;
    width: 190px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.applay .case-box .soft-icon img {
    object-fit:fill;
}
.applay .case-box .soft-tit {
    margin-bottom: 10px;
    height: auto;
}
.applay .case-box .soft-des {
    padding: 0 20px;
    text-align: left;
}

/* .soft-more {
    display: block;
    margin:  20px auto 0 auto;
    width: 110px;
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    cursor: pointer;
}
.soft-more:hover {    
    color: var(--white);
    background-color: var(--primary-blue);
} */

.intro {
    padding-bottom: 50px;
}
.intro .main-wrap-tit {
    padding-bottom: 10px;
}
.intro .main-wrap-box {
    display: flex;
}
.intro .banner-text {
    padding: 0 100px;
    line-height: 26px;
    color: var(--black-3);
}
.intro .main-wrap-con .main-wrap-tit-ch {
    position: relative;
    margin-bottom: 30px;
    padding-top: 90px;
    padding-left: 100px;
    font-size: 28px;
}
.intro .main-wrap-con .main-wrap-tit-ch::after {
    position: absolute;
    left: 100px;
    bottom: -6px;
    content: '';
    width: 190px;
    height: 3px;
    background-color: var(--primary-blue);
}
.intro-con {
    flex: 0 0 683px;
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

/* solution */
.main-wrap-con.solution-con {
    display: flex;
    width: 100%;
    height: 475px;
    /* overflow: hidden; */
}
.solution-con.show .solution-sides {    
     animation: showFXin 0.35s ease;
}
.solution-con.show .solution-c {
     animation: scalein 0.35s ease;
}
.solution-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--black-bd);
    margin-bottom: 30px;
    --after-left: 340px;
}
.solution-tab {
    padding: 0 30px;
    font-size: 18px;
    line-height: 60px;
    cursor: pointer;
}
.solution-tab.active {
    color: var(--primary-blue);
}
.solution-tabs::after {
    position: absolute;
    bottom: 0;
    left: var(--after-left);
    content: '';
    width: 72px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 5px;
    transition: left 0.3s ease-in-out;
}
.solution-con {
    display: flex;
    justify-content: center;
}
.solution-sides {
    margin-right: 20px;    
    margin-left: 10px;
    width: 240px;
    padding: 30px;
    box-sizing: border-box;
    background-color: #f4f2ff;
    border-radius: 10px;
}
.solution-side-btn {
    margin: 10px 0;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}
.solution-side-btn.active {    
    color: var(--white);
    background-color: var(--primary-blue);
}
.solution-c {
    position: relative;
    flex: 1;
}
.solution-c.show {
     animation: scalein 0.35s ease forwards;
}
@keyframes showFXin {
    0% {
        opacity: 0.8;
        transform: translateX(-60px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes scalein {
    0% {
        opacity: 0.8;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.solution-des-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 338px;
    padding: 30px 30px;
    box-sizing: border-box;
}
.solution-des-tit {
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: bold;
}
.solution-des {
    /* height: 180px; */
    color: var(--black-9);
    font-size: 14px;
    line-height: 24px;
}
.solution-des strong {
    color: var(--black-6);
}
.solution-des-img {
    text-align: right;
}
.solution-des-img img {
    width: 685px;
}
.solution-btn {
    display: inline-block;
    vertical-align: top;
    margin: 30px 10px;
    padding: 8px 20px;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    cursor: pointer;
}
.solution-btn.btn-main {
    color: var(--white);
    background-color: var(--primary-blue);
}

/* compare */
.compare {
    background-color: var(--black-bd);
}
.compare-con {
    position: relative;
    display: flex;
    justify-content: center;
}


.compare-con {
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-fill-mode: both;
}
.compare-con .compare-box-l {
    animation-name: fadeinFX;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-fill-mode: both;
    animation-duration: 1s;
} 
.compare-con .compare-items {
    animation-name: fadeinO;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-fill-mode: both;
    animation-duration: 1s;
}
.compare-con .compare-box-r {
    animation-name: fadeinX;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-fill-mode: both;
    animation-duration: 1s;
} 
@keyframes fadeinO {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeinFX {
    from {
        opacity: 0;
        filter: grayscale(100%);
        transform: translateX(-180px);
    }

    to {
        opacity: 1;
        filter: grayscale(60%);
        transform: translateY(0);
    }
}
@keyframes fadeinX {
    from {
        opacity: 0;
        transform: translateX(180px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compare .icon {
    width: 30px;
    height: 22px;
    color: #7dd692;
}
.compare-box {
    flex: 0 0 380px;
    margin: 0 160px;
    background-color: var(--white);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.compare-img {
    width: 100%;
    height: 156px;
    overflow: hidden;
}
.compare-img img {
    width: 100%;
}
.compare-infos {
    padding: 20px 30px;
    height: 360px;
}
.compare-li {
    flex: 0 0 380px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 38px;
    box-sizing: border-box;
}
.compare-li-l {
    justify-content: flex-end;
}
.compare-box-l {
    filter: grayscale(60%);
    color: var(--black-9);
}
.compare-box-l .compare-li {
    justify-content: flex-end;
}

.compare-items {
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
    z-index: 2;
}
.compare-item {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.compare-item:hover {
    background-image: linear-gradient(90deg, transparent, rgba(175, 181, 255, 0.13), transparent);
}
.compare-li-c {
    flex: 0 0 320px;
    text-align: center;
    font-weight: bold;
}
.compare-item:hover .compare-li-c {
    color: var(--primary-blue);
}
.compare .compare-li-c span {
    display: inline-block;
    vertical-align: top;
    width: 100px;
}
.compare .compare-li-c .icon {
    opacity: 0;
    width: 11px;
    height: 22px;
    margin: 0 10px;
}
.compare-item:hover .compare-li-c .icon-arrleft {
    animation: fadeInfX 1.3s linear infinite;
}
.compare-item:hover .compare-li-c .icon-arrright {
    animation: fadeInX 1.3s linear infinite;
}

@keyframes fadeInfX {
    0% {
        opacity: 0;
        transform: translateX(0px) rotate(180deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-5px) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-10px) rotate(180deg);
    }
}
@keyframes fadeInX {
    0% {
        opacity: 0;
        transform: translateX(0px);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}


/* news-con */
.news-con {
    display: flex;
    justify-content: center;

}
.news-con-l {
    flex: 0 0 860px;
    width: 860px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
}
.news-l-box {
    flex: 1;
    margin: 0 10px;
    background-color: #f7f7f7;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.news-img {
    width: 100%;
    height: 266px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    filter: hue-rotate(-10deg);
    object-fit: cover;
    transition: all 0.3s ease;
}
.news-l-box:hover {
    box-shadow: none;
}
.news-l-box:hover .news-img img {
    filter: hue-rotate(0deg);
    transform: scale(1.1);
}
.news-infos {
    padding: 13px 15px;
}
.news-tit {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}
.news-infos .news-tit {
    height: 45px;
}
.news-des, .news-time {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-9);
}
.news-des {
    margin-bottom: 10px;
    height: 40px;
}

.news-con-r {
    flex: 1;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 10px;
}
.news-con-r .news-tit {
    font-weight: normal;
}
.news-l-li {
    margin: 3px 0;
    padding: 5px 10px;
    cursor: pointer;
}
.news-l-li:hover .news-tit {
    color: var(--primary-blue);
}

.news-more {
    display: block;
    margin:  40px auto 0 auto;
    width: 110px;
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    cursor: pointer;
}
.news-more:hover {    
    color: var(--white);
    background-color: var(--primary-blue);
}