* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root,
body {
    --ratio-size: 100vw / 1920;
    --nav-size: max(16px, calc(var(--ratio-size) * 22));
    --banner-b-title: max(40px, calc(var(--ratio-size) * 80));
    --banner-title: max(22px, calc(var(--ratio-size) * 60));
    --text-b-title: max(20px, calc(var(--ratio-size) * 40));
    --banner-s-title: max(20px, calc(var(--ratio-size) * 35));
    --text-title: max(18px, calc(var(--ratio-size) * 30));
    --text-title-24: max(18px, calc(var(--ratio-size) * 24));
    --serial-size: max(18px, calc(var(--ratio-size) * 20));
    --text-size: max(16px, calc(var(--ratio-size) * 18));
    --bg-color: #142244;
    --video-border-color: #FFDB78;
    --title-color: #E2C887;
    font-size: 16px;
}

body {
    position: relative;
    background-color: var(--bg-color);
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    display: block;
    width: 100%;
}

.text-title {
    font-size: var(--text-title);
}

.common-title {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    font-size: calc(var(--text-b-title));
    color: var(--title-color);
}

.common-title .main {
    position: relative;
}

.common-title .decoration-pic {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: calc(var(--ratio-size) * 80);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    padding: 26px 0;
}

header .main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .main .logo {
    position: absolute;
    top: 50%;
    left: 140px;
    transform: translateY(-50%);
    width: 120px;
}

header .main nav {}

header .main nav ul {
    display: flex;
    gap: 55px;
    list-style: none;

    padding: 20px 40px;
    background-color: #ACC7DF10;
    border-radius: 100000px;
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: var(--nav-size);
    backdrop-filter: blur(5px);
}

header .menu {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 25px;
}

header .menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

main {
    overflow: hidden;
}

.phone-left {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 40%;
    height: 100vh;
    background-color: #ACC7DF10;
    backdrop-filter: blur(5px);
    transform: translateX(-100%);
    transition: all .5s;
}

.phone-left.active {
    transform: translateX(0);
}

.phone-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 60%;
    height: 100vh;
    background-color: #ACC7DF10;
    backdrop-filter: blur(5px);
    transform: translateX(100%);
    transition: all .5s;
}

.phone-right.active {
    transform: translateX(0);
}

.phone-right .close-phone {
    width: 30px;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.phone-right ul {
    list-style-type: none;
    border-top: 1px solid #c1c1c1;
}

.phone-right ul a {
    display: block;
    padding: 10px 10px;
    border-bottom: 1px solid #c1c1c1;
}

.banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    height: calc(var(--ratio-size) * 1080);
}

.banner-container .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-container .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-container .content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--ratio-size) * 200);
    text-align: center;
}

.banner-container .content .title {
    font-size: var(--banner-title);
}

.banner-container .content .text {
    font-size: var(--banner-s-title);
}

.product-presentation {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: calc(var(--ratio-size) * 1080);
}

.product-presentation .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-presentation .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-presentation .content {
    position: relative;
    z-index: 2;
    width: calc(var(--ratio-size) * 910);
    margin-right: calc(var(--ratio-size) * 200);
}

.product-presentation .text-pic {
    position: relative;
    z-index: 2;
    width: calc(var(--ratio-size) * 676);
}

.product-presentation .video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: calc(var(--ratio-size) * 555);
    height: calc(var(--ratio-size) * 340); */
    width: calc(var(--ratio-size) * 555);
    aspect-ratio: 555 / 340;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: 10px;
    border: 1px solid var(--video-border-color);
}

.product-presentation .video-container .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.product-presentation .video-container .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-presentation .video-container .video-play {
    position: relative;
    z-index: 2;
    width: max(50px, calc(var(--ratio-size) * 76));
    height: max(50px, calc(var(--ratio-size) * 76));
    cursor: pointer;
    transition: all .5s;
}

.product-presentation .video-container .video-play:hover {
    transform: scale(1.2);
}

.product-presentation .video-container .border-scale {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-presentation .video-container .border-scale span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid var(--video-border-color);
}

.product-presentation .video-container .border-scale span:nth-of-type(1) {
    transform: scale(1.04, 1.05);
}

