@charset "UTF-8";

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #0052D9;
    --text-color-dark: #131313;
    --text-color-primary: #333;
    --text-color-regular: #666;
    --text-color-secondary: #999;
    --text-font-small: 0.875rem;
    --text-font-base: 1rem;
    --text-font-large: 1.5rem;
    --inner: 1240px;
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

@-webkit-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)
    }
}

@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)
    }
}

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body.lock {
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: var(--inner);
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 8;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    padding-top: 15px;
    padding-bottom: 15px;
    height: 65px;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    margin: 0;
    font-weight: normal;
}

.header-logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo__image {
    width: 60px;
    height: 35px;
}

.header-logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-logo__text {
    color: var(--text-color-primary);
    font-size: var(--text-font-base);
    margin-left: 11px;
}

.header-nav__group {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav__item {
    color: var(--text-color-dark);
    font-size: var(--text-font-base);
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.header-nav__item + .header-nav__item {
    margin-left: 2.9vw;
}

.header-nav__item:hover,
.header-nav__item.active {
    color: var(--primary);
}

.header-nav__item:hover > .header-nav__sub {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-nav__item > icon-font {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.header-nav__item:hover > icon-font {
    transform: rotate(180deg);
}

.header-nav__link {
    width: 100%;
    text-decoration: none;
    color: inherit;
    line-height: 35px;
    transition: color 0.3s ease;
}

.header-nav__sub {
    display: block;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    position: absolute;
    border-radius: 4px;
    background: #FFF;
    min-width: 150px;
    max-width: 200px;
    z-index: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    top: 60px;
}

.header-nav__sub::before {
    position: absolute;
    width: 100%;
    height: 30px;
    content: "";
    transform: translateY(-100%);
}

.header-nav__sub .header-nav__item {
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 35px;
}

.header-nav__sub .header-nav__item + .header-nav__item {
    margin-left: 0;
    border-top: 1px solid #eee;
}

.header-nav__sub .header-nav__link {
    padding-left: 12px;
    padding-right: 12px;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.header-menu {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.header-menu span,
.header-menu span::before,
.header-menu span::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #444444;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu span {
    position: relative;
}

.header-menu span::before {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
}

.header-menu span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
}

.header-menu.active span {
    background-color: transparent;
}

.header-menu.active span:before {
    transform: translateY(7px) rotate(45deg);
}

.header-menu.active span::after {
    transform: translateY(-7px) rotate(-45deg);
}

aside {
    width: 100%;
    position: fixed;
    top: 65px;
    bottom: 0;
    z-index: 3;
    background-color: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

aside.active {
    transform: translateX(0);
}

.aside-nav__group {
    margin: 0;
    padding: 0;
}

.aside-nav__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 0;
}

.aside-nav__item + .aside-nav__item {
    border-top: 1px solid #ededed;
}

.aside-nav__item .aside-nav__item {
    padding-left: 12px;
}

.aside-nav__link {
    line-height: 35px;
    display: flex;
    flex: 1 0 0;
    font-size: 15px;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    color: var(--text-color-dark);
}

.aside-nav__item icon-font {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.aside-nav__item.active icon-font {
    transform: rotate(180deg);
}

.aside-nav__sub {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0;
    margin: 0;
}

.aside-nav__sub .aside-nav__item {
    border: none;
}

footer {
    background-color: #F4F7FC;
}

.footer-main__advantage {
    padding: 45px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

.footer-advantage__item {
    display: flex;
    align-items: center;
    max-width: 23%;
}

.footer-advantage__image {
    width: 48px;
    height: 48px;
}

.footer-advantage__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-advantage__content {
    margin-left: 16px;
}

.footer-advantage__title {
    font-size: var(--text-font-base);
    font-weight: 400;
    color: var(--text-color-dark);
    margin: 0;
}

.footer-advantage__description {
    font-size: var(--text-font-small);
    color: var(--text-color-primary);
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-main__info {
    padding-top: 50px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
}

.footer-info__logo {
    width: 115px;
    height: 35px;
}

.footer-info__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-info__group {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-left: 35px;
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
}

.footer-info__item {
    font-size: var(--text-font-small);
    color: var(--text-color-secondary);
}

.footer-info__item + .footer-info__item {
    margin-left: 32px;
}

.footer-info__item a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright .inner {
    --inner: 1600px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}


.footer-register__link{
    font-size: var(--text-font-small);
    color: var(--text-color-secondary);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-register__link:hover{
    color: var(--primary);
}

header ~ main {
    flex: 1;
}

.banner {
    position: relative;
}

.banner-wrapper{
    padding-bottom: 650px;
    position: relative;
}

.banner-adaptor {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text{
    position: absolute;
    top: 50%;
    left: 18%;
    width: 64%;
    max-width: 615px;
    color: #fff;
    transform: translateY(-50%);
}

.banner-text__title{
    font-size: 48px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner-text__divider{
    width: 30%;
    max-width: 120px;
    border: none;
    height: 3px;
    background-color: #5595FF;
    margin-bottom: 24px;
    margin-left: 0;
    margin-top: 24px;
}

.banner-text__sub{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.section-title {
    text-align: center;
}

.section-title__text {
    color: var(--text-color-dark);
    font-weight: 700;
    font-size: 32px;
    margin: 0;
}

.section-title__sub {
    color: var(--text-color-secondary);
    font-size: var(--text-font-small);
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 0;
}

.section-content {
    margin-top: 64px;
}

.service {
    background: url("../images/service.png") no-repeat center center / cover;
    padding-top: 96px;
    padding-bottom: 96px;
}

.service-title {
    font-size: 2rem;
    font-weight: 400;
    color: #242831;
    text-align: center;
    margin: 0;
}

.service-title__sub {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 0;
    text-align: center;
}

.service-form {
    display: flex;
    margin-top: 40px;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.service-form__label {
    flex: 1 0 0;
    display: block;
}

.service-form__input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 16px;
    border-radius: 0;
    color: var(--text-color-primary);
    font-size: var(--text-font-base);
}

.service-form__button {
    background: var(--primary);
    color: #fff;
    font-size: var(--text-font-base);
    font-weight: 400;
    line-height: 1.4;
    border: none;
    outline: none;
    padding: 17px 68px;
    cursor: pointer;
}

.home-features {
    padding-top: 108px;
    padding-bottom: 108px;
}

.home-features__groups {
    display: flex;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-top: -25px;
    padding: 0;
    margin-bottom: 0;
}

.home-features__group {
    margin-top: 25px;
    margin-left: 25px;
    width: calc(50% - 25px);
    background-color: #fff;
    filter: drop-shadow(0px 0px 42px rgba(0, 0, 0, 0.05));
    padding: 32px 24px;
    display: flex;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.home-features__group:hover {
    filter: drop-shadow(0px 11px 43px rgba(16, 46, 71, 0.10));
    transform: translateY(5px);
}

.home-features__image {
    width: 70px;
    height: 80px;
}

.home-features__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-features__content {
    flex: 1 0 0;
    margin-left: 20px;
}

.home-features__name {
    font-weight: 400;
    font-size: var(--text-font-large);
    color: var(--text-color-primary);
    margin: 0;
    padding-left: 30px;
}

.home-features__items {
    margin-bottom: 0;
    margin-top: 24px;
    list-style: none;
    padding-left: 30px;
}

.home-features__item {
    font-size: var(--text-font-base);
    color: var(--text-color-regular);
    line-height: 1.875;
    position: relative;
}

.home-features__item::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: #3E78FF;
    position: absolute;
    left: -20px;
    top: 10px;
}

.home-features__item + .home-features__item {
    margin-top: 20px;
}

.advantage {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #F8F9FB;
}

.advantage-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -30px;
    margin-top: -30px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.advantage-item {
    margin-left: 30px;
    margin-top: 30px;
    width: calc(20% - 30px);
}

.advantage-item:hover .advantage-img{
    transform: scale(1.2);
}

.advantage-image {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.advantage-text {
    font-weight: 400;
    color: var(--text-color-primary);
    font-size: 1.25rem;
    margin-top: 32px;
    line-height: 1.6;
    text-align: center;
}

.home-structure {
    padding-top: 110px;
    padding-bottom: 110px;
}

.home-structure__content {
    border: 1px solid #eee;
    background: #fff;
    padding: 42px 48px;
    margin-top: 64px;
}

.home-structure__img {
    display: block;
    width: 100%;
}

.about-banner__text{
    margin: 0;
    color: #fff;
    font-size: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.about-intro {
    padding-top: 105px;
    padding-bottom: 120px;
}

.about-intro__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;
}

.about-intro__main {
    flex: 1 0 0;
    margin-right: 40px;
    max-width: 470px;
}

.about-intro__title {
    font-size: 1.25rem;
    color: var(--text-color-dark);
    margin: 0;
    font-weight: 400;
}

.about-intro__text {
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text-color-regular);
    font-size: var(--text-font-small);
}

.about-intro__text p{
    margin: 0;
}

.about-intro__text p::before{
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 7px;
    vertical-align: middle;
}

.about-intro__image {
    width: 45%;
    max-width: 515px;
    max-height: 515px;
}

.about-intro__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-intro__img:hover{
    transform: scale(1.1);
}

.about-culture {
    background: linear-gradient(180deg, #E1F1FE 0%, rgba(211, 235, 254, 0.07) 100%);
    padding-top: 100px;
    padding-bottom: 130px;
}

.about-culture__group {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: -14px;
    margin-left: -14px;
    padding: 0;
    margin-bottom: 0;
}

.about-culture__item {
    margin-left: 14px;
    margin-top: 14px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    width: calc(33.33% - 14px);
    transition: all 0.3s ease;
}

.about-culture__item:hover {
    transform: translateY(-15px);
    box-shadow: 0 39px 34px 0 rgba(40, 64, 85, 0.05);
}

.about-culture__header {
    background-color: #007AE3;
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 6px;
    padding: 32px 90px 30px 32px;
    color: #fff;
}

.about-culture__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
}

/*.about-culture__sub {*/
/*    font-size: var(--text-font-small);*/
/*    margin-top: 16px;*/
/*    margin-bottom: 0;*/
/*    font-weight: 400;*/
/*    opacity: 0.85;*/
/*}*/

.about-culture__body {
    padding: 10px 38px;
}

.about-culture__content {
    border-top: 1px solid #eee;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 170px;
}

.about-culture__content p {
    font-size: var(--text-font-base);
    color: var(--text-color-primary);
    margin: 0;
    line-height: normal;
}

.about-cert {
    padding-top: 110px;
    padding-bottom: 130px;
    display: none;
}

.about-cert__group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3.3vw;
    margin-top: -20px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.about-cert__item {
    margin-left: 3.3vw;
    margin-top: 20px;
    width: calc(25% - 3.3vw);
    padding: 22px;
    background-color: #F5F6F9;
}

.about-cert__image {
    width: 100%;
    padding-bottom: 131%;
    position: relative;
}

.about-cert__adaptor {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.about-cert__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.about-cert__more {
    font-size: var(--text-font-small);
    color: var(--text-color-secondary);
    text-align: center;
    margin-top: 47px;
}

.support-advantage {
    padding-top: 160px;
    padding-bottom: 130px;
    position: relative;
}

.support-advantage__items {
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 4px 10px 0 rgba(18, 35, 55, 0.10);
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: var(--inner);
    padding: 20px;
}

.support-advantage__item {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color-primary);
    line-height: normal;
}

.support-advantage__heavy {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 400;
}

.support-advantage__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.support-advantage__image {
    width: 55%;
    max-width: 670px;
    max-height: 670px;
    overflow: hidden;
}

.support-advantage__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.support-advantage__img:hover{
    transform: scale(1.1);
}

.support-advantage__main {
    width: 30%;
    max-width: 380px;
}

.support-advantage__title {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin: 0;
}

.support-advantage__sub {
    font-size: var(--text-font-small);
    color: var(--text-color-secondary);
    margin-top: 8px;
    font-weight: 400;
    margin-bottom: 0;
}

.support-advantage__groups {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 20px;
}

.support-advantage__group {
    display: flex;
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
}

.support-advantage__group + .support-advantage__group {
    border-top: 1px solid #eee;
}

.support-advantage__series {
    font-size: 3rem;
    font-weight: 400;
    color: #ccc;
    line-height: normal;
}

.support-advantage__text {
    margin-left: 24px;
    flex: 1;
    width: 0;
}

.support-advantage__head {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-color-dark);
    font-weight: 400;
}

.support-advantage__description {
    color: var(--text-color-regular);
    font-size: var(--text-font-small);
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.6;
}

.support-guide {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgba(248, 249, 251, 0.80);
}

.support-guide__table {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
}

.support-guide__header {
    display: table-header-group;
}

.support-guide__header .support-guide__row {
    height: 80px;
    background-color: #3E78FF;
    color: #fff;
}

.support-guide__body {
    display: table-row-group;
}

.support-guide__body .support-guide__row:hover {
    background: rgba(62, 120, 255, 0.40);
}

.support-guide__body .support-guide__col:hover {
    background-color: #3E78FF;
    --text-color-regular: #fff;
    color: var(--text-color-regular);
}

.support-guide__row {
    display: table-row;
    height: 150px;
    transition: background-color 0.3s ease;
    color: var(--text-color-dark);
}

.support-guide__col {
    display: table-cell;
    border: 1px solid #eee;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
    transition: background-color 0.3s ease;
    font-size: var(--text-font-base);
}

.support-guide__group {
    list-style: none;
    padding: 0;
    text-align: left;
    counter-reset: counter;
    margin: 0;
}

.support-guide__item {
    counter-increment: counter;
    color: var(--text-color-regular);
    font-size: var(--text-font-base);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.support-guide__item::before {
    content: counter(counter) ".";
}

.system-module {
    padding-top: 120px;
    padding-bottom: 170px;
}

.system-module__group {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.system-module__item {
    width: 20%;
    border: 1px solid rgba(238, 238, 238, 0.93);
    background-color: #F8F9FB;
    padding: 95px 25px 40px;
    transition: all 0.3s ease;
    position: relative;
}

.system-module__item:nth-child(even) {
    background-color: #fff;
    border-left: none;
    border-right: none;
}

.system-module__item:hover {
    transform: scale(1.1);
    color: #fff;
    border: none;
    --text-color-dark: #fff;
    --text-color-primary: #fff;
    z-index: 1;
    background: #3E78FF;
    box-shadow: 0 10px 32px 2px rgba(28, 60, 135, 0.20);
}

.system-module__icon {
    font-size: 2rem;
}

.system-module__title {
    margin-top: 24px;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.25rem;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

.system-module__text {
    margin-top: 24px;
    color: var(--text-color-primary);
    font-size: var(--text-font-base);
    line-height: 1.6;
    min-height: 80px;
    margin-bottom: 0;
}

.system-exec {
    background-color: #282828;
    padding-top: 120px;
    padding-bottom: 120px;
}

.system-exec__title {
    color: #fff;
    margin: 0;
}

.system-exec__content {
    margin-top: 40px;
    display: flex;
}

.system-exec__main {
    width: 38.33%;
    max-width: 460px;
    margin-right: 12px;
}

.system-exec__group {
    list-style: none;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
}

.system-exec__item {
    color: var(--text-color-primary);
    padding: 32px 10px;
    font-size: 1.25rem;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
}

.system-exec__item:hover {
    color: #fff;
    background-color: #3E78FF;
}

.system-exec__side {
    flex: 1 0 0;
}

.system-exec__image {
    padding-bottom: 74.5%;
    position: relative;
    overflow: hidden;
}

.system-exec__adaptor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.system-exec__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.system-exec__img:hover{
    transform: scale(1.1);
}

.system-scene {
    padding-top: 120px;
    padding-bottom: 175px;
}

.system-scene__tab {
    display: flex;
    justify-content: center;
}

.system-scene__tab .swiper-slide {
    width: auto;
}

.system-scene__label {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 45px;
    line-height: 42px;
    position: relative;
    display: block;
    --label-after-scale: 0;
}

.system-scene__label::after {
    content: "";
    display: block;
    width: 100%;
    background-color: #3E78FF;
    height: 3px;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scaleX(var(--label-after-scale));
}

.system-scene__tab .slide-active .system-scene__label {
    --label-after-scale: 1;
}

.system-scene__banner {
    margin-top: 80px;
    position: relative;
    display: none;
}

.system-scene__image {
    padding-bottom: 360px;
    position: relative;
}

.system-scene__adaptor {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.system-scene__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.system-scene__prev,
.system-scene__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 20px;
    background-color: #F7F7F9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

.system-scene__prev {
    left: 10px;
}

.system-scene__next {
    right: 10px;
}

.swiper-button-disabled.system-scene__prev,
.swiper-button-disabled.system-scene__next {
    cursor: not-allowed;
    opacity: 0.6;
}

.partner-company {
    padding-top: 120px;
    padding-bottom: 150px;
    --inner: 1420px;
}

.partner-company__group {
    margin-top: -60px;
    margin-left: -60px;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.partner-company__item {
    height: 65px;
    margin-left: 60px;
    margin-top: 60px;
    /*overflow: hidden;*/
}

.partner-company__img {
    display: block;
    height: 100%;
    max-width: 260px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
}

.partner-company__img:hover{
    transform: scale(1.1);
}

.partner-more{
    padding-top: 120px;
    padding-bottom: 95px;
    background: #F5F5F7;
}

.partner-more__table {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    background-color: #fff;
}

.partner-more__body {
    display: table-row-group;
}

.partner-more__body + .partner-more__body{
    display: none;
}

.partner-more__table.active .partner-more__body{
    display: table-row-group;
}

.partner-more__row {
    display: table-row;
    height: 58px;
}

.partner-more__col {
    display: table-cell;
    padding: 12px;
    border: 1px solid #eee;
    color: var(--text-color-primary);
    font-size: var(--text-font-base);
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
}

.partner-more__col:hover {
    background-color: #007AE3;
    color: #fff;
}

.partner-more__action {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.partner-more__action.hide{
    display: none;
}

.partner-more__action span{
    cursor: pointer;
    color: #0166EE;
    transition: color 0.3s ease;
}

.partner-more__action icon-font{
    margin-left: 5px;
    vertical-align: -0.15em;
}
