* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: SoBlack;
    src: url('../fonts/SourceSans3-Black.otf');
}

@font-face {
    font-family: SoBold;
    src: url('../fonts/SourceSans3-Bold.otf');
}

@font-face {
    font-family: SoRegular;
    /* src: local('SourceHanSansCN-Regular.otf'), local('Source Han Sans CN Regular.otf'); */
    src: url('../fonts/SourceSans3-Regular.otf');
}

@font-face {
    font-family: SoLight;
    /* src: local('SourceHanSansCN-Light.otf'), local('Source Han Sans CN Light.otf'); */
    src: url('../fonts/SourceSans3-Light.otf');
}

:root {
    --ratio-size: calc(100vw / 1920);
    --article-type-area: max(100px, calc(var(--ratio-size) * 420));
    --type-area: max(50px, calc(var(--ratio-size) * 240));
    --main-color: #26298F;
    --header-height: 80px;

    /* --number-size: max(44px, calc(var(--ratio-size) * 88)); */
    --number-size: max(36px, calc(var(--ratio-size) * 60));
    --data-name-size: max(20px, calc(var(--ratio-size) * 24));
    --small-data-name-size: max(18px, calc(var(--ratio-size) * 22));
    /* --big-title-size: max(34px, calc(var(--ratio-size) * 68)); */
    --big-title-size: max(34px, calc(var(--ratio-size) * 48));
    /* --title-size: max(24px, calc(var(--ratio-size) * 48)); */
    --title-size: max(24px, calc(var(--ratio-size) * 40));
    --inside-title-size: max(24px, calc(var(--ratio-size) * 38));
    --big-text-size: max(22px, calc(var(--ratio-size) * 28));
    --text-size: 18px;
    --middle-text-size: 16px;
    --small-text-size: 14px;

    --common-padding-top: calc(var(--ratio-size) * 120);
    --common-padding-bottom: calc(var(--ratio-size) * 120);

    font-family: 'SoRegular';
    font-size: var(--text-size);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    text-align: left;
}

ol,
li {
    list-style: none;
}

ol,
ol li {
    list-style-type: decimal;
}

img,
svg {
    display: block;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

sup {
    vertical-align: super;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

strong em {
    font-weight: bold;
}

.type-area {
    padding: 0 var(--type-area);
}

.article-type-area {
    padding: 0 var(--article-type-area);
}

.common-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    /* min-width: 195px; */
    /* padding: max(10px, calc(var(--ratio-size) * 15)) max(25px, calc(var(--ratio-size) * 32)); */
    /* border: 1px solid #fff;
    border-radius: 100000px; */
    font-family: 'PoRegular', 'SoRegular';
    font-size: var(--small-text-size);
    transition: all .5s;
}

.common-btn a svg {
    transition: all .5s;
}


.common-btn a:hover svg {
    transform: translateX(10px);
}

.common-btn a p {
    padding-right: 10px;
}

/* .common-btn.hover-white a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
} */

.inside-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max(200px, calc(var(--ratio-size) * 560));
    margin-top: var(--header-height);
    color: #fff;
}

.inside-banner .banner-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inside-banner .inside-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inside-banner .inside-banner-content .title {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.inside-banner .inside-banner-content .text {
    margin-top: 10px;
    font-family: 'PoRegular', 'SoRegular';
}

.common-switch-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.common-switch-nav a {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: var(--small-text-size);
    color: var(--main-color);
    opacity: .5;
}

.common-switch-nav.platform-nav a {
    font-size: var(--middle-text-size);
    font-weight: bold;
}

.common-switch-nav .active a {
    opacity: 1;
}

.common-switch-nav .active a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #EC1B23;
}

.common-switch-nav-no-bg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
}

.common-switch-nav-no-bg a,
.common-switch-nav-no-bg span {
    position: relative;
    display: block;
    padding: 3px 0;
    font-size: var(--small-text-size);
    color: var(--main-color);
    opacity: .5;
    cursor: pointer;
}

.common-switch-nav-no-bg .active a,
.common-switch-nav-no-bg .active span {
    opacity: 1;
}

.common-switch-nav-no-bg .active a::after,
.common-switch-nav-no-bg .active span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #EC1B23;
}

.common-breadcrumb-nav {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 2.1;
}

.common-breadcrumb-nav li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.common-breadcrumb-nav li p,
.common-breadcrumb-nav li a {
    display: block;
    max-width: 15em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.common-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.common-pagination ul li.hidden a {
    /* display: none; */
    cursor: text;
}

.common-pagination ul li.hidden a:hover {
    color: #000;
}

/* .common-pagination ul li.first,
.common-pagination ul li.last {
    display: none;
} */

.common-pagination ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(40px, calc(var(--ratio-size) * 50));
    height: max(40px, calc(var(--ratio-size) * 50));
    /* border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .2); */
    transition: all .5s;
}

.common-pagination ul li.previous a,
.common-pagination ul li.next a {
    position: relative;
    /* border-radius: 2000px;
    background-color: #F4F3F3;
    border: none; */
}

.common-pagination ul li.first a,
.common-pagination ul li.last a,
.common-pagination ul li.previous a,
.common-pagination ul li.next a {
    position: relative;
    /* border-radius: 2000px;
    background-color: #F4F3F3;
    border: none; */
}

.common-pagination ul li.previous a::after,
.common-pagination ul li.next a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #ff0000; */
    background: url('../images/arrow-line-svg.svg') no-repeat center/cover;
}

.common-pagination ul li.previous a::after {
    transform: rotate(180deg);
}

.common-pagination ul li.first a,
.common-pagination ul li.last a {
    width: 100px;
}

.common-pagination ul li.selected a {
    border-color: var(--main-color);
    color: var(--main-color);
}

.common-pagination ul li a:hover {
    /* background-color: var(--main-color); */
    color: var(--main-color);
}

.common-pagination.first-page ul li.first a:hover,
.common-pagination.first-page ul li.previous a:hover,
.common-pagination.last-page ul li.last a,
.common-pagination.last-page ul li.next a {
    /* background-color: #F4F3F3; */
    color: #000;
    cursor: text;
}

.common-hr {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
}

.common-hr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #EC1B23;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
}

.viewer-open header {
    padding-right: 15px;
}

header .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
    border-bottom: 1px solid #D5D5D5;
}

header .top-content .logo img {
    height: 50px;
}

header nav {
    height: 100%;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
    font-size: var(--small-text-size);
    cursor: pointer;
    color: var(--main-color);
}

header nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

header nav ul li p {
    position: relative;
    transition: all .5s;
}

header nav ul li p::after,
header nav ul li p::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    border-bottom: 1px solid #EC1B23;
    transition: all .5s;
}

header nav ul li p::after {
    left: auto;
    right: 50%;
}

header nav.active ul li p {
    opacity: .5;
}

header nav ul li.active p {
    opacity: 1;
}

header nav ul li.active p::after,
header nav ul li.active p::before {
    width: 50%;
}

header .function-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .function-list .phone-menu-icon {
    /* display: flex; */
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

header .function-list .phone-menu-icon span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transition: all .5s;
}

header .function-list .phone-menu-icon span:nth-child(2) {
    background-color: transparent;
}

header .function-list .phone-menu-icon span:nth-child(2)::after,
header .function-list .phone-menu-icon span:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: all .5s;
}

header .function-list .phone-menu-icon.active span:nth-child(1),
header .function-list .phone-menu-icon.active span:nth-child(3) {
    opacity: 0;
}

header .function-list .phone-menu-icon.active span:nth-child(2)::after {
    transform: rotate(45deg);
}

header .function-list .phone-menu-icon.active span:nth-child(2)::before {
    transform: rotate(-45deg);
}

header .function-list .switch-lang {
    position: relative;
    cursor: pointer;
}

header .function-list .switch-lang .selected-lang {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .function-list .switch-lang .lang-list-content {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    padding-top: 10px;
}

header .function-list .switch-lang .lang-list {
    position: relative;
    padding: 5px 0;
    padding-right: 15px;
    padding-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    white-space: nowrap;
    font-size: var(--middle-text-size);
}

header .function-list .switch-lang .lang-list a {
    display: block;
    padding: 3px 10px;
    transition: all .5s;
}

header .function-list .switch-lang .lang-list a:hover {
    color: var(--main-color);
}

header .function-list .switch-lang .lang-list::after {
    content: '';
    position: absolute;
    top: 0;
    right: 40px;
    width: 10px;
    height: 10px;
    border: 1px solid #c1c1c1;
    border-bottom-color: transparent;
    border-right-color: transparent;
    background-color: #fff;
    transform: rotate(45deg) translateY(calc(-100% + 2px));
}

header .second-nav-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* min-height: 400px; */
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

header .type-text-nav {
    display: flex;
}

header .catalog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 270px;
    padding-top: 10px;
    padding-right: 10px;
    border-right: 1px solid #D5D5D5;
}

header .catalog-list .item {
    display: flex;
    align-items: center;
    /* font-size: var(--middle-text-size);
    cursor: pointer; */
    font-size: var(--text-size);
    font-weight: bold;
}

header .catalog-list .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 28px;
    height: 31px; */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F2F2F2;
}

header .catalog-list .item .icon img {
    max-width: 70%;
    max-height: 70%;
}

header .catalog-list .item .name {
    flex: 1;
    line-height: 1.875;
    margin-left: 10px;
    margin-right: 14px;
}

header .catalog-list .item.active .name {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

header .catalog-list .item.active .arrow path {
    stroke: #26298F;
}

header .catalog-list .item:hover .name {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

header .catalog-list .item:hover .arrow path {
    stroke: #26298F;
}

header .detail-content {
    flex: 1;
    padding-right: 30px;
}

header .type-text-nav .detail-content .detail-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 750px;
    padding-left: 45px;
    padding-top: 12px;
}

header .type-text-nav .detail-content .detail-nav-list.layout-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

header .type-text-nav .detail-content .item {
    min-width: 200px;
}

header .type-text-nav .detail-content .item .title {
    padding-bottom: 13px;
    border-bottom: 1px solid #D5D5D5;
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--middle-text-size); */
    font-size: var(--text-size);
    font-weight: bold;
}

header .type-text-nav .detail-content .item ul {
    padding-top: 11px;
    font-size: var(--small-text-size);
    color: #666666;
    line-height: 2.14;
}

header .type-text-nav .detail-content .item ul.platform-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 80px;
    padding-top: 0;
}

header .type-text-nav .detail-content .item .platform-name {
    /* color: #000; */
    color: #2E3091;
    font-weight: bold;
    /* border-bottom: 1px solid #D5D5D5; */
}

header .type-text-nav .detail-content .item a {
    position: relative;
    display: inline-block;
    transition: all .5s;
}

header .type-text-nav .detail-content .item a span {
    position: absolute;
    top: 0;
    right: 0;
    color: #ff0000;
    font-size: 12px;
    transform: translate(120%, -10%);
}

header .type-text-nav .detail-content .item a:hover {
    color: var(--main-color);
}

header .type-text-nav .extra-pic {
    width: calc(var(--ratio-size) * 320);
    height: calc(var(--ratio-size) * 180);
    margin-left: auto;
}

header .type-text-nav .extra-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .type-icon-nav {
    display: flex;
    justify-content: center;
}

header .type-icon-nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 55px;
}

header .type-icon-nav ul li {
    text-align: center;
}

header .type-icon-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--middle-text-size);
}

header .type-icon-nav ul .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 80px;
    height: 80px; */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F2F2F2;
}

header .type-icon-nav ul .icon img {
    /* max-width: 90%;
    max-height: 90%; */
    max-width: 55%;
    max-height: 70%;
}

header .type-icon-nav ul li a .title {
    margin-top: 7px;
}

header .type-icon-nav ul li a:hover {
    color: var(--main-color);
}

header .type-normal-nav {
    display: flex;
}

header .type-normal-nav .detail-nav-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 50px;
    padding-top: 12px;
    margin-right: calc(var(--ratio-size) * 170);
}

header .type-normal-nav .item .title {
    padding-bottom: 13px;
    border-bottom: 1px solid #D5D5D5;
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--middle-text-size); */
    font-size: var(--text-size);
    font-weight: bold;
}

header .type-normal-nav .item ul {
    padding-top: 11px;
    font-size: var(--small-text-size);
    color: #666666;
    line-height: 2.14;
}

header .type-normal-nav .extra-pic {
    width: calc(var(--ratio-size) * 320);
    height: calc(var(--ratio-size) * 180);
    margin-left: auto;
}

header .type-normal-nav .extra-pic img {
    width: 100%;
}

header .type-normal-nav .detail-nav-list .item a:hover {
    color: var(--main-color);
}

header .type-text-nav .detail-content .third-nav-floor,
header .type-text-nav .detail-content .third-nav-floor.layout-list,
header .second-nav-floor,
header .type-icon-nav,
header .type-normal-nav,
header .type-text-nav,
header .second-nav-content {
    display: none;
}

footer {
    position: relative;
    z-index: 2;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    background-color: #000;
    background-image: linear-gradient(to top, #0F103E, rgba(15, 16, 62, 0));
    color: rgba(255, 255, 255, .5);
}

footer .footer-top {
    display: flex;
    padding-top: max(40px, calc(var(--ratio-size) * 80));
    padding-bottom: max(40px, calc(var(--ratio-size) * 97));
}

.back-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(-50%);
    z-index: 6;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00ADEE;
    transition: all .5s;
    animation: flickerAn 2s linear infinite alternate;
}

.back-top-btn:hover {
    cursor: pointer;
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

footer .footer-top .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    /* max-width: 500px; */
}

footer .footer-top .left .logo img {
    width: max(170px, calc(var(--ratio-size) * 180));
}



footer .footer-top .follow-us ul {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    height: 40px;
}

footer .footer-top .follow-us ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .2);
    position: relative;
    transition: all .5s;
}

footer .footer-top .follow-us ul li:hover {
    background-color: var(--main-color);
}

footer .footer-top .follow-us ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

footer .footer-top .follow-us ul li .icon {
    max-width: 25px;
    max-height: 18px;
}

footer .footer-top .follow-us ul li .qr {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 20px, 0);
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

footer .footer-top .follow-us ul li:hover .qr {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
}



footer .footer-top .select-city {
    position: relative;
    z-index: 3;
    width: 230px;
    margin-top: 30px;
}

footer .footer-top .selected-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
    font-size: var(--small-text-size);
    color: #fff;
    cursor: pointer;
    transition: all .5s;
}

/* footer .footer-top .selected-city:hover {
    background-color: rgb(46, 48, 145);
} */

footer .footer-top .selected-city .icon svg {
    display: block;
}

footer .footer-top .select-city ul {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 100%;
    font-size: var(--small-text-size);
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    border-radius: 10px;
}

footer .footer-top .select-city ul li {
    width: 100%;
    padding: 5px 20px;
    cursor: pointer;
    border-bottom: 1px solid #e7e7e7;
}

footer .footer-top .select-city ul li:hover {
    background-color: rgb(46, 48, 145);
    color: #fff;
}

footer .footer-top .city-message {
    display: none;
    margin-top: 13px;
    font-size: var(--small-text-size);
}

footer .footer-top .city-message:nth-of-type(1) {
    display: block;
}

footer .footer-top .city-message li {
    display: flex;
    margin-bottom: 13px;
}

footer .footer-top .city-message .part-one {
    display: inline-block;
}

footer .footer-top .city-message .part-one-content {
    display: flex;
    align-items: center;
}

footer .footer-top .city-message .show-text {
    flex: 1;
    color: #fff;
}

footer .footer-top .city-message .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 14px;
    margin-right: 10px;
}

footer .footer-top .city-message .icon img {
    max-width: 100%;
    max-height: 100%;
}

footer .footer-top .nav-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 14px;
    margin-left: calc(var(--ratio-size) * 300);
    font-size: var(--small-text-size);
}

footer .footer-top .nav-content .footer-nav {
    min-width: 100px;
}

footer .footer-top .nav-content .footer-nav li {
    margin-bottom: 8px;
}

footer .footer-top .nav-content .footer-nav li a[href] {
    position: relative;
}

footer .footer-top .nav-content .footer-nav li a[href]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #EC1B23;
    transition: all .5s;
}

footer .footer-top .nav-content .footer-nav li a[href]:hover::after {
    /* color: var(--main-color); */
    width: 100%;
}

footer .footer-top .follow-us {
    width: 100%;
    margin-top: 20px;
}

footer .footer-top .follow-us .first-text,
footer .footer-top .nav-content .footer-nav .first-text,
footer .footer-top .nav-content .follow-us .first-text {
    margin-bottom: 20px;
    font-size: var(--middle-text-size);
    color: #fff;
    /* font-family: 'PoMedium', 'SoMedium'; */
}

footer .footer-top .nav-content .follow-us ul {
    display: flex;
    gap: 10px;
    height: 40px;
}

footer .footer-top .nav-content .follow-us ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .2);
    position: relative;
}

footer .footer-top .nav-content .follow-us ul li .icon {
    max-width: 18px;
    max-height: 18px;
}

footer .footer-top .nav-content .follow-us ul li .qr {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 20px, 0);
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

footer .footer-top .nav-content .follow-us ul li:hover .qr {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
}

footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: var(--small-text-size);
}

footer .footer-bottom .left {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}

footer .footer-bottom .left a {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .footer-bottom .left a img {
    width: 15px;
}

footer .footer-bottom .right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
}

footer .footer-bottom .right .emphasize {
    color: #fff;
}

.phone-menu-left {
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 8;
    width: 20%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, .2);
    transform: translateX(-100%);
    transition: all .5s;
}

.phone-menu-left.active {
    transform: translateX(0);
}

.phone-menu-main {
    position: fixed;
    top: var(--header-height);
    right: 0;
    z-index: 8;
    width: 80%;
    height: calc(100vh - var(--header-height));
    background-color: #fff;
    font-size: 16px;
    transform: translateX(100%);
    transition: all .5s;
}

.phone-menu-main.active {
    transform: translateX(0);
}

.phone-menu-main li {
    display: flex;
    border-bottom: 1px solid #e9e9e9;
}

.phone-menu-main li.platform-name {
    font-weight: bold;
}

.phone-menu-main .back-floor .back-icon svg {
    transform: rotate(180deg);
}

.phone-menu-main .back-floor .back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    background-color: var(--main-color);
}

.phone-menu-main .back-floor p {
    padding: 10px 10px;
}

.phone-menu-main .back-floor svg path {
    stroke: #fff;
}


.phone-menu-main li a {
    padding: 10px 20px;
    padding-right: 10px;
    flex: 1;
}

.phone-menu-main li .more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    background-color: var(--main-color);
}

.phone-menu-main li .more-icon path {
    stroke: #fff;
}

.phone-menu-main .second-nav,
.phone-menu-main .third-nav,
.phone-menu-main .fourth-nav,
.phone-menu-main .next-floor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: all .5s;
    border-left: 1px solid #e9e9e9;
}

.phone-menu-main .third-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.index-page .banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.index-page .banner .mobile-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .banner .text-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-left: var(--type-area);
    padding-right: max(100px, calc(var(--ratio-size) * 365));
    padding-bottom: 5%;
    color: #fff;
}

.index-page .banner .text-content .title {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.index-page .banner .text-content .text {
    margin-top: 13px;
    font-family: 'PoRegular', 'SoRegular';
}

.index-page .banner .text-content .play-btn {
    width: max(100px, calc(var(--ratio-size) * 170));
    height: max(100px, calc(var(--ratio-size) * 170));
}

.index-page .banner .text-content .play-btn img {
    width: 100%;
}

.index-page .banner .slide-down-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-text-size);
    color: #fff;
}

.index-page .banner .slide-down-icon img {
    width: 40px;
    margin-bottom: 3px;
    animation: slideDown 1.5s linear alternate infinite;
}

.index-page .banner .skip-video {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    display: none;
    width: 480px;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: rgba(255, 255, 255, .2);
    text-align: center;
    font-size: var(--middle-text-size);
    color: #fff;
    backdrop-filter: blur(5px);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    cursor: pointer;
}

.index-page .banner .skip-video .progress-bar {
    width: 64px;
    height: 1px;
    margin: 0 auto;
    margin-top: 6px;
    background-color: rgba(255, 255, 255, .2);
}

.index-page .banner .skip-video .completed-progress {
    display: block;
    width: 30%;
    height: 100%;
    background-color: #fff;
}

.index-page .banner-second-banner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    border-radius: 50px;
    overflow: hidden;
    background-color: #000;
}

.index-page .banner-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.index-page .banner-swiper .swiper-slide {
    position: relative;
    height: auto;
}

.index-page .banner-swiper .video-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-page .banner-swiper .swiper-slide .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .banner-swiper .video-slide .video-play-icon {
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    cursor: pointer;
}

.index-page .banner-swiper .video-slide .icon img {
    width: 45px;
}

.index-page .banner-swiper .bg-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .banner-swiper .description {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: var(--header-height);
    margin-top: 150px;
}

.index-page .banner-swiper .description .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--big-title-size);
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1.5s;
}

.index-page .banner-swiper .description .text {
    width: calc(var(--ratio-size) * 730);
    margin-top: 18px;
    font-size: var(--big-text-size);
    line-height: 1.5;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.5s;
}

.index-page .banner-swiper .description .common-btn {
    margin-top: 40px;
    opacity: 0;
    /* transform: translateY(50px); */
    transition: all 1.5s;
}

.index-page .banner-swiper .swiper-slide-active .description .title {
    transform: translateY(0);
    opacity: 1;
}