.product-presentation .video-container .border-scale span:nth-of-type(2) {
    transform: scale(1.07, 1.09);
    opacity: .5;
}

.product-presentation .video-container .border-scale span:nth-of-type(3) {
    transform: scale(1.1, 1.15);
    opacity: .3;
}

.product-presentation .text {
    margin-top: max(40px, calc(var(--ratio-size) * 65));
    text-align: center;
    line-height: 1.5;

    background: linear-gradient(to right, #ffffff90, #fff, #ffffff90);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.flow-container {
    position: relative;
    z-index: 2;
}

.flow-container .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flow-container .common-title {
    padding-top: calc(var(--ratio-size) * 80);
}

.flow-container .main-content {
    margin-top: max(40px, calc(var(--ratio-size) * 100));
}

.flow-container {
    padding-left: calc(var(--ratio-size) * 225);
    padding-right: calc(var(--ratio-size) * 225);
}

.flow-container .main-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flow-container .main-content .text-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--ratio-size) * 60);
}

.flow-container .main-content .text-list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(var(--ratio-size) * 320);
    padding: calc(var(--ratio-size) * 30) calc(var(--ratio-size) * 70);
    border-radius: 20px;
    background: url('../images/flow-item-bg.png') no-repeat center/cover;
}

.flow-container .main-content .text-list .item:hover {
    background: url('../images/flow-item-bg-hover.png') no-repeat center/cover;
    color: var(--title-color);
}

.flow-container .main-content .text-list .item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(var(--ratio-size) * -30);
    transform: translate(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff90, transparent);
}

.flow-container .main-content .text-list .item .serial {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(80px, calc(var(--ratio-size) * 102));
    height: max(56px, calc(var(--ratio-size) * 72));
    font-size: var(--text-title);
    background: url('../images/serial-bg.svg') no-repeat center/cover;
}

.flow-container .main-content .text-list .item .text {
    margin-top: 10px;
    font-size: var(--serial-size);
    text-align: center;
    line-height: 1.5;
}

.flow-container .middle-content {
    position: relative;
    width: calc(var(--ratio-size) * 686);
}

.flow-container .video-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: calc(var(--ratio-size) * 518);
    height: calc(var(--ratio-size) * 342); */
    width: calc(var(--ratio-size) * 518);
    aspect-ratio: 518 / 342;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: 10px;
    border: 1px solid var(--video-border-color);
}

.flow-container .video-container .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.flow-container .video-container .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-container .video-container .video-play {
    position: relative;
    z-index: 2;
    width: max(50px, calc(var(--ratio-size) * 76));
    height: max(50px, calc(var(--ratio-size) * 76));
    cursor: pointer;
    transition: all .5s;
}

.flow-container .video-container .video-play:hover {
    transform: scale(1.2);
}

.flow-container .video-container .border-scale {
    position: absolute;
    width: 100%;
    height: 100%;
}

.apply-for-container {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--ratio-size) * 170);
    margin-top: calc(var(--ratio-size) * 100);
}

.apply-for-container .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    width: 100%;
}

.apply-for-container .bg img {
    width: 100%;
}

.apply-for-container .form-content {
    position: relative;
    z-index: 2;
    width: calc(var(--ratio-size) * 1052);
    padding: 20px;
    margin: 0 auto;
    margin-top: max(40px, calc(var(--ratio-size) * 95));
    border-radius: 20px;
    /* background-color: #415CB6; */
    background-color: #9891B050;
}

.apply-for-container .form-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apply-for-container .form-content .input-item {
    position: relative;
    display: flex;
    align-items: center;
    height: max(50px, calc(var(--ratio-size) * 57));
    padding: 0 28px;
    border-left: 1px solid #ffffff50;
    background-color: #C1C6E930;
    border-radius: 10px;
    font-size: var(--text-size);
    overflow: hidden;
}

.apply-for-container .form-content .input-item::after,
.apply-for-container .form-content .input-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #ffffff30, transparent);
}

.apply-for-container .form-content .input-item::before {
    top: auto;
    bottom: 0;
}

.apply-for-container .form-content .input-item.error {
    border-color: #ff0000;
}

.apply-for-container .form-content .input-item.error::after,
.apply-for-container .form-content .input-item.error::before {
    background-image: linear-gradient(to right, #ff0000, transparent);
}

.apply-for-container .form-content .input-item label {
    display: flex;
    width: 7em;
    border-right: 1px solid #FFFFFF10;
}

.apply-for-container .form-content .input-item label span {
    display: block;
    width: 1em;
}

.apply-for-container .form-content .input-item input {
    flex: 1;
    height: 100%;
    padding-left: 40px;
    background-color: transparent;
    color: #fff;
    border: transparent;
    outline: none;
    font-family: none;
    font-size: var(--text-size);
}

.apply-for-container .form-content .input-item input::placeholder {
    color: #fff;
    opacity: .5;
}

.apply-for-container .form-content .input-item.textarea {
    height: auto;
    padding: 15px 28px;
}

.apply-for-container .form-content .input-item textarea {
    width: 100%;
    resize: none;
    border: transparent;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-family: none;
    font-size: var(--text-size);
}

.apply-for-container .form-content .input-item textarea::placeholder {
    color: #fff;
    opacity: .5;
}

.apply-for-container .form-content button {
    width: 100%;
    height: max(50px, calc(var(--ratio-size) * 57));
    margin-top: 10px;
    font-size: var(--serial-size);
    font-weight: bold;
    border-radius: 100000px;
    border: 1px solid #ffffff50;
    cursor: pointer;
    background-image: linear-gradient(to bottom, #AEAEAE80, #fff);
    opacity: .7;
}

.scheme-container {
    position: relative;
    z-index: 2;
    padding: 0 calc(var(--ratio-size) * 190);
    margin-top: calc(var(--ratio-size) * 280);
}

.scheme-container .common-title {
    /* justify-content: flex-start; */
    margin-left: calc(var(--ratio-size) * 30);
}

.scheme-container .scheme-list {
    display: flex;
    gap: 20px;
    margin-top: max(40px, calc(var(--ratio-size) * 120));
}

.scheme-container .item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px 40px;
    border-radius: 20px;
    background-color: rgba(223, 211, 255, 0.49);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.scheme-container .item .bg {
    position: absolute;
    bottom: -124px;
    right: -46px;
    width: 52%;
    opacity: .4;
}

.scheme-container .item .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scheme-container .item .top .logo {
    width: max(30px, calc(var(--ratio-size) * 30));
}

.scheme-container .item .top .percentage {
    display: flex;
    align-items: center;
    height: max(40px, calc(var(--ratio-size) * 50));
    padding: 0 20px;
    background-color: rgba(255, 255, 255, .56);
    border-radius: 10px;
    color: #595656;
}

.scheme-container .item .top .percentage.opacity {
    opacity: 0;
    visibility: hidden;
}

.scheme-container .item .content {
    position: relative;
    z-index: 2;
    margin-top: max(20px, calc(var(--ratio-size) * 40));
}

.scheme-container .item .content .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: max(10px, calc(var(--ratio-size) * 12));
    margin-bottom: max(25px, calc(var(--ratio-size) * 35));
    line-height: 1.5;
    font-size: var(--text-size);
    text-align: justify;
}

.scheme-container .item .content .text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.scheme-container .item .content .text ul li {
    margin-bottom: 5px;
}

.scheme-container .item .content .text strong {
    font-weight: bolder;
}

.scheme-container .item .content .text i {
    font-style: italic;
}


.scheme-container .item .btn {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.scheme-container .item .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max(50px, calc(var(--ratio-size) * 65));
    margin-top: 10px;
    font-size: var(--serial-size);
    font-weight: bold;
    border-radius: 100000px;
    border: 1px solid #ffffff50;
    cursor: pointer;
    background: radial-gradient(ellipse at bottom, #fff 40%, #dbddec);
    opacity: .7;
    color: #595656;
}

.about-us-container {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--ratio-size) * 180);
}

.about-us-container .common-title {
    position: relative;
    z-index: 3;
}

.about-us-container .main-content {
    position: relative;
    z-index: 2;
    margin-top: max(40px, calc(var(--ratio-size) * 100));
}