.index-page .banner-swiper .swiper-slide-active .description .text {
    transform: translateX(0);
    opacity: 1;
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn {
    transform: translateY(0);
    opacity: 1;
    transition: all 1.5s .5s;
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn a {
    border: none;
    min-width: auto;
    padding: 0;
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn a svg {
    transition: all .5s;
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn a:hover svg {
    transform: translateX(10px);
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn a path {
    transition: all .5s;
}

.index-page .banner-swiper .swiper-slide-active .description .common-btn a:hover path {
    /* background-color: var(--main-color); */
    stroke: #b8b8b8;
}


.index-page .banner-swiper .swiper-function-box {
    position: absolute;
    bottom: 140px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.index-page .banner-swiper .banner-swiper-pagination {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    gap: 10px;
    width: auto;
    height: 4px;
}

.index-page .banner-swiper .banner-swiper-pagination .banner-bullet {
    display: block;
    width: 30px;
    height: 100%;
    border-radius: 10000px;
    background-color: rgba(255, 255, 255, .5);
    transition: all .5s;
    cursor: pointer;
}

.index-page .banner-swiper .banner-swiper-pagination .banner-bullet.banner-bullet-active {
    width: 90px;
    background-color: rgba(255, 255, 255, 1);
}

.index-page .banner-swiper .swiper-btn-box {
    display: flex;
    justify-content: space-between;
    /* gap: max(25px, calc(var(--ratio-size) * 40)); */
    /* gap: 110px; */
    width: 170px;
    margin-bottom: 20px;
    /* height: 80px; */
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button {
    width: max(30px, calc(var(--ratio-size) * 40));
    height: max(30px, calc(var(--ratio-size) * 40));
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button:hover svg circle,
.index-page .banner-swiper .swiper-btn-box .banner-swiper-button:hover svg path {
    transition: all .5s;
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button:hover svg circle {
    /* background-color: var(--main-color); */
    fill: #b8b8b8;
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button:hover svg path {
    stroke: #fff;
}

/* .index-page .banner-swiper .swiper-btn-box .banner-swiper-button img {
    max-width: 100%;
    object-fit: contain;
} */

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* animation: flickerAn 1s infinite linear alternate; */
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button svg:hover {
    animation: flickerAn 1s infinite linear alternate;
}

@keyframes flickerAn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.index-page .banner-swiper .swiper-btn-box .banner-swiper-button-prev {
    transform: rotate(180deg);
}

.index-page .car-application {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: var(--header-height);
    color: #fff;
    background-image: linear-gradient(to bottom, #000, #1c1e5e 40%, #1c1e5e 60%, #000);
    overflow: hidden;
}

.index-page .car-application .description {
    position: relative;
    z-index: 3;
    margin-top: 60px;
}

.index-page .car-application .description .icon {
    width: 66px;
    margin-top: 17px;
}

.index-page .car-application .description .icon img {
    width: 100%;
}

.index-page .car-application .description .title {
    /* margin-top: 17px; */
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.index-page .car-application .description .text {
    margin-top: 17px;
}

.index-page .car-application .radar-btn-list {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 20px;
}

.index-page .car-application .radar-btn-list .item-btn {
    width: 180px;
    text-align: center;
    opacity: .5;
    cursor: pointer;
    transition: all .5s;
}

.index-page .car-application .radar-btn-list .item-btn.active {
    opacity: 1;
}

.index-page .car-application .radar-btn-list .item-btn:hover {
    opacity: 1;
}

.index-page .car-application .radar-btn-list .item-btn .line {
    width: 100%;
    height: 1px;
    margin-top: 20px;
    background-color: #fff;
}

.index-page .car-application .car-model-three {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .car-application canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .car-application .canvas-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.index-page .car-application .car-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.index-page .car-application .car-container .car {
    position: relative;
    /* width: 523px; */
    width: 18%;
}

.index-page .car-application .car-container .car-model {
    width: 100%;
}

.index-page .car-application .radar-part {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* display: none; */
    width: 100%;
    height: 100%;
}

.index-page .car-application .radar-part:nth-of-type(1) {
    z-index: 4;
}

.index-page .car-application .radar-item {
    position: absolute;
    display: none;
    opacity: 0;
}

.index-page .car-application .radar-item .line {
    position: absolute;
}

.index-page .car-application .radar-item p {
    position: absolute;
    white-space: nowrap;
}

.index-page .car-application .dot {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
}

.index-page .car-application .dot .bg-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.index-page .car-application .dot:hover {
    background-color: rgba(255, 255, 255, 0);
}

.index-page .car-application .dot:hover a {
    background-color: var(--main-color);
}

.index-page .car-application .dot a:hover~.bg-dot:nth-of-type(1) {
    animation: spreadAn 3s linear infinite;
    background-color: rgba(255, 255, 255, .4);
}

.index-page .car-application .dot a:hover~.bg-dot:nth-of-type(2) {
    animation: spreadAn 3s 1.5s linear infinite;
    background-color: rgba(255, 255, 255, .4);
}

.index-page .car-application .dot a {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all .5s;
}

.index-page .car-application .dot img,
.index-page .car-application .dot svg {
    display: block;
    width: 70%;
    animation: scrollAn 10s linear infinite;
}

.index-page .car-application .radar-one-part .radar-item.first-radar {
    left: 10%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-one-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.index-page .car-application .radar-one-part .radar-item.first-radar p {
    left: -210px;
    top: -42px;
}

.index-page .car-application .radar-one-part .radar-item.second-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-one-part .radar-item.second-radar .line {
    top: 50%;
    right: -60%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-one-part .radar-item.second-radar p {
    left: -266px;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .car-application .radar-one-part .radar-item.third-radar {
    left: 10%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-one-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
}

.index-page .car-application .radar-one-part .radar-item.third-radar p {
    left: -210px;
    top: 42px;
}

.index-page .car-application .radar-one-part .radar-item.fourth-radar {
    right: 1%;
    top: 13%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-one-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
}

.index-page .car-application .radar-one-part .radar-item.fourth-radar p {
    right: -210px;
    top: -42px;
}

.index-page .car-application .radar-one-part .radar-item.fifth-radar {
    right: 1%;
    top: 50%;
    transform: translate(50%, -50%);
}

.index-page .car-application .radar-one-part .radar-item.fifth-radar .line {
    top: 50%;
    left: -60%;
    transform: translate(50%, -50%) rotateY(180deg);
}

.index-page .car-application .radar-one-part .radar-item.fifth-radar p {
    right: -175px;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .car-application .radar-one-part .radar-item.sixth-radar {
    right: 1%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-one-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
}

.index-page .car-application .radar-one-part .radar-item.sixth-radar p {
    right: -210px;
    top: 42px;
}

.index-page .car-application .radar-two-part .radar-item.first-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-two-part .radar-item.first-radar .line {
    top: 50%;
    right: -60%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-two-part .radar-item.first-radar p {
    left: -201px;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .car-application .radar-three-part .radar-item.first-radar {
    left: 38%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-three-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.index-page .car-application .radar-three-part .radar-item.first-radar p {
    left: -195px;
    top: -42px;
}

.index-page .car-application .radar-three-part .radar-item.second-radar {
    left: 51%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-three-part .radar-item.second-radar .line {
    top: -50%;
    right: 50%;
    transform: translate(50%, -100%) rotate(90deg);
}

.index-page .car-application .radar-three-part .radar-item.second-radar p {
    left: 50%;
    top: -76px;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-three-part .radar-item.third-radar {
    left: 38%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-three-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
}

.index-page .car-application .radar-three-part .radar-item.third-radar p {
    left: -195px;
    top: 42px;
}

.index-page .car-application .radar-three-part .radar-item.fourth-radar {
    right: 20%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-three-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
}

.index-page .car-application .radar-three-part .radar-item.fourth-radar p {
    right: -195px;
    top: -42px;
}

.index-page .car-application .radar-three-part .radar-item.fifth-radar {
    left: 51%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-three-part .radar-item.fifth-radar .line {
    bottom: -50%;
    right: 50%;
    transform: translate(50%, 100%) rotate(270deg);
}

.index-page .car-application .radar-three-part .radar-item.fifth-radar p {
    left: 50%;
    bottom: -84px;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-three-part .radar-item.sixth-radar {
    right: 20%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-three-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
}

.index-page .car-application .radar-three-part .radar-item.sixth-radar p {
    right: -195px;
    top: 42px;
}

.index-page .car-application .radar-three-part .radar-item.seventh-radar {
    left: 60%;
    bottom: 50%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-three-part .radar-item.seventh-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 50%) rotate(180deg);
}

.index-page .car-application .radar-three-part .radar-item.seventh-radar p {
    right: -195px;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .car-application .radar-three-part .radar-item.eighth-radar {
    right: -2%;
    bottom: 31%;
    transform: translateY(50%);
    /* top: 45%;
    transform: translateY(50%); */
}

.index-page .car-application .radar-three-part .radar-item.eighth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 50%) rotate(180deg);
}

.index-page .car-application .radar-three-part .radar-item.eighth-radar p {
    right: -190px;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .car-application .radar-four-part .radar-item.first-radar {
    left: 10%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-four-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.index-page .car-application .radar-four-part .radar-item.first-radar p {
    left: -155px;
    top: -42px;
}

.index-page .car-application .radar-four-part .radar-item.second-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-four-part .radar-item.third-radar {
    left: 10%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-four-part .radar-item.fourth-radar {
    right: 0;
    top: 29%;
    transform: translate(30%, -50%);
}

.index-page .car-application .radar-four-part .radar-item.fifth-radar {
    right: 1%;
    top: 50%;
    transform: translate(50%, -50%);
}

.index-page .car-application .radar-four-part .radar-item.sixth-radar {
    right: 0;
    bottom: 28%;
    transform: translate(30%, 50%);
}

.index-page .car-application .radar-four-part .radar-item.seventh-radar {
    left: 43%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-four-part .radar-item.eighth-radar {
    right: 15%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-four-part .radar-name {
    position: absolute;
    white-space: nowrap;
    text-shadow: 1px 0 0 #444444, -1px 0 0 #444444, 0 1px 0 #444444, 0 -1px 0 #444444;
    opacity: 0;
    display: none;
}

.index-page .car-application .radar-four-part .radar-name.first-text {
    bottom: 20%;
    left: 60%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-four-part .radar-name.second-text {
    bottom: -50%;
    left: 60%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-five-part .radar-item.first-radar {
    left: 6%;
    top: 18%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-five-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.first-radar p {
    left: -200px;
    top: -42px;
}

.index-page .car-application .radar-five-part .radar-item.third-radar {
    left: 4%;
    bottom: 43%;
    transform: translate(-50%, 50%);
}

.index-page .car-application .radar-five-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.third-radar p {
    left: -200px;
    bottom: -33px;
}

.index-page .car-application .radar-five-part .radar-item.fourth-radar {
    right: 6%;
    top: 19%;
    transform: translate(30%, -50%);
}

.index-page .car-application .radar-five-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.fourth-radar p {
    left: 125px;
    top: -42px;
}

.index-page .car-application .radar-five-part .radar-item.sixth-radar {
    right: 5%;
    bottom: 34%;
    transform: translate(30%, 50%);
}

.index-page .car-application .radar-five-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.sixth-radar p {
    left: 125px;
    bottom: -33px;
}

.index-page .car-application .radar-five-part .radar-item.seventh-radar {
    left: 30%;
    top: 19%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-five-part .radar-item.seventh-radar .line {
    left: 50%;
    bottom: 55%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-100px, 50%);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.eighth-radar {
    left: 48%;
    top: 20%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-five-part .radar-item.eighth-radar .line {
    left: 50%;
    bottom: 55%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-100px, 50%);
    width: 100px;
}

.index-page .car-application .radar-five-part .radar-item.first-text {
    top: -100px;
    left: 39%;
}

.index-page .car-application .radar-five-part .radar-item.first-text p {
    transform: translateX(-50%);
}

.index-page .car-application .radar-six-part .radar-item.first-radar {
    left: 17%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.index-page .car-application .radar-six-part .radar-item.first-radar .line {
    left: 50%;
    bottom: -25%;
    transform-origin: left center;
    transform: rotate(90deg) rotateX(180deg) translateX(-100%) translateY(-50%);
    width: 100px;
}

.index-page .car-application .radar-six-part .radar-item.first-radar p {
    top: -120px;
    left: -70px;
}


.index-page .car-application .description-container {
    position: absolute;
    left: 0;
    bottom: max(30px, calc(var(--ratio-size) * 50));
    z-index: 3;
    width: 100%;
    text-align: center;
}

.index-page .car-application .description-container .description-content {
    display: none;
    width: min(100%, 318px);
    margin: 0 auto;
}

.index-page .car-application .description-container .description-content:nth-child(1) {
    display: block;
}

.index-page .car-application .description-container .description-content .text {
    font-size: var(--small-text-size);
}

.index-page .car-application .description-container .description-content .more-btn {
    margin-top: 15px;
}

.index-page .car-application .description-container .description-content .more-btn a {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.index-page .car-application .description-container .description-content .more-btn a svg {
    margin-left: 20px;
    transition: all .5s;
}

.index-page .car-application .description-container .description-content .more-btn a:hover svg {
    transform: translateX(10px);
}

.index-page .car-application .description-container .switch-list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: max(25px, calc(var(--ratio-size) * 35));
}

.index-page .car-application .description-container .switch-list p {
    width: 220px;
    padding-bottom: max(10px, calc(var(--ratio-size) * 20));
    border-bottom: 2px solid #fff;
    text-align: center;
    opacity: .5;
    cursor: pointer;
}

.index-page .car-application .description-container .switch-list p.active {
    opacity: 1;
}

.index-page .car-container-two {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.index-page .car-container-two .car {
    position: relative;
    width: 18%;
    margin-left: 40%;
}

.index-page .car-container-two .car .car-pic {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, .5));
}

.index-page .car-container-two .car .car-pic img {
    width: 100%;
}

.index-page .car-container-two .wave-pic {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
}

.index-page .car-container-two .wave-pic img {
    width: 100%;
    opacity: .9;
}

.index-page .car-container-two .wave-pic:nth-child(1) {
    width: 171%;
}

.index-page .car-container-two .wave-pic:nth-child(2) {
    width: 262%;
}

.index-page .car-container-two .wave-pic:nth-child(3) {
    width: 416%;
}

.index-page .car-container-two .car-text {
    position: absolute;
    top: 60%;
    left: 170%;
    /* transform: translateY(-50%); */
    z-index: 3;
    width: 71%;
}

.index-page .car-container-two .car-text img {
    width: 100%;
}

.index-page .car-container-two .light {
    position: absolute;
    top: 68%;
    left: 80%;
    transform: translateY(-50%);
    width: 226%;
}

.index-page .car-container-two .light img {
    width: 100%;
}

.index-page .car-container-two .person {
    position: absolute;
    top: 95%;
    left: 245%;
    /* transform: translateY(-50%); */
    width: 26%;
}

.index-page .car-container-two .person img {
    width: 100%;
}

.index-page .car-container-two .wave-area-list {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11.5vw;
    width: 100%;
}

.index-page .car-container-two .wave-area-list .item {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 500000px;
    opacity: .2;
    transition: all .5s;
}

.index-page .car-container-two .wave-area-list .item.active {
    opacity: 1;
}

.index-page .car-container-two .wave-area-list.can-click .item:hover {
    cursor: pointer;
    opacity: 1;
}

.index-page .car-container-two .wave-area-list .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.index-page .car-container-two .wave-area-list .item .icon img {
    width: 60%;
    height: 60%;
}

.index-page .car-container-two .wave-area-list .item p {
    padding-left: 17px;
    padding-right: 27px;
}

.index-page .car-container-two .wave-area-list .item .connecting-line {
    position: absolute;
    right: 0;
    z-index: 3;
    transform: translateX(calc(100% - .25vw));
    width: 12vw;
}

.index-page .car-container-two .wave-area-list .item .connecting-line svg {
    width: 100%;
}

.index-page .industrial-application {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: var(--header-height);
    background: url('../images/industrial-banner.jpg') no-repeat center top/cover;
    background-position: bottom center;
    color: #fff;
}

.index-page .industrial-application::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.index-page .industrial-application .description {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.index-page .industrial-application .description .icon {
    width: 66px;
}

.index-page .industrial-application .description .icon img {
    width: 100%;
}

.index-page .industrial-application .description .title {
    margin-top: 17px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.index-page .industrial-application .description .text {
    margin-top: 17px;
}

.index-page .industrial-application .btn-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .industrial-application .btn-list .item {
    position: absolute;
}

.index-page .industrial-application .btn-list .item .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 1000px;
    background-image: linear-gradient(45deg, #2E3091, #00ADEE);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.index-page .industrial-application .btn-list .item .item-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    /* min-width: 288px; */
    padding: 20px;
    /* background-color: rgba(29, 32, 135, .5); */
    background-color: rgba(184, 184, 184, .2);
    border-radius: 1000px;
    cursor: pointer;
}

.index-page .industrial-application .btn-list .item .item-content::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1000px;
    background: linear-gradient(45deg, #2E3091, #00ADEE);
    z-index: -1;
    padding: 4px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
}

.index-page .industrial-application .btn-list .item .more-message {
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 20px;
    /* opacity: 0; */
}

.index-page .industrial-application .btn-list .icon {
    width: 37px;
    height: 40px;
}

.index-page .industrial-application .btn-list .icon img {
    max-width: 100%;
    max-height: 100%;
}

.index-page .industrial-application .btn-list p {
    margin-left: 17px;
    font-family: 'PoRegular', 'SoRegular';
    color: #fff;
}

.index-page .industrial-application .btn-list .industrial-btn {
    position: relative;
    margin-left: auto;
}

.index-page .industrial-application .btn-list .industrial-btn .circle-svg {
    animation: scrollAn 10s linear infinite;
}

.index-page .industrial-application .btn-list .industrial-btn .arrow-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes scrollAn {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scrollIconGAn {
    0% {
        transform: rotate(0) scale(.98);
    }

    100% {
        transform: rotate(360deg) scale(.98);
    }
}

.index-page .industrial-application .btn-list .item:nth-child(1) {
    right: 14%;
    top: 45%;
}

.index-page .industrial-application .btn-list .item:nth-child(2) {
    right: 69%;
    top: 55%;
}

.index-page .industrial-application .btn-list .item:nth-child(3) {
    right: 45%;
    top: 13%;
}

.index-page .industrial-application .mobile-video-bg {
    display: none;
}

.index-page .overview {
    position: relative;
    width: 100%;
    height: 100vh;
}

.index-page .overview .company-message {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0 var(--type-area);
    padding-top: var(--header-height);
    color: #fff;
}

.index-page .overview .company-message .bg-pic {
    --mask-bottom: 90%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;

    mask-image: url('../images/overview-mask-4.svg');
    mask-position: center var(--mask-bottom);
    mask-repeat: no-repeat;
    mask-size: 100%;
    mask-type: alpha;
}

.index-page .overview .company-message .bg-pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* .index-page .overview .company-message .bg-pic.mask {
    mask-image: url('../images/overview-mask-3.svg');
} */

.index-page .overview .company-message .bg-pic .pic-car {
    position: absolute;
    bottom: -186px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    /* width: 362px; */
    width: 280px;
    transform-origin: center;
}

.index-page .overview .company-message .bg-pic .pic-color {
    position: absolute;
    top: 0;
    /* left: 40%; */
    left: 0;
    /* transform: translateX(40%); */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.index-page .overview .company-message .title {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
    text-align: center;
}

.index-page .overview .company-message .text {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    line-height: 1.66;
    text-align: center;
}

.index-page .overview .data-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 var(--type-area);
    padding-top: var(--header-height);
    color: #fff;
}

.index-page .overview .data-content .bg-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .overview .data-content .bg-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .overview .data-content .data-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    padding: 70px 0;
}

.index-page .overview .data-content .data-list .item {
    display: flex;
    align-items: center;
    opacity: 0;
}

.index-page .overview .data-content .data-list .item-content {
    padding-left: 16px;
    border-left: 2px solid #fff;
}

.index-page .overview .data-content .data-list .item:nth-child(2) {
    grid-column: 4/5;
}

.index-page .overview .data-content .data-list .item:nth-child(3) {
    grid-column: 3/4;
}

.index-page .overview .data-content .data-list .item:nth-child(4) {
    grid-column: 1/2;
}

.index-page .overview .data-content .data-list .item .num {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--number-size);
}

.index-page .overview .data-content .data-list .item .unit {
    font-family: 'PoMedium', 'SoRegular';
    font-size: var(--data-name-size);
}

.index-page .overview .data-content .data-list .item .name {
    margin-top: 17px;
}

.index-page .brand-story {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url('../images/brand-story-bg-1.jpg') no-repeat center/cover;
    background-color: #000;
}

.index-page .brand-story .ripple-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* opacity: 0; */
}

.index-page .brand-story .ripple-box img {
    position: absolute;
    left: 50%;
    top: calc(50% + var(--header-height) / 2);
    opacity: 0;
}

.index-page .brand-story .show-stand {
    position: relative;
    display: flex;
    z-index: 3;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding-top: var(--header-height);
}

.index-page .brand-story .show-stand .outer-circle {
    position: relative;
    z-index: 5;
    width: 33.6%;
}

.index-page .brand-story .show-stand .outer-circle .circle-bg {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
}

.index-page .brand-story .show-stand .dot-list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.index-page .brand-story .show-stand .dot-list .item-dot {
    position: absolute;
    width: 3.08vw;
    height: 3.08vw;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.index-page .brand-story .show-stand .dot-list .item-dot.hidden {
    opacity: 0 !important;
}

.index-page .brand-story .show-stand .dot-list .item-dot::before,
.index-page .brand-story .show-stand .dot-list .item-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.index-page .brand-story .show-stand .dot-list .item-dot::before {
    background-color: rgba(255, 255, 255, .3);
}

.index-page .brand-story .show-stand .dot-list .item-dot::after {
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #fff;
}

.index-page .brand-story .show-stand .dot-list .dot-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, .3); */
    border-radius: 50%;
    transition: all .5s;
}

.index-page .brand-story .show-stand .dot-list .dot-bg img {
    width: 50%;
    opacity: 0;
}

.index-page .brand-story .show-stand .dot-list .item-dot::before,
.index-page .brand-story .show-stand .dot-list .item-dot::after {
    transform-origin: center center;
    transition: all .5s;
}

.index-page .brand-story .show-stand .dot-list .item-dot:hover::before,
.index-page .brand-story .show-stand .dot-list .item-dot:hover::after {
    transform-origin: center center;
    opacity: .5;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active::before,
.index-page .brand-story .show-stand .dot-list .item-dot.active::after {
    transform-origin: center center;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active::before {
    background-color: transparent;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5));
    transform: scale(1.3);
    animation: scaleAnim 3s infinite alternate;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active .dot-bg img {
    opacity: 1;
    animation: flickerAn 1s infinite alternate;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active::after {
    width: 8px;
    height: 8px;
    background-color: transparent;
    opacity: 0;
}

@keyframes scaleAnim {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(2);
    }
}

.index-page .brand-story .show-stand .dot-list .item-dot svg {
    display: block;
    width: 50%;
    animation: scrollAn 5s linear infinite;
    transform-origin: center center;
}

.index-page .brand-story .show-stand .dot-list .item-dot svg.hover {
    display: none;
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(1):hover svg.hover,
.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(4):hover svg.hover,
.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(7):hover svg.hover {
    display: block;
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(1):hover svg.default,
.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(4):hover svg.default,
.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(7):hover svg.default {
    display: none;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(1) svg.hover,
.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(4) svg.hover,
.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(7) svg.hover {
    display: block;
}

.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(1) svg.default,
.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(4) svg.default,
.index-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(7) svg.default {
    display: none;
}

@keyframes spreadAn {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(1) {
    top: 15%;
    right: 5.5%;
    transform: translate(-50%, -50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(3) {
    top: 15%;
    left: 14.5%;
    transform: translate(-50%, -50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(5) {
    bottom: 15%;
    left: 14.5%;
    transform: translate(-50%, 50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(6) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.index-page .brand-story .show-stand .dot-list .item-dot:nth-child(7) {
    bottom: 15%;
    right: 5.5%;
    transform: translate(-50%, 50%);
}

.index-page .brand-story .show-stand .dot-message-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1.66;
    opacity: 0;
}

.index-page .brand-story .show-stand .dot-message-list .item-message strong {
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(1) {
    right: -20%;
    top: 5%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(2) {
    right: 25%;
    top: -1%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(3) {
    left: -20%;
    top: 4%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(4) {
    left: -24%;
    top: 50%;
    transform: translateY(-50%);
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(5) {
    left: -20%;
    bottom: 4%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(6) {
    left: 55%;
    bottom: -1%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(7) {
    right: -20%;
    bottom: 4.5%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message .message-content {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%, -50%);
    width: calc(var(--ratio-size) * 377);
}

.nowrap-text {
    white-space: nowrap;
}

.index-page .brand-story .show-stand .dot-message-list .item-message .message-content {
    color: #fff;
}

.index-page .brand-story .show-stand .dot-message-list .item-message .message-content strong {
    font-weight: bold;
}

.index-page .brand-story .dot-message-list .item-message .indication-point img {
    width: 100%;
}

.index-page .brand-story .dot-message-list .item-message:nth-child(1) .indication-point {
    width: calc(var(--ratio-size) * 190);
}

.index-page .brand-story .dot-message-list .item-message:nth-child(2) .indication-point {
    width: 6.4vw;
}

.index-page .brand-story .dot-message-list .item-message:nth-child(3) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotateY(180deg);
}

.index-page .brand-story .dot-message-list .item-message:nth-child(4) .indication-point {
    width: 6.4vw;
    transform: rotateY(180deg);
}

.index-page .brand-story .dot-message-list .item-message:nth-child(5) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotate(180deg);
}

.index-page .brand-story .dot-message-list .item-message:nth-child(6) .indication-point {
    width: 6.4vw;
}

.index-page .brand-story .dot-message-list .item-message:nth-child(7) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotateX(180deg);
}

.index-page .brand-story .dot-message-list .item-message:nth-child(1) .message-content {
    right: -10%;
}

.index-page .brand-story .dot-message-list .item-message:nth-child(2) .message-content {
    right: -10%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(3) .message-content {
    left: -10%;
    transform: translate(-100%, -50%);
    text-align: right;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(4) .message-content {
    left: -10%;
    transform: translate(-100%, -50%);
    text-align: right;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(5) .message-content {
    left: -10%;
    top: auto;
    bottom: 0;
    transform: translate(-100%, 50%);
    text-align: right;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(6) .message-content {
    right: -10%;
}

.index-page .brand-story .show-stand .dot-message-list .item-message:nth-child(7) .message-content {
    right: -10%;
    top: 30%;
}





.index-page .brand-story .show-stand .inside-car {
    position: absolute;
    top: calc(50% + var(--header-height) / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.index-page .brand-story .show-stand .inside-car.active {
    z-index: 5;
}

.index-page .brand-story .show-stand .inside-car .car {
    width: 8.4vw;
    opacity: 0;
}

.index-page .brand-story .show-stand .inside-car .car img {
    width: 100%;
}

.index-page .brand-story .show-stand .inside-car .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.1vw;
}

.index-page .brand-story .show-stand .inside-car .logo svg {
    width: 100%;
    /* transform: scale(2.7); */
    cursor: pointer;
}

.brand-story .show-stand .inside-car .logo.active svg {
    animation: breath 1.5s infinite;
    transform-origin: center center;
}

@keyframes breath {

    0%,
    100% {
        transform: scale(2);
    }

    50% {
        transform: scale(2.2);
    }
}

.index-page .brand-story .show-stand .inside-car .name {
    position: absolute;
    top: 40%;
    /* left: 17vw; */
    left: 1vw;
    transform: translateY(-50%);
    width: 13vw;
}

.index-page .brand-story .show-stand .inside-car .name svg {
    width: 100%;
    /* transform: scale(2.5); */
    transform-origin: left center;
    opacity: 0;
}

.index-page .brand-story .show-stand .radar-range {
    position: absolute;
    width: 100%;
    height: 100%;
}

.index-page .brand-story .show-stand .radar-range .radar-range-canvas,
.index-page .brand-story .show-stand .radar-range .radar-range-canvas-2 {
    width: 100%;
    height: 100%;
}

.index-page .brand-story .show-stand .radar-range .radar-range-canvas-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.index-page .brand-story .mobile-show-text {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, .5); */
}

.index-page .brand-story .mobile-show-text .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 30px var(--type-area);
    /* background-color: #fff; */
}

.index-page .brand-story .mobile-show-text .content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .5;
}

.index-page .brand-story .mobile-show-text .content .text {
    position: relative;
    z-index: 2;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.index-page .brand-story .mobile-show-text .content .text strong {
    font-weight: bold;
}

.index-page .news-contact-us {
    background: url('../images/index-latest-bg.jpeg') no-repeat center/cover;
}

.index-page .latest-news {
    padding-top: max(50px, calc(var(--ratio-size) * 145));
    padding-bottom: max(80px, calc(var(--ratio-size) * 120));
}

.index-page .latest-news .news-top .title {
    font-size: var(--title-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.index-page .latest-news .news-top .description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-page .latest-news .news-top .description .learn-more a {
    display: flex;
    align-items: center;
}

.index-page .latest-news .news-top .description .learn-more a .icon {
    transition: all .5s;
}

.index-page .latest-news .news-top .description .learn-more a:hover .icon {
    transform: translateX(10px);
}

.index-page .latest-news .news-top .news-swiper-button {
    display: flex;
    align-items: center;
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button {
    width: max(50px, calc(var(--ratio-size) * 80));
    height: max(50px, calc(var(--ratio-size) * 80));
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    transition: all .5s;
    border: 1px solid rgba(0, 0, 0, .2);
}

/* .index-page .latest-news .news-top .news-swiper-button .news-swiper-button:hover {
    background-color: var(--main-color);
} */

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button:hover svg path {
    stroke: #fff;
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button svg {
    width: 100%;
    height: 100%;
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button-prev {
    transform: rotate(180deg);
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button svg circle,
.index-page .latest-news .news-top .news-swiper-button .news-swiper-button svg path {
    transition: all .5s;
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button:hover svg circle {
    /* background-color: var(--main-color); */
    fill: var(--main-color);
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button:hover svg path {
    stroke: #fff;
}

.index-page .latest-news .news-top .news-swiper-button .news-swiper-button:hover {
    border: none;
}

/* ------ */
.index-page .latest-news .custom-news-btn {
    display: flex;
    justify-content: flex-end;
    margin-right: var(--type-area);
}

.index-page .latest-news .custom-news-btn .news-swiper-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button {
    width: max(40px, calc(var(--ratio-size) * 60));
    height: max(40px, calc(var(--ratio-size) * 60));
    cursor: pointer;
    overflow: hidden;
    /* border-radius: 50%; */
    /* transition: all .5s; */
    /* border: 1px solid rgba(0, 0, 0, .2); */
}

/* .index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover {
    background-color: var(--main-color);
} */

/* .index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover svg path {
    stroke: #fff;
} */

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button svg {
    width: 100%;
    height: 100%;
}

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button-prev {
    transform: rotate(180deg);
}

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button svg circle,
.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button svg path {
    transition: all .5s;
}

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover svg circle {
    /* background-color: var(--main-color); */
    /* fill: var(--main-color); */
    fill: #b8b8b8;
}

/* .index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover svg path {
    stroke: #fff;
} */

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover {
    animation: flickerAn 1s infinite linear alternate;
}

.index-page .latest-news .custom-news-btn .news-swiper-button .news-swiper-button:hover {
    border: none;
}

.index-page .latest-news .custom-news-btn .news-swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 25px;
    font-size: var(--text-size);
    color: #999999;
    display: none;
}

.index-page .latest-news .custom-news-btn .news-swiper-pagination .current-slide {
    color: #26298F;
}

/* ---------- */


.index-page .latest-news .news-top .news-swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 25px;
    font-size: var(--text-size);
    color: #999999;
}

.index-page .latest-news .news-top .news-swiper-pagination .current-slide {
    color: #26298F;
}

.index-page .latest-news .custom-news-swiper {
    position: relative;
    width: calc(100% - var(--type-area) * 2);
    overflow: hidden;
    padding-bottom: 20px;
    margin: 0 auto;
    margin-top: 60px;
    min-height: max(350px, calc(var(--ratio-size) * 400));
}

.index-page .latest-news .custom-news-swiper .custom-swiper-wrapper {
    /* position: absolute; */
    display: flex;
    /* gap: 40px; */
}

.index-page .latest-news .custom-news-swiper a {
    position: relative;
    display: block;
    /* height: 100%; */
}

.index-page .latest-news .custom-news-swiper a::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);
}

.index-page .latest-news .custom-news-swiper .custom-swiper-slide {
    width: 24%;
    /* height: 350px; */
    min-height: calc(var(--ratio-size) * 330);
    padding: 0 20px;
    /* border: 1px solid rgba(0, 0, 0, .1); */
    /* border-radius: 20px; */
    overflow: hidden;
    background-color: #fff;
    flex-shrink: 0;
}

.index-page .latest-news .custom-news-swiper a .news-item-top {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    /* height: 200px; */
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    transition: none;
    margin-top: 10px;
}

.index-page .latest-news .custom-news-swiper a .news-item-top .news-bg {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .latest-news .custom-news-swiper a:hover .news-bg {
    transform: scale(1.1);
}

.index-page .latest-news .custom-news-swiper a .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 80%);
    opacity: 0;
}

.index-page .latest-news .custom-news-swiper a .news-item-top .time {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .2);
    font-family: 'PoRegular', 'SoRegular';
    /* backdrop-filter: blur(1px); */
}

.index-page .latest-news .custom-news-swiper a .news-item-top .time .year {
    font-size: small;
}

.index-page .latest-news .custom-news-swiper a .news-item-top .time .day {
    font-size: min(var(--big-text-size), 28px);
}

.index-page .latest-news .custom-news-swiper a .news-item-top .text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-top: 20px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: min(var(--big-text-size), 28px);
}

.index-page .latest-news .custom-news-swiper a .news-item-top .text p.title {
    flex: 1;
    padding-right: 30px;
}

.index-page .latest-news .custom-news-swiper a .news-item-top .text .icon {
    width: 60px;
    height: 60px;
}

.index-page .latest-news .custom-news-swiper a .news-item-top .text .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .latest-news .custom-news-swiper a .news-content {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    padding-bottom: 20px;
}

.index-page .latest-news .custom-news-swiper a .news-content .text {
    line-height: 1.66;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
    min-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 5px;
}

.index-page .latest-news .custom-news-swiper a .news-content .text .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index-page .latest-news .custom-news-swiper a .news-content .bottom-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 40px; */
    font-size: var(--small-text-size);
}

.index-page .latest-news .custom-news-swiper a .news-content .bottom-message .time {
    color: rgba(0, 0, 0, .7);
}

.index-page .latest-news .common-btn {
    display: none;
    margin-top: max(40px, calc(var(--ratio-size) * 80));
    text-align: center;
}

.index-page .latest-news .common-btn a {
    border-color: rgba(0, 0, 0, .2);
    transition: all .5s;
}

.index-page .latest-news .common-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.index-page .latest-news .common-btn svg {
    width: 30px;
}

.index-page .latest-news .common-btn a:hover svg circle {
    fill: #fff;
}

.index-page .latest-news .common-btn a:hover svg path {
    stroke: #2E3091;
}


.index-page .latest-news .normal-news-swiper {
    display: none;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
}

.index-page .latest-news .normal-news-swiper .swiper-slide {
    height: auto;
    padding: 0 var(--type-area);
}

.index-page .latest-news .normal-news-swiper .swiper-slide a {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
}

.index-page .latest-news .normal-news-swiper a .news-item-top {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 200px;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    transition: none;
}

.index-page .latest-news .normal-news-swiper a .news-item-top .news-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .latest-news .normal-news-swiper a:hover .news-bg {
    transform: scale(1.2);
}

.index-page .latest-news .normal-news-swiper a .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 80%);
    opacity: 0;
}

.index-page .latest-news .normal-news-swiper a .news-item-top .time {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .2);
    font-family: 'PoRegular', 'SoRegular';
    /* backdrop-filter: blur(1px); */
}

.index-page .latest-news .normal-news-swiper a .news-item-top .time .year {
    font-size: small;
}

.index-page .latest-news .normal-news-swiper a .news-item-top .time .day {
    font-size: var(--big-text-size);
}

.index-page .latest-news .normal-news-swiper a .news-item-top .text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-top: 20px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--big-text-size);
}

.index-page .latest-news .normal-news-swiper a .news-item-top .text p.title {
    flex: 1;
    padding-right: 30px;
}

.index-page .latest-news .normal-news-swiper a .news-item-top .text .icon {
    width: 60px;
    height: 60px;
}

.index-page .latest-news .normal-news-swiper a .news-item-top .text .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .latest-news .normal-news-swiper a .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    padding-bottom: 20px;
}

.index-page .latest-news .normal-news-swiper a .news-content .text {
    line-height: 1.66;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
}

.index-page .latest-news .normal-news-swiper a .news-content .text .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index-page .latest-news .normal-news-swiper a .news-content .bottom-message {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: var(--small-text-size);
}

.index-page .latest-news .normal-news-swiper a .news-content .bottom-message .time {
    color: rgba(0, 0, 0, .7);
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container .news-swiper-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(50px, calc(var(--ratio-size) * 80));
    height: max(50px, calc(var(--ratio-size) * 80));
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    transition: all .5s;
    border: 1px solid rgba(0, 0, 0, .2);
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container .news-swiper-button:hover {
    background-color: var(--main-color);
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container .news-swiper-button:hover svg path {
    stroke: #fff;
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container .news-swiper-button svg {
    width: 100%;
}

.index-page .latest-news .normal-news-swiper .news-swiper-button-container .news-swiper-button-next {
    transform: rotate(180deg);
}

.index-page .latest-news .normal-news-swiper .news-swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 25px;
    font-size: var(--small-text-size);
    color: #999999;
    width: auto;
    bottom: auto;
}

.index-page .latest-news .normal-news-swiper .news-swiper-pagination .swiper-pagination-current {
    color: #26298F;
}



.index-page .contact-us {
    position: relative;
    z-index: 4;
}

.index-page .contact-us-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: max(300px, calc(var(--ratio-size) * 480));
    padding: 80px;
    border-radius: 30px;
    color: #fff;
}

.index-page .contact-us-main .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.index-page .contact-us-main .common-btn {
    margin-top: 35px;
}

.index-page .contact-us-main .common-btn a {
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: auto;
    transition: all .5s;
}

.index-page .contact-us-main .common-btn a:hover {
    background-color: transparent;
}

.index-page .contact-us-main .common-btn a svg {
    transition: all .5s;
}

.index-page .contact-us-main .common-btn a:hover svg {
    transform: translateX(10px);
}

.index-page .contact-us-main .common-btn a:hover svg path {
    stroke: #ffff;
}

.index-page .contact-us-main .common-btn a svg path {
    transition: all .5s;
}

.index-page .consumer-applications {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
}

.index-page .consumer-applications::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.index-page .consumer-applications .btn-list {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .consumer-applications .video-bg {
    display: block;
    object-position: center 95%;
}

.index-page .consumer-applications .mobile-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .consumer-applications .btn-list .item {
    position: absolute;
}

.index-page .consumer-applications .btn-list .item:nth-child(1) {
    left: 14%;
    right: auto;
    top: 60%;
}

.index-page .consumer-applications .btn-list .item:nth-child(2) {
    right: 30%;
    top: 20%;
}

.index-page .consumer-applications .btn-list .item:nth-child(3) {
    left: 28%;
    right: auto;
    top: 75%;
}

.index-page .consumer-applications .btn-list .item .item-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 1000px;
    cursor: pointer;
    background: transparent;
    /* background-color: rgba(29, 32, 135, .5); */
    background-color: rgba(184, 184, 184, .2);
    /* backdrop-filter: blur(10px); */
}

.index-page .consumer-applications .btn-list .item .item-content::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1000px;
    background: linear-gradient(45deg, #2E3091, #00ADEE);
    z-index: -1;
    padding: 4px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
}

.index-page .consumer-applications .btn-list .item .more-message {
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 20px;
    /* opacity: 0; */
}

.index-page .consumer-applications .btn-list .icon {
    width: 37px;
    height: 40px;
}

.index-page .consumer-applications .btn-list .icon img {
    max-width: 100%;
    max-height: 100%;
}

.index-page .consumer-applications .btn-list p {
    margin-left: 17px;
    font-family: 'PoRegular', 'SoRegular';
    color: #fff;
}

.index-page .consumer-applications .btn-list .industrial-btn {
    position: relative;
    margin-left: auto;
}

.index-page .consumer-applications .btn-list .industrial-btn .circle-svg {
    animation: scrollAn 10s linear infinite;
}

.index-page .consumer-applications .btn-list .industrial-btn .arrow-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index-page .consumer-applications .mobile-video-bg {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.index-page .consumer-applications .description {
    position: absolute;
    z-index: 3;
    top: calc(var(--header-height) + 100px);
    width: max(400px, calc(var(--ratio-size) * 500));
    margin-left: var(--type-area);
    color: #fff;
}

.index-page .consumer-applications .description .icon {
    width: 66px;
}

.index-page .consumer-applications .description .icon img {
    width: 100%;
}

.index-page .consumer-applications .description .title {
    margin-top: 17px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.index-page .consumer-applications .description .text {
    margin-top: 17px;
}

.company-news-page {
    background-color: #F3F6FB;
}

.company-news-page .new-top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-news-page .new-top .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.company-news-page .new-top .select-years {
    position: relative;
    cursor: pointer;
}

.company-news-page .new-top .selected-year {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 120px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(38, 41, 143, .2);
}

.company-news-page .new-top .select-years ul {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: calc(100% + 50px);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 10px #d4d4d4;
}

.company-news-page .new-top .select-years ul li a {
    display: block;
    padding: 2px 15px;
    cursor: pointer;
}

.company-news-page .new-top .select-years ul li:hover {
    background-color: var(--main-color);
    color: #fff;
}

.company-news-page .new-top .select-years ul li:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
}

.company-news-page .news-container {
    padding-bottom: max(60px, calc(var(--ratio-size) * 120));
}

.white-paper-page .news-container .top-news a,
.company-news-page .news-container .top-news {
    display: flex;
    width: 100%;
    /* min-height: max(200px, calc(var(--ratio-size) * 400)); */
    /* height: max(300px, calc(var(--ratio-size) * 400)); */
    margin-top: 45px;
}

.white-paper-page .news-container .top-news a {
    margin-top: 0;
}

.company-news-page .news-container .top-news:hover .top-news-pic-swiper img {
    transform: scale(1.05);
}

.company-news-page .news-container .top-news .top-news-pic-swiper {
    width: 45%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.company-news-page .news-container .top-news .top-news-pic-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.company-news-page .news-container .top-news .top-news-content-swiper {
    position: relative;
    width: 55%;
    background-color: #fff;
    overflow: hidden;
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content:not(.wfEditorMode),
.company-news-page .news-container .top-news .top-news-content-swiper a:not(.wfEditorMode) {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: calc(var(--ratio-size) * 45) calc(var(--ratio-size) * 35);
}

.company-news-page .news-container .top-news .top-news-content-swiper a.wfEditorMode {
    transform: translateY(100%);
}

.company-news-page.white-paper-page .news-container .top-news a.wfEditorMode {
    position: absolute;
    width: auto;
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .title,
.company-news-page .news-container .top-news .top-news-content-swiper a .title {
    font-size: var(--big-text-size);
    transition: all .5s;
}

.company-news-page .news-container .top-news:hover .top-news-content-swiper .top-news-content .title,
.company-news-page .news-container .top-news:hover .top-news-content-swiper a .title {
    color: var(--main-color);
}


.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .learn-more,
.company-news-page .news-container .top-news .top-news-content-swiper a .learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 20px;
    font-size: var(--small-text-size);
    color: #000000b3;
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .learn-more:hover,
.company-news-page .news-container .top-news .top-news-content-swiper a .learn-more:hover {
    color: var(--main-color);
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .learn-more:hover svg path,
.company-news-page .news-container .top-news .top-news-content-swiper a .learn-more:hover svg path {
    stroke: var(--main-color);
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .learn-more svg,
.company-news-page .news-container .top-news .top-news-content-swiper a .learn-more svg {
    margin-left: 20px;
    transition: all .5s;
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content .learn-more:hover svg,
.company-news-page .news-container .top-news .top-news-content-swiper a .learn-more:hover svg {
    transform: translateX(20px);
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content-swiper-pagination {
    position: absolute;
    left: calc(var(--ratio-size) * 35);
    bottom: calc(var(--ratio-size) * 45);
    z-index: 2;
}

.company-news-page .news-container .top-news .top-news-content-swiper .top-news-content-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--main-color);
}


.company-news-page .news-container .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(20px, calc(var(--ratio-size) * 60));
    margin-top: max(25px, calc(var(--ratio-size) * 75));
}

.company-news-page .news-list .news-item {
    /* border-radius: 30px; */
    /* box-shadow: 0 4px 16px rgba(38, 41, 143, .1); */
}

.company-news-page .news-list .news-item a:not(.wfEditorMode) {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-news-page .news-list .news-item a .pic {
    width: 100%;
    /* height: max(150px, calc(var(--ratio-size) * 240)); */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
}

.company-news-page .news-list .news-item a .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.company-news-page .news-list .news-item a:hover .pic img {
    transform: scale(1.1);
}

.company-news-page .news-list .news-item a:hover .content .title {
    color: var(--main-color);
}

.company-news-page .news-list .news-item a .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
    /* padding: 10px 20px;
    padding-bottom: 25px; */
}

.company-news-page .news-list .news-item a .content .title {
    height: 3em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .5s;
}

.company-news-page .news-list .news-item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.company-news-page .news-list .news-item .bottom .time {
    font-size: var(--small-text-size);
    color: rgba(0, 0, 0, .7);
}

.company-news-page .news-pagination ul {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

.company-news-detail-page {
    width: 100%;
    margin-top: var(--header-height);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.company-news-detail-page .content-main {
    padding-bottom: max(35px, calc(var(--ratio-size) * 70));
}

.company-news-detail-page .content-main .title {
    margin-top: 50px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.company-news-detail-page .content-main .time {
    margin-top: 10px;
}

.company-news-detail-page .content-main .share-platform {
    display: flex;
    align-items: center;
    padding-top: 35px;
    margin-top: max(40px, calc(var(--ratio-size) * 80));
    border-top: 1px solid #26298F;
    font-size: var(--small-text-size);
}

.company-news-detail-page .content-main .share-platform ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5px;
}

.company-news-detail-page .content-main .share-platform li {
    position: relative;
}

.company-news-detail-page .content-main .share-platform ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFF;
}

.company-news-detail-page .content-main .share-platform .qr {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 20px, 0);
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

.company-news-detail-page .content-main .share-platform li:hover .qr {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
}

.company-news-detail-page .content-main .content {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
    line-height: 1.5;
}

.company-news-detail-page .content-main .content strong {
    font-weight: bold;
}

.company-news-detail-page .content-main .content>* {
    margin-bottom: 15px;
}

.company-news-detail-page .content-main .content ul {
    padding-left: 15px;
}

.company-news-detail-page .content-main .content ol {
    padding-left: 35px;
}

.company-news-detail-page .content-main .content ul li {
    position: relative;
    padding-left: 15px;
}

.company-news-detail-page .content-main .content ol li {
    list-style-type: decimal;
}

.company-news-detail-page .content-main .content ul li:not(:last-child),
.company-news-detail-page .content-main .content ol li:not(:last-child) {
    margin-bottom: 15px;
}

.white-paper-detail-page .content-main .content ul li:not(:last-child),
.white-paper-detail-page .content-main .content ol li:not(:last-child) {
    margin-bottom: 0;
}

.company-news-detail-page .content-main .content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.company-news-detail-page .content-main .content video,
.company-news-detail-page .content-main .content img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.company-news-detail-page .content-main .back-btn {
    display: flex;
    justify-content: center;
}

.company-news-detail-page .content-main .back-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 20px 40px;
    margin-top: max(40px, calc(var(--ratio-size) * 80));
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5000px;
    font-size: var(--small-text-size);
    transition: all .5s;
}

.company-news-detail-page .content-main .back-btn a svg path {
    transition: all .5s;
}

.company-news-detail-page .content-main .back-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.company-news-detail-page .content-main .back-btn a:hover svg path {
    stroke: #fff;
}

.company-news-detail-page .recommend-news {
    position: relative;
    padding-top: max(40px, calc(var(--ratio-size) * 105));
    padding-bottom: max(60px, calc(var(--ratio-size) * 150));
    background-color: #F3F3F8;
}

.company-news-detail-page .recommend-news::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    display: block;
    width: 100%;
    height: 300px;
    background-color: #F3F3F8;
}

.company-news-detail-page .recommend-news .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.company-news-detail-page .recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(20px, calc(var(--ratio-size) * 60));
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.company-news-detail-page .recommend-list .news-item {
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.company-news-detail-page .recommend-list .news-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-news-detail-page .recommend-list .news-item a .pic {
    width: 100%;
    height: max(150px, calc(var(--ratio-size) * 240));
    overflow: hidden;
    border-radius: 30px;
}

.company-news-detail-page .recommend-list .news-item a .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.company-news-detail-page .recommend-list .news-item a:hover .pic img {
    transform: scale(1.2);
}

.company-news-detail-page .recommend-list .news-item a .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
    padding-bottom: 25px;
}

.company-news-detail-page .recommend-list .news-item a .content .title {
    /* font-family: 'PoLight', 'SoLight'; */
    font-size: 18px;
}

.company-news-detail-page .recommend-list .news-item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.company-news-detail-page .recommend-list .news-item .bottom .time {
    font-size: var(--small-text-size);
    color: rgba(0, 0, 0, .7);
}

.join-us-page {
    padding-bottom: max(60px, calc(var(--ratio-size) * 125));
}

.join-us-page .content-list {
    display: flex;
    gap: max(20px, calc(var(--ratio-size) * 40));
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.join-us-page .content-list .content-item {
    width: 50%;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.join-us-page .content-list .content-item .pic {
    width: 100%;
    height: max(200px, calc(var(--ratio-size) * 380));
    border-radius: 30px;
    overflow: hidden;
}

.join-us-page .content-list .content-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-us-page .content-list .content-item .text-content {
    padding: max(20px, calc(var(--ratio-size) * 35));
    padding-bottom: max(20px, calc(var(--ratio-size) * 40));
    text-align: center;
}

.join-us-page .content-list .content-item .text-content .title {
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.join-us-page .content-list .content-item .text-content .text {
    margin-top: 5px;
}

.join-us-page .content-list .content-item .text-content .common-btn {
    margin-top: 35px;
}

/* .join-us-page .content-list .content-item .text-content .common-btn a {
    border-color: rgba(0, 0, 0, .2);
    transition: all .5s;
}

.join-us-page .content-list .content-item .text-content .common-btn a svg circle,
.join-us-page .content-list .content-item .text-content .common-btn a svg path {
    transition: all .5s;
}

.join-us-page .content-list .content-item .text-content .common-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.join-us-page .content-list .content-item .text-content .common-btn a:hover svg circle {
    fill: #fff;
}

.join-us-page .content-list .content-item .text-content .common-btn a:hover svg path {
    stroke: var(--main-color);
} */

.corporate-social-responsibility-page {
    padding-bottom: max(60px, calc(var(--ratio-size) * 120));
}

.corporate-social-responsibility-page .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.corporate-social-responsibility-page .content {
    margin-top: max(30px, calc(var(--ratio-size) *50));
}

.corporate-social-responsibility-page .content-description {
    display: flex;
    justify-content: space-between;
    margin-top: max(20px, calc(var(--ratio-size) * 37));
}

.corporate-social-responsibility-page .content-description .description {
    width: max(400px, calc(var(--ratio-size) * 656));
}

.corporate-social-responsibility-page .content-description .text {
    line-height: 1.6;
}

.corporate-social-responsibility-page .content-description .common-btn {
    margin-top: 45px;
}

/* .corporate-social-responsibility-page .content-description .common-btn a {
    border-color: rgba(0, 0, 0, .2);
    transition: all .5s;
}

.corporate-social-responsibility-page .content-description .common-btn a svg circle,
.corporate-social-responsibility-page .content-description .common-btn a svg path {
    transition: all .5s;
}

.corporate-social-responsibility-page .content-description .common-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.corporate-social-responsibility-page .content-description .common-btn a:hover svg circle {
    fill: #fff;
}

.corporate-social-responsibility-page .content-description .common-btn a:hover svg path {
    stroke: var(--main-color);
} */

.corporate-social-responsibility-page .content-description .pic {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    margin-left: max(50px, calc(var(--ratio-size) * 144));
}

.corporate-social-responsibility-page .content-description .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-social-responsibility-detail-page {
    width: 100%;
    padding-bottom: max(60px, calc(var(--ratio-size) * 120));
    margin-top: var(--header-height);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.corporate-social-responsibility-detail-page .top-message {
    margin-top: max(120px, calc(var(--ratio-size) * 160));
    color: var(--main-color);
    text-align: center;
}

.corporate-social-responsibility-detail-page .top-message .title {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.corporate-social-responsibility-detail-page .top-message .text {
    margin-top: 10px;
    font-family: 'PoRegular', 'SoRegular';
}

.corporate-social-responsibility-detail-page .responsibility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: max(100px, calc(var(--ratio-size) * 230));
}

.corporate-social-responsibility-detail-page .responsibility-list .item {
    padding: max(20px, calc(var(--ratio-size) * 40));
    padding-top: max(15px, calc(var(--ratio-size) * 35));
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.corporate-social-responsibility-detail-page .responsibility-list .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.corporate-social-responsibility-detail-page .responsibility-list .item .icon img {
    max-width: 100%;
    max-height: 100%;
}

.corporate-social-responsibility-detail-page .responsibility-list .item .title {
    margin-top: max(15px, calc(var(--ratio-size) * 24));
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.corporate-social-responsibility-detail-page .responsibility-list .item .text {
    margin-top: max(12px, calc(var(--ratio-size) * 22));
    line-height: 1.6;
    /* text-align: justify; */
}

.company-activity-page {
    position: relative;
    z-index: 3;
    padding-bottom: max(60px, calc(var(--ratio-size) * 120));
}

.company-activity-page .top-message {
    margin-top: 25px;
}

.company-activity-page .top-message .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
    text-align: center;
}

.company-activity-page .top-message .common-switch-nav-no-bg {
    margin-top: max(20px, calc(var(--ratio-size) * 30));
}

.company-activity-page .activity-list {
    display: flex;
    flex-direction: column;
    gap: max(30px, calc(var(--ratio-size) * 60));
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

.company-activity-page .activity-list .activity-item {
    display: flex;
    width: 100%;
    min-height: max(200px, calc(var(--ratio-size) * 400));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.company-activity-page .activity-list .activity-item a {
    display: flex;
    width: 100%;
    /* height: 100%; */
}

.company-activity-page .activity-list .activity-item:nth-child(even) a {
    flex-direction: row-reverse;
}

.company-activity-page .activity-list .activity-item .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    /* height: 100%; */
    border-radius: 30px;
    overflow: hidden;
}

.company-activity-page .activity-list .activity-item .pic img {
    width: 100%;
    border-radius: 30px;
    /* object-fit: cover; */
    aspect-ratio: 16 / 9;
}

.company-activity-page .activity-list .activity-item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 50%; */
    padding: max(15px, calc(var(--ratio-size) * 30));
    padding-left: max(30px, calc(var(--ratio-size) * 60));
}

/* .company-activity-page .activity-list .activity-item:nth-child(even) a .content {
    padding-left: max(15px, calc(var(--ratio-size) * 30));
    padding-right: max(30px, calc(var(--ratio-size) * 60));
} */

.company-activity-page .activity-list .activity-item .content .time {
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 18px;
    border-radius: 10px;
    font-family: 'PoRegular', 'SoRegular';
    color: #26298F;
    background-color: #EEEEF5;
}

.company-activity-page .activity-list .activity-item .content .time .year {
    font-size: var(--small-text-size);
}

.company-activity-page .activity-list .activity-item .content .time .day {
    font-size: var(--data-name-size);
    line-height: 1.2;
}

.company-activity-page .activity-list .activity-item .content .title {
    margin-top: 20px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--big-text-size);
}

.company-activity-page .activity-list .activity-item .content .address {
    display: flex;
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: var(--small-text-size);
    color: #666666;
}

.company-activity-page .activity-list .activity-item .content .address .icon {
    margin-right: 9px;
    margin-top: 3px;
}

.company-activity-page .activity-list .activity-item .content .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}

.company-activity-page .activity-list .activity-item .content .function-btn {
    display: flex;
    gap: 20px;
    font-size: var(--small-text-size);
}

.company-activity-page .activity-list .activity-item .content .function-btn .same-type {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 50000px;
}

.company-activity-page .activity-list .activity-item .content .function-btn .same-type.state {
    cursor: text;
}

.company-activity-page .activity-list .activity-item .content .function-btn .state-finished {
    background-color: #E9E9E9;
    color: rgba(0, 0, 0, .5);
    border: none;
}

.company-activity-page .activity-list .activity-item .content .function-btn .apply-btn {
    background-color: var(--main-color);
    color: #fff;
}

.company-activity-page .news-pagination ul {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

.apply-form-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    /* display: flex; */
    display: none;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    visibility: hidden;
    opacity: 0;
}

.apply-form {
    width: min(100%, 960px);
    height: 100%;
    background-color: #fff;
    /* transform: translateX(100%); */
    overflow-y: auto;
}

.apply-form .form-top-message {
    position: relative;
    padding: 55px;
    padding-left: 80px;
    background-color: var(--main-color);
    border-bottom-right-radius: 60px;
    color: #fff;
}

.apply-form .form-top-message .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
}

.apply-form .form-top-message .text {
    margin-top: 8px;
}

.apply-form .form-top-message .close-form-btn {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

.apply-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 70px;
}

.apply-form form .item {
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
    height: 60px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5000px;
    /* overflow: hidden; */
}

.apply-form form .item.error {
    border-color: #ff0000;
}

.apply-form form .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.apply-form form .item input,
.apply-form form .item select,
.apply-form form .item textarea {
    flex: 1;
    width: 1px;
    height: 100%;
    padding-left: 10px;
    font-size: 18px;
    font-family: 'PoLight', 'SoLight';
    outline: none;
    border: none;
    resize: none;
    background-color: transparent;
}

.apply-form form .item select {
    appearance: none;
    -webkit-appearance: none;
}

.apply-form form .item.select-input-content {
    position: relative;
    cursor: pointer;
}

.apply-form form .item.select-input-content .select-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.apply-form form .item.select-input-content .select-content .selected-text {
    position: relative;
    display: flex;
}

.apply-form form .item.select-input-content .select-content .selected-text input {
    cursor: pointer;
}

.apply-form form .item.select-input-content .select-content .icon {
    position: absolute;
    right: 10px;
    top: 50%;
}

.apply-form form .item.select-input-content .select-content .select-address {
    display: none;
    position: absolute;
    bottom: 0;
    transform: translateY(calc(100% + 10px));
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #c1c1c1;
}

.apply-form form .item.select-input-content .select-content .select-address li {
    padding: 8px 10px;
    border-bottom: 1px solid #c1c1c1;
    font-size: 16px;
}

.apply-form form .item.select-input-content .select-content .select-address li:last-child {
    border-bottom: none;
}

.apply-form form .item.select-input-content .select-content .select-address li:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

.apply-form form .item.select-input-content .select-content .selected-text .icon-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
}

.apply-form form .item.select-input-content .select-content .selected-text .icon-arrow svg {
    transform: rotate(90deg);
}


.apply-form form .item .captcha-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* width: 72px; */
    overflow: hidden;
    border-radius: 30px;
    /* height: 30px; */
}

.apply-form form .item .captcha-pic img {
    width: 100%;
    max-height: 100%;
}

.apply-form form .item:focus-within {
    background-color: #F3F3F8;
    border-color: #F3F3F8;
}

.apply-form form .item:focus-within .icon {
    background-color: #26298F;
}

.apply-form form .item:focus-within .icon svg path:not(.change-fill),
.apply-form form .item:focus-within .icon svg .change-stroke {
    stroke: #fff;
}

.apply-form form .item:focus-within .icon svg path.change-fill {
    fill: #fff;
}

.apply-form form .item .icon,
.apply-form form .item .icon svg path:not(.change-fill),
.apply-form form .item .icon svg .change-stroke,
.apply-form form .item .icon svg path.change-fill {
    transition: all .5s;
}

.apply-form form .full-style {
    width: 100%;
}

.apply-form form .item.input-message {
    padding-top: 10px;
    align-items: flex-start;
    height: auto;
    border-radius: 30px;
}

.apply-form form .item.input-message textarea {
    padding-top: 5px;
}

.apply-form form .policy {
    display: flex;
    align-items: center;
}

.apply-form form .policy input[type='checkbox'] {
    position: relative;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .2);
    cursor: pointer;
}

.apply-form form .policy input[type='checkbox']::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--main-color);
    background-image: url('../images/tick-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(.6);
    opacity: 0;
    transition: all .3s;
}

.apply-form form .policy input:checked::after {
    transform: scale(1);
    opacity: 1;
}

.apply-form form .policy p {
    flex: 1;
    margin-left: 11px;
    font-size: var(--small-text-size);
    color: #666666;
}

.apply-form form .policy.error p {
    color: #ff0000;
}

.apply-form form .policy p a {
    color: #26298F;
    text-decoration: underline;
}

.apply-form form .common-btn {
    margin-top: 40px;
    text-align: center;
}

.apply-form form .common-btn a {
    /* border: 1px solid rgba(0, 0, 0, .2); */
    transition: all .5s;
}

/* .apply-form form .common-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.apply-form form .common-btn a:hover circle,
.apply-form form .common-btn a:hover path {
    transition: all .5s;
}

.apply-form form .common-btn a:hover circle {
    fill: #fff;
}

.apply-form form .common-btn a:hover path {
    stroke: var(--main-color);
} */

.company-activity-page .fn-content {
    position: relative;
}

.company-activity-page .fn-content .select-years {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.company-activity-page .fn-content .selected-year {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(38, 41, 143, .2);
}

.company-activity-page .fn-content .select-years ul {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: calc(100% + 30px);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 10px #d4d4d4;
}

.company-activity-page .fn-content .select-years ul li {
    padding: 2px 15px;
    cursor: pointer;
}

.company-activity-page .fn-content .select-years ul li:hover {
    background-color: var(--main-color);
    color: #fff;
}

.company-activity-page .fn-content .select-years ul li:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
}

.company-activity-page .fn-content .select-years ul li a {
    display: block;
    padding: 2px 15px;
    cursor: pointer;
}

.company-activity-detail-page {
    margin-top: var(--header-height);
}

.company-activity-detail-page .top-message {
    position: relative;
    display: flex;
    margin-top: max(40px, calc(var(--ratio-size) * 75));
    background-color: #fff;
}

.company-activity-detail-page .top-message .text-content {
    width: calc(100% - max(300px, calc(var(--ratio-size) * 960)));
}

.company-activity-detail-page .top-message .text-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: var(--type-area);
}

.company-activity-detail-page .top-message .text-top .time {
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 18px;
    border-radius: 10px;
    font-family: 'PoRegular', 'SoRegular';
    color: #26298F;
    background-color: #EEEEF5;
}

.company-activity-detail-page .top-message .text-top .time .year {
    font-size: var(--small-text-size);
}

.company-activity-detail-page .top-message .text-top .time .day {
    font-size: var(--data-name-size);
    line-height: 1.2;
}

.company-activity-detail-page .top-message .text-top .title {
    margin-top: 20px;
    margin-bottom: max(45px, calc(var(--ratio-size) * 90));
    font-size: var(--title-size);
    color: var(--main-color);
}

.company-activity-detail-page .top-message .bottom-address {
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, .1);
    min-height: max(60px, calc(var(--ratio-size) * 120));
    padding: 20px 0;
}

.company-activity-detail-page .top-message .bottom-address .address {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10px;
    padding-left: var(--type-area);
    border-right: 1px solid rgba(0, 0, 0, .1);
    font-size: var(--small-text-size);
}

.company-activity-detail-page .top-message .bottom-address .address .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: rgba(0, 173, 238, .1);
}

.company-activity-detail-page .top-message .bottom-address .address p {
    flex: 1;
}

.company-activity-detail-page .top-message .bottom-address .booth {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(100px, calc(var(--ratio-size) * 280));
    padding: 0 10px;
    color: #00ADEE;
    font-size: 20px;
}

.company-activity-detail-page .top-message .activity-pic-swiper {
    position: absolute;
    top: 0;
    right: 0;
    width: max(300px, calc(var(--ratio-size) * 960));
    height: max(200px, calc(var(--ratio-size) * 540));
    overflow: hidden;
}

.company-activity-detail-page .top-message .activity-pic-swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.company-activity-detail-page .top-message .activity-pic-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-activity-detail-page .top-message .activity-pic-swiper .swiper-slide {
    /* border-top-left-radius: 60px;
    border-bottom-left-radius: 60px; */
    overflow: hidden;
}

.company-activity-detail-page .introduction-container {
    padding-top: calc(var(--ratio-size) * 160);
    background-color: #F3F3F8;
}

.company-activity-detail-page .introduction-container .common-switch-nav-no-bg {
    gap: 10px 40px;
    padding-top: 30px;
    justify-content: flex-start;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.activity-common-title {
    color: var(--main-color);
}

.activity-common-title .title {
    margin-top: 12px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
    line-height: 1.1;
}

.activity-common-title .text {
    margin-top: 3px;
    font-size: var(--small-text-size);
    line-height: 1.1;
}

.company-activity-detail-page .introduction-container {
    padding-bottom: var(--common-padding-bottom);
}

.company-activity-detail-page .introduction-container .activity-common-title {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

.company-activity-detail-page .introduction-container .text-content {
    margin-top: max(30px, calc(var(--ratio-size) * 45));
    font-size: var(--data-name-size);
    line-height: 1.6;
    /* text-align: justify; */
}

.company-activity-detail-page .introduction-container .text-content a {
    word-break: break-all;
}

.company-activity-detail-page .arrangement-container {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
}

.company-activity-detail-page .arrangement-container .list {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.company-activity-detail-page .arrangement-container .list .item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.company-activity-detail-page .arrangement-container .list .title {
    color: var(--main-color);
    line-height: 1.8;
}

.company-activity-detail-page .arrangement-container .list .item-text {
    font-size: 16px;
    line-height: 1.8;
}

.company-activity-detail-page .arrangement-container .list .item-text p {
    display: flex;
}

.company-activity-detail-page .arrangement-container .list .item-text .name {
    position: relative;
    display: block;
    /* width: 5.5em; */
    /* flex: 0 0 auto; */
}

.company-activity-detail-page .arrangement-container .list .item-text .name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    width: 0;
    height: 100%;
    border-left: 1px dotted var(--main-color);
}

.company-activity-detail-page .arrangement-container .list .item-text .dot {
    display: block;
    position: relative;
    width: 14px;
    height: 14px;
    margin-top: 7px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .1);
}

.company-activity-detail-page .arrangement-container .list .item-text .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.company-activity-detail-page .arrangement-container .list .item-text .text {
    flex: 1;
}

.company-activity-detail-page .information-container {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    background-color: #F3F3F8;
    overflow: hidden;
}

.common-list-swiper {
    width: 100%;
}

.common-list-swiper .swiper-slide>a,
.common-list-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.common-list-swiper .swiper-slide>a {
    height: 100%;
}

.common-list-swiper.only-one .swiper-slide>a,
.common-list-swiper.only-one .swiper-slide {
    flex-direction: row;
}

.common-list-swiper .swiper-button-next,
.common-list-swiper .swiper-button-prev {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 2;
    margin-top: 0;
    width: max(40px, calc(var(--ratio-size) * 80));
    height: max(40px, calc(var(--ratio-size) * 80));
}

.common-list-swiper .swiper-button-next::after,
.common-list-swiper .swiper-button-prev::after {
    display: none;
}

.common-list-swiper .swiper-button-next img,
.common-list-swiper .swiper-button-prev img {
    width: 100%;
}

.common-list-swiper .swiper-button-next {
    transform: rotate(180deg);
}

.common-list-swiper .common-swiper-fn-box {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.common-list-swiper .swiper-pagination {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    font-size: var(--small-text-size);
    color: #999999;
}

.common-list-swiper .swiper-pagination .swiper-pagination-current {
    color: var(--main-color);
}

/* .common-list-swiper .swiper-slide .icon svg {
    width: 40px;
    height: 40px;
} */

.company-activity-detail-page .information-container .common-list-swiper {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide {
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 249px);
    height: max(130px, calc(var(--ratio-size) * 200));
    margin: 0 auto;
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .top img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(20px 20px 7px rgba(0, 1, 36, .2));
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .type {
    display: flex;
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .type p {
    padding: 6px 20px;
    border-radius: 50000px;
    background-color: #DEDDEB;
    font-size: 12px;
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .title {
    margin-top: 10px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .sub-title {
    font-size: var(--small-text-size);
    color: var(--main-color);
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .text {
    margin-top: 20px;
    font-size: var(--small-text-size);
    color: #666666;
}

.company-activity-detail-page .information-container .common-list-swiper .swiper-slide .icon {
    display: flex;
    justify-content: flex-end;
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.company-activity-detail-page .information-container .common-list-swiper.only-one .swiper-slide {
    align-items: center;
    padding: max(25px, calc(var(--ratio-size) * 50)) max(15px, calc(var(--ratio-size) * 30));
    padding-right: 80px;
}

.company-activity-detail-page .information-container .common-list-swiper.only-one .swiper-slide .top {
    width: 300px;
    height: auto;
    padding: 0 25px;
}

.company-activity-detail-page .information-container .common-list-swiper.only-one .swiper-slide .bottom {
    margin-left: 10px;
}

.company-activity-detail-page .information-container .common-list-swiper.only-one .swiper-slide .icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.company-activity-detail-page .news-container {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.company-activity-detail-page .news-container .common-list-swiper {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.company-activity-detail-page .news-container .common-list-swiper .swiper-slide {
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.company-activity-detail-page .news-container .swiper-slide .top {
    width: 100%;
    height: max(200px, calc(var(--ratio-size) * 240));
    border-radius: 30px;
    overflow: hidden;
}

.company-activity-detail-page .news-container .swiper-slide .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-activity-detail-page .news-container .swiper-slide .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.company-activity-detail-page .news-container .swiper-slide .bottom .title {
    line-height: 1.6;
}

.company-activity-detail-page .news-container .swiper-slide .text-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: max(30px, calc(var(--ratio-size) * 40));
}

.company-activity-detail-page .news-container .swiper-slide .text-bottom .time {
    font-size: 14px;
    color: rgba(0, 0, 0, .7);
}

.company-activity-detail-page .news-container .bottom .text {
    display: none;
}

.company-activity-detail-page .news-container .only-one .swiper-slide {
    height: max(300px, calc(var(--ratio-size) * 400));
}

.company-activity-detail-page .news-container .only-one .top {
    width: 50%;
    height: 100%;
}

.company-activity-detail-page .news-container .only-one .bottom {
    padding: 30px;
    padding-left: 60px;
}

.company-activity-detail-page .news-container .only-one .bottom .title {
    font-size: var(--big-text-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.company-activity-detail-page .news-container .only-one .bottom .text {
    display: block;
    margin-top: 24px;
    font-size: var(--small-text-size);
    color: rgba(0, 0, 0, .5);
}

.company-activity-detail-page .video-container {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
    background-color: #F3F3F8;
}

.company-activity-detail-page .video-container .swiper-slide {
    position: relative;
    padding-inline: 23px 30px;
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
}

.radar-overview-page .video-container .only-one .swiper-slide {
    min-height: calc(var(--ratio-size) * 500);
    width: 60%;
    margin: 0 auto;
}

.company-activity-detail-page .video-container .swiper-slide .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* .company-activity-detail-page .video-container .swiper-slide .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 8), rgba(0, 0, 0, 0) 50%);
} */

.company-activity-detail-page .video-container .swiper-slide .bg img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-activity-detail-page .video-container .swiper-slide .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-activity-detail-page .video-container .common-list-swiper {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.company-activity-detail-page .video-container .swiper-slide {
    min-height: calc(var(--ratio-size) * 240);
    padding: 30px;
    padding-top: 23px;
}

.company-activity-detail-page .video-container .swiper-slide .text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.company-activity-detail-page .video-container .swiper-slide .text .video-play-icon {
    padding: 20px;
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    cursor: pointer;
}

.company-activity-detail-page .video-container .swiper-slide .icon {
    cursor: pointer;
}

.company-activity-detail-page .video-container .swiper-slide .icon img {
    width: 45px;
}

.company-activity-detail-page .video-container .swiper-slide .text .video-play-icon:hover {
    background-color: rgb(46, 48, 145);
}

.company-activity-detail-page .video-container .only-one .swiper-slide {
    width: 60%;
    height: calc(var(--ratio-size) * 500);
    margin: 0 auto;
}

.soc-products-page .screen-common {
    position: relative;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.soc-products-page .screen-one {
    padding-top: var(--header-height);
    color: #fff;
}

.soc-products-page .screen-one .part-one {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
}

.soc-products-page .screen-one .part-one .title {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.soc-products-page .screen-one .part-one .text {
    margin-top: 10px;
}

.soc-products-page .screen-one .part-two {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(var(--ratio-size) * 440);
    padding-top: calc(var(--ratio-size) * 80);
    padding-bottom: calc(var(--ratio-size) * 80);
    text-align: center;
    background-image: linear-gradient(to bottom, #282B7E, #1A4B94);
    opacity: 0;
}

.soc-products-page .screen-one .part-two .text {
    font-size: var(--data-name-size);
    line-height: 1.6;
}

.soc-products-page .screen-one .part-two .btn-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.soc-products-page .screen-one .part-two .btn-list .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.soc-products-page .screen-one .part-two .btn-list .btn .icon {
    position: relative;
}

.soc-products-page .screen-one .part-two .btn-list .btn .main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 85%;
    max-height: 85%;
}

.soc-products-page .screen-one .part-two .btn-list .btn .main-icon img {
    max-width: 100%;
    max-width: 100%;
}

.soc-products-page .screen-one .part-two .btn-list .btn p {
    margin-top: 15px;
    margin-bottom: 5px;
}

.soc-products-page .screen-one .part-two .btn-list .btn svg g {
    transform-origin: center;
    animation: scrollIconGAn 10s linear infinite;
}

.soc-products-page .screen-one .part-two .btn-list .btn .slide-icon {
    animation: slideDown 2s linear infinite alternate-reverse;
}

@keyframes slideDown {
    100% {
        transform: translateY(200%);
    }
}

.soc-products-page .screen-common:not(.screen-one) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.soc-products-page.industry-applications-page .screen-common:not(.screen-one) {
    justify-content: flex-end;
}

.soc-products-page .soc-common-box {
    position: relative;
    z-index: 3;
    width: 567px;
    color: #fff;
}

.soc-products-page .soc-common-box .title {
    margin-top: 20px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.soc-products-page .soc-common-box .text {
    margin-top: 10px;
}

.soc-products-page .soc-common-box .common-btn {
    margin-top: 50px;
}

.soc-products-page .screen-common:not(.screen-one):nth-child(odd) {
    justify-content: flex-end;
}

.soc-products-page.industry-applications-page .screen-common:not(.screen-one):nth-child(odd) {
    justify-content: flex-start;
}

.soc-products-page .screen-common.video-screen-bg {
    position: relative;
}

.soc-products-page .screen-common.video-screen-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.soc-products-page .screen-common.video-screen-bg .mobile-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    width: 100%;
}


/* .soc-products-page .screen-three {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
} */

.soc-products-page .screen-three::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    display: block;
    width: 100%;
    height: 300px;
    background-color: #000;
}

.soc-products-page .expand-bg::after {
    background-color: #000;
}

.soc-chip-overview-page {
    /* padding-top: var(--common-padding-top); */
    padding-bottom: var(--common-padding-bottom);
}

.soc-chip-overview-page .top-container {
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.soc-chip-overview-page .top-container .description {
    padding: 0 max(60px, calc(var(--ratio-size) * 180));
    padding-top: max(35px, calc(var(--ratio-size) * 70));
    text-align: center;
}

.soc-chip-overview-page .top-container .description .title {
    font-size: var(--data-name-size);
}

.soc-chip-overview-page .top-container .description .text {
    margin-top: 25px;
    line-height: 1.6;
}

.soc-chip-overview-page .top-container .common-list-swiper {
    margin-top: 50px;
}

.soc-chip-overview-page .top-container .swiper-slide {
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
    border-radius: 30px;
}

.soc-chip-overview-page .top-container .swiper-slide .top {
    width: 100%;
    height: calc(var(--ratio-size) * 380);
    border-radius: 30px;
    overflow: hidden;
}

.soc-chip-overview-page .top-container .swiper-slide .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    padding-bottom: 40px;
    text-align: center;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .title {
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .text {
    margin-top: 7px;
    font-size: 16px;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn {
    margin-top: 30px;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a {
    border-color: rgba(0, 0, 0, .2);
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a .icon {
    width: 30px;
    height: 30px;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a .icon svg {
    width: 100%;
    height: auto;
}

.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn circle,
.soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn path {
    transition: all .5s;
}

/* .soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a:hover {
    color: #fff;
} */

/* .soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a:hover circle {
    fill: #fff;
} */

/* .soc-chip-overview-page .top-container .swiper-slide .bottom .common-btn a:hover path {
    stroke: var(--main-color);
} */



.soc-chip-overview-page .top-container .only-one .top {
    width: 50%;
    height: 100%;
}

.soc-chip-overview-page .top-container .only-one .bottom {
    justify-content: center;
    width: 50%;
    height: 100%;
}

.common-all-product {
    position: relative;
}

.common-all-product .title {
    margin-top: 30px;
    font-size: var(--big-text-size);
}

.common-all-product .fn-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.common-all-product .fn-list .common-switch-nav-no-bg {
    gap: 30px;
}

.common-all-product .fn-list .common-switch-nav-no-bg li {
    cursor: pointer;
}

.common-all-product .fn-list .data-message {
    display: flex;
    align-items: center;
    margin-left: 30px;
    font-size: 14px;
    color: #333333;
}

.common-all-product .table-container {
    position: relative;
    margin-top: 38px;
    font-size: var(--small-text-size);
}

.common-all-product .table-container .table-box-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.common-all-product .table-container .table-content {
    position: relative;
    min-height: 400px;
    overflow: auto;
    padding-bottom: 20px;
}

/* 修改特定容器的滚动条 */
.common-all-product .table-content::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.common-all-product .table-content::-webkit-scrollbar-track {
    background: #F3F3F8;
}

.common-all-product .table-content::-webkit-scrollbar-thumb {
    background: #D3D3E4;
}

.common-all-product .table-content::-webkit-scrollbar-thumb:hover {
    background: #D3D3E4;
}

.common-all-product .table-container table {
    min-width: 100%;
    border-spacing: 0;
}

.common-all-product .table-container thead th {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
    /* font-family: 'PoRegular', 'SoRegular'; */
    font-weight: bolder;
    background-color: #F3F3F8;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.common-all-product .table-container thead th:last-child .filter-content {
    left: auto;
    right: 0;
}

.common-all-product .table-container thead tr:nth-child(1) th span {
    display: block;
    min-height: 60px;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.common-all-product .table-container thead tr:nth-child(1) th:last-child span {
    border-right: none;
}

.common-all-product .table-container thead tr:nth-child(1) th:first-child span {
    border-right: none;
}

.common-all-product .table-container thead tr:nth-child(1) th {
    padding-bottom: 20px;
}


.common-all-product .table-container thead tr:nth-child(2) th {
    padding-top: 15px;
    padding-bottom: 15px;
}

.common-all-product .table-container thead tr th:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 3;
}

.common-all-product .table-container thead tr th:nth-child(1)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);
}

.common-all-product .table-container thead tr:nth-child(2) .icon {
    width: 16px;
    cursor: pointer;
}

.common-all-product .table-container thead tr:nth-child(2) .icon svg {
    width: 100%;
}

.common-all-product .table-container thead .filter-content {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 240px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.common-all-product .table-container thead .filter-content .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    padding-left: 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.common-all-product .table-container thead .filter-content .top .close-btn {
    cursor: pointer;
}

.common-all-product .table-container thead .filter-list {
    padding-top: 14px;
    padding-bottom: 14px;
}

.common-all-product .table-container thead .filter-item {
    display: flex;
    padding: 4px 20px;
    font-weight: normal;
}

.common-all-product .table-container thead .filter-item p {
    flex: 1;
}

.common-all-product .table-container thead .filter-item input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 1px;
    appearance: none;
    border: 1px solid #2E3091;
    border-radius: 2px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s;
}

.common-all-product .table-container thead .filter-item label {
    cursor: pointer;
    white-space: normal;
}

.common-all-product .table-container thead .filter-item input:checked {
    background-color: var(--main-color);
    background-image: url('../images/tick-icon.svg');
    background-size: 70%;
}

.common-all-product .table-container thead .bottom-fn-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: 46px;
    margin-right: 15px;
    margin-top: 15px;
    color: #2E3091;
}

.common-all-product .table-container thead .bottom-fn-list .confirm-btn {
    padding: 5px 10px;
    background-color: #2E3091;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.common-all-product .table-container thead .reset-btn {}

.common-all-product .table-container thead .reset-btn p {
    display: inline-block;
    cursor: pointer;
}

.common-all-product .table-container .all-filter-list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    display: grid;
    /* display: none; */
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
    /* opacity: 0; */
}

.common-all-product .table-container .all-filter-list.isHidden {
    visibility: hidden;
}

.common-all-product .table-container .all-filter-list .item {
    min-height: 260px;
}

.common-all-product .table-container .all-filter-list .name {
    padding: 15px 20px;
    padding-bottom: 11px;
    background-color: #F3F3F8;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.common-all-product .table-container .all-filter-list ul {
    padding-bottom: 25px;
    margin-top: 15px;
    margin-left: 20px;
}

.common-all-product .table-container .all-filter-list li {
    display: flex;
    padding: 5px 0;
}

.common-all-product .table-container .all-filter-list input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 1px;
    appearance: none;
    border: 1px solid #2E3091;
    border-radius: 2px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s;
}

.common-all-product .table-container .all-filter-list p {
    flex: 1;
}

.common-all-product .table-container .all-filter-list label {
    cursor: pointer;
    white-space: normal;
}

.common-all-product .table-container .all-filter-list input:checked {
    background-color: var(--main-color);
    background-image: url('../images/tick-icon.svg');
    background-size: 70%;
}

.common-all-product .table-container .all-filter-list .filter-bottom {
    position: relative;
    grid-column: 1/7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background-color: #F3F3F8;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.common-all-product .table-container .all-filter-list .filter-bottom .reset-btn {
    position: absolute;
    left: 20px;
    display: inline-block;
    padding-bottom: 3px;
    color: #2E3091;
    cursor: pointer;
}

.common-all-product .table-container .all-filter-list .filter-bottom .reset-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #EC1B23;
}

.common-all-product .table-container .all-filter-list .filter-bottom .close-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.common-all-product .table-container .all-filter-list .filter-bottom .confirm-btn {
    position: absolute;
    right: 20px;
    padding: 5px 20px;
    background-color: #2E3091;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.common-all-product .table-container tbody tr:nth-child(odd) th,
.common-all-product .table-container tbody tr:nth-child(odd) td {
    background-color: #fff;
}

.common-all-product .table-container tbody tr:nth-child(even) th,
.common-all-product .table-container tbody tr:nth-child(even) td {
    background-color: #F3F3F8;
}

.common-all-product .table-container tbody tr th {
    position: sticky;
    left: 0;
    z-index: 3;
    padding: 20px;
    font-weight: normal;
}

.common-all-product .table-container tbody tr th::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .1);
}

.common-all-product .table-container tbody tr th .top {
    display: flex;
}

.common-all-product .table-container tbody tr th .top .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.common-all-product .table-container tbody tr th .top .pic img {
    max-width: 60px;
    max-height: 60px;
}

.common-all-product .table-container tbody tr th .top .extra-text {
    display: inline-block;
    margin-left: 10px;
    font-size: var(--small-text-size);
    color: #EC1B23;
}

.common-all-product .table-container tbody tr th .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: var(--small-text-size);
    color: #26298F;
    text-align: left;
}

.common-all-product .table-container tbody tr th .bottom span {
    display: block;
    flex: 1;
    margin-right: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.common-all-product .table-container tbody tr td {
    padding: 20px;
    white-space: nowrap;
}

.common-all-product .table-container tbody td .product-state {
    display: flex;
    align-items: center;
    gap: 5px;
}

.common-all-product .product-pager {
    margin-top: 20px;
}

.common-all-product .product-pager ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.common-all-product .product-pager ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
    font-size: var(--small-text-size);
    cursor: pointer;
    transition: all .5s;
}

.common-all-product .product-pager ul li:hover {
    background-color: var(--main-color);
    color: #fff;
}

.common-all-product .product-pager ul li.active {
    background-color: var(--main-color);
    color: #fff;
}

.common-all-product .product-pager ul li.svg-icon svg {
    width: 30px;
    height: 30px;
}

.common-all-product .product-pager ul li.svg-icon path {
    transition: fill .5s;
}

.common-all-product .product-pager ul li:hover.svg-icon path {
    fill: #ffffff;
}

.common-all-product .product-pager ul li.next-btn {
    transform: rotate(180deg);
}

.common-all-product .table-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
}

.common-all-product .table-loading svg {
    width: 30px;
    height: 30px;
    animation: rotateRound 2s infinite linear;
}

@keyframes rotateRound {
    100% {
        transform: rotate(360deg);
    }
}

.soc-chip-overview-page .part-number-nav {
    --name-width: 140px;
    --platform-name-width: 100px;
    --offset-left: 50px;
    --grid-template-columns: 25% 23% 20% 17% auto;
    padding-left: calc(var(--type-area) - var(--offset-left));
    margin-top: max(55px, calc(var(--ratio-size) * 110));
}

.soc-chip-overview-page .part-number-nav .top-content {
    padding-left: var(--offset-left);
    text-align: center;
}

.soc-chip-overview-page .part-number-nav .top-content .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
}

.soc-chip-overview-page .part-number-nav .top-content .text {
    margin-top: 5px;
    font-size: var(--text-size);
}

.soc-chip-overview-page .part-number-nav .overflow-box {
    overflow: auto;
    padding-bottom: 20px;
}

/* 修改特定容器的滚动条 */
.soc-chip-overview-page .part-number-nav .overflow-box::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.soc-chip-overview-page .part-number-nav .overflow-box::-webkit-scrollbar-track {
    background: #F3F3F8;
}

.soc-chip-overview-page .part-number-nav .overflow-box::-webkit-scrollbar-thumb {
    background: #D3D3E4;
}

.soc-chip-overview-page .part-number-nav .overflow-box::-webkit-scrollbar-thumb:hover {
    background: #D3D3E4;
}

.soc-chip-overview-page .part-number-nav .part-number-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 1200px;
    margin-top: 50px;
}

.soc-chip-overview-page .part-number-nav .part-number-item {
    display: flex;
}

.soc-chip-overview-page .part-number-nav .part-number-item .platform {
    position: sticky;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--platform-name-width);
    padding: 0 10px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: max(16px, calc(var(--ratio-size) * 20));
    text-align: center;
    background-color: #fff;
}

.soc-chip-overview-page .part-number-nav .part-number-item .platform-content {
    flex: 1;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.soc-chip-overview-page .part-number-item .part-number-table {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.soc-chip-overview-page .part-number-item .platform-name {
    position: sticky;
    left: var(--platform-name-width);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--name-width);
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
}

.soc-chip-overview-page .part-number-item .platform-grid {
    flex: 1;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: var(--grid-template-columns);
    gap: 4px;
    padding: 12px 0;
}

.soc-chip-overview-page .part-number-item .grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.soc-chip-overview-page .part-number-item .grid-bg .empty-el {
    width: var(--name-width);
    height: 100%;
}

.soc-chip-overview-page .part-number-item .grid-bg .bg-list {
    flex: 1;
    display: grid;
    grid-template-columns: var(--grid-template-columns);
    column-gap: 4px;
    width: 100%;
    height: 100%;
}

.soc-chip-overview-page .part-number-item .grid-bg .bg {
    background-color: #F3F3F8;
}

.soc-chip-overview-page .part-number-item .platform-grid .item {
    position: relative;
    z-index: 2;
    min-height: 60px;
    font-size: var(--small-text-size);
    border-radius: 5px;
}

.soc-chip-overview-page .part-number-item .platform-grid .item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 9px 15px;
    border-radius: 5px;
}

.soc-chip-overview-page .part-number-item .platform-grid .item a p {
    position: relative;
    z-index: 2;
}

.soc-chip-overview-page .part-number-item .platform-grid .item .product-name {
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.soc-chip-overview-page .part-number-item .platform-grid .span-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
}

.soc-chip-overview-page .part-number-item .platform-grid .span-bar canvas {
    width: 100%;
    height: 100%;
}

.soc-chip-overview-page .part-number-nav .x-axis-name {
    position: relative;
    display: flex;
    margin-top: 20px;
    min-width: 1200px;
}

.soc-chip-overview-page .part-number-nav .x-axis-name .empty-el {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 2;
    width: calc(var(--name-width) + var(--platform-name-width));
    font-size: var(--middle-text-size);
    background-color: #fff;
}

.soc-chip-overview-page .part-number-nav .x-axis-name .name-grid {
    flex: 1;
    display: grid;
    grid-template-columns: var(--grid-template-columns);
    gap: 4px;
    text-align: center;
}

.soc-chip-overview-page .part-number-nav .legend {
    padding-left: var(--offset-left);
    margin-top: 40px;
    font-size: var(--middle-text-size);
    text-align: center;
}

.soc-chip-overview-page .part-number-nav .legend .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.soc-chip-overview-page .part-number-nav .legend .list {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 15px;
}

.soc-chip-overview-page .part-number-nav .legend .list .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.soc-chip-overview-page .part-number-nav .legend .list .item .color {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.soc-chip-overview-page .part-number-nav .legend .list .item:nth-child(1) .color {
    background-color: #D5D6E9;
}

.soc-chip-overview-page .part-number-nav .legend .list .item:nth-child(2) .color {
    background-color: #CCEFFC;
}

.soc-chip-overview-page .part-number-nav .legend .list .item:nth-child(3) .color {
    background-color: #FBD1D3;
}

.soc-chip-series-page {
    margin-top: var(--header-height);
}

.soc-chip-series-page .description-content {
    display: flex;
    gap: max(40px, calc(var(--ratio-size) * 80));
    padding-left: var(--type-area);
    padding-bottom: var(--common-padding-bottom);
    margin-top: max(30px, calc(var(--ratio-size) * 60));
    background-color: #fff;
}

.soc-chip-series-page .description-content .description {
    width: max(500px, calc(var(--ratio-size) * 640));
}

.soc-chip-series-page .description-content .pic {
    flex: 1;
    height: calc(var(--ratio-size) * 540);
    /* border-top-left-radius: 60px;
    border-bottom-left-radius: 60px; */
    overflow: hidden;
}

.soc-chip-series-page .description-content .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soc-chip-series-page .description-content .top-title {
    color: var(--main-color);
}

.soc-chip-series-page .description-content .top-title .title {
    font-size: var(--title-size);
}

.soc-chip-series-page .description-content .top-title .sub-title {
    margin-top: 10px;
    font-family: 'PoRegular', 'SoRegular';
}

.soc-chip-series-page .description-content .content {
    margin-top: max(30px, calc(var(--ratio-size) * 65));
}

.soc-chip-series-page .description-content .content .title {
    font-size: var(--data-name-size);
}

.soc-chip-series-page .description-content .content .text {
    margin-top: 25px;
    /* text-align: justify; */
    line-height: 1.6;
}

.soc-chip-series-page .series {
    padding-top: max(40px, calc(var(--ratio-size) * 80));
    padding-bottom: max(40px, calc(var(--ratio-size) * 80));
    background-color: #F3F3F8;
}

.soc-chip-series-page .series .top {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    font-size: var(--data-name-size);
}

.soc-chip-series-page .series-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(15px, calc(var(--ratio-size) * 15)) max(30px, calc(var(--ratio-size) * 60));
}

.soc-chip-series-page .series-list.single-series {
    grid-template-columns: auto;
}

.soc-chip-series-page .series-list .item {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
}

.soc-chip-series-page .series-list.single-series .item {
    border-bottom: none;
}

.soc-chip-series-page .series-list.single-series .item a {
    display: inline-block;
    width: auto;
}

.soc-chip-series-page .series-list .platform-title {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-weight: bold;
}

.soc-chip-series-page .series-list .platform-title svg {
    transform: rotate(90deg);
    width: 7px;
}

.soc-chip-series-page .series-list .item .name {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

.soc-chip-series-page .series-list .item .text {
    margin-top: 12px;
    font-size: var(--small-text-size);
    color: #666666;
}

.soc-chip-series-page .common-all-product {
    padding-bottom: var(--common-padding-bottom);
}

.series-detail-page {
    margin-top: var(--header-height);
}

.series-detail-page .product-banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.series-detail-page .product-banner .top-title {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: max(30px, calc(var(--ratio-size) * 50));
}

.series-detail-page .product-banner .top-title .pic {
    width: 100px;
    position: relative;
}

.series-detail-page .product-banner .top-title .pic img {
    max-width: 100%;
}

.series-detail-page .product-banner .top-title .pic .product-name {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
}

.series-detail-page .product-banner .top-title .title {
    position: relative;
    display: inline-block;
    font-size: var(--title-size);
    color: var(--main-color);
}

.series-detail-page .product-banner .top-title .title span {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(120%, -25%);
    color: #ff0000;
    font-size: var(--text-size);
}

.series-detail-page .product-banner .top-title .text {
    margin-top: 3px;
}

.series-detail-page .product-banner .common-switch-nav-no-bg {
    justify-content: flex-start;
    padding: 25px 0;
    margin-top: max(50px, calc(var(--ratio-size) * 110));
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.series-detail-page .product-banner .common-switch-nav-no-bg .active {
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.series-detail-page .product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px 0;
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: #F3F3F8;
}

.series-detail-page .product-top .title {
    position: relative;
    display: inline-block;
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.series-detail-page .product-top .title span.type {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(calc(100% + 5px));
    font-family: 'PoLight', 'SoLight';
    font-size: var(--small-text-size);
    color: #EC1B23;
}

.series-detail-page .product-top .text {
    margin-top: 5px;
    font-size: var(--middle-text-size);
}

.series-detail-page .product-top .btn-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
    color: #fff;
    font-size: var(--small-text-size);
}

.series-detail-page .product-top .btn-list .btn-item a {
    display: flex;
    align-items: center;
    min-width: 150px;
    padding: 5px;
    background-color: #26298F;
    border-radius: 50000px;
    cursor: pointer;
}

.series-detail-page .product-top .btn-list .btn-item p {
    flex: 1;
    text-align: center;
    padding-left: 5px;
    padding-right: 10px;
}

.series-detail-page .product-description {
    padding-bottom: var(--common-padding-bottom);
}

.series-detail-page .product-description-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    padding-bottom: max(50px, calc(var(--ratio-size) * 100));
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.series-detail-page .product-description-content .item {
    display: flex;
    font-size: var(--middle-text-size);
    line-height: 1.87;
}

.series-detail-page .product-description-content .item .name {
    width: 280px;
    padding-right: 10px;
    color: var(--main-color);
}

.series-detail-page .product-description-content .item .text {
    flex: 1;
}

.series-detail-page .product-description-content .product-pic {
    margin-bottom: 20px;
    margin-left: 20px;
}

.series-detail-page .product-description-content .product-pic .pic {
    width: 249px;
    filter: drop-shadow(20px 20px 7px rgba(0, 1, 36, .2));
}

.series-detail-page .product-description-content .product-pic .pic img {
    width: 100%;
}

.series-detail-page .product-description-content .product-pic .type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.series-detail-page .understand-platform {
    position: relative;
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    background-color: #F3F3F8;
    overflow: hidden;
}

.expand-bg {
    position: relative;
    width: 100%;
}

.expand-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    display: block;
    width: 100%;
    height: 300px;
    background-color: #F3F3F8;
}

.series-detail-page .understand-platform .top-title {
    text-align: center;
}

.series-detail-page .understand-platform .top-title .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
}

.series-detail-page .understand-platform .top-title .text {
    margin-top: 7px;
}

.series-detail-page .understand-platform .common-switch-nav-no-bg {
    margin-top: max(25px, calc(var(--ratio-size) * 45));
}

.series-detail-page .understand-platform .common-list-swiper {
    position: relative;
    z-index: 3;
    display: none;
    margin-top: max(35px, calc(var(--ratio-size) * 70));
}

.series-detail-page .understand-platform .swiper-slide {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.series-detail-page .understand-platform .swiper-slide a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 30px;
}

.series-detail-page .understand-platform .swiper-slide .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: max(100px, calc(var(--ratio-size) * 250));
    margin-bottom: 15px;
}

.series-detail-page .understand-platform .swiper-slide .top img {
    max-width: 100%;
    max-height: 100%;
}

.series-detail-page .understand-platform .swiper-slide .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.series-detail-page .understand-platform .swiper-slide .bottom .type {
    display: inline-block;
    padding: 6px 27px;
    background-color: #DEDDEB;
    border-radius: 5000px;
    font-size: 12px;
}

.series-detail-page .understand-platform .swiper-slide .bottom .title-text {
    margin-top: 15px;
}

.series-detail-page .understand-platform .swiper-slide .bottom .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

.series-detail-page .understand-platform .swiper-slide .bottom .sub-title {
    font-size: var(--small-text-size);
    color: var(--main-color);
}

.series-detail-page .understand-platform .swiper-slide .bottom .text {
    margin-top: 18px;
    font-size: var(--small-text-size);
    color: #666666;
    line-height: 1.8;
    /* text-align: justify; */
}

.series-detail-page .understand-platform .swiper-slide .bottom .icon {
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.series-detail-page .understand-platform .swiper-slide .bottom .icon svg {
    margin-left: auto;
}

.series-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide a {
    flex-direction: row;
}

.series-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .top {
    width: 250px;
    height: auto;
    margin-bottom: 0;
}

.series-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom {
    flex-direction: row;
    margin-left: 10px;
}

.series-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom-content {
    flex: 1;
    margin-right: 20px;
}

.series-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom .icon {
    margin-top: auto;
}

.developer-board-detail-page {
    margin-top: var(--header-height);
}

.developer-board-detail-page .top-title {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: max(30px, calc(var(--ratio-size) * 60));
}

.developer-board-detail-page .top-title .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    margin-right: 50px;
}

.developer-board-detail-page .top-title .pic img {
    max-width: 100%;
    max-height: 100%;
}

.developer-board-detail-page .top-title .content {
    flex: 1;
}

.developer-board-detail-page .top-title .type {
    display: inline-block;
    padding: 6px 27px;
    background-color: #DEDDEB;
    border-radius: 50000px;
    font-size: 12px;
}

.developer-board-detail-page .top-title .title {
    font-size: var(--title-size);
    color: var(--main-color);
}

.developer-board-detail-page .top-title .text {
    margin-top: 5px;
    color: var(--main-color);
}

.developer-board-detail-page .top-title .tag-content {
    display: flex;
    gap: 10px;
    /* align-items: center; */
    margin-top: 30px;
    font-size: var(--small-text-size);
    color: #666;
}

.developer-board-detail-page .top-title .tag-content p {
    margin-top: 3px;
}

.developer-board-detail-page .top-title .tag-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.developer-board-detail-page .top-title .tag-list span {
    display: block;
    padding: 4px 10px;
    border-radius: 5000px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.developer-board-detail-page .top-title .btn-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    color: #fff;
    font-size: var(--small-text-size);
}

.developer-board-detail-page .top-title .btn-item a {
    display: flex;
    align-items: center;
    min-width: 150px;
    padding: 5px;
    background-color: #26298F;
    border-radius: 50000px;
    cursor: pointer;
}

.developer-board-detail-page .top-title .btn-item p {
    flex: 1;
    text-align: center;
    padding-left: 5px;
    padding-right: 10px;
}

.developer-board-detail-page .product-description {
    padding-top: max(30px, calc(var(--ratio-size) * 70));
    padding-bottom: max(40px, calc(var(--ratio-size) * 80));
    background-color: #F3F3F8;
}

.developer-board-detail-page .product-description .title {
    margin-top: max(20px, calc(var(--ratio-size) * 40));
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
}

.developer-board-detail-page .product-description-content .content {
    margin-top: 30px;
}

.developer-board-detail-page .product-description-content .item {
    display: flex;
    font-size: var(--middle-text-size);
    /* line-height: 1.87; */
    margin-bottom: 10px;
}

.developer-board-detail-page .product-description-content .item .name {
    width: 200px;
    padding-right: 10px;
    color: #666666;
}

.developer-board-detail-page .product-description-content .data-content {
    margin-top: 30px;
    margin-left: 20px;
    font-size: var(--middle-text-size);
    line-height: 1.87;
}

.developer-board-detail-page .product-description-content .data-content li {
    position: relative;
    padding-left: 15px;
}

.developer-board-detail-page .product-description-content .data-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.common-product-table {
    width: 100%;
    padding-bottom: 10px;
    overflow: auto;
}

.common-product-table::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.common-product-table::-webkit-scrollbar-track {
    /* background: #F3F3F8; */
    background: #e6e6eb;
}

.common-product-table::-webkit-scrollbar-thumb {
    background: #D3D3E4;
}

.common-product-table::-webkit-scrollbar-thumb:hover {
    background: #D3D3E4;
}

.common-product-table table {
    table-layout: fixed;
    width: 100%;
    border-spacing: 0;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.common-product-table table thead {
    background-color: var(--main-color);
    color: #fff;
}

.common-product-table table thead th:not(:last-child) {
    border-right: 1px solid #fff;
}

.common-product-table table thead th {
    padding: 15px;
    font-weight: normal;
    /* font-family: 'PoMedium', 'SoMedium'; */
    text-align: center;
}

.common-product-table table tbody tr {
    min-height: 50px;
    background-color: #fff;
}

.common-product-table table tbody tr td:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.common-product-table table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.common-product-table table tbody tr:nth-child(even) {
    background-color: #F9F9FB;
}

.common-product-table table tbody tr td {
    padding: 15px;
    text-align: center;
    font-size: var(--small-text-size);
}

.developer-board-detail-page .product-description .common-product-table {
    margin-top: max(25px, calc(var(--ratio-size) * 50));
    overflow: auto;
}

.developer-board-detail-page .product-description .common-product-table table {
    min-width: 900px;
}

.developer-board-detail-page .product-description .common-product-table tbody tr td {
    padding: max(15px, calc(var(--ratio-size) * 35)) 15px;
}

.developer-board-detail-page .understand-platform {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.developer-board-detail-page .understand-platform .big-title {
    margin-top: max(20px, calc(var(--ratio-size) * 40));
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--inside-title-size);
}

.developer-board-detail-page .understand-platform .common-list-swiper {
    margin-top: 35px;
}

.developer-board-detail-page .understand-platform .swiper-slide {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.developer-board-detail-page .understand-platform .swiper-slide a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 30px;
}

.developer-board-detail-page .understand-platform .swiper-slide .top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-board-detail-page .understand-platform .swiper-slide .top img {
    max-width: 100%;
    max-height: 100%;
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .type {
    display: inline-block;
    padding: 6px 27px;
    background-color: #DEDDEB;
    border-radius: 5000px;
    font-size: 12px;
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .title-text {
    margin-top: 15px;
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .sub-title {
    font-size: var(--small-text-size);
    color: var(--main-color);
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .text {
    margin-top: 18px;
    font-size: var(--small-text-size);
    color: #666666;
    line-height: 1.8;
    /* text-align: justify; */
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .icon {
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.developer-board-detail-page .understand-platform .swiper-slide .bottom .icon svg {
    margin-left: auto;
}

.developer-board-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide a {
    flex-direction: row;
}

.developer-board-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .top {
    width: 250px;
}

.developer-board-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom {
    flex-direction: row;
    margin-left: 10px;
}

.developer-board-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom-content {
    flex: 1;
    margin-right: 20px;
}

.developer-board-detail-page .understand-platform .common-list-swiper.only-one .swiper-slide .bottom .icon {
    margin-top: auto;
}

.support-common-top-title {
    margin-top: max(30px, calc(var(--ratio-size) * 50));
    text-align: center;
}

.support-common-top-title .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--title-size);
}

.support-common-top-title .text {
    margin-top: 10px;
}

.support-common-top-title .common-switch-nav-no-bg {
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.faq-page .common-collapsible-list {
    margin-top: max(35px, calc(var(--ratio-size) * 75));
}

.common-collapsible-list {
    border-top: 1px solid #D5D5D5;
}

.common-collapsible-list .item {
    border-bottom: 1px solid #D5D5D5;
}

.common-collapsible-list .item .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* min-height: max(40px, calc(var(--ratio-size) * 80)); */
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: var(--data-name-size);
    cursor: pointer;
    transition: all .5s;
}

.common-collapsible-list .item .top-part .title {
    font-size: 20px;
}

.common-collapsible-list .item .top-part .icon {
    transition: all .5s;
}

.common-collapsible-list .item .more-message {
    display: none;
    position: relative;
    /* min-height: 150px; */
    padding-top: 30px;
    padding-bottom: max(40px, calc(var(--ratio-size) * 65));
    background-color: #F3F3F8;
    font-size: var(--middle-text-size);
    line-height: 1.8;
}

.common-collapsible-list .item .more-message::after {
    content: '';
    position: absolute;
    left: var(--type-area);
    top: 0;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: var(--main-color);
    opacity: 0;
}

.common-collapsible-list .item .more-message .text {
    padding-right: max(50px, calc(var(--ratio-size)* 150));
}

.common-collapsible-list .item .more-message .text h1,
.common-collapsible-list .item .more-message .text h2,
.common-collapsible-list .item .more-message .text h3,
.common-collapsible-list .item .more-message .text h4,
.common-collapsible-list .item .more-message .text h5,
.common-collapsible-list .item .more-message .text h6 {
    margin-top: 1em;
    font-size: 17px;
}

.common-collapsible-list .item .more-message .text p+p {
    margin-top: 1em;
}

.common-collapsible-list .item .more-message .text ol,
.common-collapsible-list .item .more-message .text ul {
    margin-bottom: 1.5em;
    padding-left: 15px;
}

.common-collapsible-list .item .more-message a {
    color: var(--main-color);
    text-decoration: underline;
    cursor: pointer;
}

.common-collapsible-list .item .more-message ol,
.common-collapsible-list .item .more-message ul {
    margin-left: 20px;
}

.common-collapsible-list .item .more-message ul li {
    list-style-type: disc;
    /* list-style-position: inside; */
}

.common-collapsible-list .item .more-message strong {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-weight: bold;
    /* color: var(--main-color); */
}

.common-collapsible-list .item .more-message img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.common-collapsible-list .item.active {
    background-color: var(--main-color);
}

.common-collapsible-list .item.active .top-part {
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: #fff;
}

.common-collapsible-list .item .top-part svg path {
    transition: all .5s;
}

.common-collapsible-list .item.active .top-part svg path {
    stroke: #fff;
}

.common-collapsible-list .item.active .top-part .icon {
    transform: rotate(90deg);
}

.common-collapsible-list .item.active .more-message::after {
    opacity: 1;
}

.common-collapsible-list .item .top-part:hover {
    background-color: var(--main-color);
    color: #fff;
}

.common-collapsible-list .item .top-part:hover svg path {
    stroke: #fff;
}

.faq-page .ask-questions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: max(30px, calc(var(--ratio-size) * 60));
    padding-top: max(35px, calc(var(--ratio-size) * 70));
    padding-bottom: max(30px, calc(var(--ratio-size) * 60));
    margin-top: var(--common-padding-top);
    background-color: #F3F3F8;
}

.faq-page .ask-questions .icon {
    width: 71px;
}

.faq-page .ask-questions .icon svg {
    width: 100%;
}

.faq-page .ask-questions .title {
    font-size: var(--big-text-size);
}

.faq-page .ask-questions .text {
    font-size: var(--middle-text-size);
}

.faq-page .ask-questions .text a {
    color: var(--main-color);
    text-decoration: underline;
}

.partner-page {
    padding-bottom: var(--common-padding-bottom);
}

.partner-page .title-content {
    margin-top: max(35px, calc(var(--ratio-size) * 70));
}

.partner-page .title-content .fn-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
    padding: 30px 0;
}

.partner-page .title-content .fn-content .title {
    font-size: var(--data-name-size);
}

.partner-page .title-content .fn-content .select-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: var(--small-text-size);
}

.partner-page .title-content .fn-content .select-item {
    position: relative;
    width: 220px;
    cursor: pointer;
}

.partner-page .title-content .fn-content .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 7px 20px;
    background-color: #DEDDEB;
    border-radius: 5000px;
}

.partner-page .title-content .fn-content .select-item ul {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(100%);
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.partner-page .title-content .fn-content .select-item ul li {
    padding: 7px 20px;
    cursor: pointer;
    transition: all .3s;
}

.partner-page .title-content .fn-content .select-item ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.partner-page .title-content .fn-content .select-item ul li:hover {
    background-color: var(--main-color);
    color: #fff;
}

.partner-page .partner-content .directory-list {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.partner-page .partner-content .partner-item {
    display: flex;
    align-items: center;
    gap: max(20px, calc(var(--ratio-size) * 40));
    padding: max(20px, calc(var(--ratio-size) * 40));
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.partner-page .partner-content .partner-item .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 160px;
    background-color: #F3F3F8;
    border-radius: 15px;
}

.partner-page .partner-content .partner-item .pic img {
    max-width: 70%;
    max-height: 70%;
}

.partner-page .partner-content .partner-item .content {
    flex: 1;
    font-size: var(--small-text-size);
}


.partner-page .partner-content .partner-item .content .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--text-size);
    color: var(--main-color);
}

.partner-page .partner-content .partner-item .content .sub-title {
    margin-top: 2px;
    color: var(--main-color);
}

.partner-page .partner-content .partner-item .content .text {
    margin-top: 10px;
    color: #666666;
    /* text-align: justify; */
}

.partner-page .partner-content .partner-item .content .btn a {
    position: relative;
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    color: var(--main-color);
}

.radar-detail-page .partner-container .swiper-slide .bottom .btn a::after,
.partner-page .partner-content .partner-item .content .btn a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #EC1B23;
    transition: all .5s;
}

.radar-detail-page .partner-container .swiper-slide .bottom .btn a:hover::after,
.partner-page .partner-content .partner-item .content .btn a:hover::after {
    width: 100%;
}

.partner-page .partner-content .common-pagination {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.common-quality-content {
    padding-top: max(25px, calc(var(--ratio-size) * 50));
    padding-bottom: var(--common-padding-bottom);
}

.common-quality-content .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--title-size); */
    font-size: max(24px, calc(var(--ratio-size) * 35));
}

.common-quality-content .main-content {
    display: flex;
    gap: calc(var(--ratio-size) * 280);
    align-items: flex-start;
    width: 100%;
}

.common-quality-content .main-content:not(:nth-of-type(1)) {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

.common-quality-content .main-content .content {
    flex: 1;
    margin-top: max(25px, calc(var(--ratio-size) * 45));
}

.common-quality-content .main-content .description {
    margin-bottom: max(15px, calc(var(--ratio-size) * 30));
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.common-quality-content .main-content .text {
    /* text-align: justify; */
    line-height: 1.6;
}

.common-quality-content .main-content .text a {
    color: var(--main-color);
    text-decoration: underline;
}

.common-quality-content .main-content .text li {
    list-style-type: disc;
    list-style-position: inside;
}

.common-quality-content .main-content .pic-content {
    width: max(250px, calc(var(--ratio-size) * 320));
    background-color: #F3F3F8;
}

.common-quality-content .main-content .pic-content .pic {
    cursor: zoom-in;
    /* padding-left: calc(var(--ratio-size) * 40); */
}

.common-quality-content .main-content .pic-content .pic img {
    width: 100%;
}

.common-quality-content .main-content .pic-content p {
    width: 100%;
    min-height: 48px;
    padding: 15px calc(var(--ratio-size) * 40);
    padding-bottom: 20px;
    text-align: center;
    font-size: var(--middle-text-size);
}

.quality-security-vulnerability-page .quality-list,
.quality-process-page .quality-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.quality-security-vulnerability-page .quality-list .item,
.quality-process-page .quality-list .item {
    padding: 30px;
    background-color: #F9F9FB;
    border-radius: 30px;
}

.quality-security-vulnerability-page .quality-list .item .item-title,
.quality-process-page .quality-list .item .item-title {
    font-size: max(20px, calc(var(--ratio-size) * 24));
    color: #2E3091;
}

.quality-security-vulnerability-page .quality-list .item .text,
.quality-process-page .quality-list .item .text {
    margin-top: max(15px, calc(var(--ratio-size) * 20));
    font-size: var(--middle-text-size);
    text-align: justify;
    line-height: 1.8;
}

.quality-security-vulnerability-page .quality-list .item .text img,
.quality-process-page .quality-list .item .text img {
    max-width: 100%;
    height: auto;
}

.quality-security-vulnerability-page .quality-list .item .text h1,
.quality-security-vulnerability-page .quality-list .item .text h2,
.quality-security-vulnerability-page .quality-list .item .text h3,
.quality-security-vulnerability-page .quality-list .item .text h4,
.quality-security-vulnerability-page .quality-list .item .text h5,
.quality-security-vulnerability-page .quality-list .item .text h6,
.quality-process-page .quality-list .item .text h1,
.quality-process-page .quality-list .item .text h2,
.quality-process-page .quality-list .item .text h3,
.quality-process-page .quality-list .item .text h4,
.quality-process-page .quality-list .item .text h5,
.quality-process-page .quality-list .item .text h6 {
    margin-top: 1em;
    font-size: 17px;
}

.quality-security-vulnerability-page .quality-list .item .text ol,
.quality-security-vulnerability-page .quality-list .item .text ul,
.quality-process-page .quality-list .item .text ol,
.quality-process-page .quality-list .item .text ul {
    margin-top: 3px;
    margin-left: 20px;
    margin-bottom: 1.5em;
    padding-left: 15px;
}

.quality-security-vulnerability-page .quality-list .item .text ul li,
.quality-process-page .quality-list .item .text ul li {
    list-style-type: disc;
}

.quality-security-vulnerability-page .quality-list .item .text p+p,
.quality-process-page .quality-list .item .text p+p {
    margin-top: 1em;
}

.industry-applications-page .screen-one {
    position: relative;
    overflow: hidden;
}

.industry-applications-page .screen-one .wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
}


.industry-applications-page .screen-one .part-two .btn-list {
    gap: max(50px, calc(var(--ratio-size) * 120));
}

.soc-products-page .screen-four {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.industry-applications-page .expand-bg::after {
    background-color: #000;
}

.automotive-page .screen-common {
    width: 100%;
    height: 100vh;
}

.automotive-page .screen-one {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.automotive-page .screen-one .mask-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
}

.automotive-page .common-breadcrumb-nav {
    color: #fff;
}

.automotive-page .screen-one .common-switch-nav {
    position: relative;
    z-index: 2;
}

.automotive-page .screen-one .contentBox {
    flex: 1;
    display: flex;
    align-items: center;
}

.automotive-page .screen-one .part-one {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 6%;
}

.automotive-page .screen-one .part-one .text-one {
    text-align: center;
}

.automotive-page .screen-one .part-one .text-two {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    width: 90%;
}

.automotive-page .screen-one .part-one .s-content {
    font-family: 'PoRegular', 'SoRegular';
}

.automotive-page .screen-one .part-one .s-content .cn-text {
    font-size: var(--data-name-size);
}

.automotive-page .screen-one .part-one .b-content {
    margin-top: max(25px, calc(var(--ratio-size) * 35));
    text-align: center;
}

.automotive-page .screen-one .part-one .b-content .cn-text {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.automotive-page .screen-one .next-content {
    font-size: var(--data-name-size);
    text-align: center;
}

.automotive-page .screen-two {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    background-image: linear-gradient(to bottom, #000, #1c1e5e 40%, #1c1e5e 60%, #000);
    color: #fff;
}

.automotive-page.industrial-page .screen-two {
    background-size: cover;
    background-position: bottom right;
}

.automotive-page.industrial-page .screen-two::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.automotive-page .screen-two canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.automotive-page .screen-two .canvas-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.automotive-page .screen-two .car-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.automotive-page .screen-two .car-container .car {
    position: relative;
    /* width: 523px; */
    width: 18%;
}

.automotive-page .screen-two .car-container .car-model {
    width: 100%;
}

.automotive-page .screen-two .radar-part {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* display: none; */
    width: 100%;
    height: 100%;
}

.automotive-page .screen-two .radar-part:nth-of-type(1) {
    z-index: 4;
}

.automotive-page .screen-two .radar-item {
    position: absolute;
    display: none;
    opacity: 0;
}

.automotive-page .screen-two .radar-item .line {
    position: absolute;
}

.automotive-page .screen-two .radar-item p {
    position: absolute;
    white-space: nowrap;
    text-shadow: 1px 0 0 #444444, -1px 0 0 #444444, 0 1px 0 #444444, 0 -1px 0 #444444;
}

.automotive-page .screen-two .dot {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
}

.automotive-page .screen-two .dot .bg-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.automotive-page .screen-two .dot:hover {
    background-color: rgba(255, 255, 255, 0);
}

.automotive-page .screen-two .dot:hover a {
    background-color: var(--main-color);
}

.automotive-page .screen-two .dot a:hover~.bg-dot:nth-of-type(1) {
    animation: spreadAn 3s linear infinite;
    background-color: rgba(255, 255, 255, .4);
}

.automotive-page .screen-two .dot a:hover~.bg-dot:nth-of-type(2) {
    animation: spreadAn 3s 1.5s linear infinite;
    background-color: rgba(255, 255, 255, .4);
}

.automotive-page .screen-two .dot a {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all .5s;
}

.automotive-page .screen-two .dot img,
.automotive-page .screen-two .dot svg {
    display: block;
    width: 70%;
    animation: scrollAn 10s linear infinite;
}

.automotive-page .screen-two .radar-one-part .radar-item.first-radar {
    left: 10%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.automotive-page .screen-two .radar-one-part .radar-item.first-radar p {
    left: -210px;
    top: -42px;
}

.automotive-page .screen-two .radar-one-part .radar-item.second-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.second-radar .line {
    top: 50%;
    right: -60%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.second-radar p {
    left: -266px;
    top: 50%;
    /* transform: translateY(-50%); */
}

.automotive-page .screen-two .radar-one-part .radar-item.third-radar {
    left: 10%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
}

.automotive-page .screen-two .radar-one-part .radar-item.third-radar p {
    left: -210px;
    top: 42px;
}

.automotive-page .screen-two .radar-one-part .radar-item.fourth-radar {
    right: 1%;
    top: 13%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
}

.automotive-page .screen-two .radar-one-part .radar-item.fourth-radar p {
    right: -210px;
    top: -42px;
}

.automotive-page .screen-two .radar-one-part .radar-item.fifth-radar {
    right: 1%;
    top: 50%;
    transform: translate(50%, -50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.fifth-radar .line {
    top: 50%;
    left: -60%;
    transform: translate(50%, -50%) rotateY(180deg);
}

.automotive-page .screen-two .radar-one-part .radar-item.fifth-radar p {
    right: -175px;
    top: 50%;
    /* transform: translateY(-50%); */
}

.automotive-page .screen-two .radar-one-part .radar-item.sixth-radar {
    right: 1%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-one-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
}

.automotive-page .screen-two .radar-one-part .radar-item.sixth-radar p {
    right: -210px;
    top: 42px;
}

.automotive-page .screen-two .radar-two-part .radar-item.first-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-two-part .radar-item.first-radar .line {
    top: 50%;
    right: -60%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-two-part .radar-item.first-radar p {
    left: -201px;
    top: 50%;
    transform: translateY(-50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.first-radar {
    left: 38%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.automotive-page .screen-two .radar-three-part .radar-item.first-radar p {
    left: -195px;
    top: -42px;
}

.automotive-page .screen-two .radar-three-part .radar-item.second-radar {
    left: 51%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.second-radar .line {
    top: -50%;
    right: 50%;
    transform: translate(50%, -100%) rotate(90deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.second-radar p {
    left: 50%;
    top: -76px;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.third-radar {
    left: 38%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.third-radar p {
    left: -195px;
    top: 42px;
}

.automotive-page .screen-two .radar-three-part .radar-item.fourth-radar {
    right: 20%;
    top: 6%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.fourth-radar p {
    right: -195px;
    top: -42px;
}

.automotive-page .screen-two .radar-three-part .radar-item.fifth-radar {
    left: 51%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.fifth-radar .line {
    bottom: -50%;
    right: 50%;
    transform: translate(50%, 100%) rotate(270deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.fifth-radar p {
    left: 50%;
    bottom: -84px;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.sixth-radar {
    right: 20%;
    bottom: 6%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.sixth-radar p {
    right: -195px;
    top: 42px;
}

.automotive-page .screen-two .radar-three-part .radar-item.seventh-radar {
    left: 60%;
    bottom: 50%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.seventh-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 50%) rotate(180deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.seventh-radar p {
    right: -195px;
    top: 50%;
    transform: translateY(-50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.eighth-radar {
    right: -2%;
    top: 45%;
    transform: translateY(50%);
}

.automotive-page .screen-two .radar-three-part .radar-item.eighth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 50%) rotate(180deg);
}

.automotive-page .screen-two .radar-three-part .radar-item.eighth-radar p {
    right: -190px;
    top: 50%;
    transform: translateY(-50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.first-radar {
    left: 10%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
}

.automotive-page .screen-two .radar-four-part .radar-item.first-radar p {
    left: -155px;
    top: -42px;
}

.automotive-page .screen-two .radar-four-part .radar-item.second-radar {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.third-radar {
    left: 10%;
    bottom: 10%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.fourth-radar {
    right: 0;
    top: 29%;
    transform: translate(30%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.fifth-radar {
    right: 1%;
    top: 50%;
    transform: translate(50%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.sixth-radar {
    right: 0;
    bottom: 28%;
    transform: translate(30%, 50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.seventh-radar {
    left: 43%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-item.eighth-radar {
    right: 15%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-four-part .radar-name {
    position: absolute;
    white-space: nowrap;
    text-shadow: 1px 0 0 #444444, -1px 0 0 #444444, 0 1px 0 #444444, 0 -1px 0 #444444;
    opacity: 0;
    display: none;
}

.automotive-page .screen-two .radar-four-part .radar-name.first-text {
    bottom: 20%;
    left: 60%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-four-part .radar-name.second-text {
    bottom: -50%;
    left: 60%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.first-radar {
    left: 6%;
    top: 18%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.first-radar .line {
    left: 50%;
    top: 50%;
    transform: translate(-100%, -100%);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.first-radar p {
    left: -200px;
    top: -42px;
}

.automotive-page .screen-two .radar-five-part .radar-item.third-radar {
    left: 4%;
    bottom: 43%;
    transform: translate(-50%, 50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.third-radar .line {
    left: 50%;
    bottom: 50%;
    transform: translate(-100%, 100%) rotateX(180deg);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.third-radar p {
    left: -200px;
    bottom: -33px;
}

.automotive-page .screen-two .radar-five-part .radar-item.fourth-radar {
    right: 6%;
    top: 19%;
    transform: translate(30%, -50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.fourth-radar .line {
    right: 50%;
    top: 50%;
    transform: translate(100%, -100%) rotateY(180deg);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.fourth-radar p {
    left: 125px;
    top: -42px;
}

.automotive-page .screen-two .radar-five-part .radar-item.sixth-radar {
    right: 5%;
    bottom: 34%;
    transform: translate(30%, 50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.sixth-radar .line {
    right: 50%;
    bottom: 50%;
    transform: translate(100%, 100%) rotate(180deg);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.sixth-radar p {
    left: 125px;
    bottom: -33px;
}

.automotive-page .screen-two .radar-five-part .radar-item.seventh-radar {
    left: 30%;
    top: 19%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.seventh-radar .line {
    left: 50%;
    bottom: 55%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-100px, 50%);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.eighth-radar {
    left: 48%;
    top: 20%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-five-part .radar-item.eighth-radar .line {
    left: 50%;
    bottom: 55%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-100px, 50%);
    width: 100px;
}

.automotive-page .screen-two .radar-five-part .radar-item.first-text {
    top: -100px;
    left: 39%;
}

.automotive-page .screen-two .radar-five-part .radar-item.first-text p {
    transform: translateX(-50%);
}

.automotive-page .screen-two .radar-six-part .radar-item.first-radar {
    left: 17%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.automotive-page .screen-two .radar-six-part .radar-item.first-radar .line {
    left: 50%;
    bottom: -25%;
    transform-origin: left center;
    transform: rotate(90deg) rotateX(180deg) translateX(-100%) translateY(-50%);
    width: 100px;
}

.automotive-page .screen-two .radar-six-part .radar-item.first-radar p {
    top: -120px;
    left: -70px;
}





.automotive-page .screen-two .description-container {
    position: absolute;
    bottom: max(30px, calc(var(--ratio-size) * 50));
    z-index: 3;
    width: 100%;
    text-align: center;
}

.automotive-page .screen-two .description-container .description-content {
    display: none;
    width: min(100%, 318px);
    margin: 0 auto;
}

.automotive-page .screen-two .description-container .description-content:nth-child(1) {
    display: block;
}

.automotive-page .screen-two .description-container .description-content .text {
    font-size: var(--small-text-size);
}

.automotive-page .screen-two .description-container .description-content .more-btn {
    margin-top: 15px;
}

.automotive-page .screen-two .description-container .description-content .more-btn a {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.automotive-page .screen-two .description-container .description-content .more-btn a svg {
    margin-left: 20px;
    transition: all .5s;
}

.automotive-page .screen-two .description-container .description-content .more-btn a:hover svg {
    transform: translateX(10px);
}

.automotive-page .screen-two .description-container .switch-list {
    display: flex;
    justify-content: center;
    align-items: self-end;
    gap: 20px;
    margin-top: max(25px, calc(var(--ratio-size) * 35));
}

.automotive-page .screen-two .description-container .switch-list p {
    width: 220px;
    padding-bottom: max(10px, calc(var(--ratio-size) * 20));
    border-bottom: 2px solid #fff;
    text-align: center;
    opacity: .5;
    cursor: pointer;
}

.automotive-page .screen-two .description-container .switch-list p.active {
    opacity: 1;
}

.automotive-page .screen-two .car-container-two {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.automotive-page .screen-two .car-container-two .car {
    position: relative;
    width: 18%;
    margin-left: 37%;
}

.automotive-page .screen-two .car-container-two .car .car-pic {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, .5));
}

.automotive-page .screen-two .car-container-two .car .car-pic img {
    width: 100%;
}

.automotive-page .screen-two .car-container-two .wave-pic {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
}

.automotive-page .screen-two .car-container-two .wave-pic img {
    width: 100%;
    opacity: .9;
}

.automotive-page .screen-two .car-container-two .wave-pic:nth-child(1) {
    width: 171%;
}

.automotive-page .screen-two .car-container-two .wave-pic:nth-child(2) {
    width: 262%;
}

.automotive-page .screen-two .car-container-two .wave-pic:nth-child(3) {
    width: 416%;
}

.automotive-page .screen-two .car-container-two .car-text {
    position: absolute;
    top: 60%;
    left: 170%;
    /* transform: translateY(-50%); */
    z-index: 3;
    width: 71%;
}

.automotive-page .screen-two .car-container-two .car-text img {
    width: 100%;
}

.automotive-page .screen-two .car-container-two .light {
    position: absolute;
    top: 68%;
    left: 80%;
    transform: translateY(-50%);
    width: 226%;
}

.automotive-page .screen-two .car-container-two .light img {
    width: 100%;
}

.automotive-page .screen-two .car-container-two .person {
    position: absolute;
    top: 95%;
    left: 245%;
    /* transform: translateY(-50%); */
    width: 26%;
}

.automotive-page .screen-two .car-container-two .person img {
    width: 100%;
}

.automotive-page .screen-two .car-container-two .wave-area-list {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11.5vw;
    width: 100%;
}

.automotive-page .screen-two .wave-area-list.can-click .item:hover {
    cursor: pointer;
    opacity: 1;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 500000px;
    opacity: .5;
    transition: all .5s;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item.active {
    opacity: 1;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item .icon img {
    max-width: 60%;
    max-height: 60%;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item p {
    padding-left: 17px;
    padding-right: 27px;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item .connecting-line {
    position: absolute;
    right: 0;
    z-index: 3;
    transform: translateX(calc(100% - .25vw));
    width: 12vw;
}

.automotive-page .screen-two .car-container-two .wave-area-list .item .connecting-line svg {
    width: 100%;
}

.automotive-page .expand-bg::after {
    background-color: #000;
}

.automotive-page.industrial-page .screen-two .btn-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.automotive-page.industrial-page .screen-two .video-bg {
    display: block;
    object-position: center 95%;
}

.automotive-page.industrial-page .screen-two .mobile-video-bg {
    width: 100%;
}

.automotive-page.industrial-page .screen-two .btn-list .item {
    position: absolute;
}

.automotive-page.industrial-page .screen-two .btn-list .item:nth-child(1) {
    right: 14%;
    top: 45%;
}

.automotive-page.industrial-page .screen-two .btn-list .item:nth-child(2) {
    right: 69%;
    top: 45%;
}

.automotive-page.industrial-page .screen-two .btn-list .item:nth-child(3) {
    right: 45%;
    top: 10%;
}

.automotive-page.industrial-page .screen-two .btn-list .item .item-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 1000px;
    cursor: pointer;
    background: transparent;
    /* background-color: rgba(29, 32, 135, .5); */
    background-color: rgba(184, 184, 184, .2);
    /* backdrop-filter: blur(10px); */
}

.automotive-page.industrial-page .screen-two .btn-list .item .item-content::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1000px;
    background: linear-gradient(45deg, #2E3091, #00ADEE);
    z-index: -1;
    padding: 4px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
}

.automotive-page.industrial-page .screen-two .btn-list .item .more-message {
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 20px;
    /* opacity: 0; */
}

.automotive-page.industrial-page .screen-two .btn-list .icon {
    width: 37px;
    height: 40px;
}

.automotive-page.industrial-page .screen-two .btn-list .icon img {
    max-width: 100%;
    max-height: 100%;
}

.automotive-page.industrial-page .screen-two .btn-list p {
    margin-left: 17px;
    font-family: 'PoRegular', 'SoRegular';
    color: #fff;
}

.automotive-page.industrial-page .screen-two .btn-list .industrial-btn {
    position: relative;
    margin-left: auto;
}

.automotive-page.industrial-page .screen-two .btn-list .industrial-btn .circle-svg {
    animation: scrollAn 10s linear infinite;
}

.automotive-page.industrial-page .screen-two .btn-list .industrial-btn .arrow-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.automotive-page.industrial-page .expand-bg::after {
    background-color: #2F3D6C;
}

.automotive-page.industrial-page.consumer-page .screen-two .btn-list .item:nth-child(1) {
    left: 14%;
    right: auto;
    top: 60%;
}

.automotive-page.industrial-page.consumer-page .screen-two .btn-list .item:nth-child(2) {
    right: 30%;
    top: 20%;
}

.automotive-page.industrial-page.consumer-page .screen-two .btn-list .item:nth-child(3) {
    left: 28%;
    right: auto;
    top: 75%;
}

.automotive-page.industrial-page.consumer-page .expand-bg::after {
    background-color: #000;
}

.automotive-page.industrial-page.consumer-page .screen-two .mobile-video-bg {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.radar-overview-page .inside-banner {
    justify-content: flex-start;
}

.radar-overview-page .inside-banner .inside-banner-content {
    text-align: left;
}

.radar-overview-page .message-container {
    padding-top: max(25px, calc(var(--ratio-size) * 55));
    padding-bottom: var(--common-padding-top);
}

.radar-overview-page .message-container.hide {
    overflow: hidden;
}

.radar-overview-page .message-container .top-content {
    text-align: center;
}

.radar-overview-page .message-container .top-content .title {
    font-size: var(--data-name-size);
}

.radar-overview-page .message-container .top-content .text {
    padding: 0 12.5%;
    margin-top: 25px;
    line-height: 1.6;
    text-align: left;
    /* text-align: justify; */
}

.radar-overview-page .message-container .top-content .text ul,
.radar-detail-page .description-content .content .text ul {
    padding-left: 30px;
}

.radar-overview-page .message-container .top-content .text li,
.radar-detail-page .description-content .content .text li {
    position: relative;
    padding-left: 15px;
}

.radar-overview-page .message-container .top-content .text li::after,
.radar-detail-page .description-content .content .text li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: var(--main-color);
}

.radar-overview-page .message-container .common-list-swiper {
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.radar-overview-page .message-container .swiper-slide {
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
    border-radius: 30px;
}

.radar-overview-page .message-container .swiper-slide .top {
    width: 100%;
    height: calc(var(--ratio-size) * 380);
    border-radius: 30px;
    overflow: hidden;
}

.radar-overview-page .message-container .swiper-slide .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-overview-page .message-container .swiper-slide .bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    padding-bottom: 40px;
    text-align: center;
}

.radar-overview-page .message-container .swiper-slide .bottom .title {
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.radar-overview-page .message-container .swiper-slide .bottom .text {
    margin-top: 7px;
    font-size: 16px;
}

.radar-overview-page .message-container .swiper-slide .bottom .common-btn {
    margin-top: 30px;
}

.radar-overview-page .message-container .swiper-slide .bottom .common-btn a {
    padding: 13px 28px;
    /* border-color: rgba(0, 0, 0, .2); */
}

/* .radar-overview-page .message-container .swiper-slide .bottom .common-btn circle,
.radar-overview-page .message-container .swiper-slide .bottom .common-btn path {
    transition: all .5s;
}

.radar-overview-page .message-container .swiper-slide .bottom .common-btn a:hover {
    color: #fff;
}

.radar-overview-page .message-container .swiper-slide .bottom .common-btn a:hover circle {
    fill: #fff;
}

.radar-overview-page .message-container .swiper-slide .bottom .common-btn a:hover path {
    stroke: var(--main-color);
} */

.radar-overview-page .message-container .only-one .top {
    width: 50%;
    height: 100%;
}

.radar-overview-page .message-container .only-one .bottom {
    justify-content: center;
    width: 50%;
    height: 100%;
}

.radar-overview-page .video-container {
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.radar-overview-page .video-container .title {
    margin-top: max(20px, calc(var(--ratio-size) * 30));
    font-size: var(--big-text-size);
}

.radar-overview-page .video-container .swiper-slide {
    position: relative;
    padding-inline: 23px 30px;
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
}

.radar-overview-page .video-container .swiper-slide .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* .radar-overview-page .video-container .swiper-slide .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 8), rgba(0, 0, 0, 0) 50%);
} */

.radar-overview-page .video-container .swiper-slide .bg img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-overview-page .video-container .common-list-swiper {
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.radar-overview-page .video-container .swiper-slide {
    min-height: max(200px, calc(var(--ratio-size) * 240));
    padding: 30px;
    padding-top: 23px;
}

.radar-overview-page .video-container .swiper-slide .title {
    font-size: var(--text-size);
}

.radar-overview-page .video-container .swiper-slide .text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.radar-overview-page .video-container .swiper-slide .icon {
    padding: 20px;
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    cursor: pointer;
}

.radar-overview-page .video-container .swiper-slide .icon:hover {
    background-color: rgb(46, 48, 145);
}

.radar-overview-page .video-container .swiper-slide .icon img {
    width: 45px;
}

.radar-overview-page .video-container .swiper-slide .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-detail-page {
    margin-top: var(--header-height);
}

.radar-detail-page .description-content {
    display: flex;
    gap: max(40px, calc(var(--ratio-size) * 80));
    align-items: center;
    padding-left: var(--type-area);
    padding-bottom: var(--common-padding-bottom);
    margin-top: max(30px, calc(var(--ratio-size) * 60));
    background-color: #fff;
}

.radar-detail-page .description-content .description {
    width: max(500px, calc(var(--ratio-size) * 640));
}

.radar-detail-page .description-content .pic {
    position: relative;
    flex: 1;
    /* height: calc(var(--ratio-size) * 540); */
    /* border-top-left-radius: 60px;
    border-bottom-left-radius: 60px; */
    overflow: hidden;
}

.radar-detail-page .description-content .pic .pic-swiper {
    width: 100%;
    height: 100%;
}

.radar-detail-page .description-content .pic .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.radar-detail-page .description-content .pic video,
.radar-detail-page .description-content .pic img {
    display: block;
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
}

.radar-detail-page .description-content .pic .swiper-pagination {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.radar-detail-page .description-content .pic .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}

.radar-detail-page .description-content .top-title {
    color: var(--main-color);
}

.radar-detail-page .description-content .top-title .title {
    font-size: var(--title-size);
}

.radar-detail-page .description-content .top-title .sub-title {
    margin-top: 10px;
    font-family: 'PoRegular', 'SoRegular';
}

.radar-detail-page .description-content .content {
    margin-top: max(30px, calc(var(--ratio-size) * 65));
}

.radar-detail-page .description-content .content .title {
    font-size: var(--data-name-size);
}

.radar-detail-page .description-content .content .text {
    margin-top: 25px;
    /* text-align: justify; */
    line-height: 1.6;
}

.radar-detail-page .indicators {
    padding-top: max(40px, calc(var(--ratio-size) * 80));
    padding-bottom: max(40px, calc(var(--ratio-size) * 80));
    background-color: #F3F3F8;
}

.radar-detail-page .indicators .title {
    margin-top: max(20px, calc(var(--ratio-size) * 40));
    font-size: var(--big-text-size);
    /* font-size: var(--inside-title-size); */
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.radar-detail-page .indicators .common-product-table {
    margin-top: max(20px, calc(var(--ratio-size) * 40));
}

.radar-detail-page .indicators .common-product-table table {
    min-width: 800px;
}

.radar-detail-page .indicators .common-product-table ul li {
    position: relative;
    padding-left: 15px;
}

.radar-detail-page .indicators .common-product-table ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.radar-detail-page .performance-highlight.pad-top {
    padding-top: var(--common-padding-top);
}

.radar-detail-page .performance-highlight .title {
    padding: max(20px, calc(var(--ratio-size) * 40)) 0;
    font-size: var(--big-text-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--inside-title-size); */
}

.radar-detail-page .grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: max(30px, calc(var(--ratio-size) * 60));
    padding-bottom: max(40px, calc(var(--ratio-size) * 100));
}

.radar-detail-page .grid-list .item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    padding-bottom: 50px;
    background-color: #F9F9FB;
    border-radius: 30px;
}

.radar-detail-page .grid-list .item .pic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-in;
}

.radar-detail-page .grid-list .item .pic img {
    width: 100%;
}

.radar-detail-page .grid-list .item-title {
    text-align: center;
    font-size: max(20px, calc(var(--ratio-size) * 24));
    color: #2E3091;
}

.radar-detail-page .grid-list .text {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: var(--middle-text-size);
    text-align: justify;
    line-height: 1.8;
}

.radar-detail-page .grid-list img {
    width: 100%;
}




.radar-detail-page .common-collapsible-list .item .top-part .title {
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'PoLight', 'SoLight';
}

.radar-detail-page .performance-highlight .common-collapsible-list {
    padding-bottom: var(--common-padding-top);
}

.radar-detail-page .performance-highlight .video-container {
    /* padding-top: var(--common-padding-top); */
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.radar-detail-page .performance-highlight .video-container .title {
    font-size: var(--big-text-size);
}

.radar-detail-page .performance-highlight .video-container .swiper-slide {
    position: relative;
    padding-inline: 23px 30px;
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* .radar-detail-page .performance-highlight .video-container .swiper-slide .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 8), rgba(0, 0, 0, 0) 50%);
} */

.radar-detail-page .performance-highlight .video-container .swiper-slide .bg img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide {
    min-height: max(200px, calc(var(--ratio-size) * 240));
    padding: 30px;
    padding-top: 23px;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .title {
    padding: 0;
    font-family: 'PoLight', 'SoLight';
    font-size: var(--text-size);
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .text .video-play-icon {
    padding: 20px;
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    cursor: pointer;
}

/* .radar-detail-page .performance-highlight .video-container .swiper-slide .icon {
    margin-top: 10px;
} */

.radar-detail-page .performance-highlight .video-container .swiper-slide .icon img {
    width: 45px;
}

.radar-detail-page .performance-highlight .video-container .swiper-slide .text .video-play-icon:hover {
    background-color: rgb(46, 48, 145);
}

.radar-detail-page .performance-highlight .video-container .only-one .swiper-slide {
    width: 60%;
    height: calc(var(--ratio-size) * 500);
    margin: 0 auto;
}

.radar-detail-page .application-container {
    padding-top: max(40px, calc(var(--ratio-size) * 80));
    padding-bottom: max(40px, calc(var(--ratio-size) * 80));
    background-color: #F3F3F8;
    overflow: hidden;
}

.radar-detail-page .application-container .b-title {
    padding: max(20px, calc(var(--ratio-size) * 40)) 0;
    font-size: var(--big-text-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--inside-title-size); */
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide {
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 249px);
    height: max(130px, calc(var(--ratio-size) * 200));
    margin: 0 auto;
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .top img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(20px 20px 7px rgba(0, 1, 36, .2));
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .type {
    display: flex;
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .type p {
    padding: 6px 20px;
    border-radius: 50000px;
    background-color: #DEDDEB;
    font-size: 12px;
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .title {
    margin-top: 10px;
    /* font-family: 'PoMedium', 'SoMedium'; */
    color: var(--main-color);
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .sub-title {
    font-size: var(--small-text-size);
    color: var(--main-color);
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .text {
    margin-top: 20px;
    font-size: var(--small-text-size);
    color: #666666;
}

.radar-detail-page .application-container .common-list-swiper .swiper-slide .icon {
    display: flex;
    justify-content: flex-end;
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.radar-detail-page .application-container .common-list-swiper.only-one .swiper-slide {
    align-items: center;
    padding: max(25px, calc(var(--ratio-size) * 50)) max(15px, calc(var(--ratio-size) * 30));
    padding-right: 80px;
}

.radar-detail-page .application-container .common-list-swiper.only-one .swiper-slide .top {
    width: 300px;
    height: auto;
    padding: 0 25px;
}

.radar-detail-page .application-container .common-list-swiper.only-one .swiper-slide .bottom {
    margin-left: 10px;
}

.radar-detail-page .application-container .common-list-swiper.only-one .swiper-slide .icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.radar-detail-page .partner-container {
    padding-top: var(--common-padding-top);
    padding-bottom: var(--common-padding-bottom);
    overflow: hidden;
}

.radar-detail-page .partner-container .b-title {
    padding: max(20px, calc(var(--ratio-size) * 40)) 0;
    font-size: var(--big-text-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
    /* font-size: var(--inside-title-size); */
}

.radar-detail-page .partner-container .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    /* box-shadow: 0 4px 16px rgba(38, 41, 143, .1); */
}

.radar-detail-page .partner-container .swiper-slide .top {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 160px; */
    height: calc(var(--ratio-size) * 200);
    background-color: #F3F3F8;
    border-radius: 15px;
    overflow: hidden;
}

.radar-detail-page .partner-container .swiper-slide .top img {
    max-width: 80%;
    max-height: 70%;
}

.radar-detail-page .partner-container .swiper-slide .bottom {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: max(20px, calc(var(--ratio-size) * 35));
    font-size: var(--small-text-size);
}

.radar-detail-page .partner-container .swiper-slide .bottom .btn {
    margin-top: auto;
}

.radar-detail-page .partner-container .swiper-slide .bottom .title {
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: var(--text-size);
    color: var(--main-color);
}

.radar-detail-page .partner-container .swiper-slide .bottom .sub-title {
    margin-top: 2px;
    color: var(--main-color);
}

.radar-detail-page .partner-container .swiper-slide .bottom .text {
    margin-top: 10px;
    color: #666666;
    text-align: justify;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; */
}

.radar-detail-page .partner-container .swiper-slide .bottom .btn a {
    position: relative;
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 3px;
    align-items: center;
    color: var(--main-color);
}

.radar-detail-page .partner-container .common-list-swiper.only-one .swiper-slide {
    align-items: center;
}

.radar-detail-page .partner-container .common-list-swiper.only-one .swiper-slide .top {
    width: 260px;
    min-height: 160px;
    margin-right: 40px;
}

.radar-detail-page .partner-container .common-list-swiper.only-one .swiper-slide .bottom {
    padding: 0;
}

.condition-page,
.policy-page {
    padding-top: var(--header-height);
}

.condition-page strong,
.policy-page strong {
    font-weight: bold;
}

.condition-page a,
.policy-page a {
    color: var(--main-color);
    text-decoration: underline;
}

.condition-page .title,
.policy-page .title {
    padding-top: 90px;
    font-size: var(--inside-title-size);
    text-align: center;
}

.condition-page .condition-main-content,
.policy-page .policy-main-content {
    padding-bottom: var(--common-padding-bottom);
    margin-top: 50px;
    font-size: var(--middle-text-size);
    line-height: 1.8;
    /* text-align: justify; */
}

.condition-page .condition-main-content h3,
.policy-page .policy-main-content h3 {
    font-size: var(--data-name-size);
}

.condition-page .condition-main-content ul,
.condition-page .condition-main-content ul li,
.policy-page .policy-main-content ul,
.policy-page .policy-main-content ul li {
    position: relative;
}

.condition-page .condition-main-content ul,
.policy-page .policy-main-content ul {
    padding-left: 15px;
}

.condition-page .condition-main-content ul li,
.policy-page .policy-main-content ul li {
    padding-left: 35px;
}

.condition-page .condition-main-content ul li::before,
.policy-page .policy-main-content ul li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
}

.condition-page .condition-main-content a,
.policy-page .policy-main-content a {
    color: var(--main-color);
    text-decoration: underline;
}

.policy-page *+* {
    margin-top: 10px;
}

.policy-page .p-flex {
    display: flex;
}

.policy-page .p-flex strong {
    font-weight: normal;
}

.about-page .banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    overflow: hidden;
}

.about-page .common-switch-nav a {
    cursor: pointer;
}

.about-page .banner-container .screen-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.about-page .banner-container .screen-container .text-content {
    padding: 0 var(--type-area);
}

.about-page .banner-container .screen-container .title-content {
    font-family: 'PoRegular', 'SoRegular';
}

.about-page .banner-container .screen-container .title-content .title {
    font-size: var(--data-name-size);
}

.about-page .banner-container .screen-container .sub-content {
    margin-top: 35px;
}

.about-page .banner-container .screen-container .sub-content .title {
    font-size: var(--title-size);
    /* letter-spacing: max(5px, calc(var(--ratio-size) * 10)); */
}

.about-page .banner-container .screen-container .sub-content .text {
    margin-top: 10px;
    font-family: 'PoRegular', 'SoRegular';
}

.about-page .banner-container .outer-content,
.about-page .banner-container .inner-content {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.about-page .banner-container .bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-page .banner-container .screen-container.ceo-message .text-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.about-page .banner-container .dot-list {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-page .banner-container .dot-list .dot {
    width: 3px;
    height: 20px;
    border-radius: 1000px;
    background-color: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .5s;
}

.about-page .banner-container .dot-list .dot.active {
    height: 40px;
    background-color: #fff;
}

.about-page .banner-container .slide-down-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-text-size);
}

.about-page .banner-container .slide-down-icon img {
    width: 40px;
    margin-bottom: 3px;
    animation: slideDown 1.5s linear alternate infinite;
}

@keyframes slideDown {
    100% {
        transform: translateY(-40%);
    }
}



.about-page .screen-container.ceo-message .text-content .sub-content {
    width: 660px;
    padding-top: 60px;
    margin-top: 0;
    text-align: left;
}

.about-page .screen-container.ceo-message .text-content .sub-content .title {
    position: relative;
    font-size: var(--data-name-size);
    /* text-indent: 2em; */
    line-height: 1.6;
    text-align: justify;
}

.about-page .screen-container.ceo-message .text-content .sub-content .title::after {
    content: '';
    position: absolute;
    left: -40px;
    top: -72px;
    width: 155px;
    height: 120px;
    background-image: url('../images/quotation-sign.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.about-page .screen-container.ceo-message .text-content .sub-content .text {
    position: relative;
    margin-left: max(40px, calc(var(--ratio-size) * 80));
    margin-top: max(60px, var(--ratio-size) * 130);
    font-size: var(--middle-text-size);
    line-height: 1.6;
}

.about-page .screen-container.ceo-message .text-content .sub-content .text::before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-130%);
    top: 13px;
    width: max(30px, calc(var(--ratio-size) * 60));
    height: 1px;
    background-color: #EC1B23;
}


.about-page .screen-container.ceo-message .text-content .sub-content .text::after {
    top: 70px;
    transform: translateX(-280%);
}

.about-page .screen-container.ceo-message .text-content .sub-content .text strong {
    font-size: var(--text-size);
    font-weight: bold;
}

.about-page .description-container {
    position: relative;
    overflow: hidden;
}

.about-page .description-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: url('../images/brand-story.jpg') no-repeat center/cover;
}

.about-page .description-container .description-detail {
    display: flex;
    align-items: center;
    gap: calc(var(--ratio-size) * 80);
}

.about-page .description-container .description-detail .description-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-page .description-container .description-detail .description-content .content-item {
    display: flex;
    gap: 10px;
}

.about-page .description-container .description-detail .description-content .icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 35px;
}

.about-page .description-container .description-detail .content-item:nth-child(1) .icon {
    margin-top: 6px;
}

.about-page .description-container .description-detail .description-content .content-text {
    flex: 1;
}

.about-page .description-container .description-detail .description-content .content-item .text {
    opacity: .7;
    font-size: var(--small-text-size);
}

.about-page .description-container .overflow {
    margin-top: max(40px, calc(var(--ratio-size) * 120));
}

.about-page .description-container .overflow .title {
    /* margin-top: max(40px, calc(var(--ratio-size) * 85)); */
    font-size: max(20px, calc(var(--ratio-size) * 24));
    color: var(--main-color);
    /* text-align: center; */
}

.about-page .description-container .overflow .text {
    /* width: min(100%, 940px); */
    margin: 0 auto;
    margin-top: 5px;
    /* text-align: center; */
}

.about-page .description-container .overflow .description-swiper-content {
    position: relative;
    width: 45%;
}

.about-page .description-container .overflow .video-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    border-radius: 30px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.about-page .description-container .overflow .video-content {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-page .description-container .overflow .video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .description-container .overflow .video-content .icon {
    z-index: 3;
    padding: 20px;
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    cursor: pointer;
}

.about-page .description-container .overflow .video-content .icon img {
    width: 45px;
}

.about-page .description-container .overflow .video-content .icon:hover {
    background-color: rgb(46, 48, 145);
}

.about-page .description-container .overflow .description-swiper-content .swiper-pagination {
    bottom: min(calc(var(--ratio-size) * -40), -20px);
}

.about-page .description-container .overflow .description-swiper-content .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 5000px;
    background-color: #26298F;
    transition: all .5s;
}

.about-page .description-container .overflow .description-swiper-content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
}

.about-page .description-container .overflow .data-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
    margin-top: max(50px, calc(var(--ratio-size) * 110));
}

.about-page .description-container .overflow .data-list .icon {
    width: max(60px, calc(var(--ratio-size) * 70));
    height: max(60px, calc(var(--ratio-size) * 70));
}

.about-page .description-container .overflow .data-list .icon img {
    max-width: 100%;
    max-height: 100%;
}

.about-page .description-container .overflow .data-list .num-content {
    margin-top: max(20px, calc(var(--ratio-size) * 30));
    /* font-family: 'PoMedium', 'SoMedium'; */
    font-size: 20px;
    color: var(--main-color);
}

.about-page .description-container .overflow .data-list .num-content .num {
    font-size: var(--title-size);
}

.about-page .description-container .technology {
    margin-top: max(60px, calc(var(--ratio-size) * 180));
}

.about-page .description-container .technology .top .title {
    /* width: min(100%, 480px); */
    margin: 0 auto;
    font-size: var(--data-name-size);
    text-align: center;
}

.about-page .description-container .technology .top .text {
    width: min(100%, 720px);
    margin: 0 auto;
    margin-top: 25px;
    text-align: center;
}

.about-page .description-container .technology .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(30px, calc(var(--ratio-size) * 60));
    margin-top: max(30px, calc(var(--ratio-size) * 50));
}

.about-page .description-container .technology .list .item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background-size: cover;
    /* width: max(300px, calc(var(--ratio-size) * 500)); */
}

.about-page .description-container .technology .list .item:nth-child(1) {
    margin-left: auto;
}


.about-page .description-container .technology .list .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0) 40%);
}

.about-page .description-container .technology .list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #2E3091, #00ADEE);
    opacity: 0;
    transition: all .5s;
}

.about-page .description-container .technology .list .item.active::before {
    opacity: .8;
}


.about-page .description-container .technology .list .inside-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.about-page .description-container .technology .list .inside-content>* {
    position: relative;
    z-index: 2;
}

.about-page .description-container .technology .list .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 42px;
    height: 42px; */
}

.about-page .description-container .technology .list .icon img {
    max-width: 100%;
    max-height: 100%;
}

.about-page .description-container .technology .list .title {
    padding-bottom: 15px;
    margin-top: max(10px, calc(var(--ratio-size) * 20));
    font-size: var(--data-name-size);
}

.about-page .description-container .technology .list .more-content {
    font-size: var(--small-text-size);
}

.about-page .description-container .technology .list .more-content .common-btn {
    margin-top: max(15px, calc(var(--ratio-size) * 30));
}

.about-page .description-container .deep-know {
    padding-bottom: max(90px, calc(var(--ratio-size) * 180));
    margin-top: max(60px, calc(var(--ratio-size) * 160));
}

.about-page .description-container .deep-know .top .title {
    width: min(100%, 480px);
    margin: 0 auto;
    font-size: var(--data-name-size);
    text-align: center;
}

.about-page .description-container .deep-know .top .text {
    width: min(100%, 720px);
    margin: 0 auto;
    margin-top: 25px;
    text-align: center;
}

.about-page .description-container .deep-know .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(30px, calc(var(--ratio-size) * 60));
    margin-top: max(25px, calc(var(--ratio-size) * 50));
}

.about-page .description-container .deep-know .list .item {
    padding-bottom: max(20px, calc(var(--ratio-size) * 40));
    box-shadow: 0 4px 16px rgba(38, 41, 143, .1);
    border-radius: 30px;
    overflow: hidden;
}

.about-page .description-container .deep-know .list .item .pic {
    width: 100%;
    height: max(180px, calc(var(--ratio-size) * 240));
    border-radius: 30px;
    overflow: hidden;
}

.about-page .description-container .deep-know .list .item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .description-container .deep-know .list .item .title {
    padding-top: 30px;
    padding-bottom: 25px;
    font-size: var(--data-name-size);
    color: var(--main-color);
    text-align: center;
}

.about-page .description-container .deep-know .list .item .common-btn {
    text-align: center;
}

/* .about-page .description-container .deep-know .list .item .common-btn a {
    border-color: rgba(0, 0, 0, .2);
    transition: all .5s;
}

.about-page .description-container .deep-know .list .item .common-btn a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.about-page .description-container .deep-know .list .item .common-btn a:hover svg circle {
    fill: #fff;
}

.about-page .description-container .deep-know .list .item .common-btn a svg circle,
.about-page .description-container .deep-know .list .item .common-btn a svg path {
    transition: all .5s;
}

.about-page .description-container .deep-know .list .item .common-btn a:hover svg path {
    stroke: var(--main-color);
} */

.about-page .history-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #E4E4F1;
    overflow: hidden;
}

.about-page .history-container .content-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-size: cover;
}

.about-page .history-container .content-main .top {
    text-align: center;
}

.about-page .history-container .content-main .top .title {
    /* margin-top: max(60px, calc(var(--ratio-size) * 120)); */
    font-size: var(--title-size);
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.about-page .history-container .content-main .top .sub-title {
    margin-top: 10px;
}

.about-page .history-container .history-swiper {
    margin-top: calc(var(--ratio-size) * 250);
}

.about-page .history-container .history-swiper .swiper-slide {
    display: flex;
    transition: all .5s;
    /* width: 40%; */
}

.about-page .history-container .history-swiper .swiper-slide.swiper-slide-active {
    margin-top: 100px;
}

.about-page .history-container .history-swiper .swiper-slide.swiper-slide-next+.swiper-slide,
.about-page .history-container .history-swiper .swiper-slide.swiper-slide-next {
    margin-top: 200px;
}

.about-page .history-container .history-swiper .year {
    width: calc(var(--ratio-size) * 280);
    padding-right: max(20px, calc(var(--ratio-size) * 30));
    font-size: max(60px, calc(var(--ratio-size) * 88));
    color: var(--main-color);
    line-height: .8;
    text-align: right;
}

.about-page .history-container .history-swiper .text {
    flex: 1;
    position: relative;
    /* min-height: 480px; */
    height: 480px;
    padding-left: max(20px, calc(var(--ratio-size) * 30));
    padding-bottom: 50px;
}

.about-page .history-container .history-swiper .text .text-main {
    height: max(50vh, calc(var(--ratio-size) * 400));
    padding-right: 20px;
    overflow: auto;
    line-height: 1.5;
}

.about-page .history-container .history-swiper .text .text-main strong {
    font-weight: bold;
}

.about-page .history-container .history-swiper .text .text-main::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.about-page .history-container .history-swiper .text .text-main::-webkit-scrollbar-track {
    background: #ddd;
}

.about-page .history-container .history-swiper .text .text-main::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

.about-page .history-container .history-swiper .text .text-main::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
    cursor: pointer;
}

.about-page .history-container .history-swiper .text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, #26298F, rgba(38, 41, 143, 0));
}

.about-page .history-container .history-swiper .text ul li {
    position: relative;
    padding-left: 20px;
}

.about-page .history-container .history-swiper .text ul li:not(:last-child) {
    margin-bottom: 8px;
}

.about-page .history-container .history-swiper .text ul li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}

.about-page .year-container {
    display: none;
    position: absolute;
    /* bottom: max(20px, calc(var(--ratio-size) * 50px)); */
    bottom: 20px;
    left: 0;
    /* width: 100%; */
}

.about-page .year-container .list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-page .year-container .list .year-item {
    position: relative;
    margin: 0 20px;
    cursor: pointer;
    /* text-align: center; */
}

.about-page .year-container .list .dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(38, 41, 143, .5);
}

.about-page .year-container .list .dot .icon {
    position: relative;
    z-index: 2;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.about-page .year-container .list .year-item.active .dot .icon {
    width: 40px;
    height: 40px;
    animation: scrollAn 5s linear infinite;
    opacity: 1;
}

.about-page .year-container .list .year-item:not(:last-child) .dot:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(calc(100% + 10px), -50%);
    width: 45px;
    height: 1px;
    background-color: rgba(38, 41, 143, .5);
}

.about-page .year-container .list .year-item p {
    margin: 3px;
    font-size: var(--middle-text-size);
}

.about-page .year-container .list .year-item.active {
    margin: 0 30px;
}

.about-page .year-container .list .year-item.active .dot {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: transparent;
}

.about-page .year-container .list .year-item.active .dot .dot-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 40px;
    height: 40px;
    background-color: rgba(38, 41, 143, .5);
    border-radius: 50%;
}

.about-page .year-container .list .year-item.active .dot .dot-bg:nth-of-type(2) {
    animation: dotScale 3s linear infinite;
}

.about-page .year-container .list .year-item.active .dot .dot-bg:nth-of-type(3) {
    animation: dotScale 3s 1.5s linear infinite;
}

@keyframes dotScale {
    100% {
        transform: translate(-50%, -50%) scale(2.3);
        opacity: 0;
    }
}

.about-page .year-container .list .year-item.active p {
    opacity: 0;
}

/* --------------------------------------------------------------------- */
.about-page .history-container .year-swiper {
    position: relative;
    margin: 0 20px;
    cursor: pointer;
    margin-top: max(calc(var(--ratio-size) * 80), 30px);
    /* text-align: center; */
}

.about-page .history-container .year-swiper .swiper-wrapper {
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

.about-page .history-container .year-swiper .swiper-slide {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
}

.about-page .history-container .year-swiper .dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(38, 41, 143, .5);
}

.about-page .history-container .year-swiper .dot .icon {
    position: relative;
    z-index: 2;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active .dot .icon {
    width: 40px;
    height: 40px;
    animation: scrollAn 5s linear infinite;
    opacity: 1;
}

.about-page .history-container .year-swiper .swiper-slide:not(:last-child) .dot:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(calc(100% + 10px), -50%);
    width: 45px;
    height: 1px;
    background-color: rgba(38, 41, 143, .5);
}

.about-page .history-container .year-swiper .swiper-slide p {
    margin: 3px;
    font-size: var(--middle-text-size);
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active {
    margin: 0 30px;
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active .dot {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: transparent;
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active .dot .dot-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 40px;
    height: 40px;
    background-color: rgba(38, 41, 143, .5);
    border-radius: 50%;
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active .dot .dot-bg:nth-of-type(2) {
    animation: dotScale 3s linear infinite;
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active .dot .dot-bg:nth-of-type(3) {
    animation: dotScale 3s 1.5s linear infinite;
}

@keyframes dotScale {
    100% {
        transform: translate(-50%, -50%) scale(2.3);
        opacity: 0;
    }
}

.about-page .history-container .year-swiper .swiper-slide.swiper-slide-active p {
    opacity: 0;
}

/* ---------------------------------------------------------------- */

.about-page .show-radar {
    width: 100%;
    height: 100vh;
}

.about-page .contact-us-content {
    padding-bottom: max(80px, calc(var(--ratio-size) * 160));
    padding-top: max(60px, calc(var(--ratio-size) * 110));
    border-top: 1px solid #c1c1c1;
}

.about-page .contact-us-content .top {
    padding: 0 var(--type-area);
    text-align: center;
}

.about-page .contact-us-content .top .title {
    font-size: var(--title-size);
}

.about-page .contact-us-content .top .text {
    margin-top: 10px;
}

.about-page .email-collection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: max(30px, calc(var(--ratio-size) * 60));
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.about-page .email-collection .item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(var(--ratio-size) * 300);
    padding: max(30px, calc(var(--ratio-size) * 45)) max(30px, calc(var(--ratio-size) * 60));
    border-radius: 30px;
    box-shadow: 0px 4px 16px 0px rgba(38, 41, 143, 0.1);
}

.about-page .email-collection .item .name {
    font-size: var(--data-name-size);
    color: var(--main-color);
}

.about-page .email-collection .item ul {
    margin-top: max(15px, calc(var(--ratio-size) * 15));
    font-size: var(--text-size);
}

.about-page .email-collection .item ul li {
    display: flex;
}

.about-page .email-collection .item ul li:not(:last-child) {
    margin-bottom: 14px;
}

.about-page .email-collection .item ul li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

.about-page .email-collection .item ul li p {
    flex: 1;
}

.about-page .email-collection .item ul li a {
    transition: all .5s;
}

.about-page .email-collection .item ul li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.about-page .email-collection .item .btn-content {
    margin-top: auto;
    text-align: right;
}

.about-page .email-collection .item .contact-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--main-color);
    cursor: pointer;
}

.about-page .email-collection .item .contact-us-btn svg {
    transition: all .5s;
}

.about-page .email-collection .item .contact-us-btn:hover svg {
    transform: translateX(10px);
}

.about-page .address-collection {
    margin-top: max(50px, calc(var(--ratio-size) * 100));
}

.about-page .address-collection .address-name {
    color: var(--main-color);
    font-size: var(--data-name-size);
    text-align: center;
}

.about-page .address-collection .address-name span {
    position: relative;
    display: inline-block;
    line-height: 1.7;
}

.about-page .address-collection .address-name span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EC1B23;
}

.about-page .address-collection .address-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: max(30px, calc(var(--ratio-size) * 60));
}

.about-page .address-collection .item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    border: 1px solid #EEEEF7;
    border-radius: 30px;
    overflow: hidden;
}

.about-page .address-collection .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #00ADEE30, #26298F00);
    opacity: .2;
    transition: all .5s;
}

.about-page .address-collection .item:hover::after {
    opacity: 1;
}

.about-page .address-collection .item.shanghai::after {
    background-image: linear-gradient(135deg, #26298F80, #26298F00);
}

.about-page .address-collection .item.munihei::after {
    background-image: linear-gradient(135deg, #EC1B2380, #26298F00);
}

.about-page .address-collection .item .pic {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.about-page .address-collection .item .pic img {
    max-width: 100%;
    max-height: 100%;
}

.about-page .address-collection .item .text-content {
    position: relative;
    z-index: 3;
    flex: 1;
    padding-left: 8%;
}

.about-page .address-collection .item .text-content .name {
    font-size: var(--text-size);
    font-weight: bold;
}

.about-page .address-collection .item .text-content .company-full-name {
    margin-top: 5px;
}

.about-page .address-collection .item .text-content .text {
    margin-top: 10px;
    line-height: 2;
    font-size: 14px;
}

.about-page .address-collection .item .text-content .btn-content {
    text-align: right;
}

.about-page .address-collection .item .text-content .contact-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--main-color);
    cursor: pointer;
}

.about-page .address-collection .item .text-content .contact-us-btn svg {
    transition: all .5s;
}

.about-page .address-collection .item .text-content .contact-us-btn:hover svg {
    transform: translateX(10px);
}

.about-page .contact-us-map {
    margin-top: max(50px, calc(var(--ratio-size) * 110));
}

.about-page .contact-us-map .map-main {
    position: relative;
}

.about-page .contact-us-map .map-main img {
    display: block;
    width: 100%;
}

.about-page .contact-us-map .map-main svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
}

.about-page .contact-us-map .map-main svg circle {
    animation: flickerAn 1.5s linear infinite alternate;
}





.about-page .contact-us-content .common-switch-nav-no-bg {
    margin-top: max(30px, calc(var(--ratio-size) * 50));
}

.about-page .contact-us-content .common-switch-nav-no-bg span {
    font-size: var(--data-name-size);
}

.about-page .contact-us-content .area-container {
    padding-left: var(--type-area);
    padding-right: 70px;
}

.about-page .contact-us-content .area-content {
    display: none;
    /* display: flex; */
    justify-content: space-between;
    margin-top: max(35px, calc(var(--ratio-size) * 65));
}

.about-page .contact-us-content .area-content:nth-child(1) {
    display: flex;
}

.about-page .contact-us-content .area-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 30%;
}

.about-page .contact-us-content .area-list .area-item {
    background-color: #F3F3F8;
    border-radius: 30px;
    color: #fff;
    transition: all .5s;
}

.about-page .contact-us-content .area-list .area-item.active {
    background-color: #00ADEE;
}

.about-page .contact-us-content .area-list .area-item.shanghai.active {
    background-color: #26298F;
}

.about-page .contact-us-content .area-list .area-item .item-top {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    padding-left: max(20px, calc(var(--ratio-size) * 30));
    color: #000;
    cursor: pointer;
    transition: all .5s;
}

.about-page .contact-us-content .area-list .area-item.active .item-top {
    color: #fff;
}

.about-page .contact-us-content .area-list .area-item .item-top .company-icon {
    position: absolute;
    left: 0;
    width: 17px;
    opacity: 0;
}

.about-page .contact-us-content .area-list .area-item.active .item-top .company-icon {
    left: max(20px, calc(var(--ratio-size) * 30));
    opacity: 1;
    transition: all .5s;
}

.about-page .contact-us-content .area-list .area-item .item-top .company-icon img {
    width: 100%;
}

.about-page .contact-us-content .area-list .area-item .item-top p {
    margin-left: 0;
    transition: margin-left .5s;
}

.about-page .contact-us-content .area-list .area-item.active .item-top p {
    margin-left: 30px;
    color: #fff;
}

.about-page .contact-us-content .area-list .area-item .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border-radius: 50%;
    background-color: #DEDDEB;
    transition: all .5s;
}

.about-page .contact-us-content .area-list .area-item.active .arrow-icon {
    background-color: rgba(255, 255, 255, .2);
}

.about-page .contact-us-content .area-list .area-item .arrow-icon svg path {
    stroke: #2E3091;
    transition: all .5s;
}

.about-page .contact-us-content .area-list .area-item.active .arrow-icon {
    transform: rotate(90deg);
}

.about-page .contact-us-content .area-list .area-item.active .arrow-icon svg path {
    stroke: #fff;
}

.about-page .contact-us-content .area-list .area-item .more-text {
    display: none;
    padding: 10px;
    padding-left: max(20px, calc(var(--ratio-size) * 30));
    padding-bottom: max(30px, calc(var(--ratio-size) * 45));
    font-size: var(--middle-text-size);
}

.about-page .contact-us-content .area-list .area-item .message-list {
    margin-top: 10px;
    font-size: var(--small-text-size);
}

.about-page .contact-us-content .area-list .area-item .message-item {
    display: flex;
}

.about-page .contact-us-content .area-list .area-item .message-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-top: 3px;
}

.about-page .contact-us-content .area-list .area-item .message-item .icon img {
    max-width: 100%;
    max-height: 100%;
}

.about-page .contact-us-content .area-list .area-item .message-item {
    line-height: 1.5;
}

.about-page .contact-us-content .area-list .area-item .message-item:not(:last-child) {
    margin-bottom: 10px;
}

.about-page .contact-us-content .area-list .area-item .message-item p {
    flex: 1;
    margin-left: max(10px, calc(var(--ratio-size) * 15));
}

.about-page .contact-us-content .map {
    width: 65%;
}

.about-page .contact-us-content .map img {
    width: 100%;
}

.about-page .brand-story {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/brand-story-bg-1.jpg') no-repeat center/cover;
    overflow: hidden;
}

.about-page .brand-story .ripple-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* opacity: 0; */
}

.about-page .brand-story .ripple-box img {
    position: absolute;
    left: 50%;
    top: calc(50% + var(--header-height) / 2);
    opacity: 0;
}

.about-page .brand-story .show-stand {
    position: relative;
    display: flex;
    z-index: 3;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding-top: var(--header-height);
}

.about-page .brand-story .show-stand .outer-circle {
    position: relative;
    z-index: 5;
    width: 33.6%;
}

.about-page .brand-story .show-stand .outer-circle .circle-bg {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
}

.about-page .brand-story .show-stand .dot-list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.about-page .brand-story .show-stand .dot-list .item-dot {
    position: absolute;
    width: 3.08vw;
    height: 3.08vw;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.about-page .brand-story .show-stand .dot-list .item-dot.hidden {
    opacity: 0 !important;
}

.about-page .brand-story .show-stand .dot-list .item-dot::before,
.about-page .brand-story .show-stand .dot-list .item-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.about-page .brand-story .show-stand .dot-list .item-dot::before {
    background-color: rgba(255, 255, 255, .3);
}

.about-page .brand-story .show-stand .dot-list .item-dot::after {
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #fff;
}

.about-page .brand-story .show-stand .dot-list .dot-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, .3); */
    border-radius: 50%;
    transition: all .5s;
}

.about-page .brand-story .show-stand .dot-list .dot-bg img {
    width: 50%;
    opacity: 0;
}

.about-page .brand-story .show-stand .dot-list .item-dot::before,
.about-page .brand-story .show-stand .dot-list .item-dot::after {
    transform-origin: center center;
    transition: all .5s;
}

.about-page .brand-story .show-stand .dot-list .item-dot:hover::before,
.about-page .brand-story .show-stand .dot-list .item-dot:hover::after {
    transform-origin: center center;
    opacity: .5;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active::before,
.about-page .brand-story .show-stand .dot-list .item-dot.active::after {
    transform-origin: center center;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active::before {
    background-color: transparent;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5));
    transform: scale(1.3);
    animation: scaleAnim 3s infinite alternate;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active .dot-bg img {
    opacity: 1;
    animation: flickerAn 1s infinite alternate;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active::after {
    width: 8px;
    height: 8px;
    background-color: transparent;
    opacity: 0;
}

@keyframes scaleAnim {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(2);
    }
}

.about-page .brand-story .show-stand .dot-list .item-dot svg {
    display: block;
    width: 50%;
    animation: scrollAn 5s linear infinite;
    transform-origin: center center;
}

.about-page .brand-story .show-stand .dot-list .item-dot svg.hover {
    display: none;
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(1):hover svg.hover,
.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(4):hover svg.hover,
.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(7):hover svg.hover {
    display: block;
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(1):hover svg.default,
.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(4):hover svg.default,
.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(7):hover svg.default {
    display: none;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(1) svg.hover,
.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(4) svg.hover,
.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(7) svg.hover {
    display: block;
}

.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(1) svg.default,
.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(4) svg.default,
.about-page .brand-story .show-stand .dot-list .item-dot.active:nth-child(7) svg.default {
    display: none;
}


@keyframes spreadAn {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(1) {
    top: 15%;
    right: 5.5%;
    transform: translate(-50%, -50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(3) {
    top: 15%;
    left: 14.5%;
    transform: translate(-50%, -50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(5) {
    bottom: 15%;
    left: 14.5%;
    transform: translate(-50%, 50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(6) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.about-page .brand-story .show-stand .dot-list .item-dot:nth-child(7) {
    bottom: 15%;
    right: 5.5%;
    transform: translate(-50%, 50%);
}

.about-page .brand-story .show-stand .dot-message-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1.66;
    opacity: 0;
}

.about-page .brand-story .show-stand .dot-message-list .item-message strong {
    font-weight: bold;
    /* font-family: 'PoMedium', 'SoMedium'; */
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(1) {
    right: -20%;
    top: 5%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(2) {
    right: 25%;
    top: -1%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(3) {
    left: -20%;
    top: 4%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(4) {
    left: -24%;
    top: 50%;
    transform: translateY(-50%);
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(5) {
    left: -20%;
    bottom: 4%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(6) {
    left: 55%;
    bottom: -1%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(7) {
    right: -20%;
    bottom: 4.5%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message .message-content {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%, -50%);
    width: calc(var(--ratio-size) * 377);
}

.nowrap-text {
    white-space: nowrap;
}

.about-page .brand-story .show-stand .dot-message-list .item-message .message-content {
    color: #fff;
}

.about-page .brand-story .show-stand .dot-message-list .item-message .message-content strong {
    font-weight: bold;
}

.about-page .brand-story .dot-message-list .item-message .indication-point img {
    width: 100%;
}

.about-page .brand-story .dot-message-list .item-message:nth-child(1) .indication-point {
    width: calc(var(--ratio-size) * 190);
}

.about-page .brand-story .dot-message-list .item-message:nth-child(2) .indication-point {
    width: 6.4vw;
}

.about-page .brand-story .dot-message-list .item-message:nth-child(3) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotateY(180deg);
}

.about-page .brand-story .dot-message-list .item-message:nth-child(4) .indication-point {
    width: 6.4vw;
    transform: rotateY(180deg);
}

.about-page .brand-story .dot-message-list .item-message:nth-child(5) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotate(180deg);
}

.about-page .brand-story .dot-message-list .item-message:nth-child(6) .indication-point {
    width: 6.4vw;
}

.about-page .brand-story .dot-message-list .item-message:nth-child(7) .indication-point {
    width: calc(var(--ratio-size) * 190);
    transform: rotateX(180deg);
}

.about-page .brand-story .dot-message-list .item-message:nth-child(1) .message-content {
    right: -10%;
}

.about-page .brand-story .dot-message-list .item-message:nth-child(2) .message-content {
    right: -10%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(3) .message-content {
    left: -10%;
    transform: translate(-100%, -50%);
    text-align: right;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(4) .message-content {
    left: -10%;
    transform: translate(-100%, -50%);
    text-align: right;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(5) .message-content {
    left: -10%;
    top: auto;
    bottom: 0;
    transform: translate(-100%, 50%);
    text-align: right;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(6) .message-content {
    right: -10%;
}

.about-page .brand-story .show-stand .dot-message-list .item-message:nth-child(7) .message-content {
    right: -10%;
    top: 30%;
}





.about-page .brand-story .show-stand .inside-car {
    position: absolute;
    top: calc(50% + var(--header-height) / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.about-page .brand-story .show-stand .inside-car.active {
    z-index: 5;
}

.about-page .brand-story .show-stand .inside-car .car {
    width: 8.4vw;
    opacity: 0;
}

.about-page .brand-story .show-stand .inside-car .car img {
    width: 100%;
}

.about-page .brand-story .show-stand .inside-car .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.1vw;
}

.about-page .brand-story .show-stand .inside-car .logo svg {
    width: 100%;
    /* transform: scale(2.7); */
    cursor: pointer;
}

.brand-story .show-stand .inside-car .logo.active svg {
    animation: breath 1.5s infinite;
    transform-origin: center center;
}

@keyframes breath {

    0%,
    100% {
        transform: scale(2);
    }

    50% {
        transform: scale(2.2);
    }
}

.about-page .brand-story .show-stand .inside-car .name {
    position: absolute;
    top: 40%;
    /* left: 17vw; */
    left: 1vw;
    transform: translateY(-50%);
    width: 13vw;
}

.about-page .brand-story .show-stand .inside-car .name svg {
    width: 100%;
    /* transform: scale(2.5); */
    transform-origin: left center;
    opacity: 0;
}

.about-page .brand-story .show-stand .radar-range {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-page .brand-story .show-stand .radar-range .radar-range-canvas,
.about-page .brand-story .show-stand .radar-range .radar-range-canvas-2 {
    width: 100%;
    height: 100%;
}

.about-page .brand-story .show-stand .radar-range .radar-range-canvas-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-page .brand-story .mobile-show-text {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, .5); */
}

.about-page .brand-story .mobile-show-text .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    padding: 30px var(--type-area);
    /* background-color: #fff; */
}

.about-page .brand-story .mobile-show-text .content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .5;
}

.about-page .brand-story .mobile-show-text .content .text {
    position: relative;
    z-index: 2;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.about-page .brand-story .mobile-show-text .content .text strong {
    font-weight: bold;
}

.cookie-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

.cookie-alert .cookie-content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 45px;
    background-color: #fff;
}

.cookie-alert .cookie-content .content {
    width: 740px;
}

.cookie-alert .cookie-content .content .title {
    font-size: var(--data-name-size);
}

.cookie-alert .cookie-content .content .text {
    margin-top: 20px;
    font-size: var(--middle-text-size);
}

.cookie-alert .cookie-content .content .text a {
    color: var(--main-color);
    text-decoration: underline;
}

.cookie-alert .cookie-content .btn-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: max(10px, calc(var(--ratio-size) * 240));
}

.cookie-alert .cookie-content .btn-item {
    width: 170px;
    padding: 10px;
    border-radius: 50000px;
    border: 1px solid var(--main-color);
    font-size: var(--small-text-size);
    color: var(--main-color);
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}

.cookie-alert .cookie-content .btn-item:hover {
    background-color: var(--main-color);
    color: #fff;
}

.mobile-index-page {
    position: relative;
    width: 100%;
    margin-top: var(--header-height);
}

.mobile-index-page .first-screen {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 250px;
    padding: 35px 0;
}

.mobile-index-page .first-screen .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-index-page .first-screen .text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.mobile-index-page .first-screen .text .title {
    font-size: var(--big-text-size);
}

.mobile-index-page .first-screen .text .text-content {
    font-size: var(--data-name-size);
}

.mobile-index-page .first-screen .play-btn {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    margin-top: 10px;
}

.mobile-index-page .first-screen .play-btn img {
    width: 100%;
}





















.load-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .5);
}

.load-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.load-effect div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: load 2.08s linear infinite;
}

.load-effect div span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(217, 223, 217);
    /* margin-top: -10px;
    margin-left: -10px; */
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(45deg);
    }

    50% {
        opacity: 1;
        -webkit-transform: rotate(160deg);
    }

    62% {
        opacity: 0;
    }

    65% {
        opacity: 0;
        -webkit-transform: rotate(200deg);
    }

    90% {
        -webkit-transform: rotate(340deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }

}

.load-effect div:nth-child(1) {
    -webkit-animation-delay: 0.2s;
}

.load-effect div:nth-child(2) {
    -webkit-animation-delay: 0.4s;
}

.load-effect div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
}

.load-effect div:nth-child(4) {
    -webkit-animation-delay: 0.8s;
}

#player-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

#player-container .player-container-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.video-play-icon {
    display: inline-block;
}

.vjs-thumbnail {
    position: absolute;
    z-index: 8;
    display: none;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.video-js .vjs-big-play-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: url('../images/video-play-btn.svg') no-repeat center/cover;
    border: none;
    background-color: none;
}

.vjs-big-play-button .vjs-icon-placeholder:before {
    display: none;
}

#player-container .close-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #fff; */
    cursor: pointer;
    overflow: hidden;
    transform: translateY(50px);
}

#player-container .close-btn img {
    width: 100%;
}

.vjs-marker {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #ff0000;
    z-index: 1;
}

[v-cloak] {
    display: none;
}

.soc-chip-series-page .soc-chip-overview-page .part-number-nav {
    padding-top: calc(var(--ratio-size) * 80);
    margin-top: 0;
}

/* 搜索 */
.search-box {
    padding-bottom: calc(155 * var(--ratio-size));
    background-color: #fafafa;
}

.search-box .catalog-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #c1c1c1;
}

.search-box .catalog-nav ul {
    display: flex;
    gap: 30px;
}

.search-box .catalog-nav ul li {
    position: relative;
    cursor: pointer;
    padding-bottom: 10px;
}

.search-box .catalog-nav ul li::before,
.search-box .catalog-nav ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: all .5s;
}

.search-box .catalog-nav ul li::before {
    left: auto;
    right: 50%;
}

.search-box .catalog-nav ul li:hover {
    color: var(--main-color);
}

.search-box .catalog-nav ul li:hover::before,
.search-box .catalog-nav ul li:hover::after {
    width: 50%;
}

.search-box .catalog-nav ul li.active::before,
.search-box .catalog-nav ul li.active::after {
    width: 50%;
}

.searchbox1 {
    width: 200px;
    height: 42px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.search0 {
    width: 100%;
    text-align: center;
    /* margin: 50px 0; */
    margin-top: calc(var(--header-height) + 50px);
    margin-bottom: 30px;
}

.search0 form {
    width: 50%;
    display: inline-block;
    position: relative;
}

.searchbox1 .searchtext {
    width: 100%;
    height: 42px;
    line-height: 42px;
    border-radius: 21px;
    border: 1px solid #999;
    padding-left: 20px;
    padding-right: 40px;
    box-sizing: border-box;
}

.searchbtn {
    position: absolute;
    right: 0px;
    top: 0px;
    /* background: url(../images/fdj.png) no-repeat center center; */
    background: none;
    background-color: #EC1B23;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    height: 42px;
    /* width: 40px; */
    padding: 0 20px;
    outline: none;
    border: none;
    cursor: pointer;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all .5s;
}

.searchbtn:hover {
    box-shadow: 3px 3px 5px #757575;
}

.search-result-empry {
    text-align: center;
}

.search-error {
    text-align: center;
}

.searchnews_list.news_list {
    justify-content: space-between;
}

.searchnews_list.news_list .newsItem {
    margin-right: 0;
}

.searchnews_list.news_list span {
    color: #EC1B23;
}

.news_list .newsItem.no-top:nth-child(3n) {
    margin-right: initial;
}

.searchnews_list.news_list .newsItem:last-child:nth-child(3n - 1) {
    margin-right: calc(31% + 7% / 2);
}

.search-box .select-type {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-box .select-type a {
    position: relative;
    display: inline-block;
    margin: 0 40px;
    color: black;
}

.search-box .select-type a:active {
    color: black;
}

.search-box .select-type a.active {
    color: #EC1B23;
}

.search-box .select-type a.active::after {
    border-color: #EC1B23;
}

.search-box .select-type a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(-150% - 7px), -50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #EC1B23;
}

.search-box .select-type a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-150%, -50%);
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #c1c1c1;
}

.search-box .other-list {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #c1c1c1;
}

.search-box .other-list:not(:first-child) {
    margin-top: 20px;
}

.search-box .other-list:last-child {
    margin-bottom: 50px;
}

.search-box .other-from {
    margin-bottom: 5px;
    color: #c1c1c1;
}

.search-box .other-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.search-box .other-content {
    line-height: 24px;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; */
}

.search-box .other-list a {
    color: #000;
}

.search-box .num {
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.experienced-page .main-content {
    padding-bottom: max(60px, calc(var(--ratio-size) * 120));
}

.experienced-page .top-message {
    margin-top: 25px;
}

.experienced-page .top-message .title {
    font-size: var(--title-size);
    text-align: center;
}

.experienced-page .top-message .common-switch-nav-no-bg {
    margin-top: max(20px, calc(var(--ratio-size) * 30));
}

.experienced-page .business-center-content {
    margin-top: calc(max(40px, var(--ratio-size) * 60));
}

.experienced-page .business-center-content .business-title {
    padding: 30px 0;
    font-size: var(--data-name-size);
}

.experienced-page .business-center-content .position-part-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    padding-right: max(40px, calc(var(--ratio-size) * 80));
    height: 70px;
    background-color: #F3F3F8;
    font-size: var(--middle-text-size);
}

.experienced-page .business-center-content .position-part-name .position,
.experienced-page .business-center-content .common-collapsible-list .top-part .position {
    width: 45%;
}

.experienced-page .business-center-content .position-part-name .location,
.experienced-page .business-center-content .common-collapsible-list .top-part .location {
    width: 23%;
}

.experienced-page .business-center-content .position-part-name .date,
.experienced-page .business-center-content .common-collapsible-list .date {
    width: 22%;
}

.experienced-page .business-center-content .position-part-name .icon-content,
.experienced-page .business-center-content .common-collapsible-list .icon-content {
    width: 10%;
}

.experienced-page .business-center-content .common-collapsible-list .icon-content {
    display: flex;
    justify-content: flex-end;
}

.experienced-page .business-center-content .common-collapsible-list .item .top-part {
    height: 70px;
    padding: 20px 30px;
    padding-right: max(40px, calc(var(--ratio-size) * 80));
    font-size: var(--small-text-size);
}

.experienced-page .common-collapsible-list .item .more-message {
    display: none;
}

.experienced-page .common-collapsible-list .item .more-message .text {
    padding: 0 30px;
}

.experienced-page .common-collapsible-list .item .more-message .apply-btn {
    padding-left: 40px;
    font-size: var(--text-size);
    font-weight: bold;
}

.experienced-page .common-collapsible-list .item .more-message .apply-btn a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all .5s;
}

.experienced-page .common-collapsible-list .item .more-message .apply-btn a .apply-icon {
    transition: all .5s;
}

.experienced-page .common-collapsible-list .item .more-message .apply-btn a:hover .apply-icon {
    transform: translateX(10px);
}

.experienced-page .common-collapsible-list .item .more-message::after {
    left: calc(max(40px, var(--ratio-size) * 60));
}

.experienced-page .news-pagination ul {
    margin-top: max(40px, calc(var(--ratio-size) * 80));
}

body.wfEditorMode a.wfEditorMode {
    position: relative;
    z-index: 4;
}

.common-pagination ul {
    position: relative;
}

.content_id {
    display: none;
}