.about-us-container .main-content .content {
    position: relative;
    z-index: 3;
    width: calc(var(--ratio-size) * 1100);
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.about-us-container .main-content .content::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 300%;
    background: radial-gradient(#142244, #14224499);
    filter: blur(5px);
    border-radius: 50%;
}

.about-us-container .main-content .content .text {
    position: relative;
    z-index: 3;
    background: linear-gradient(to right, #ffffff90, #fff, #ffffff90);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-us-container .description-content {
    width: calc(var(--ratio-size) * 1560);
    margin: 0 auto;
}

.about-us-container .description-content .branch-svg {
    position: relative;
    z-index: 2;
    width: 70%;
    margin: 0 auto;
}

.about-us-container .description-content .list {
    display: flex;
    gap: 20px;
    margin-top: calc(var(--ratio-size) * -45);
}

.about-us-container .description-content .list .item {
    flex: 1;
    position: relative;
    border-radius: 20px;
    text-align: center;
    line-height: 1.5;
}

.about-us-container .description-content .list .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 95%;
    height: 30px;
    transform: translateY(calc(var(--ratio-size) * -20)) translateX(-50%);
    background: url('../images/about-us-item-bg.png') no-repeat top / 100% auto;
}

.about-us-container .description-content .list .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 50%;
    aspect-ratio: 1/1;
}

.about-us-container .description-content .list .item strong {
    font-weight: bolder;
}

.about-us-container .description-content .list .item .inside {
    position: relative;
    height: 100%;
    padding: 0 max(25px, calc(var(--ratio-size) * 58));
    padding-top: calc(var(--ratio-size) * 70);
    padding-bottom: calc(var(--ratio-size) * 60);
    border-radius: 20px;
    overflow: hidden;
    background: url('../images/about-us-item-inside-bg.png') no-repeat center/cover;
}

.about-us-container .description-content .list .item .title {
    font-size: var(--text-title-24);
    font-weight: bold;
}

.about-us-container .description-content .list .item .text {
    margin-top: max(10px, calc(var(--ratio-size) * 20));
}

.development-history-container {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--ratio-size) * 180);
}

.development-history-container .history-content {
    display: flex;
    justify-content: space-between;
    margin-top: max(40px, calc(var(--ratio-size) * 145));
    margin-left: calc(var(--ratio-size) * 320);
}

.development-history-container .left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.development-history-container .left::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(var(--ratio-size) * -50);
    width: calc(var(--ratio-size) * 700);
    height: calc(var(--ratio-size) * 700);
    border-radius: 50%;
    /* background: radial-gradient(rgba(20, 34, 68, .32), rgba(20, 34, 68, .32) 80%); */
    background: radial-gradient(rgba(36, 74, 212, .4), rgba(36, 74, 212, 0) 80%);
    filter: blur(50px);
}

.development-history-container .left .s-title {
    position: relative;
    z-index: 2;
    padding: 6px 45px;
    font-size: var(--text-title-24);
    background-image: linear-gradient(to right, rgba(255, 255, 255, .05), rgba(255, 255, 255, .2), rgba(255, 255, 255, .05));
}

.development-history-container .left .title {
    position: relative;
    z-index: 2;
    margin-top: max(15px, calc(var(--ratio-size) * 25));
    font-size: var(--text-b-title);
}

.development-history-container .left .logo {
    position: relative;
    z-index: 2;
    width: calc(var(--ratio-size) * 395);
    margin-top: calc(var(--ratio-size) * 85);
}

.development-history-container .history-progress {
    position: relative;
    width: 4px;
    margin-left: auto;
    background-color: rgba(255, 255, 255, .2);
}

.development-history-container .history-progress .cover {
    display: block;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.development-history-container .history-progress .dot {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: calc(var(--ratio-size) * 65);
    height: calc(var(--ratio-size) * 65);
    background: radial-gradient(rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0));
    filter: blur(5px);
    border-radius: 50%;
}

.development-history-container .right {
    width: calc(var(--ratio-size) * 600);
    margin-left: calc(var(--ratio-size) * 95);
    overflow: hidden;
    /* height: 500px; */
}

.development-history-container .history-swiper {
    height: 100%;
}

.development-history-container .swiper-slide {
    padding: calc(var(--ratio-size) * 20) 0;
}

.development-history-container .right .year {
    font-size: var(--text-b-title);
    background: linear-gradient(to right, #ABA4B8, #9689B2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all .5s;
    line-height: 1;
}

.development-history-container .right .text {
    margin-top: max(5px, calc(var(--ratio-size) * 10));
    font-size: var(--text-size);
}

.development-history-container .right .active .year {
    font-size: var(--banner-b-title);
    background: linear-gradient(to right, #E2C887, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.development-history-container .right .swiper-slide.active {
    padding-top: 0;
}

.news-container {
    position: relative;
    z-index: 3;
    margin-top: calc(var(--ratio-size) * 180);
}

.news-container .news-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: max(50px, calc(var(--ratio-size) * 100));
}

.news-container .news-swiper .swiper-slide {
    position: relative;
    min-height: calc(var(--ratio-size) * 615);
    padding-bottom: max(20px, calc(var(--ratio-size) * 40));
    background-color: #6E7096;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity .5s;
}

.news-container .news-swiper .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 375);
    border-radius: 10px;
    overflow: hidden;
}

.news-container .news-swiper .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-container .news-swiper .bg {
    position: absolute;
    bottom: calc(var(--ratio-size) * -160);
    right: calc(var(--ratio-size) * -85);
    width: calc(var(--ratio-size) * 290);
    opacity: .1;
}

.news-container .news-swiper .content {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    /* height: calc(var(--ratio-size) * 240); */
    padding: 0 max(20px, calc(var(--ratio-size) * 40));
    padding-top: max(20px, calc(var(--ratio-size) * 30));
    padding-bottom: max(20px, calc(var(--ratio-size) * 40));
    border-radius: 10px;
    font-family: var(--text-size);
    line-height: 1.5;
    background-color: #6E7096;
    transition: all .5s;
}

.news-container .news-swiper .content .time {
    font-size: var(--serial-size);
    opacity: .32;
}

.news-container .news-swiper .content .title {
    margin-top: max(15px, calc(var(--ratio-size) * 20));

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.news-container .news-swiper .content .text {
    flex: 1;
    margin-top: 10px;
    opacity: .8;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.news-container .news-swiper .content .text::-webkit-scrollbar {
    width: 2px;
}

.news-container .news-swiper .content .text::-webkit-scrollbar-track {
    background: #2d3436;
    border-radius: 0;
}

.news-container .news-swiper .content .text::-webkit-scrollbar-thumb {
    background: #636e72;
    border-radius: 0;
    border: 3px solid #fff;
}

.news-container .news-swiper .content .text::-webkit-scrollbar-thumb:hover {
    background: #b2bec3;
}

.news-container .news-swiper .swiper-slide:hover .content {
    height: 100%;
}

.news-container .news-swiper .swiper-slide:hover .content .text {
    display: flex;
    gap: 5px;
    flex-direction: column;
    -webkit-line-clamp: unset;
    overflow: auto;
}

.news-container .news-swiper .swiper-slide.swiper-slide-prev,
.news-container .news-swiper .swiper-slide.swiper-slide-duplicate-prev {
    opacity: .5;
}

.news-container .news-swiper .news-navigation {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding-right: calc(var(--ratio-size) * 170);
    margin-top: max(20px, calc(var(--ratio-size) * 35));
}

.news-container .news-swiper .news-navigation .news-swiper-button {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: max(50px, calc(var(--ratio-size) * 56));
    height: max(50px, calc(var(--ratio-size) * 56));
    margin-top: 0;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .2);
    transition: all .5s;
}

.news-container .news-swiper .news-navigation .news-swiper-button::after,
.news-container .news-swiper .news-navigation .news-swiper-button::before {
    display: none;
}

.news-container .news-swiper .news-navigation .news-swiper-button.news-swiper-button-prev {
    transform: rotateY(180deg);
}

.news-container .news-swiper .news-navigation .news-swiper-button::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #E2C887, #E2C88700);
    opacity: 0;
    transition: all .5s;
}

.news-container .news-swiper .news-navigation .news-swiper-button:hover {
    background-color: transparent;
}

.news-container .news-swiper .news-navigation .news-swiper-button:hover::after {
    opacity: 1;
}

.partner-container {
    position: relative;
    z-index: 2;
    padding: 0 calc(var(--ratio-size) * 230);
    padding-top: max(40px, calc(var(--ratio-size) * 180));
}

.partner-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%) translateY(-20%);
    z-index: 2;
    width: calc(var(--ratio-size) * 646);
    height: calc(var(--ratio-size) * 880);
    background: radial-gradient(rgb(43, 65, 120, 1), rgba(20, 34, 68, 0) 80%);
    filter: blur(5px);
}

.partner-container::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-20%);
    z-index: 2;
    width: calc(var(--ratio-size) * 646);
    height: calc(var(--ratio-size) * 880);
    background: radial-gradient(rgb(43, 65, 120, 1), rgba(20, 34, 68, 0) 80%);
    filter: blur(5px);
}

.partner-container .partner-swiper-content {
    margin-top: max(40px, calc(var(--ratio-size) * 100));
    overflow: hidden;
}

/* .partner-container .partner-swiper-content .swiper-wrapper {
    transition-timing-function: linear;
} */

.partner-container .partner-swiper-content .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-container .partner-swiper-content .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(var(--ratio-size) * 150);
    background-image: linear-gradient(135deg, #9891B0, rgba(139, 130, 167, .63));
    border-radius: 10px;
}

.partner-container .partner-swiper-content .swiper-slide img {
    max-width: 50%;
    max-height: 80%;
}

.partner-container .partner-swiper-content .partner-swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: max(35px, calc(var(--ratio-size) * 75));
    text-align: center;
}

.partner-container .partner-swiper-content .partner-swiper-pagination .swiper-pagination-bullet {
    display: block;
    background-color: #fff;
}

.contact-us-container {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--ratio-size) * 250);
}

.contact-us-container .contact-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: max(25px, calc(var(--ratio-size) * 50));
    margin-top: max(40px, calc(var(--ratio-size) * 90));
    font-size: var(--serial-size);
}

.contact-us-container .contact-main .left {
    display: flex;
    flex-direction: column;
    gap: max(20px, calc(var(--ratio-size) * 40));
    margin-right: max(25px, calc(var(--ratio-size) * 50));
}

.contact-us-container .contact-main .left .top-item {
    display: flex;
    justify-content: space-between;
    gap: max(20px, calc(var(--ratio-size) * 40));
    flex-wrap: wrap;
}

.contact-us-container .contact-main .item {
    display: flex;
    /* align-items: center; */
}

.contact-us-container .contact-main .item .icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.contact-us-container .contact-main .item p.text {
    flex: 1;
}

.contact-us-container .contact-main .right {
    position: relative;
    padding-left: calc(var(--ratio-size) * 65);
    text-align: center;
}

.contact-us-container .contact-main .right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, #FFFFFF00, #FFFFFF50, #FFFFFF00);
}

.contact-us-container .contact-main .right .qr-code {
    width: max(70px, calc(var(--ratio-size) * 107));
    height: max(70px, calc(var(--ratio-size) * 107));
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
}

footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px calc(var(--ratio-size) * 180);
    background-color: #071128;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

footer .left {
    display: flex;
    align-items: center;
    gap: 10px 30px;
    flex-wrap: wrap;
    font-size: max(14px, calc(var(--ratio-size) * 14));
    opacity: .5;
}

footer .other-platform {
    display: flex;
    gap: 10px;
}

footer .other-platform a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    transition: all .5s;
}

footer .other-platform a img {
    max-width: 40%;
    max-height: 40%;
}

footer .other-platform a:hover {
    background-color: var(--bg-color);
}

.star-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-bg img {
    width: 100%;
}

.video-dialog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.video-dialog .video-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-dialog .video-main .video-content {
    width: 800px;
    margin-top: 30px;
}

.video-dialog .video-main .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-top: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
}

.video-dialog .video-main .close-btn svg {
    width: 50%;
}

.slide-svg {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 2;
    width: 34px;
}

.slide-svg svg {
    width: 100%;
}

.slide-svg svg .arrow-1 {
    animation: opacityAn 1s linear infinite alternate;
}

.slide-svg svg .arrow-2 {
    animation: opacityAn 1s linear infinite alternate-reverse;
}

.form-loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

.form-loading svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    animation: rotate360 3s linear infinite;
}


@keyframes opacityAn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes rotate360 {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}