@charset "utf-8";
@import "aos.css";

/**
 * @Description: 网站主要样式
 * @Author:
 * @Date: 2024-7-26 22:10:21
 * @LastEditors:
 * @LastEditTime: 2024-7-26 22:10:21
 */
@font-face {
    font-family: "";
    src: url('');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Black";
    src: url('../otf/inter-black-3.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Bold";
    src: url('../otf/inter-bold-4.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-ExtraBold";
    src: url('../otf/inter-extrabold-5.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-ExtraLight";
    src: url('../otf/inter-extralight-6.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Light";
    src: url('../otf/inter-light-7.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Medium";
    src: url('../otf/inter-medium-8.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Regular";
    src: url('../otf/inter-regular-9.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-SemiBold";
    src: url('../otf/inter-semibold-10.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter-Thin";
    src: url('../otf/inter-thin-11.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ==================== 重置样式 Start ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif";
}

a {
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #0075ff;
}

html {
    word-break: break-word !important;
}

html.no-scroll {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 4px;
    height: 6px;
    background: #ececec;
    border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #333;
    cursor: pointer;
}

img {
    vertical-align: middle;
    max-width: 100%;
}
ul,ol {
    /*padding-left: 20px;*/
}
ul,
li {
    /*list-style: unset;*/
    list-style: none;
}
li::marker {
    color: #000;
}
input,
button {
    outline: 0 none;
    border: none;
    background-color: transparent;
}

button {
    cursor: pointer;
}

/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}

.mxw-image img {
    transition: transform 0.4s;
    width: 100%;
}

.mxw-image:hover img {
    transform: scale(1.1);
}

main,
header,
footer,
.mxw-box,
section {
    font-size: 16px;
}

main {
    position: relative;
    z-index: 10;
}

section {
    position: relative;
    z-index: 9;
}

/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (min-width: 769px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (min-width: 501px) and (max-width: 768px) {
    .ipad-hide {
        display: none !important;
    }
}

@media screen and (min-width: 0) and (max-width: 500px) {
    .mobile-hide {
        display: none !important;
    }
}

/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1440px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .u-row-2 > .u-col {
        width: 49%;
    }

    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 2%;
    }

    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-3 > .u-col {
        width: 32%;
    }

    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }

    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }

    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }

    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }

    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }

    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-6 > .u-col {
        width: 15.5%;
        margin-right: 1.4%;
    }

    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }

    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 1.4%;
    }
}

@media screen and (max-width: 500px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .u-row-2 .u-col {
        width: 100%;
    }

    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 4%;
    }

    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }

    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }

    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}

/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.u-line-2 {
    -webkit-line-clamp: 2;
}

.u-line-3 {
    -webkit-line-clamp: 3;
}

.u-line-4 {
    -webkit-line-clamp: 4;
}

.u-line-5 {
    -webkit-line-clamp: 5;
}

.u-line-6 {
    -webkit-line-clamp: 6;
}

.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-word !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-list > li img {
    width: 100% !important;
    height: auto !important;
    transform: translate(0, 0) !important;
}

/* ==================== 图片放大插件 End ==================== */
/* ==================== ElementUI Start ==================== */
.el-table-filter__bottom {
    font-size: 12px;
}

/* ==================== ElementUI End ==================== */
/* ==================== 客服插件样式调整 Start ==================== */
.udesk-client-btn {
    bottom: calc(40px + 16px + 50px) !important;
    right: 40px !important;
    margin: 0 !important;
}

.udesk-client-btn .buttonImg {
    border-radius: 100%;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .udesk-client-btn {
        bottom: calc(32px + 16px + 50px) !important;
        right: 12px !important;
    }
}

/* ==================== 客服插件样式调整 End ==================== */
/* ==================== 头部导航样式 Start ==================== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 19;
    transition: top 0.4s;
}

header.hide {
    top: -70px;
}

.navbar-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.39vw);
    -webkit-backdrop-filter: blur(1.39vw);
    top: 0;
    left: 0;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.navbar-bg.active {
    opacity: 1;
    visibility: visible;
}

.navbar-bg.active2 {
    opacity: 1;
    visibility: visible;
    z-index: 22;
}

.header {
    background-color: #fff;
    position: relative;
    z-index: 20;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.header .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5.56vw;
    padding-right: 5.56vw;
}

.header .logo {
    line-height: 1;
    width: 6.25vw;
    flex-shrink: 0;
    display: block;
}

.header .navbar {
    padding-left: 5.56vw;
}

.header .navbar > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

.header .navbar > ul > li {
    margin-right: 2.22vw;
    list-style: none;
}

.header .navbar > ul > li.fixed {
    position: relative;
}

.header .navbar > ul > li:hover > .sub-nav {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.header .navbar > ul > li:hover > .sub-nav .nav-item1 {
    opacity: 1;
    visibility: visible;
}

.header .navbar > ul > li:last-child {
    margin-right: 0;
}

.header .navbar > ul > li > a {
    display: block;
    padding-top: 1.94vw;
    padding-bottom: 1.94vw;
    color: #000;
    font-family: "Inter-Medium";
    font-size: 0.9vw;
    font-weight: 500;
    line-height: 1.1;
    position: relative;
}

.header .navbar > ul > li > a:hover:after {
    width: 100%;
}

.header .navbar > ul > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: width 0.3s;
}

.header .tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.header .search {
    color: #000000;
    margin-right: 1.11vw;
    font-size: 1.67vw;
    cursor: pointer;
}

.header .user {
    color: #000000;
    margin-right: 1.67vw;
    font-size: 1.67vw;
    cursor: pointer;
    position: relative;
    display: none;
}

.header .user:hover ul {
    opacity: 1;
    visibility: visible;
}

.header .user ul {
    position: absolute;
    top: calc(100% + 0.9vw);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.56vw;
    padding-bottom: 0.56vw;
    border-bottom-left-radius: 0.56vw;
    border-bottom-right-radius: 0.56vw;
    background: #F6F6F6;
    min-width: 6.67vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.header .user ul li a {
    display: block;
    padding: 0.49vw 0.83vw;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.83vw;
    line-height: 1.25vw;
    transition: color 0.3s;
}

.header .user ul li a:hover {
    color: #000;
}

.header .shop {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0.42vw 0.83vw;
    padding-left: 0.83vw;
    padding-right: 1.11vw;
    border-radius: 6.94vw;
    overflow: hidden;
    background-color: #0075FF;
    cursor: pointer;
    line-height: 1;
}

.header .shop .icon {
    font-size: 1.39vw;
    margin-right: 0.28vw;
}

.header .shop .text {
    color: #FFF;
    font-family: "Inter-Medium";
    font-size: 0.9vw;
}

.header .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #f8f8f8;
    text-align: center;
    padding-top: 0.694vw;
    padding-bottom: 0.694vw;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header .search-form.active {
    opacity: 1;
    visibility: visible;
}

.header .search-form .form-body {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.694vw;
    padding-bottom: 0.694vw;
    border: 1px solid #eee;
    padding-left: 1.389vw;
    padding-right: 1.389vw;
    border-radius: 6.944vw;
}

.header .search-form input {
    width: 27.778vw;
    height: 2.083vw;
    font-family: "Inter-Regular";
    font-size: 0.972vw;
    color: #000;
    text-align: left;
}

.header .search-form .icon {
    line-height: 1;
    font-size: 1.389vw;
    margin-right: 1.042vw;
    flex-shrink: 0;
}

.header .search-form .close {
    font-size: 1.389vw;
    cursor: pointer;
    margin-left: 1.042vw;
    flex-shrink: 0;
}

@media screen and (min-width: 769px) {
    .header .sub-nav {
        transition: visibility 0.3s, opacity 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .sub-nav:hover {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .header .sub-nav1 {
        position: absolute;
        top: 4.86vw;
        left: 0;
        width: 100%;
        z-index: 3;
        background-color: #fff;
    }

    .header .sub-nav1 > .mxw-box {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header .sub-nav1 .head {
        color: #A6A6A6;
        font-family: "Inter-Thin";
        font-size: 0.83vw;
        line-height: 1.1;
        margin-bottom: 2.08vw;
        display: block;
    }

    .header .sub-nav1 .nav-item {
        padding-bottom: 6.25vw;
        padding-top: 2.5vw;
        display: none;
    }

    .header .sub-nav1 .nav-item1 {
        position: relative;
        width: 18.06vw;
        min-height: 18.06vw;
        flex-shrink: 0;
        border-right: 1px solid #F6F6F6;
        visibility: hidden;
        opacity: 0;
        display: block;
    }

    .header .sub-nav1 .nav-item1 > ul > li {
        margin-top: 2.36vw;
    }

    .header .sub-nav1 .nav-item1 > ul > li.active .nav-item2 {
        display: block;
    }

    .header .sub-nav1 .nav-item1 > ul > li.active > a {
        color: #0075FF;
    }

    .header .sub-nav1 .nav-item1 > ul > li:first-child {
        margin-top: 0;
    }

    .header .sub-nav1 .nav-item1 > ul > li a:hover {
        color: #0075FF;
    }

    .header .sub-nav1 .nav-item2 {
        width: 20.83vw;
        padding-left: 2.78vw;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header .sub-nav1 .nav-item2 > ul > li {
        margin-bottom: 1.74vw;
    }

    .header .sub-nav1 .nav-item2 > ul > li.active .nav-item3,
    .header .sub-nav1 .nav-item2 > ul > li.active .nav-item4 {
        display: block;
    }

    .header .sub-nav1 .nav-item2 > ul > li.active > a {
        color: #0075FF;
    }

    .header .sub-nav1 .nav-item2 > ul > li:last-child {
        margin: 0;
    }

    .header .sub-nav1 .nav-item2 > ul > li > a {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 0.97vw;
        line-height: 1.2;
    }

    .header .sub-nav1 .nav-item2 > ul > li > a:hover {
        color: #0075FF;
    }

    .header .sub-nav1 .nav-item2 .other {
        position: absolute;
        bottom: 0;
        left: 2.78vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header .sub-nav1 .nav-item2 .other .icon {
        font-size: 1.39vw;
        margin-left: 0.83vw;
    }

    .header .sub-nav1 .nav-item3 {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 14.58vw;
        padding-top: 0.69vw;
        margin-right: 1.39vw;
        padding-bottom: 4.17vw;
        background-color: #F6F6F6;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide:nth-child(3) ~ .swiper-slide {
        display: none;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        bottom: 1.67vw;
        left: 0;
        width: 100%;
        text-align: center;
        color: #000;
        position: absolute;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .sub-nav1 .nav-item4 {
        position: absolute;
        left: 100%;
        top: 3.47vw;
    }

    .header .sub-nav1 .nav-item4 .image {
        width: 25vw;
        border-radius: 16px;
        overflow: hidden;
    }

    .header .sub-nav1 .nav-item4 .image img {
        width: 100%;
    }

    .header .sub-nav2 {
        position: absolute;
        top: 4.86vw;
        left: 0;
        width: 100%;
        z-index: 3;
        background-color: #fff;
    }

    .header .sub-nav2 > .mxw-box {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header .sub-nav2 .head {
        color: #A6A6A6;
        font-family: "Inter-Thin";
        font-size: 0.83vw;
        line-height: 1.1;
        margin-bottom: 2.08vw;
        display: block;
    }

    .header .sub-nav2 .nav-item {
        padding-bottom: 6.25vw;
        padding-top: 2.5vw;
        display: none;
    }

    .header .sub-nav2 .nav-item1 {
        position: relative;
        width: 18.06vw;
        min-height: 18.06vw;
        flex-shrink: 0;
        border-right: 1px solid #F6F6F6;
        visibility: hidden;
        opacity: 0;
        display: block;
    }

    .header .sub-nav2 .nav-item1 > ul > li {
        margin-top: 2.36vw;
    }

    .header .sub-nav2 .nav-item1 > ul > li .image {
        display: block;
    }

    .header .sub-nav2 .nav-item1 > ul > li.active .nav-item2 {
        display: block;
    }

    .header .sub-nav2 .nav-item1 > ul > li.active > a {
        color: #0075FF;
    }

    .header .sub-nav2 .nav-item1 > ul > li:first-child {
        margin-top: 0;
    }

    .header .sub-nav2 .nav-item1 > ul > li a:hover {
        color: #0075FF;
    }

    .header .sub-nav2 .nav-item2 {
        width: 20.83vw;
        padding-left: 2.78vw;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header .sub-nav2 .nav-item2 > ul > li {
        margin-bottom: 1.74vw;
    }

    .header .sub-nav2 .nav-item2 > ul > li.active .nav-item3,
    .header .sub-nav2 .nav-item2 > ul > li.active .nav-item4 {
        display: block;
    }

    .header .sub-nav2 .nav-item2 > ul > li.active > a {
        color: #0075FF;
    }

    .header .sub-nav2 .nav-item2 > ul > li:last-child {
        margin: 0;
    }

    .header .sub-nav2 .nav-item2 > ul > li > a {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 0.97vw;
        line-height: 1.2;
    }

    .header .sub-nav2 .nav-item2 > ul > li > a:hover {
        color: #0075FF;
    }

    .header .sub-nav2 .nav-item2 .other {
        position: absolute;
        bottom: 0;
        left: 2.78vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header .sub-nav2 .nav-item2 .other .icon {
        font-size: 1.39vw;
        margin-left: 0.83vw;
    }

    .header .sub-nav2 .nav-item3 {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 14.58vw;
        padding-top: 0.69vw;
        margin-right: 1.39vw;
        padding-bottom: 4.17vw;
        background-color: #F6F6F6;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide:nth-child(3) ~ .swiper-slide {
        display: none;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        bottom: 1.67vw;
        left: 0;
        width: 100%;
        text-align: center;
        color: #000;
        position: absolute;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .sub-nav2 .nav-item4 {
        position: absolute;
        left: 100%;
        top: 3.47vw;
    }

    .header .sub-nav2 .nav-item4 .image {
        display: block;
        width: 25vw;
        border-radius: 16px;
        overflow: hidden;
    }

    .header .sub-nav2 .nav-item4 .image img {
        width: 100%;
    }

    .header .sub-nav3 {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #F6F6F6;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        white-space: nowrap;
        padding-top: 0.69vw;
        padding-bottom: 0.69vw;
    }

    .header .sub-nav3 .nav-item {
        display: block;
        padding: 0.69vw 1.389vw;
        color: #999;
        text-align: left;
    }

    .header .sub-nav3 .nav-item:hover {
        color: #0075FF;
    }
}

@media screen and (min-width: 1440px) {
    .navbar-bg {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .header .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .header .logo {
        width: 90px;
    }

    .header .navbar {
        padding-left: 80px;
    }

    .header .navbar > ul > li {
        margin-right: 32px;
    }

    .header .navbar > ul > li > a {
        padding-top: 28px;
        padding-bottom: 28px;
        font-size: 13px;
    }

    .header .search {
        margin-right: 16px;
        font-size: 24px;
    }

    .header .user {
        margin-right: 24px;
        font-size: 24px;
    }

    .header .user ul {
        top: calc(100% + 13px);
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        min-width: 96px;
    }

    .header .user ul li a {
        padding: 7px 12px;
        font-size: 12px;
        line-height: 18px;
    }

    .header .shop {
        padding: 6px 12px;
        padding-left: 12px;
        padding-right: 16px;
        border-radius: 100px;
    }

    .header .shop .icon {
        font-size: 20px;
        margin-right: 4px;
    }

    .header .shop .text {
        font-size: 13px;
    }

    .header .sub-nav1 {
        top: 70px;
    }

    .header .sub-nav1 .head {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .header .sub-nav1 .nav-item {
        padding-bottom: 90px;
        padding-top: 36px;
    }

    .header .sub-nav1 .nav-item1 {
        width: 260px;
        min-height: 260px;
    }

    .header .sub-nav1 .nav-item1 > ul > li {
        margin-top: 34px;
    }

    .header .sub-nav1 .nav-item2 {
        width: 300px;
        padding-left: 40px;
    }

    .header .sub-nav1 .nav-item2 > ul > li {
        margin-bottom: 25px;
    }

    .header .sub-nav1 .nav-item2 > ul > li > a {
        font-size: 14px;
    }

    .header .sub-nav1 .nav-item2 .other {
        left: 40px;
    }

    .header .sub-nav1 .nav-item2 .other .icon {
        font-size: 20px;
        margin-left: 12px;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 210px;
        padding-top: 10px;
        margin-right: 20px;
        padding-bottom: 60px;
    }

    .header .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        bottom: 24px;
    }

    .header .sub-nav1 .nav-item4 {
        top: 50px;
    }

    .header .sub-nav1 .nav-item4 .image {
        width: 360px;
    }

    .header .sub-nav2 {
        top: 70px;
    }

    .header .sub-nav2 .head {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .header .sub-nav2 .nav-item {
        padding-bottom: 90px;
        padding-top: 36px;
    }

    .header .sub-nav2 .nav-item1 {
        width: 260px;
        min-height: 260px;
    }

    .header .sub-nav2 .nav-item1 > ul > li {
        margin-top: 34px;
    }

    .header .sub-nav2 .nav-item2 {
        width: 300px;
        padding-left: 40px;
    }

    .header .sub-nav2 .nav-item2 .image {
        display: block;
    }

    .header .sub-nav2 .nav-item2 > ul > li {
        margin-bottom: 25px;
    }

    .header .sub-nav2 .nav-item2 > ul > li > a {
        font-size: 14px;
    }

    .header .sub-nav2 .nav-item2 .other {
        left: 40px;
    }

    .header .sub-nav2 .nav-item2 .other .icon {
        font-size: 20px;
        margin-left: 12px;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 210px;
        padding-top: 10px;
        margin-right: 20px;
        padding-bottom: 60px;
    }

    .header .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        bottom: 24px;
    }

    .header .sub-nav2 .nav-item4 {
        top: 0;
    }

    .header .sub-nav2 .nav-item4 .image {
        display: block;
        width: 360px;
    }

    .header .sub-nav3 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header .sub-nav3 .nav-item {
        padding: 10px 20px;
    }

    .header .search-form {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header .search-form .form-body {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 100px;
    }

    .header .search-form input {
        width: 400px;
        height: 30px;
        font-size: 14px;
    }

    .header .search-form .icon {
        font-size: 20px;
        margin-right: 15px;
    }

    .header .search-form .close {
        font-size: 20px;
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        width: 100%;
    }

    .header > .mxw-box {
        height: 8.33vw;
        position: relative;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .header .menu {
        font-size: 3.13vw;
        color: #000;
        line-height: 1;
        cursor: pointer;
        margin-right: 5.47vw;
    }

    .header .menu.active::before {
        content: "\e61b";
    }

    .header .menu:before {
        content: "\e618";
        font-family: iconfont;
        color: #000;
    }

    .header .logo {
        width: 8.33vw;
    }

    .header .navbar {
        background-color: #fff;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow: auto;
        z-index: 19;
    }

    .header .navbar .close {
        font-size: 3.13vw;
        margin-left: auto;
        margin-right: 3.13vw;
        display: table;
        margin-top: 1.3vw;
        margin-bottom: 1.3vw;
    }

    .header .navbar.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .header .navbar a {
        color: inherit;
    }

    .header .navbar > ul {
        display: block;
    }

    .header .navbar > ul > li {
        margin-right: 0;
    }

    .header .navbar > ul > li.active .sub-nav1,
    .header .navbar > ul > li.active .sub-nav2,
    .header .navbar > ul > li.active .sub-nav3 {
        display: block;
    }

    .header .navbar > ul > li.active > a:before {
        transform: rotate(-45deg) translateY(-50%);
        right: 3.13vw;
        margin-top: 0;
    }

    .header .navbar > ul > li.no-child > a:before {
        display: none;
    }

    .header .navbar > ul > li.no-child > a:after {
        display: none;
    }

    .header .navbar > ul > li > a {
        position: relative;
        padding: 2.6vw 3.13vw;
        font-size: 2.08vw;
        line-height: 3.13vw;
    }

    .header .navbar > ul > li > a::after {
        display: none;
    }

    .header .navbar > ul > li > a:before {
        position: absolute;
        content: "";
        display: block;
        width: 1.3vw;
        height: 1.3vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -1.82vw;
        left: auto;
        right: calc(3.13vw + 1.3vw);
    }

    .header .navbar .sub-nav1 {
        position: static;
        width: 100%;
        height: auto !important;
        display: none;
    }

    .header .navbar .sub-nav1 .head {
        display: none;
    }

    .header .navbar .sub-nav1 > .mxw-box {
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .header .navbar .sub-nav1 .other {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 7.81vw;
        font-size: 1.82vw;
        font-family: "Inter-SemiBold";
    }

    .header .navbar .sub-nav1 .other .icon {
        font-size: 2.6vw;
        margin-left: 1.56vw;
    }

    .header .navbar .sub-nav1 .nav-item1 {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item1 .index-text6 {
        width: 100%;
        font-size: 1.82vw;
        line-height: 2.73vw;
        padding-left: 1.04vw;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li {
        width: 100%;
        border-bottom: 1px solid #F6F6F6;
        background-color: #fff;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a {
        display: block;
        width: 100%;
        padding-top: 2.86vw;
        padding-bottom: 2.86vw;
        position: relative;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a.active:after {
        transform: rotate(-45deg) translateY(-50%);
        right: 0;
        margin-top: 0;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a:after {
        content: "";
        display: block;
        width: 1.3vw;
        height: 1.3vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -1.82vw;
        left: auto;
        right: 1.3vw;
        position: absolute;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a:hover {
        color: inherit;
    }

    .header .navbar .sub-nav1 .nav-item2 {
        background-color: #F6F6F6;
        margin-left: -3.13vw;
        margin-right: -3.13vw;
        padding: 4.17vw;
        display: none;
    }

    .header .navbar .sub-nav1 .nav-item2.active {
        display: block;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li {
        width: 100%;
        font-size: 1.82vw;
        margin-bottom: 5.73vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li:last-child {
        margin-bottom: 0;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li > .index-text9 {
        font-size: 1.82vw;
        display: block;
        margin-bottom: 2.6vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li .more-btn {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 1.69vw;
        line-height: 1.1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 2.08vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li .more-btn .iconfont {
        margin-left: 1.3vw;
        font-size: 1.3vw;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        overflow: auto;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 20.83vw;
        margin-right: 1.04vw;
        padding-top: 2.6vw;
        padding-bottom: 2.6vw;
        border-radius: 1.56vw;
        overflow: hidden;
        background-color: #fff;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        width: 100%;
        margin-top: 2.6vw;
        text-align: center;
        font-size: 1.56vw;
    }

    .header .navbar .sub-nav2 {
        position: static;
        width: 100%;
        height: auto !important;
        display: none;
    }

    .header .navbar .sub-nav2 .head {
        display: none;
    }

    .header .navbar .sub-nav2 > .mxw-box {
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .header .navbar .sub-nav2 .other {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 7.81vw;
        font-size: 1.82vw;
        font-family: "Inter-SemiBold";
    }

    .header .navbar .sub-nav2 .other .icon {
        font-size: 2.6vw;
        margin-left: 1.56vw;
    }

    .header .navbar .sub-nav2 .nav-item1 {
        width: 100%;
    }

    .header .navbar .sub-nav2 .nav-item1 .index-text6 {
        width: 100%;
        font-size: 1.82vw;
        line-height: 2.73vw;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul {
        width: 100%;
        padding-left: 1.04vw;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li {
        width: 100%;
        border-bottom: 1px solid #F6F6F6;
        background-color: #fff;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a {
        display: block;
        width: 100%;
        padding-top: 2.86vw;
        padding-bottom: 2.86vw;
        position: relative;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a.active:after {
        transform: rotate(-45deg) translateY(-50%);
        right: 0;
        margin-top: 0;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a:after {
        content: "";
        display: block;
        width: 1.3vw;
        height: 1.3vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -1.82vw;
        left: auto;
        right: 1.3vw;
        position: absolute;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a:hover {
        color: inherit;
    }

    .header .navbar .sub-nav2 .nav-item2 {
        background-color: #F6F6F6;
        margin-left: -4.17vw;
        margin-right: -3.13vw;
        padding: 2.6vw 4.17vw;
        display: none;
    }

    .header .navbar .sub-nav2 .nav-item2.active {
        display: block;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul {
        display: flex;
        flex-wrap: wrap;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li {
        width: 49%;
        font-size: 1.82vw;
        margin-bottom: 0;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li:nth-child(2n) {
        margin-left: 2%;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li:nth-child(2) ~ li {
        margin-top: 3.13vw;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li:last-child {
        margin-bottom: 0;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li > .index-text9 {
        font-size: 1.82vw;
        line-height: 2.73vw;
        display: block;
        margin-bottom: 0;
        margin-top: 1.56vw;
        order: 2;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li .more-btn {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 1.69vw;
        line-height: 1.1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 2.08vw;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li .more-btn .iconfont {
        margin-left: 1.3vw;
        font-size: 1.3vw;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper {
        width: 100%;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        overflow: auto;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 20.83vw;
        margin-right: 1.04vw;
        padding-top: 2.6vw;
        padding-bottom: 2.6vw;
        border-radius: 1.56vw;
        overflow: hidden;
        background-color: #fff;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        width: 100%;
        margin-top: 2.6vw;
        text-align: center;
        font-size: 1.56vw;
    }

    .header .navbar .sub-nav2 .nav-item4 .image {
        display: block;
        border-radius: 1.56vw;
        overflow: hidden;
    }

    .header .navbar .sub-nav2 .nav-item4 .image img {
        width: 100%;
    }

    .header .navbar .sub-nav3 {
        padding-left: 4.17vw;
        padding-right: 4.17vw;
        display: none;
    }

    .header .navbar .sub-nav3 .nav-item {
        width: 100%;
        display: block;
        padding-top: 2.86vw;
        padding-bottom: 2.86vw;
        color: #000;
        font-size: 1.82vw;
        font-family: "Inter-Regular";
        font-weight: 400;
        line-height: 2.73vw;
        border-bottom: 1px solid #F6F6F6;
    }

    .header .navbar .login-btn-group {
        padding-bottom: 8.333vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
        margin-top: 6.51vw;
    }

    .header .navbar .login-btn-group .btn {
        height: 4.43vw;
        min-width: 11.72vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 13.02vw;
        padding-left: 1.56vw;
        padding-right: 1.56vw;
        border: 1px solid transparent;
        color: #999;
        font-family: "Inter-Regular";
        font-size: 1.69vw;
        font-weight: 500;
        line-height: 1;
    }

    .header .navbar .login-btn-group .btn i {
        font-size: 2.08vw;
    }

    .header .navbar .login-btn-group .btn:first-child {
        color: #000;
        border-color: #000;
    }

    .header .tools {
        position: static;
    }

    .header .search {
        position: absolute;
        top: 50%;
        left: 8.33vw;
        margin-right: 0;
        font-size: 3.13vw;
        transform: translateY(-50%);
    }

    .header .user {
        display: none;
    }

    .header .shop {
        padding: 0.78vw 1.56vw;
        padding-left: 1.56vw;
        padding-right: 2.08vw;
        border-radius: 13.02vw;
    }

    .header .shop .icon {
        font-size: 2.6vw;
        margin-right: 0.52vw;
    }

    .header .shop .text {
        font-size: 1.69vw;
    }

    .header .search-form {
        width: 100%;
        padding-top: 1.302vw;
        padding-bottom: 1.302vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .header .search-form .form-body {
        width: 100%;
        padding-top: 1.302vw;
        padding-bottom: 1.302vw;
        padding-left: 2.604vw;
        padding-right: 2.604vw;
        border-radius: 13.021vw;
    }

    .header .search-form input {
        width: auto;
        min-width: 0;
        flex-grow: 1;
        height: 3.906vw;
        font-size: 1.823vw;
    }

    .header .search-form .icon {
        font-size: 2.604vw;
        margin-right: 1.953vw;
    }

    .header .search-form .close {
        font-size: 2.604vw;
        margin-left: 1.953vw;
    }
}

@media screen and (max-width: 500px) {
    .header {
        width: 100%;
    }

    .header > .mxw-box {
        height: 16.28vw;
        position: relative;
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .header .menu {
        font-size: 6.11vw;
        color: #000;
        line-height: 1;
        cursor: pointer;
        margin-right: 10.69vw;
    }

    .header .menu.active::before {
        content: "\e61b";
    }

    .header .menu:before {
        content: "\e618";
        font-family: iconfont;
        color: #000;
    }

    .header .logo {
        width: 16.28vw;
    }

    .header .navbar .close {
        font-size: 6.11vw;
        margin-right: 4.07vw;
        margin-top: 5.09vw;
        margin-bottom: 5.09vw;
    }

    .header .navbar a {
        color: inherit;
    }

    .header .navbar > ul {
        display: block;
    }

    .header .navbar > ul > li {
        margin-right: 0;
    }

    .header .navbar > ul > li.active .sub-nav1,
    .header .navbar > ul > li.active .sub-nav2,
    .header .navbar > ul > li.active .sub-nav3 {
        display: block;
    }

    .header .navbar > ul > li.active > a:before {
        transform: rotate(-45deg) translateY(-50%);
        right: 6.11vw;
        margin-top: 0;
    }

    .header .navbar > ul > li.no-child > a:after {
        display: none;
    }

    .header .navbar > ul > li > a {
        position: relative;
        padding: 5.09vw 6.11vw;
        font-size: 4.07vw;
        line-height: 6.11vw;
    }

    .header .navbar > ul > li > a:after {
        display: none;
    }

    .header .navbar > ul > li > a:before {
        width: 2.54vw;
        height: 2.54vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -3.56vw;
        left: auto;
        right: calc(6.11vw + 2.54vw);
    }

    .header .navbar .sub-nav1 {
        position: static;
        width: 100%;
        height: auto !important;
        display: none;
    }

    .header .navbar .sub-nav1 .head {
        display: none;
    }

    .header .navbar .sub-nav1 > .mxw-box {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .header .navbar .sub-nav1 .other {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 15.27vw;
        font-size: 3.56vw;
        font-family: "Inter-SemiBold";
    }

    .header .navbar .sub-nav1 .other .icon {
        font-size: 5.09vw;
        margin-left: 3.05vw;
    }

    .header .navbar .sub-nav1 .nav-item1 {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item1 .index-text6 {
        width: 100%;
        font-size: 3.56vw;
        line-height: 5.34vw;
        padding-left: 2.04vw;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li {
        width: 100%;
        border-bottom: 1px solid #F6F6F6;
        background-color: #fff;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a {
        display: block;
        width: 100%;
        padding-top: 5.6vw;
        padding-bottom: 5.6vw;
        position: relative;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a.active:after {
        transform: rotate(-45deg) translateY(-50%);
        right: 0;
        margin-top: 0;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a:after {
        content: "";
        display: block;
        width: 2.54vw;
        height: 2.54vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -3.56vw;
        left: auto;
        right: 2.54vw;
        position: absolute;
    }

    .header .navbar .sub-nav1 .nav-item1 > ul > li > a:hover {
        color: inherit;
    }

    .header .navbar .sub-nav1 .nav-item2 {
        width: calc(100% + 12.22vw);
        background-color: #F6F6F6;
        margin-left: -6.11vw;
        margin-right: -6.11vw;
        padding: 8.14vw;
        display: none;
    }

    .header .navbar .sub-nav1 .nav-item2.active {
        display: block;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li {
        width: 100%;
        font-size: 3.56vw;
        margin-bottom: 11.2vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li:last-child {
        margin-bottom: 0;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li > .index-text9 {
        font-size: 3.56vw;
        display: block;
        margin-bottom: 5.09vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li .more-btn {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 3.31vw;
        line-height: 1.1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 4.07vw;
    }

    .header .navbar .sub-nav1 .nav-item2 > ul > li .more-btn .iconfont {
        margin-left: 2.54vw;
        font-size: 2.54vw;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper {
        width: 100%;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        overflow: auto;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 40.71vw;
        margin-right: 2.04vw;
        padding-top: 5.09vw;
        padding-bottom: 5.09vw;
        border-radius: 1.56vw;
        overflow: hidden;
        background-color: #fff;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .navbar .sub-nav1 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        width: 100%;
        margin-top: 5.09vw;
        text-align: center;
        font-size: 3.05vw;
    }

    .header .navbar .sub-nav2 {
        position: static;
        width: 100%;
        height: auto !important;
        display: none;
    }

    .header .navbar .sub-nav2 .head {
        display: none;
    }

    .header .navbar .sub-nav2 > .mxw-box {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .header .navbar .sub-nav2 .other {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 15.27vw;
        font-size: 3.56vw;
        font-family: "Inter-SemiBold";
    }

    .header .navbar .sub-nav2 .other .icon {
        font-size: 5.09vw;
        margin-left: 3.05vw;
    }

    .header .navbar .sub-nav2 .nav-item1 {
        width: 100%;
    }

    .header .navbar .sub-nav2 .nav-item1 .index-text6 {
        width: 100%;
        font-size: 3.56vw;
        line-height: 5.34vw;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul {
        width: 100%;
        padding-left: 2.04vw;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li {
        width: 100%;
        border-bottom: 1px solid #F6F6F6;
        background-color: #fff;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a {
        display: block;
        width: 100%;
        padding-top: 5.6vw;
        padding-bottom: 5.6vw;
        position: relative;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a.active:after {
        transform: rotate(-45deg) translateY(-50%);
        right: 0;
        margin-top: 0;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a:after {
        content: "";
        display: block;
        width: 2.54vw;
        height: 2.54vw;
        background: none;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg) translateY(-50%);
        top: 50%;
        margin-top: -3.56vw;
        left: auto;
        right: 2.54vw;
        position: absolute;
    }

    .header .navbar .sub-nav2 .nav-item1 > ul > li > a:hover {
        color: inherit;
    }

    .header .navbar .sub-nav2 .nav-item2 {
        background-color: #F6F6F6;
        margin-left: -8.14vw;
        margin-right: -6.11vw;
        padding: 5.09vw 6.107vw;
        padding-top: 6.107vw;
        padding-bottom: 17.812vw;
        display: none;
    }

    .header .navbar .sub-nav2 .nav-item2.active {
        display: block;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul {
        display: flex;
        flex-wrap: wrap;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li {
        width: 100%;
        font-size: 3.56vw;
        margin: 0 !important;
        margin-bottom: 0;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li:nth-child(1) ~ li {
        margin-top: 7.634vw !important;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li:last-child {
        margin-bottom: 0;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li > .index-text9 {
        font-size: 3.56vw;
        line-height: 5.34vw;
        display: block;
        margin-bottom: 0;
        margin-top: 3.05vw;
        order: 2;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li .more-btn {
        color: #000;
        font-family: "Inter-Regular";
        font-size: 3.31vw;
        line-height: 1.1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 4.07vw;
    }

    .header .navbar .sub-nav2 .nav-item2 > ul > li .more-btn .iconfont {
        margin-left: 2.54vw;
        font-size: 2.54vw;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper {
        width: 100%;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-wrapper {
        overflow: auto;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide {
        width: 40.71vw;
        margin-right: 2.04vw;
        padding-top: 5.09vw;
        padding-bottom: 5.09vw;
        border-radius: 1.56vw;
        overflow: hidden;
        background-color: #fff;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide:last-child {
        margin-right: 0;
    }

    .header .navbar .sub-nav2 .nav-item3 .sub-nav1-swiper .swiper-slide .index-text9 {
        width: 100%;
        margin-top: 5.09vw;
        text-align: center;
        font-size: 3.05vw;
    }

    .header .navbar .sub-nav2 .nav-item4 .image {
        border-radius: 2.04vw;
        overflow: hidden;
    }

    .header .navbar .sub-nav2 .nav-item4 .image img {
        width: 100%;
    }

    .header .navbar .sub-nav3 {
        padding-left: 8.14vw;
        padding-right: 8.14vw;
        display: none;
    }

    .header .navbar .sub-nav3 .nav-item {
        width: 100%;
        display: block;
        padding-top: 5.6vw;
        padding-bottom: 5.6vw;
        color: #000;
        font-size: 3.56vw;
        font-family: "Inter-Regular";
        font-weight: 400;
        line-height: 5.34vw;
        border-bottom: 1px solid #F6F6F6;
    }

    .header .navbar .login-btn-group {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
        margin-top: 12.72vw;
        padding-bottom: 16.285vw;
    }

    .header .navbar .login-btn-group .btn {
        height: 8.65vw;
        min-width: 22.9vw;
        border-radius: 25.45vw;
        padding-left: 3.05vw;
        padding-right: 3.05vw;
        font-size: 3.31vw;
    }

    .header .navbar .login-btn-group .btn i {
        font-size: 4.07vw;
    }

    .header .tools {
        position: static;
    }

    .header .search {
        position: absolute;
        top: 50%;
        left: 16.28vw;
        margin-right: 0;
        font-size: 6.11vw;
        transform: translateY(-50%);
    }

    .header .user {
        display: none;
    }

    .header .shop {
        padding: 1.53vw 3.05vw;
        padding-left: 3.05vw;
        padding-right: 4.07vw;
        border-radius: 25.45vw;
    }

    .header .shop .icon {
        font-size: 5.09vw;
        margin-right: 1.02vw;
    }

    .header .shop .text {
        font-size: 3.31vw;
    }

    .header .search-form {
        padding-top: 2.545vw;
        padding-bottom: 2.545vw;
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .header .search-form .form-body {
        padding-top: 2.545vw;
        padding-bottom: 2.545vw;
        padding-left: 5.089vw;
        padding-right: 5.089vw;
        border-radius: 25.445vw;
    }

    .header .search-form input {
        height: 7.634vw;
        font-size: 3.562vw;
    }

    .header .search-form .icon {
        font-size: 5.089vw;
        margin-right: 3.817vw;
    }

    .header .search-form .close {
        font-size: 5.089vw;
        margin-left: 3.817vw;
    }
}

/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
.footer .bottom {
    background-color: #fff;
    padding-top: 2.22vw;
}

.footer .foot-navbar {
    padding-bottom: 6.25vw;
}

.footer .foot-navbar > .mxw-box {
    padding-left: 2.78vw;
    padding-right: 2.78vw;
}

.footer .foot-navbar > .mxw-box > ul {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding-left: 0;
}

.footer .foot-navbar > .mxw-box > ul > li {
    width: 16.67vw;
    margin-right: 1.39vw;
    list-style: none;
}
.footer .foot-navbar > .mxw-box > ul > li > ul {
    padding-left: 0;
}
.footer .foot-navbar > .mxw-box > ul > li:last-child {
    margin-right: 0;
}

.footer .foot-navbar > .mxw-box > ul > li > a {
    display: block;
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 0.97vw;
    line-height: 1.1;
    margin-bottom: 2.08vw;
}

.footer .foot-navbar > .mxw-box > ul > li > a .text {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.footer .foot-navbar > .mxw-box > ul > li > ul > li:last-child > a {
    margin-bottom: 0;
}

.footer .foot-navbar > .mxw-box > ul > li > ul > li > a {
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.83vw;
    line-height: 1.1;
    margin-bottom: 0.83vw;
    display: block;
}
.footer .foot-navbar > .mxw-box > ul > li > ul > li > a:hover {
    color: #0075ff;
}
.footer .other {
    border-top: 1px solid #F6F6F6;
}

.footer .other .mxw-box {
    padding-left: 2.78vw;
    padding-right: 2.78vw;
    position: relative;
    min-height: 4.444vw;
}

.footer .other .language {
    position: absolute;
    top: 50%;
    left: 2.78vw;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #999;
    font-family: Inter;
    font-size: 0.83vw;
    cursor: pointer;
}

.footer .other .language:hover ul {
    opacity: 1;
    visibility: visible;
}

.footer .other .language .icon {
    font-size: 0.97vw;
    margin-right: 0.69vw;
}

.footer .other .language ul {
    position: absolute;
    bottom: 200%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 0;
    width: 100px;
    border-radius: 4px;
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.footer .other .language ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: 40px;
    color: #333;
    transition: opacity 0.5s, visibility 0.5s, background-color 0.5s;
}

.footer .other .language ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.footer .other .itembox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .other .itembox .item {
    margin-right: 1.67vw;
    position: relative;
    padding-top: 1.67vw;
    padding-bottom: 1.67vw;
}

.footer .other .itembox .item:last-child {
    margin-right: 0;
}

.footer .other .itembox .item ul {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.footer .other .itembox .link {
    position: relative;
}

.footer .other .itembox .link:hover ul {
    visibility: visible;
    opacity: 1;
}

.footer .other .itembox .link ul {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 0;
    width: 170px;
    border-radius: 4px;
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.footer .other .itembox .link ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    color: #333;
    transition: opacity 0.5s, visibility 0.5s, background-color 0.5s;
    font-size: 12px;
}

.footer .other .itembox .link ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.footer .other .itembox .head {
    display: block;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.83vw;
    line-height: 1.1;
}

.footer .other .support {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.footer .other .support a {
    color: rgba(0, 0, 0, 0.05);
    font-size: 0.972vw;
}

@media screen and (min-width: 1440px) {
    .footer .bottom {
        padding-top: 32px;
    }

    .footer .foot-navbar {
        padding-bottom: 90px;
    }

    .footer .foot-navbar > .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer .foot-navbar > .mxw-box > ul > li {
        width: 240px;
        margin-right: 20px;
    }

    .footer .foot-navbar > .mxw-box > ul > li > a {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer .foot-navbar > .mxw-box > ul > li > ul > li > a {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer .other .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
        min-height: 64px;
    }

    .footer .other .language {
        left: 40px;
        font-size: 12px;
    }

    .footer .other .language .icon {
        font-size: 14px;
        margin-right: 10px;
    }

    .footer .other .language ul {
        padding: 10px 0;
        width: 100px;
        border-radius: 4px;
    }

    .footer .other .language ul > li > a {
        padding: 0 10px;
        height: 40px;
    }

    .footer .other .itembox .item {
        padding-top: 24px;
        padding-bottom: 24px;
        margin-right: 24px;
    }

    .footer .other .itembox .head {
        font-size: 12px;
    }

    .footer .other .support a {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .footer .bottom {
        padding-top: 0;
    }

    .footer .foot-navbar {
        padding-bottom: 0;
    }

    .footer .foot-navbar > .mxw-box {
        padding-left: 0;
        padding-right: 0;
    }

    .footer .foot-navbar > .mxw-box > ul {
        display: block;
    }

    .footer .foot-navbar > .mxw-box > ul > li {
        width: 100%;
        margin-right: 0;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .footer .foot-navbar > .mxw-box > ul > li.active > a {
        border-bottom-color: transparent;
    }

    .footer .foot-navbar > .mxw-box > ul > li.active > a:after {
        content: "\e632";
    }

    .footer .foot-navbar > .mxw-box > ul > li.active > ul {
        display: block;
    }

    .footer .foot-navbar > .mxw-box > ul > li > a {
        position: relative;
        width: 100%;
        display: block;
        padding-top: 3.13vw;
        padding-bottom: 3.13vw;
        font-size: 1.82vw;
        margin-bottom: 0;
        border-bottom: 1px solid #F6F6F6;
    }

    .footer .foot-navbar > .mxw-box > ul > li > a:after {
        font-family: iconfont;
        content: "\e617";
        color: #999;
        font-size: 1.56vw;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .footer .foot-navbar > .mxw-box > ul > li > ul {
        display: none;
    }

    .footer .foot-navbar > .mxw-box > ul > li > ul > li > a {
        padding-top: 1.56vw;
        padding-bottom: 1.56vw;
        font-size: 1.69vw;
        margin-bottom: 0;
    }

    .footer .other {
        border-top: 0;
    }

    .footer .other .mxw-box {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
        display: flex;
        flex-wrap: wrap;
    }

    .footer .other .language {
        width: 100%;
        transform: translateY(0);
        position: static;
        padding-top: 2.604vw;
        padding-bottom: 2.604vw;
        color: #999;
        font-family: "Inter-Regular";
        font-size: 1.823vw;
        line-height: 2.734vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #F6F6F6;
    }

    .footer .other .language .icon {
        font-size: 2.083vw;
    }

    .footer .other .language ul {
        bottom: 100%;
    }

    .footer .other .itembox {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer .other .itembox .item {
        margin-left: 1.563vw;
        margin-right: 1.563vw;
    }

    .footer .other .itembox .item .head {
        color: #999;
        font-family: "Inter-Regular";
        font-size: 1.823vw;
        line-height: 2.734vw;
    }

    .footer .other .support {
        display: none;
        top: auto;
        bottom: 0;
        transform: translateY(0);
        padding-top: 2.6vw;
        padding-bottom: 2.6vw;
        left: 100%;
    }

    .footer .other .support a {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    .footer .foot-navbar > .mxw-box > ul > li {
        padding-left: 4.07vw;
        padding-right: 4.07vw;
    }

    .footer .foot-navbar > .mxw-box > ul > li > a {
        padding-top: 6.11vw;
        padding-bottom: 6.11vw;
        font-size: 3.56vw;
    }

    .footer .foot-navbar > .mxw-box > ul > li > a:after {
        font-size: 3.05vw;
    }

    .footer .foot-navbar > .mxw-box > ul > li > ul {
        padding-left: 2.04vw;
    }

    .footer .foot-navbar > .mxw-box > ul > li > ul > li > a {
        padding-top: 3.05vw;
        padding-bottom: 3.05vw;
        font-size: 3.31vw;
    }

    .footer .other .language {
        padding-top: 5.089vw;
        padding-bottom: 5.089vw;
        font-size: 3.562vw;
        line-height: 5.344vw;
    }

    .footer .other .language .icon {
        font-size: 4.071vw;
    }

    .footer .other .itembox .item {
        margin-left: 3.053vw;
        margin-right: 3.053vw;
        padding-top: 5.598vw;
        padding-bottom: 5.598vw;
    }

    .footer .other .itembox .item .head {
        font-size: 3.562vw;
        line-height: 5.344vw;
    }
}

/* ==================== 底部样式 End ==================== */
/* ==================== 通用按钮 Start ==================== */
.common-btn {
    min-width: 8.33vw;
    padding: 1.04vw 1.67vw;
    border-radius: 6.94vw;
    overflow: hidden;
    color: #000;
    font-family: "Inter-Medium";
    font-size: 0.97vw;
    font-weight: 500;
    line-height: 1.1;
    border: 1px solid;
    text-align: center;
    display: table;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

.common-btn.blue {
    border-color: #0075FF;
    color: #0075FF;
}

.common-btn.blue:hover,
.common-btn.blue.active {
    background-color: #0075FF;
    color: #fff;
    font-family: "Inter-Medium";
}

.common-btn.blue:hover {
    background-color: #4193F4;
    border-color: #4193F4;
}

.common-btn.white {
    border-color: #fff;
    color: #fff;
}

.common-btn.white:hover,
.common-btn.white.active {
    background-color: #fff;
    color: #000;
    font-family: "Inter-Medium";
}

.common-btn.white:hover {
    background-color: #F4F4F4;
    border-color: #F4F4F4;
}

@media screen and (min-width: 1440px) {
    .common-btn {
        min-width: 120px;
        padding: 15px 24px;
        border-radius: 100px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .common-btn {
        min-width: 15.63vw;
        padding: 1.95vw 3.13vw;
        border-radius: 13.02vw;
        font-size: 1.82vw;
    }
}

@media screen and (max-width: 500px) {
    .common-btn {
        min-width: 30.53vw;
        padding: 3.82vw 6.11vw;
        border-radius: 25.45vw;
        font-size: 3.56vw;
    }
}

/* ==================== 通用按钮 End ==================== */
/* ==================== 通用按钮2 Start ==================== */
.common-btn2 {
    width: 9.931vw;
    height: 3.472vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0075FF;
    background-color: #fff;
    border-radius: 6.944vw;
    color: #0075FF;
    font-family: "Inter-Regular";
    line-height: 1;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    font-size: 0.972vw;
}

.common-btn2:before {
    content: "\e602";
    font-family: iconfont;
    font-size: 1.667vw;
    margin-right: 0.278vw;
}

.common-btn2:hover {
    color: #fff;
    border-color: rgba(0, 117, 255, 0.7);
    background-color: rgba(0, 117, 255, 0.7);
}

@media screen and (min-width: 1440px) {
    .common-btn2 {
        width: 143px;
        height: 50px;
        border-radius: 100px;
        font-size: 14px;
    }

    .common-btn2:before {
        font-size: 24px;
        margin-right: 4px;
    }
}

@media screen and (max-width: 768px) {
    .common-btn2 {
        width: 17.578vw;
        height: 6.51vw;
        border-radius: 13.021vw;
        font-size: 1.823vw;
    }

    .common-btn2:before {
        font-size: 3.125vw;
        margin-right: 0.521vw;
    }
}

@media screen and (max-width: 500px) {
    .common-btn2 {
        width: 36.387vw;
        height: 12.723vw;
        border-radius: 25.445vw;
        font-size: 3.562vw;
    }

    .common-btn2:before {
        font-size: 6.107vw;
        margin-right: 1.018vw;
    }
}

/* ==================== 通用按钮2 End ==================== */
/* ==================== 首页 - 通用标题 Start ==================== */
.index-text1,
.index-text2,
.index-text3,
.index-text4,
.index-text5,
.index-text6,
.index-text7,
.index-text8,
.index-text9,
.index-text10,
.index-text11 {
    color: #000;
    font-family: "Inter-SemiBold";
    transition: color 0.4s;
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
}

.index-text8,
.index-text9,
.index-text10 {
    font-family: "Inter-Medium";
}

.index-text11 {
    font-family: "Inter-Regular";
}

.index-text1 {
    font-size: 3.889vw;
    line-height: 4.444vw;
    padding-left: 20px;
    padding-right: 20px;
}

.index-text2 {
    font-size: 3.33vw;
    line-height: 3.89vw;
}

.index-text3 {
    font-size: 2.22vw;
    line-height: 2.78vw;
}

.index-text4 {
    font-size: 28px;
    line-height: 36px;
}

.index-text5 {
    font-size: 1.67vw;
    line-height: 2.22vw;
}

.index-text6 {
    font-size: 1.389vw;
    line-height: 2.083vw;
}

.index-text7 {
    font-size: 1.11vw;
    line-height: 1.39vw;
}

.index-text8 {
    font-size: 1.11vw;
    line-height: 1.67vw;
}

.index-text9 {
    font-size: 0.97vw;
    line-height: 1.46vw;
}

.index-text10 {
    font-size: 0.9vw;
    line-height: 1.39vw;
}

.index-text11 {
    font-size: 0.83vw;
    line-height: 1.25vw;
}

@media screen and (min-width: 1440px) {
    .index-text1 {
        font-size: 56px;
        line-height: 64px;
    }

    .index-text2 {
        font-size: 48px;
        line-height: 56px;
    }

    .index-text3 {
        font-size: 32px;
        line-height: 40px;
    }

    .index-text4 {
        font-size: 28px;
        line-height: 36px;
    }

    .index-text5 {
        font-size: 24px;
        line-height: 32px;
    }

    .index-text6 {
        font-size: 20px;
        line-height: 30px;
    }

    .index-text7 {
        font-size: 16px;
        line-height: 20px;
    }

    .index-text8 {
        font-size: 16px;
        line-height: 24px;
    }

    .index-text9 {
        font-size: 14px;
        line-height: 21px;
    }

    .index-text10 {
        font-size: 13px;
        line-height: 20px;
    }

    .index-text11 {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 768px) {
    .index-text1 {
        font-size: 5.208vw;
        line-height: 5.208vw;
    }

    .index-text2 {
        font-size: 3.13vw;
        line-height: 4.17vw;
    }

    .index-text3 {
        font-size: 3.13vw;
        line-height: 4.17vw;
    }

    .index-text5 {
        font-size: 2.08vw;
        line-height: 2.6vw;
    }

    .index-text6 {
        font-size: 1.823vw;
        line-height: 2.734vw;
    }

    .index-text7 {
        font-size: 2.08vw;
        line-height: 2.6vw;
    }

    .index-text8 {
        font-size: 1.56vw;
        line-height: 2.34vw;
    }

    .index-text9 {
        font-size: 1.69vw;
        line-height: 2.6vw;
    }

    .index-text10 {
        font-size: 1.69vw;
        line-height: 2.6vw;
    }

    .index-text11 {
        font-size: 1.56vw;
        line-height: 2.34vw;
    }
}

@media screen and (max-width: 500px) {
    .index-text1 {
        font-size: 7.125vw;
        line-height: 9.16vw;
    }

    .index-text2 {
        font-size: 7.12vw;
        line-height: 9.16vw;
    }

    .index-text3 {
        font-size: 5.09vw;
        line-height: 7.63vw;
    }

    .index-text5 {
        font-size: 4.07vw;
        line-height: 5.09vw;
    }

    .index-text6 {
        font-size: 3.562vw;
        line-height: 5.344vw;
    }

    .index-text7 {
        font-size: 4.07vw;
        line-height: 5.09vw;
    }

    .index-text8 {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }

    .index-text9 {
        font-size: 4.07vw;
        line-height: 1.2;
    }

    .index-text10 {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }

    .index-text11 {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }
}

/* ==================== 首页 - 通用标题 End ==================== */
/* ==================== 首页 - 分页器 Start ==================== */
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
}

.swiper-pagination.gray .swiper-pagination-bullet {
    background-color: #BFBFBF;
}

.swiper-pagination.gray .swiper-pagination-bullet:after {
    border-color: #BFBFBF;
}

.swiper-pagination.gray .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #BFBFBF;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
    margin: 0 10px;
    background-color: #fff;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    opacity: 1;
    visibility: visible;
}

/* ==================== 首页 - 分页器 End ==================== */
/* ==================== 通用 - cookiest弹窗 Start ==================== */
.cookies-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.69vw);
    -webkit-backdrop-filter: blur(0.69vw);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    display: none;
}

.cookies-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookies-popup.active .body {
    transform: translateY(0);
}

.cookies-popup .body {
    width: 55.56vw;
    background-color: #fff;
    padding: 2.78vw 3.33vw;
    border-radius: 16px 16px 0 0;
    position: relative;
    transition: transform 0.6s;
    transition-delay: 0.5s;
    transform: translateY(100%);
}

.cookies-popup .body.hide {
    transform: translateY(100%) !important;
}

.cookies-popup .body .close {
    width: 2.78vw;
    height: 2.78vw;
    position: absolute;
    top: 1.11vw;
    right: 1.11vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.39vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
}

.cookies-popup .body .title {
    margin-bottom: 1.11vw;
    font-size: 1.94vw;
    line-height: 2.5vw;
    color: #000;
    font-family: "Inter-SemiBold";
}

.cookies-popup .body .desc {
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.97vw;
    line-height: 1.46vw;
}

.cookies-popup .body .desc a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
}

.cookies-popup .body .btn-group {
    margin-top: 3.33vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cookies-popup .body .btn-group .common-btn {
    margin-right: 1.11vw;
}

.cookies-popup .body .btn-group .common-btn:last-child {
    margin-right: 0;
}

.cookies-popup .body2 {
    width: 55.56vw;
    background-color: #fff;
    padding: 2.78vw 3.33vw;
    border-radius: 16px 16px 0 0;
    position: relative;
    transition: transform 0.6s;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
}

.cookies-popup .body2.active {
    transform: translateX(-50%) translateY(0);
}

.cookies-popup .body2 .close {
    width: 2.78vw;
    height: 2.78vw;
    position: absolute;
    top: 1.11vw;
    right: 1.11vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.39vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
}

.cookies-popup .body2 .title {
    font-size: 28px;
    line-height: 36px;
    color: #000;
    font-family: "Inter-SemiBold";
}

.cookies-popup .body2 .desc {
    padding-bottom: 2.78vw;
    color: #999;
    margin-top: 1.18vw;
    font-family: "Inter-Regular";
    font-size: 14px;
    line-height: 21px;
}

.cookies-popup .body2 .itembox {
    padding-top: 2.08vw;
    border-top: 1px solid #D9D9D9;
}

.cookies-popup .body2 .item {
    padding-right: 2.22vw;
    position: relative;
    padding-bottom: 1.74vw;
}

.cookies-popup .body2 .item:last-child {
    margin-bottom: 0;
}

.cookies-popup .body2 .item .icon {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.67vw;
    height: 1.67vw;
    border-radius: 0.56vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
    background: #F6F6F6;
}

.cookies-popup .body2 .item .icon.active {
    background-color: #D9D9D9;
    color: #fff;
}

.cookies-popup .body2 .item .icon.active::before {
    display: block;
}

.cookies-popup .body2 .item .icon:before {
    display: none;
    font-size: 0.69vw;
}

.cookies-popup .body2 .item .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.11vw;
    line-height: 1.67vw;
}

.cookies-popup .body2 .item .text2 {
    margin-top: 0.56vw;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.83vw;
    line-height: 1.25vw;
}

.cookies-popup .body2 .confirm {
    cursor: pointer;
    padding: 8px 10px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (min-width: 1440px) {
    .cookies-popup {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .cookies-popup .body {
        width: 800px;
        padding: 40px 48px;
    }

    .cookies-popup .body .close {
        width: 40px;
        height: 40px;
        top: 16px;
        right: 16px;
        font-size: 20px;
    }

    .cookies-popup .body .title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 36px;
    }

    .cookies-popup .body .desc {
        font-size: 14px;
        line-height: 21px;
    }

    .cookies-popup .body .btn-group {
        margin-top: 48px;
    }

    .cookies-popup .body .btn-group .common-btn {
        margin-right: 16px;
    }

    .cookies-popup .body2 {
        width: 800px;
        padding: 40px 48px;
    }

    .cookies-popup .body2 .close {
        width: 40px;
        height: 40px;
        top: 16px;
        right: 16px;
        font-size: 20px;
    }

    .cookies-popup .body2 .title {
        font-size: 28px;
        line-height: 36px;
    }

    .cookies-popup .body2 .desc {
        padding-bottom: 40px;
        margin-top: 17px;
        font-size: 14px;
        line-height: 21px;
    }

    .cookies-popup .body2 .itembox {
        padding-top: 30px;
    }

    .cookies-popup .body2 .item {
        padding-right: 32px;
        padding-bottom: 25px;
    }

    .cookies-popup .body2 .item .icon {
        width: 24px;
        height: 24px;
        border-radius: 8px;
    }

    .cookies-popup .body2 .item .icon:before {
        font-size: 10px;
    }

    .cookies-popup .body2 .item .text1 {
        font-size: 16px;
        line-height: 24px;
    }

    .cookies-popup .body2 .item .text2 {
        margin-top: 8px;
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 768px) {
    .cookies-popup {
        backdrop-filter: blur(1.3vw);
        -webkit-backdrop-filter: blur(1.3vw);
    }

    .cookies-popup .body {
        width: 100%;
        padding: 5.21vw 5.21vw;
        padding-bottom: 10.03vw;
        border-radius: 1.56vw 1.56vw 0 0;
    }

    .cookies-popup .body .close {
        width: 5.21vw;
        height: 5.21vw;
        top: 2.08vw;
        right: 2.08vw;
        font-size: 2.6vw;
    }

    .cookies-popup .body .title {
        margin-bottom: 2.08vw;
        font-size: 3.65vw;
        line-height: 4.69vw;
    }

    .cookies-popup .body .desc {
        font-size: 1.82vw;
        line-height: 2.73vw;
    }

    .cookies-popup .body .btn-group {
        margin-top: 5.21vw;
    }

    .cookies-popup .body .btn-group .common-btn {
        margin-right: 2.08vw;
    }

    .cookies-popup .body2 {
        width: 100%;
        padding: 4.17vw 4.69vw;
        padding-bottom: 10.16vw;
        border-radius: 1.56vw 1.56vw 0 0;
        max-height: 80vh;
        overflow: auto;
    }

    .cookies-popup .body2 .close {
        width: 5.21vw;
        height: 5.21vw;
        top: 2.08vw;
        right: 2.08vw;
        font-size: 2.6vw;
    }

    .cookies-popup .body2 .title {
        font-size: 3.65vw;
        line-height: 4.69vw;
    }

    .cookies-popup .body2 .desc {
        padding-bottom: 4.17vw;
        margin-top: 2.6vw;
        font-size: 1.82vw;
        line-height: 2.73vw;
    }

    .cookies-popup .body2 .itembox {
        padding-top: 3.13vw;
    }

    .cookies-popup .body2 .item {
        padding-right: 6.25vw;
        padding-bottom: 3.26vw;
    }

    .cookies-popup .body2 .item .icon {
        width: 3.13vw;
        height: 3.13vw;
        border-radius: 1.04vw;
    }

    .cookies-popup .body2 .item .icon:before {
        font-size: 1.3vw;
    }

    .cookies-popup .body2 .item .text1 {
        font-size: 2.08vw;
        line-height: 3.13vw;
    }

    .cookies-popup .body2 .item .text2 {
        margin-top: 1.04vw;
        font-size: 1.56vw;
        line-height: 2.34vw;
    }
}

@media screen and (max-width: 500px) {
    .cookies-popup {
        backdrop-filter: blur(2.54vw);
        -webkit-backdrop-filter: blur(2.54vw);
    }

    .cookies-popup .body {
        width: 100%;
        padding: 10.18vw 6.11vw;
        padding-bottom: 21.37vw;
        border-radius: 2.04vw 2.04vw 0 0;
    }

    .cookies-popup .body .close {
        width: 10.18vw;
        height: 10.18vw;
        top: 4.07vw;
        right: 4.07vw;
        font-size: 5.09vw;
    }

    .cookies-popup .body .title {
        margin-bottom: 4.07vw;
        font-size: 7.12vw;
        line-height: 9.16vw;
    }

    .cookies-popup .body .desc {
        font-size: 3.56vw;
        line-height: 5.34vw;
    }

    .cookies-popup .body .btn-group {
        margin-top: 12.21vw;
    }

    .cookies-popup .body .btn-group .common-btn {
        margin-right: 4.07vw;
    }

    .cookies-popup .body2 {
        width: 100%;
        padding: 10.18vw 6.11vw;
        border-radius: 2.04vw 2.04vw 0 0;
    }

    .cookies-popup .body2 .close {
        width: 10.18vw;
        height: 10.18vw;
        top: 4.07vw;
        right: 4.07vw;
        font-size: 5.09vw;
    }

    .cookies-popup .body2 .title {
        font-size: 7.12vw;
        line-height: 9.16vw;
    }

    .cookies-popup .body2 .desc {
        padding-bottom: 8.14vw;
        margin-top: 3.31vw;
        font-size: 3.56vw;
        line-height: 5.34vw;
    }

    .cookies-popup .body2 .itembox {
        padding-top: 6.11vw;
    }

    .cookies-popup .body2 .item {
        padding-right: 0;
        padding-bottom: 6.11vw;
    }

    .cookies-popup .body2 .item .icon {
        width: 6.11vw;
        height: 6.11vw;
        border-radius: 2.04vw;
        top: 0;
        right: 0;
    }

    .cookies-popup .body2 .item .icon:before {
        font-size: 2.54vw;
    }

    .cookies-popup .body2 .item .text1 {
        font-size: 4.07vw;
        line-height: 6.11vw;
    }

    .cookies-popup .body2 .item .text2 {
        margin-top: 2.04vw;
        font-size: 3.05vw;
        line-height: 4.58vw;
    }
}

/* ==================== 通用 - cookiest弹窗 End ==================== */
/* ==================== 通用 - 悬浮联系方式 Start ==================== */
.float-group {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
}

.float-group .float-btn {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 100%;
    background-color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.float-group .float-btn:last-child {
    margin-bottom: 0;
}

.float-group .message {
    background-color: #0075FF;
    box-shadow: 0px 4px 24px rgba(0, 117, 255, 0.6);
    transition: background-color 0.4s;
}

.float-group .message.active {
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.float-group .message.active:hover {
    background-color: #fff;
}

.float-group .message.active .float-icon::before {
    content: "\e61b";
    color: #D9D9D9;
}

.float-group .message.active .itembox {
    opacity: 1;
    visibility: visible;
}

.float-group .message:hover {
    background-color: rgba(0, 117, 255, 0.7);
}

.float-group .message .float-icon {
    font-size: 24px;
    line-height: 1;
    color: #fff;
}

.float-group .goto-top {
    background-color: #F6F6F6;
    color: #999;
    font-size: 25px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.float-group .goto-top.show {
    opacity: 1;
    visibility: visible;
}

.float-group .itembox {
    width: 230px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 16px;
    position: absolute;
    bottom: calc(100% + 24px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.float-group .itembox .close {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
    transition-delay: 0;
}

.float-group .itembox .close.active {
    transition-delay: 0.2s;
    opacity: 1;
    visibility: visible;
}

.float-group .itembox .close .close-icon {
    font-size: 16px;
    color: #999;
    line-height: 1;
}

.float-group .itembox .close .close-text {
    color: #999;
    font-family: "Inter-Regular";
    font-size: 12px;
    margin-left: 5px;
    line-height: 1.2;
}

.float-group .item {
    padding: 5px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    transition: background-color 0.4s;
}

.float-group .item.active:hover {
    background-color: #fff;
}

.float-group .item.active .qr {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.float-group .item:hover {
    background-color: #f6f6f6;
}

.float-group .item .icon {
    font-size: 24px;
    min-height: 24px;
    color: #666666;
    margin-right: 10px;
    line-height: 1;
}

.float-group .item .text {
    font-size: 12px;
    color: #666;
    font-family: "Inter-Regular";
}

.float-group .item .qr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s, visibility 0.4s, opacity 0.4s;
    padding-top: 38px;
    padding-bottom: 20px;
    text-align: center;
    z-index: 2;
    background-color: #fff;
    border-radius: 16px;
    cursor: default;
}

.float-group .item .qr .image {
    height: 97px;
}

.float-group .item .qr .image img {
    height: 100%;
    max-width: inherit;
    width: auto;
}

.float-group .item .qr .qr-name {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    font-family: "Inter-Regular";
    cursor: text;
}

@media screen and (max-width: 768px) {
    .float-group {
        right: 12px;
        bottom: 32px;
    }

    .float-group .float-btn {
        width: 50px;
        height: 50px;
    }
}

/* ==================== 通用 - 悬浮联系方式 End ==================== */
/* ==================== 通用 - 登录弹窗 Start ==================== */
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: opacity 0.4s, visibility 0.4s;
    visibility: hidden;
    opacity: 0;
}

.login-popup.active {
    opacity: 1;
    visibility: visible;
}

.login-popup .body {
    max-width: 656px;
    border-radius: 16px;
    position: relative;
    background-color: #fff;
}

.login-popup .body .close {
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F6F6;
    font-size: 20px;
    color: #000;
    line-height: 1;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.login-popup .body .tabs {
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: flex-start;
}

.login-popup .body .tabs .tab-item {
    display: block;
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-right: 32px;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 13px;
    line-height: 18px;
    cursor: pointer;
}

.login-popup .body .tabs .tab-item.active {
    color: #000;
}

.login-popup .body .tabs .tab-item.active:after {
    display: block;
}

.login-popup .body .tabs .tab-item:after {
    content: "";
    display: none;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.login-popup .body .tabs .tab-item:last-child {
    margin-right: 0;
}

.login-popup .body .plane .head {
    padding-left: 24px;
    padding-right: 24px;
}

.login-popup .body .plane .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
}

.login-popup .body .plane .head .text2 {
    color: #666;
    font-family: "Inter-Regular";
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 24px;
}

.login-popup .body .plane form {
    width: 100%;
    display: block;
    padding-left: 24px;
    padding-right: 24px;
}

.login-popup .body .plane form .form-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #F6F6F6;
    padding-left: 4px;
    padding-right: 4px;
    height: 57px;
    min-width: 0;
    flex-grow: 1;
}

.login-popup .body .plane form .form-item .icon {
    font-size: 24px;
    width: 24px;
    color: #666;
    line-height: 1;
    margin-right: 6px;
    flex-shrink: 0;
}

.login-popup .body .plane form .form-item .icon:before {
    width: 100%;
}

.login-popup .body .plane form .form-item .layui-form-select {
    width: 100%;
}

.login-popup .body .plane form .form-item .layui-form-select .layui-edge {
    width: 10px;
    height: 10px;
    border: 0;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(-45deg);
    margin-top: 0;
    margin-right: 7px;
}

.login-popup .body .plane form .form-item .layui-form-selected .layui-edge {
    transform: rotate(135deg);
    margin-top: -6px;
}

.login-popup .body .plane form .form-item .layui-form-select dl {
    top: 100%;
    width: calc(100% + 30px);
    left: -30px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #F6F6F6;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: none;
    border: 0;
}

.login-popup .body .plane form .form-item .layui-form-select dl dd {
    font-size: 12px;
    font-family: "Inter-Regular";
    color: #999;
    background-color: #F6F6F6;
}

.login-popup .body .plane form .form-item .layui-form-select dl dd.layui-this {
    background-color: #C5C5C5;
    color: #000;
}

.login-popup .body .plane form .form-item .layui-unselect {
    border: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
}

.login-popup .body .plane form .form-item .layui-input {
    border: 0;
}

.login-popup .body .plane form .form-item input {
    height: 100%;
    color: #666;
    font-family: "Inter-Regular";
    font-size: 13px;
    line-height: 21px;
    min-width: 0;
    flex-grow: 1;
}

.login-popup .body .plane form .form-item input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.login-popup .body .plane form .form-item input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.login-popup .body .plane form .form-item input:-moz-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.login-popup .body .plane form .form-item input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.login-popup .body .plane form .form-item .code {
    width: 100px;
    height: 47px;
    flex-shrink: 0;
    cursor: pointer;
}

.login-popup .body .plane form .other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.login-popup .body .plane form .other-btn {
    color: #0075FF;
    font-family: "Inter-Regular";
    font-size: 12px;
    line-height: 18px;
}

.login-popup .body .plane form button {
    width: 120px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    flex-shrink: 0;
    border-radius: 100px;
    overflow: hidden;
    text-align: center;
    background-color: #0075FF;
    color: #fff;
    font-family: "Inter-Regular";
}

.login-popup .body .plane form .form-body {
    display: flex;
    flex-wrap: wrap;
}

.login-popup .body .plane form .form-body .form-item {
    width: 49%;
}

.login-popup .body .plane form .form-body .form-item:nth-child(2n) {
    margin-left: 2%;
}

.login-popup .body .plane .tip {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 50px;
    color: #999;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 12px;
    line-height: 18px;
}

.login-popup .body .plane-item {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 24px;
    display: none;
}

.login-popup .body .plane-item.active {
    display: block;
}

.login-popup .body .plane-item1 {
    width: 400px;
}

.login-popup .body .plane-item2 {
    width: 656px;
}

.login-popup .body .plane-item2 .tip {
    text-align: left;
}

.login-popup .body .plane-item2 button {
    display: block;
    margin-right: 0;
    margin-left: auto;
    margin-top: 24px;
}

@media screen and (max-width: 500px) {
    .login-popup .body {
        max-width: 91.86vw;
    }

    .login-popup .body .close {
        right: 2.04vw;
        top: 2.04vw;
        font-size: 5.09vw;
        width: 10.18vw;
        height: 10.18vw;
    }

    .login-popup .body .tabs {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .login-popup .body .tabs .tab-item {
        padding-top: 4.07vw;
        padding-bottom: 4.07vw;
        margin-right: 8.14vw;
        font-size: 3.31vw;
        line-height: 4.58vw;
    }

    .login-popup .body .plane .head {
        padding-left: 0;
        padding-right: 0;
    }

    .login-popup .body .plane .head .text1 {
        font-size: 5.09vw;
        line-height: 7.12vw;
        margin-bottom: 2.04vw;
    }

    .login-popup .body .plane .head .text2 {
        font-size: 3.31vw;
        line-height: 5.09vw;
        margin-bottom: 5.09vw;
    }

    .login-popup .body .plane form {
        padding-left: 0;
        padding-right: 0;
    }

    .login-popup .body .plane form .form-item {
        padding-left: 0;
        padding-right: 0;
        height: 14.5vw;
        width: 100%;
    }

    .login-popup .body .plane form .form-item .icon {
        font-size: 6.11vw;
        width: 6.11vw;
        margin-right: 1.53vw;
    }

    .login-popup .body .plane form .form-item .layui-form-select .layui-edge {
        width: 2.54vw;
        height: 2.54vw;
        margin-right: 1.78vw;
    }

    .login-popup .body .plane form .form-item .layui-form-selected .layui-edge {
        margin-top: -1.53vw;
    }

    .login-popup .body .plane form .form-item .layui-form-select dl {
        width: calc(100% + 7.63vw);
        left: -7.63vw;
    }

    .login-popup .body .plane form .form-item .layui-form-select dl dd {
        font-size: 3.05vw;
    }

    .login-popup .body .plane form .form-item .layui-unselect {
        width: 100%;
    }

    .login-popup .body .plane form .form-item input {
        font-size: 3.31vw;
        line-height: 5.34vw;
    }

    .login-popup .body .plane form .form-item .code {
        width: 25.45vw;
        height: 11.96vw;
    }

    .login-popup .body .plane form .other {
        margin-top: 8.65vw;
    }

    .login-popup .body .plane form .other-btn {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }

    .login-popup .body .plane form button {
        width: 30.53vw;
        height: 12.21vw;
        line-height: 12.21vw;
        border-radius: 25.45vw;
    }

    .login-popup .body .plane form .form-body {
        display: block;
    }

    .login-popup .body .plane form .form-body .form-item {
        width: 100%;
    }

    .login-popup .body .plane form .form-body .form-item:nth-child(2n) {
        margin-left: 0;
    }

    .login-popup .body .plane .tip {
        padding-left: 0;
        padding-right: 0;
        margin-top: 12.72vw;
        font-size: 3.05vw;
        line-height: 4.58vw;
        text-align: center;
    }

    .login-popup .body .plane-item {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
        padding-top: 10.18vw;
        padding-bottom: 6.11vw;
        max-height: 80vh;
        overflow: auto;
    }

    .login-popup .body .plane-item1 {
        width: 100%;
    }

    .login-popup .body .plane-item2 {
        width: 100%;
    }

    .login-popup .body .plane-item2 button {
        margin-top: 6.11vw;
    }
}

/* ==================== 通用 - 登录弹窗 End ==================== */
/* ==================== 首页 - swiper按钮 Start ==================== */
.swiper-btn {
    width: 4.44vw;
    height: 4.44vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    background-color: #F6F6F6;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5A5A5;
    z-index: 4;
    cursor: pointer;
    outline: none;
}

.swiper-btn::before {
    font-size: 1.67vw;
}

.swiper-btn-prev {
    left: 0;
}

.swiper-btn-next {
    right: 0;
}

@media screen and (min-width: 1440px) {
    .swiper-btn {
        width: 64px;
        height: 64px;
    }

    .swiper-btn::before {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .swiper-btn {
        width: 7.29vw;
        height: 7.29vw;
    }

    .swiper-btn::before {
        font-size: 3.13vw;
    }
}

@media screen and (max-width: 500px) {
    .swiper-btn {
        width: 14.25vw;
        height: 14.25vw;
    }

    .swiper-btn::before {
        font-size: 6.11vw;
    }
}

/* ==================== 首页 - swiper按钮 End ==================== */
/* ==================== ny2 通用 tabs Start ==================== */
.ny2-tabs {
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 6.944vw;
    background: #F6F6F6;
    padding: 0.278vw;
    margin-bottom: 4.444vw;
    max-width: 100%;
}

.ny2-tabs.style2 {
    padding-top: 0.833vw;
    padding-bottom: 0.833vw;
    background: none;
    border-radius: 0;
}

.ny2-tabs .tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.111vw 2.222vw;
    text-align: center;
    color: #000;
    border-radius: 6.944vw;
    flex-shrink: 0;
}

.ny2-tabs .tab-item.active {
    color: #fff;
    background-color: #0075FF;
    box-shadow: 0vw 0.278vw 0.556vw 0vw rgba(0, 117, 255, 0.25);
}

@media screen and (min-width: 1440px) {
    .ny2-tabs {
        border-radius: 100px;
        padding: 4px;
        margin-bottom: 64px;
    }

    .ny2-tabs.style2 {
        padding-top: 12px;
        padding-bottom: 12px;
        background: none;
        border-radius: 0;
    }

    .ny2-tabs .tab-item {
        padding: 16px 32px;
        border-radius: 100px;
    }

    .ny2-tabs .tab-item.active {
        box-shadow: 0px 4px 8px 0px rgba(0, 117, 255, 0.25);
    }
}

@media screen and (max-width: 768px) {
    .ny2-tabs {
        border-radius: 13.021vw;
        padding: 0.521vw;
        margin-bottom: 9.896vw;
        overflow: auto;
    }

    .ny2-tabs.style2 {
        padding-top: 1.563vw;
        padding-bottom: 1.563vw;
        background: none;
        border-radius: 0;
        padding-left: 4.688vw;
        padding-right: 4.688vw;
    }

    .ny2-tabs.style2 .tab-item {
        padding: 0;
        min-height: 6.25vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        font-size: 1.823vw;
        line-height: 1;
    }

    .ny2-tabs .tab-item {
        padding: 1.563vw 3.125vw;
        border-radius: 13.021vw;
        font-size: 2.083vw;
    }

    .ny2-tabs .tab-item.active {
        box-shadow: 0vw 0.521vw 1.042vw 0vw rgba(0, 117, 255, 0.25);
    }
}

@media screen and (max-width: 500px) {
    .ny2-tabs {
        border-radius: 25.445vw;
        padding: 1.018vw;
        margin-bottom: 17.812vw;
    }

    .ny2-tabs.style2 {
        padding-top: 3.053vw;
        padding-bottom: 3.053vw;
        background: none;
        border-radius: 0;
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny2-tabs.style2 .tab-item {
        padding: 0;
        min-height: 12.214vw;
        padding-left: 6.107vw;
        padding-right: 6.107vw;
        font-size: 3.562vw;
    }

    .ny2-tabs .tab-item {
        padding: 2.799vw 6.107vw;
        border-radius: 25.445vw;
        font-size: 4.071vw;
    }

    .ny2-tabs .tab-item.active {
        box-shadow: 0vw 1.018vw 2.036vw 0vw rgba(0, 117, 255, 0.25);
    }
}

/* ==================== ny2 通用 tabs End ==================== */
/* ==================== ny3 通用板块一 Start ==================== */
.ny3-section1 {
    position: relative;
}

.ny3-section1 .image img {
    width: 100%;
}

.ny3-section1 .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.ny3-section1 .info .text1 {
    color: #fff;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 4.444vw;
    line-height: 5.556vw;
}

.ny3-section1 .info .text2 {
    color: #fff;
    margin-top: 0.694vw;
    font-size: 1.111vw;
    line-height: 1.944vw;
    font-family: "Inter-Regular";
}

@media screen and (min-width: 1440px) {
    .ny3-section1 .info .text1 {
        font-size: 64px;
        line-height: 80px;
    }

    .ny3-section1 .info .text2 {
        margin-top: 10px;
        font-size: 16px;
        line-height: 28px;
    }
}

@media screen and (max-width: 768px) {
    .ny3-section1 .info .text1 {
        font-size: 5.208vw;
        line-height: 5.208vw;
    }

    .ny3-section1 .info .text2 {
        margin-top: 1.302vw;
        font-size: 1.823vw;
        line-height: 2.214vw;
    }
}

@media screen and (max-width: 500px) {
    .ny3-section1 .info {
        padding-left: 10.18vw;
        padding-right: 10.18vw;
    }

    .ny3-section1 .info .text1 {
        font-size: 7.125vw;
        line-height: 9.16vw;
    }

    .ny3-section1 .info .text2 {
        margin-top: 2.545vw;
        font-size: 3.562vw;
        line-height: 4.326vw;
    }
}

/* ==================== ny3 通用板块一 End ==================== */
/* ==================== 通用返回按钮 Start ==================== */
.common-btn-back {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #0075FF;
    font-family: "Inter-SemiBold";
    padding-top: 2.778vw;
    font-size: 0.972vw;
    line-height: 1.389vw;
}

.common-btn-back:hover {
    color: #0075FF;
}

.common-btn-back:before {
    content: "\e61f";
    display: block;
    font-size: 1.667vw;
    margin-right: 0.556vw;
    font-family: "iconfont";
}

@media screen and (min-width: 1440px) {
    .common-btn-back {
        padding-top: 40px;
        font-size: 14px;
        line-height: 20px;
    }

    .common-btn-back:before {
        font-size: 24px;
        margin-right: 8px;
    }
}

@media screen and (max-width: 768px) {
    .common-btn-back {
        padding-top: 3.125vw;
        font-size: 1.823vw;
        line-height: 2.604vw;
    }

    .common-btn-back:before {
        font-size: 3.125vw;
        margin-right: 1.042vw;
    }
}

@media screen and (max-width: 500px) {
    .common-btn-back {
        padding-top: 6.107vw;
        font-size: 3.562vw;
        line-height: 5.089vw;
    }

    .common-btn-back:before {
        font-size: 6.107vw;
        margin-right: 2.036vw;
    }
}

/* ==================== 通用返回按钮 End ==================== */
/* ==================== 倒计时 Start ==================== */
.time-run {
    background: #0075FF;
    width: 100%;
    z-index: 19;
    position: relative;
}

.time-run > .mxw-box {
    width: 100%;
    height: 3.333vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding-left: 2.778vw;
    padding-right: 2.778vw;
}

.time-run .title {
    color: #FFF;
    font-size: 0.972vw;
    font-family: "Inter-SemiBold";
    line-height: 1.458vw;
}

.time-run .data-box {
    display: flex;
    align-items: center;
    line-height: 1.667vw;
}

.time-run .data-box span {
    font-family: "Inter-Regular";
}

.time-run .data-box .date-time {
    color: #FFF;
    font-family: "Inter-SemiBold";
    margin-right: 0.417vw;
    font-size: 1.389vw;
    line-height: 1.667vw;
    /*width: 1.806vw;*/
}

.time-run .data-box .unit {
    margin-right: 0.833vw;
    color: #FFF;
    font-family: "Inter-Regular";
    font-size: 0.833vw;
}

.time-run .data-box .unit:last-child {
    margin-right: 0;
    margin-left: 0.417vw;
}

@media screen and (min-width: 1440px) {
    .time-run > .mxw-box {
        height: 48px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .time-run .title {
        font-size: 14px;
        line-height: 21px;
    }

    .time-run .data-box {
        line-height: 24px;
    }

    .time-run .data-box .date-time {
        margin-right: 6px;
        font-size: 20px;
        line-height: 24px;
        /*width: 26px;*/
    }

    .time-run .data-box .unit {
        margin-right: 12px;
        font-size: 12px;
    }

    .time-run .data-box .unit:last-child {
        margin-left: 6px;
    }
}

@media screen and (max-width: 768px) {
    .time-run > .mxw-box {
        height: 7.552vw;
        padding-left: 1.042vw;
        padding-right: 1.042vw;
    }

    .time-run .title {
        font-size: 1.823vw;
        line-height: 2.604vw;
    }

    .time-run .data-box {
        line-height: 3.125vw;
    }

    .time-run .data-box .date-time {
        margin-right: 0.521vw;
        font-size: 2.604vw;
        line-height: 3.125vw;
        /*width: 3.6vw;*/
        text-align: center;
    }

    .time-run .data-box .unit {
        margin-right: 0.521vw;
        font-size: 1.563vw;
    }

    .time-run .data-box .unit:last-child {
        margin-left: 0.781vw;
    }
}

@media screen and (max-width: 500px) {
    .time-run > .mxw-box {
        height: 12.214vw;
        padding-left: 2.036vw;
        padding-right: 2.036vw;
    }

    .time-run .title {
        font-size: 3.308vw;
        line-height: 5.344vw;
    }

    .time-run .data-box {
        line-height: 6.107vw;
    }

    .time-run .data-box .date-time {
        /*width: 6.616vw;*/
        margin-right: 0;
        font-size: 4.071vw;
        line-height: 6.107vw;
        text-align: center;
    }

    .time-run .data-box .date-s {
        width: 5.889vw;
    }

    .time-run .data-box .unit {
        margin-right: 0.509vw;
        margin-left: 0.509vw;
        font-size: 2.545vw;
    }

    .time-run .data-box .unit:last-child {
        margin-left: 0;
    }
}

/* ==================== 倒计时 End ==================== */
/* ==================== 消息轮播 Start ==================== */
.messages-run {
    background: #000;
    color: #fff;
    z-index: 19;
    position: relative;
}

.messages-run > .mxw-box {
    position: relative;
    padding-left: 2.78vw;
    padding-right: 2.78vw;
    padding-top: 0.556vw;
    padding-bottom: 0.556vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.messages-run .play-button {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1.67vw;
    cursor: pointer;
    left: 2.78vw;
}

.messages-run .play-button.active:after {
    content: "\e635";
}

.messages-run .play-button:after {
    content: "\e634";
    font-size: 1.67vw;
    color: #fff;
    font-family: iconfont;
    line-height: 1;
}

.messages-run .play-button .m-pause,
.messages-run .play-button .m-play {
    height: 1.67vw;
}

.messages-run .play-button .m-pause.active,
.messages-run .play-button .m-play.active {
    display: block;
}

.messages-run .close {
    position: absolute;
    top: 50%;
    right: 2.78vw;
    transform: translateY(-50%);
    margin: auto;
    font-size: 1.67vw;
    color: #fff;
    cursor: pointer;
}

.messages-run a {
    text-decoration: underline;
}

.messages-run .messages-swiper {
    width: 45vw;
    margin: auto;
    position: relative;
}

.messages-run .swiper {
    width: 41.67vw;
    margin: auto;
}

.messages-run .swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear;
}

.messages-run .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 41.67vw;
}

.messages-run .swiper .swiper-slide .text {
    line-height: 1.715;
    font-size: 0.9vw;
    font-family: "Inter-Regular";
}

.messages-run .swiper .swiper-slide .text a {
    color: #fff;
    margin-left: 0.69vw;
    font-family: "Inter-Regular";
}

.messages-run .swiper .messages-button {
    background: #fff;
    border-radius: 1.11vw;
    width: 5.42vw;
    height: 2.22vw;
    font-size: 0.9vw;
    text-decoration: none;
    color: #000;
    font-family: "Inter-Regular";
    display: inline-block;
    line-height: 2.22vw;
    text-align: center;
    margin-left: 1.67vw;
}

.messages-run .swiper-button:after {
    color: #fff;
    font-size: 0.97vw;
    font-weight: bold;
}

.messages-run .swiper-button.swiper-button-disabled {
    display: none;
}

.messages-run .swiper-button-prev,
.messages-run .swiper-button-next {
    background: none;
    width: 1.67vw;
    height: 1.67vw;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 0;
}

.messages-run .swiper-button-prev i,
.messages-run .swiper-button-next i {
    color: #fff;
}

.messages-run .swiper-button-prev {
    left: 0;
}

.messages-run .swiper-button-next {
    right: 0;
}

@media screen and (min-width: 1440px) {
    .messages-run > .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .messages-run .play-button {
        height: 24px;
        left: 40px;
    }

    .messages-run .play-button:after {
        font-size: 24px;
    }

    .messages-run .play-button .m-play {
        height: 24px;
    }

    .messages-run .close {
        right: 40px;
        font-size: 24px;
    }

    .messages-run .messages-swiper {
        width: 648px;
    }

    .messages-run .swiper {
        width: 600px;
    }

    .messages-run .swiper .swiper-slide {
        width: 600px;
    }

    .messages-run .swiper .swiper-slide .text {
        font-size: 13px;
    }

    .messages-run .swiper .swiper-slide .text a {
        margin-left: 10px;
    }

    .messages-run .swiper .messages-button {
        border-radius: 16px;
        width: 78px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        margin-left: 24px;
    }

    .messages-run .swiper-button:after {
        font-size: 14px;
    }

    .messages-run .swiper-button-next {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .messages-run > .mxw-box {
        padding-left: 4.17vw;
        padding-right: 4.17vw;
        padding-top: 1.042vw;
        padding-bottom: 1.042vw;
    }

    .messages-run .play-button {
        height: 3.13vw;
        left: 4.17vw;
    }

    .messages-run .play-button:after {
        font-size: 3.13vw;
    }

    .messages-run .play-button .m-play {
        height: 3.13vw;
    }

    .messages-run .close {
        right: 4.17vw;
        font-size: 3.13vw;
    }

    .messages-run .messages-swiper {
        width: 84.38vw;
    }

    .messages-run .swiper {
        width: 78.13vw;
    }

    .messages-run .swiper .swiper-slide {
        width: auto;
    }

    .messages-run .swiper .swiper-slide .text {
        font-size: 1.69vw;
    }

    .messages-run .swiper .swiper-slide .text a {
        margin-left: 1.3vw;
    }

    .messages-run .swiper .messages-button {
        border-radius: 2.08vw;
        width: 10.16vw;
        height: 4.17vw;
        font-size: 1.69vw;
        line-height: 4.17vw;
        margin-left: 3.13vw;
    }

    .messages-run .swiper-button {
        display: none;
    }

    .messages-run .swiper-button:after {
        font-size: 1.82vw;
    }

    .messages-run .swiper-button-next {
        width: 3.13vw;
        height: 3.13vw;
    }
}

@media screen and (max-width: 500px) {
    .messages-run > .mxw-box {
        padding-left: 4.07vw;
        padding-right: 4.07vw;
        height: auto;
    }

    .messages-run .play-button {
        height: 6.11vw;
        left: 4.07vw;
    }

    .messages-run .play-button:after {
        font-size: 6.11vw;
    }

    .messages-run .play-button .m-play {
        height: 6.11vw;
    }

    .messages-run .close {
        right: 4.07vw;
        font-size: 6.11vw;
    }

    .messages-run .messages-swiper {
        width: 73.79vw;
    }

    .messages-run .swiper {
        width: 73.79vw;
    }

    .messages-run .swiper .swiper-slide .text {
        text-align: left;
        padding-top: 3.05vw;
        padding-bottom: 3.05vw;
        font-size: 3.31vw;
        line-height: 5.09vw;
    }

    .messages-run .swiper .swiper-slide .text a {
        margin-left: 2.54vw;
    }

    .messages-run .swiper .messages-button {
        border-radius: 25.45vw;
        width: 17.05vw;
        height: 8.14vw;
        font-size: 3.31vw;
        line-height: 8.14vw;
        margin-left: 3.05vw;
        flex-shrink: 0;
    }

    .messages-run .swiper-button:after {
        font-size: 3.56vw;
    }

    .messages-run .swiper-button-next {
        width: 6.11vw;
        height: 6.11vw;
    }
}

/* ==================== 消息轮播 End ==================== */
/* ==================== 通用 inquiry 表单弹窗 Start ==================== */
.inquiry-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.994px);
    -webkit-backdrop-filter: blur(9.994px);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.inquiry-popup.active {
    opacity: 1;
    visibility: visible;
}

.inquiry-popup.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.inquiry-popup .inquiry-popup-swiper {
    margin-top: 0.694vw;
    margin-bottom: 1.389vw;
}

.inquiry-popup .inquiry-popup-swiper .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
}

.inquiry-popup .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: flex-start;
    width: 45.556vw;
    padding: 2.222vw 2.778vw;
    padding-bottom: 3.333vw;
    border-radius: 16px;
    background-color: #fff;
    overflow: auto;
    max-height: 96vh;
}

.inquiry-popup .body::-webkit-scrollbar {
    width: 4px;
    height: 6px;
    background: #ececec;
    border-radius: 100px;
}

.inquiry-popup .body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #333;
    cursor: pointer;
}

.inquiry-popup .body.active {
    overflow: visible;
}

.inquiry-popup .body.active .success-tip {
    transform: scale(1);
}

.inquiry-popup .body .close {
    width: 2.778vw;
    height: 2.778vw;
    position: absolute;
    top: 0.556vw;
    right: 0.556vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.389vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.inquiry-popup .body .head {
    margin-bottom: 0.694vw;
}

.inquiry-popup .body .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.778vw;
}

.inquiry-popup .body .head .text2 {
    margin-top: 0.556vw;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
}

.inquiry-popup .body form {
    width: 100%;
}

.inquiry-popup .body form .form-itembox {
    display: flex;
    flex-wrap: wrap;
}

.inquiry-popup .body form .form-item {
    width: 50%;
    border-bottom: 1px solid #F6F6F6;
}

.inquiry-popup .body form .form-item .layui-edge {
    width: 0.694vw;
    height: 0.694vw;
    border: 0;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    margin-right: 0.486vw;
    transform: rotate(135deg);
    margin-top: -0.417vw;
}

.inquiry-popup .body form .form-item .layui-input {
    height: 3.472vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.inquiry-popup .body form .form-item .layui-input::-webkit-input-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-input::-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-input:-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-input:-ms-input-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-form-selected .layui-edge {
    transform: rotate(-45deg);
    margin-top: 0;
}

.inquiry-popup .body form .form-item .layui-form-select .layui-input {
    height: 3.889vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.inquiry-popup .body form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-form-select .layui-input::-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-form-select .layui-input:-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
    color: #999;
}

.inquiry-popup .body form .form-item .layui-form-selected dl {
    top: 100%;
    padding-top: 0;
    padding-bottom: 0.556vw;
    border: 0;
    text-align: left;
    border-bottom-left-radius: 0.556vw;
    border-bottom-right-radius: 0.556vw;
    border: 1px solid #F6F6F6;
    background: #FFF;
    box-shadow: 0vw 0.417vw 0.833vw 0vw rgba(0, 0, 0, 0.1);
    max-height: 13.889vw;
}

.inquiry-popup .body form .form-item .layui-form-selected dl::-webkit-scrollbar {
    width: 4px;
    height: 2px;
    background: #ececec;
    border-radius: 100px;
}

.inquiry-popup .body form .form-item .layui-form-selected dl::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #333;
    cursor: pointer;
}

.inquiry-popup .body form .form-item .layui-form-select dl dd {
    padding: 0 0.833vw;
    height: 2.778vw;
    line-height: 2.778vw;
    color: #999;
    font-size: 0.833vw;
    font-family: "Inter-Regular";
    background-color: #fff;
}

.inquiry-popup .body form .form-item .layui-form-select dl dd.layui-this {
    background-color: #F6F6F6;
    color: #000;
}

.inquiry-popup .body form textarea {
    height: 8.333vw;
    width: 100%;
    padding: 1.111vw;
    border-radius: 16px;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
    resize: none;
    border: 0;
    outline: none;
    background-color: #F6F6F6;
    margin-top: 1.042vw;
}

.inquiry-popup .body form textarea::-webkit-input-placeholder {
    color: #999;
}

.inquiry-popup .body form textarea::-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form textarea:-moz-placeholder {
    color: #999;
}

.inquiry-popup .body form textarea:-ms-input-placeholder {
    color: #999;
}

.inquiry-popup .body form button {
    margin-top: 1.389vw;
}

.inquiry-popup .body .success-tip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    border-radius: 16px;
    transform: scale(0);
    transition: transform 0.4s;
    z-index: 2;
}

.inquiry-popup .body .success-tip .icon {
    font-size: 6.667vw;
    color: #0075FF;
}

.inquiry-popup .body .success-tip .info .text1 {
    color: #000;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.778vw;
    margin-top: 1.389vw;
}

.inquiry-popup .body .success-tip .info .text2 {
    color: #000;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
    margin-top: 0.556vw;
}

@media screen and (min-width: 1440px) {
    .inquiry-popup .inquiry-popup-swiper {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .inquiry-popup .body {
        width: 656px;
        padding: 32px 40px;
        padding-bottom: 48px;
    }

    .inquiry-popup .body .close {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
        font-size: 20px;
    }

    .inquiry-popup .body .head {
        margin-bottom: 10px;
    }

    .inquiry-popup .body .head .text1 {
        font-size: 32px;
        line-height: 40px;
    }

    .inquiry-popup .body .head .text2 {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }

    .inquiry-popup .body form .form-item .layui-edge {
        width: 10px;
        height: 10px;
        margin-right: 7px;
        margin-top: -6px;
    }

    .inquiry-popup .body form .form-item .layui-input {
        height: 50px;
        font-size: 13px;
    }

    .inquiry-popup .body form .form-item .layui-form-select .layui-input {
        height: 56px;
        font-size: 13px;
    }

    .inquiry-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
        max-height: 200px;
    }

    .inquiry-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 12px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }

    .inquiry-popup .body form textarea {
        height: 120px;
        padding: 16px;
        font-size: 13px;
        margin-top: 15px;
    }

    .inquiry-popup .body form button {
        margin-top: 20px;
    }

    .inquiry-popup .body .success-tip .icon {
        font-size: 96px;
    }

    .inquiry-popup .body .success-tip .info .text1 {
        font-size: 32px;
        line-height: 40px;
        margin-top: 20px;
    }

    .inquiry-popup .body .success-tip .info .text2 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 8px;
    }
}

@media screen and (max-width: 768px) {
    .inquiry-popup .inquiry-popup-swiper {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .inquiry-popup .inquiry-popup-swiper .swiper-slide {
        border-radius: 1.56vw;
    }

    .inquiry-popup .body {
        width: 85.417vw;
        padding: 5.208vw;
        padding-bottom: 6.25vw;
    }

    .inquiry-popup .body .close {
        width: 5.208vw;
        height: 5.208vw;
        top: 1.042vw;
        right: 1.042vw;
        font-size: 2.604vw;
    }

    .inquiry-popup .body .head {
        margin-bottom: 3.125vw;
    }

    .inquiry-popup .body .head .text1 {
        font-size: 3.125vw;
        line-height: 3.646vw;
    }

    .inquiry-popup .body .head .text2 {
        margin-top: 1.042vw;
        font-size: 1.693vw;
        line-height: 2.604vw;
    }

    .inquiry-popup .body form .form-item .layui-edge {
        width: 1.302vw;
        height: 1.302vw;
        margin-right: 0.911vw;
        margin-top: -0.781vw;
    }

    .inquiry-popup .body form .form-item .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .inquiry-popup .body form .form-item .layui-form-select .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .inquiry-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 1.042vw;
        border-bottom-left-radius: 1.042vw;
        border-bottom-right-radius: 1.042vw;
        box-shadow: 0vw 0.781vw 1.563vw 0vw rgba(0, 0, 0, 0.1);
        max-height: 26.042vw;
    }

    .inquiry-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 1.563vw;
        height: 5.208vw;
        line-height: 5.208vw;
        font-size: 1.563vw;
    }

    .inquiry-popup .body form textarea {
        height: 20.833vw;
        padding: 2.083vw;
        font-size: 1.693vw;
        margin-top: 4.167vw;
        border-radius: 1.56vw;
    }

    .inquiry-popup .body form button {
        margin-top: 5.208vw;
    }

    .inquiry-popup .body .success-tip .icon {
        font-size: 12.5vw;
    }

    .inquiry-popup .body .success-tip .info .text1 {
        font-size: 3.125vw;
        line-height: 3.646vw;
        margin-top: 3.125vw;
    }

    .inquiry-popup .body .success-tip .info .text2 {
        font-size: 1.693vw;
        line-height: 2.604vw;
        margin-top: 1.563vw;
    }
}

@media screen and (max-width: 500px) {
    .inquiry-popup {
        align-items: flex-end;
    }

    .inquiry-popup .inquiry-popup-swiper {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .inquiry-popup .inquiry-popup-swiper .swiper-slide {
        border-radius: 2.04vw;
    }

    .inquiry-popup .body {
        width: 100%;
        padding: 10.178vw 8.142vw;
        max-height: 90%;
        height: 100%;
        overflow: auto;
        align-items: flex-start;
    }

    .inquiry-popup .body .close {
        width: 10.178vw;
        height: 10.178vw;
        top: 2.036vw;
        right: 2.036vw;
        font-size: 5.089vw;
    }

    .inquiry-popup .body .head {
        margin-bottom: 7.634vw;
    }

    .inquiry-popup .body .head .text1 {
        font-size: 6.107vw;
        line-height: 7.125vw;
    }

    .inquiry-popup .body .head .text2 {
        margin-top: 1.018vw;
        font-size: 3.308vw;
        line-height: 5.089vw;
    }

    .inquiry-popup .body form .form-item {
        width: 100%;
    }

    .inquiry-popup .body form .form-item .layui-edge {
        width: 2.545vw;
        height: 2.545vw;
        margin-right: 1.781vw;
        margin-top: -1.527vw;
    }

    .inquiry-popup .body form .form-item .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .inquiry-popup .body form .form-item .layui-form-select .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .inquiry-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 2.036vw;
        border-bottom-left-radius: 2.036vw;
        border-bottom-right-radius: 2.036vw;
        box-shadow: 0vw 1.527vw 3.053vw 0vw rgba(0, 0, 0, 0.1);
        max-height: 50.891vw;
    }

    .inquiry-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 3.053vw;
        height: 10.178vw;
        line-height: 10.178vw;
        font-size: 3.053vw;
    }

    .inquiry-popup .body form textarea {
        height: 48.346vw;
        padding: 4.071vw;
        font-size: 3.308vw;
        margin-top: 8.142vw;
    }

    .inquiry-popup .body form button {
        margin-top: 10.178vw;
    }

    .inquiry-popup .body .success-tip .icon {
        font-size: 24.427vw;
    }

    .inquiry-popup .body .success-tip .info .text1 {
        font-size: 6.107vw;
        line-height: 7.125vw;
        margin-top: 6.107vw;
    }

    .inquiry-popup .body .success-tip .info .text2 {
        font-size: 3.308vw;
        line-height: 5.089vw;
        margin-top: 2.036vw;
    }
}

/* ==================== 通用 inquiry 表单弹窗 End ==================== */
/* ==================== 首页 - 板块八弹窗 Start ==================== */
.index-section8-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.694vw);
    -webkit-backdrop-filter: blur(0.694vw);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.index-section8-popup.style2 .body .info .desc {
    height: auto;
}

.index-section8-popup.active {
    opacity: 1;
    visibility: visible;
}

.index-section8-popup.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.index-section8-popup .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: center;
    width: 77.778vw;
}

.index-section8-popup .body.hide {
    transform: translateY(100%) !important;
}

.index-section8-popup .body .index-section8-swiper > .swiper-wrapper > .swiper-slide {
    overflow: hidden;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.index-section8-popup .body .close {
    width: 2.222vw;
    height: 2.222vw;
    position: absolute;
    top: 0.556vw;
    right: 0.556vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.111vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.index-section8-popup .body .swiper {
    width: 100%;
    position: relative;
}

.index-section8-popup .body .swiper .swiper-btn {
    transition: opacity 0.6s, visibility 0.6s;
}

.index-section8-popup .body .swiper .swiper-btn.swiper-button-disabled {
    visibility: hidden;
    opacity: 0;
}

.index-section8-popup .body .swiper .swiper-btn-prev {
    left: -6.597vw;
}

.index-section8-popup .body .swiper .swiper-btn-next {
    right: -6.597vw;
}

.index-section8-popup .body .image {
    width: 44.444vw;
    flex-shrink: 0;
    background-color: #000;
    position: relative;
}

.index-section8-popup .body .image img {
    width: 100%;
}

.index-section8-popup .body .info {
    position: relative;
    background-color: #fff;
    padding: 3.333vw 1.667vw;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 0;
    flex-grow: 1;
}

.index-section8-popup .body .info .top {
    width: 100%;
}

.index-section8-popup .body .info .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.111vw;
    flex-shrink: 0;
}

.index-section8-popup .body .info .name {
    min-width: 0;
    flex-grow: 1;
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.111vw;
    line-height: 1.667vw;
}

.index-section8-popup .body .info .like {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #999;
    font-family: "Inter-SemiBold";
    font-size: 0.972vw;
    line-height: 1.25vw;
}

.index-section8-popup .body .info .like .icon {
    font-size: 1.667vw;
    margin-right: 0.486vw;
}

.index-section8-popup .body .info .desc {
    width: 100%;
    color: #000;
    font-size: 0.903vw;
    line-height: 1.25vw;
    font-family: "Inter-Medium";
    overflow: auto;
    height: 10.417vw;
}

.index-section8-popup .body .info .desc::-webkit-scrollbar {
    width: 0.278vw;
    height: 0.139vw;
    background: #ececec;
    border-radius: 6.944vw;
}

.index-section8-popup .body .info .desc::-webkit-scrollbar-thumb {
    border-radius: 6.944vw;
    background: #333;
    cursor: pointer;
}

.index-section8-popup .body .product {
    overflow: hidden;
    width: calc(100% + 3.333vw);
    padding-top: 1.111vw;
    border-top: 1px solid #F6F6F6;
    flex-shrink: 0;
    margin-left: -1.667vw;
    margin-right: -1.667vw;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
}

.index-section8-popup .body .product .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.111vw;
    line-height: 1.667vw;
    margin-bottom: 1.667vw;
}

.index-section8-popup .body .itembox {
    width: 100%;
    overflow: visible;
}

.index-section8-popup .body .item {
    width: 49%;
    border-radius: 16px;
    background-color: #F6F6F6;
    padding: 2.778vw 1.111vw 1.389vw;
    flex-shrink: 0;
}

.index-section8-popup .body .item:nth-child(1) {
    margin-left: 0;
}

.index-section8-popup .body .item .image {
    width: 100%;
}

.index-section8-popup .body .item .text {
    margin-top: 1.389vw;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 0.972vw;
    line-height: 1.458vw;
    text-align: center;
}

@media screen and (min-width: 1440px) {
    .index-section8-popup {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .index-section8-popup .body {
        width: 1120px;
    }

    .index-section8-popup .body .close {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
        font-size: 16px;
    }

    .index-section8-popup .body .swiper .swiper-btn-prev {
        left: -95px;
    }

    .index-section8-popup .body .swiper .swiper-btn-next {
        right: -95px;
    }

    .index-section8-popup .body .image {
        width: 640px;
    }

    .index-section8-popup .body .info {
        padding: 48px 24px;
    }

    .index-section8-popup .body .info .head {
        margin-bottom: 16px;
    }

    .index-section8-popup .body .info .name {
        font-size: 16px;
        line-height: 24px;
    }

    .index-section8-popup .body .info .like {
        font-size: 14px;
        line-height: 18px;
    }

    .index-section8-popup .body .info .like .icon {
        font-size: 24px;
        margin-right: 7px;
    }

    .index-section8-popup .body .info .desc {
        font-size: 13px;
        line-height: 18px;
        height: 150px;
    }

    .index-section8-popup .body .info .desc::-webkit-scrollbar {
        width: 4px;
        height: 2px;
        border-radius: 100px;
    }

    .index-section8-popup .body .info .desc::-webkit-scrollbar-thumb {
        border-radius: 100px;
    }

    .index-section8-popup .body .product {
        width: calc(100% + 48px);
        padding-top: 16px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .index-section8-popup .body .product .text1 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .index-section8-popup .body .item {
        padding: 40px 16px 20px;
    }

    .index-section8-popup .body .item .text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 21px;
    }
}

@media screen and (max-width: 768px) {
    .index-section8-popup {
        backdrop-filter: blur(1.302vw);
        -webkit-backdrop-filter: blur(1.302vw);
    }

    .index-section8-popup .body {
        width: 96.354vw;
    }

    .index-section8-popup .body .index-section8-swiper > .swiper-wrapper > .swiper-slide {
        display: block;
    }

    .index-section8-popup .body .close {
        width: 4.167vw;
        height: 4.167vw;
        top: 1.042vw;
        right: 1.042vw;
        font-size: 2.083vw;
    }

    .index-section8-popup .body .swiper .swiper-btn-prev {
        left: 1.302vw;
    }

    .index-section8-popup .body .swiper .swiper-btn-next {
        right: 1.302vw;
    }

    .index-section8-popup .body .image {
        background-color: #000;
        width: 54.688vw;
        height: 72.917vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .index-section8-popup .body .info {
        padding: 5.208vw 2.083vw;
        padding-bottom: 10.417vw;
    }

    .index-section8-popup .body .info .head {
        margin-bottom: 2.083vw;
    }

    .index-section8-popup .body .info .name {
        font-size: 1.823vw;
        line-height: 3.125vw;
    }

    .index-section8-popup .body .info .like {
        font-size: 1.563vw;
        line-height: 2.344vw;
        font-family: "Inter-Regular";
    }

    .index-section8-popup .body .info .like .icon {
        font-size: 3.125vw;
        margin-right: 0.911vw;
    }

    .index-section8-popup .body .info .desc {
        font-size: 1.563vw;
        line-height: 2.344vw;
        height: 16.927vw;
    }

    .index-section8-popup .body .info .desc::-webkit-scrollbar {
        width: 0.521vw;
        height: 0.26vw;
        border-radius: 13.021vw;
    }

    .index-section8-popup .body .info .desc::-webkit-scrollbar-thumb {
        border-radius: 13.021vw;
    }

    .index-section8-popup .body .product {
        width: calc(100% + 4.167vw);
        padding-top: 2.083vw;
        margin-left: -2.083vw;
        margin-right: -2.083vw;
        padding-left: 2.083vw;
        padding-right: 2.083vw;
    }

    .index-section8-popup .body .product .text1 {
        font-size: 2.083vw;
        line-height: 2.083vw;
        margin-bottom: 2.083vw;
    }

    .index-section8-popup .body .itembox {
        width: calc(100% + 4.167vw);
        margin-right: -2.083vw;
        margin-left: -2.083vw;
        padding-left: 2.083vw;
        padding-right: 2.083vw;
    }

    .index-section8-popup .body .item {
        padding: 4.688vw 2.344vw 3.125vw;
    }

    .index-section8-popup .body .item .text {
        margin-top: 2.604vw;
        font-size: 1.563vw;
        line-height: 2.734vw;
    }
}

@media screen and (max-width: 500px) {
    .index-section8-popup {
        backdrop-filter: blur(2.545vw);
        -webkit-backdrop-filter: blur(2.545vw);
    }

    .index-section8-popup .body {
        width: 100%;
        height: calc(100% - 16.285vw);
        margin-top: 16.285vw;
        overflow: auto;
    }

    .index-section8-popup .body .index-section8-swiper > .swiper-wrapper > .swiper-slide {
        overflow: auto;
        height: calc(100vh - 16.285vw);
    }

    .index-section8-popup .body .close {
        width: 8.142vw;
        height: 8.142vw;
        top: 2.036vw;
        right: 2.036vw;
        font-size: 4.071vw;
    }

    .index-section8-popup .body .swiper {
        height: 100%;
        overflow: auto;
    }

    .index-section8-popup .body .swiper .swiper-btn {
        position: absolute;
        top: 50%;
    }

    .index-section8-popup .body .swiper .swiper-btn-prev {
        left: 2.545vw;
    }

    .index-section8-popup .body .swiper .swiper-btn-next {
        right: 2.545vw;
    }

    .index-section8-popup .body .swiper-slide {
        display: block;
    }

    .index-section8-popup .body .swiper-slide.height .image {
        padding-bottom: 240px;
    }

    .index-section8-popup .body .image {
        width: 100%;
        min-height: initial;
        height: 0;
        padding-bottom: 100%;
        position: sticky;
        top: 0;
        z-index: 2;
        transition: all 0.5s;
    }

    .index-section8-popup .body .image img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        height: 100%;
        object-fit: contain;
    }

    .index-section8-popup .body .info {
        width: 100%;
        padding: 10.178vw 4.071vw;
    }

    .index-section8-popup .body .info .head {
        margin-bottom: 4.071vw;
    }

    .index-section8-popup .body .info .name {
        font-size: 3.562vw;
        line-height: 6.107vw;
    }

    .index-section8-popup .body .info .like {
        font-size: 3.053vw;
        line-height: 4.58vw;
    }

    .index-section8-popup .body .info .like .icon {
        font-size: 6.107vw;
        margin-right: 1.781vw;
    }

    .index-section8-popup .body .info .desc {
        font-size: 3.053vw;
        line-height: 4.58vw;
        height: auto;
        overflow: visible;
    }

    .index-section8-popup .body .product {
        width: calc(100% + 8.142vw);
        padding-top: 4.071vw;
        margin-left: -4.071vw;
        margin-right: -4.071vw;
        padding-left: 4.071vw;
        padding-right: 4.071vw;
        margin-top: 8.142vw;
    }

    .index-section8-popup .body .product .text1 {
        font-size: 4.071vw;
        line-height: 4.071vw;
        margin-bottom: 4.071vw;
    }

    .index-section8-popup .body .itembox {
        width: calc(94% + 8.142vw);
        margin-right: -4.071vw;
        margin-left: -4.071vw;
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .index-section8-popup .body .item {
        width: 40.712vw;
        padding: 9.16vw 4.58vw 6.107vw;
    }

    .index-section8-popup .body .item .text {
        margin-top: 5.089vw;
        font-size: 3.053vw;
        line-height: 5.344vw;
        font-family: "Inter-SemiBold";
    }
}

/* ==================== 首页 - 板块八弹窗 End ==================== */
/* ==================== 内页23 - 头部 Start ==================== */
.ny23-head {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 18;
    width: 100%;
    text-align: center;
    overflow: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0.69vw);
    -webkit-backdrop-filter: blur(0.69vw);
    margin-bottom: -49px;
}

.ny23-head .tabs {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.ny23-head .tabs .tab-item {
    display: block;
    color: #fff;
    font-size: 0.9vw;
    font-family: "Inter-Regular";
    line-height: 1.2;
    padding-left: 1.39vw;
    padding-right: 1.39vw;
    height: 3.33vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    flex-shrink: 0;
}

.ny23-head .tabs .tab-item.active {
    opacity: 1;
}

@media screen and (min-width: 1440px) {
    .ny23-head .tabs .tab-item {
        font-size: 13px;
        padding-left: 20px;
        padding-right: 20px;
        height: 48px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-head {
        top: 8.073vw;
    }

    .ny23-head .tabs .tab-item {
        font-size: 1.69vw;
        padding-left: 2.6vw;
        padding-right: 2.6vw;
        height: 6.25vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-head {
        top: 15.776vw;
    }

    .ny23-head .tabs .tab-item {
        font-size: 3.31vw;
        padding-left: 5.09vw;
        padding-right: 5.09vw;
        height: 12.21vw;
    }
}

/* ==================== 内页23 - 头部 End ==================== */
/* ==================== 邮件订阅弹窗 Start ==================== */
.email-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.694vw);
    -webkit-backdrop-filter: blur(0.694vw);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.email-popup.active {
    opacity: 1;
    visibility: visible;
}

.email-popup.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.email-popup .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: flex-start;
    width: 41.667vw;
    padding: 2.778vw 5.556vw;
    padding-bottom: 6.25vw;
    border-radius: 16px;
    background-color: #fff;
    overflow: auto;
    max-height: 96vh;
}

.email-popup .body::-webkit-scrollbar {
    width: 0.278vw;
    height: 0.417vw;
    background: #ececec;
    border-radius: 6.944vw;
}

.email-popup .body::-webkit-scrollbar-thumb {
    border-radius: 6.944vw;
    background: #333;
    cursor: pointer;
}

.email-popup .body.active {
    overflow: visible;
}

.email-popup .body.active .success-tip {
    transform: scale(1);
}

.email-popup .body .close {
    width: 2.778vw;
    height: 2.778vw;
    position: absolute;
    top: 0.833vw;
    right: 0.833vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.389vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.email-popup .body .head {
    margin-bottom: 2.778vw;
}

.email-popup .body .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    text-align: center;
    font-size: 2.222vw;
    line-height: 2.778vw;
}

.email-popup .body .head .text2 {
    margin-top: 1.111vw;
    font-family: "Inter-Regular";
    color: #999;
    text-align: center;
    font-size: 0.972vw;
    line-height: 1.458vw;
}

.email-popup .body form {
    width: 100%;
}

.email-popup .body form .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-popup .body form input {
    width: 19.167vw;
    height: 3.333vw;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
    background-color: #F6F6F6;
    border-radius: 6.944vw;
    margin-right: 0.833vw;
    font-family: "Inter-Regular";
    font-size: 0.972vw;
    border: 0;
    color: #000;
}

.email-popup .body form input::-webkit-input-placeholder {
    color: #999;
}

.email-popup .body form input::-moz-placeholder {
    color: #999;
}

.email-popup .body form input:-moz-placeholder {
    color: #999;
}

.email-popup .body form input:-ms-input-placeholder {
    color: #999;
}

.email-popup .body form .image {
    width: 27.778vw;
    margin-top: 4.167vw;
}

.email-popup .body .success-tip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    border-radius: 16px;
    transform: scale(0);
    transition: transform 0.4s;
    z-index: 2;
}

.email-popup .body .success-tip .icon {
    font-size: 6.667vw;
    color: #0075FF;
}

.email-popup .body .success-tip .info .text1 {
    color: #000;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.778vw;
    margin-top: 1.389vw;
}

.email-popup .body .success-tip .info .text2 {
    color: #000;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
    margin-top: 0.556vw;
}

@media screen and (min-width: 1440px) {
    .email-popup {
        backdrop-filter: blur(9.994px);
        -webkit-backdrop-filter: blur(9.994px);
    }

    .email-popup .body {
        width: 600px;
        padding: 40px 80px;
        padding-bottom: 90px;
    }

    .email-popup .body::-webkit-scrollbar {
        width: 4px;
        height: 6px;
        border-radius: 100px;
    }

    .email-popup .body::-webkit-scrollbar-thumb {
        border-radius: 100px;
    }

    .email-popup .body .close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
        font-size: 20px;
    }

    .email-popup .body .head {
        margin-bottom: 40px;
    }

    .email-popup .body .head .text1 {
        font-size: 32px;
        line-height: 40px;
    }

    .email-popup .body .head .text2 {
        margin-top: 16px;
        font-size: 14px;
        line-height: 21px;
    }

    .email-popup .body form input {
        width: 276px;
        height: 48px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: 100px;
        margin-right: 12px;
        font-size: 14px;
    }

    .email-popup .body form .image {
        width: 400px;
        margin-top: 60px;
    }

    .email-popup .body .success-tip .icon {
        font-size: 96px;
    }

    .email-popup .body .success-tip .info .text1 {
        font-size: 32px;
        line-height: 40px;
        margin-top: 20px;
    }

    .email-popup .body .success-tip .info .text2 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 8px;
    }
}

@media screen and (max-width: 768px) {
    .email-popup {
        backdrop-filter: blur(1.302vw);
        -webkit-backdrop-filter: blur(1.302vw);
    }

    .email-popup .body {
        width: 78.125vw;
        padding: 5.208vw 10.417vw;
        padding-bottom: 11.719vw;
    }

    .email-popup .body::-webkit-scrollbar {
        width: 0.521vw;
        height: 0.781vw;
        border-radius: 13.021vw;
    }

    .email-popup .body::-webkit-scrollbar-thumb {
        border-radius: 13.021vw;
    }

    .email-popup .body .close {
        width: 5.208vw;
        height: 5.208vw;
        top: 1.563vw;
        right: 1.563vw;
        font-size: 2.604vw;
    }

    .email-popup .body .head {
        margin-bottom: 3.125vw;
    }

    .email-popup .body .head .text1 {
        font-size: 3.125vw;
        line-height: 4.167vw;
    }

    .email-popup .body .head .text2 {
        margin-top: 1.563vw;
        font-size: 1.693vw;
        line-height: 2.604vw;
    }

    .email-popup .body form input {
        width: 35.938vw;
        height: 6.25vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        border-radius: 13.021vw;
        margin-right: 1.563vw;
        font-size: 1.823vw;
    }

    .email-popup .body form .image {
        width: 52.083vw;
        margin-top: 11.719vw;
    }

    .email-popup .body .success-tip .icon {
        font-size: 12.5vw;
    }

    .email-popup .body .success-tip .info .text1 {
        font-size: 3.125vw;
        line-height: 3.646vw;
        margin-top: 3.125vw;
    }

    .email-popup .body .success-tip .info .text2 {
        font-size: 1.693vw;
        line-height: 2.604vw;
        margin-top: 1.563vw;
    }
}

@media screen and (max-width: 500px) {
    .email-popup {
        backdrop-filter: blur(2.545vw);
        -webkit-backdrop-filter: blur(2.545vw);
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .email-popup .body {
        width: 100%;
        padding: 10.178vw 6.107vw;
        padding-bottom: 14.758vw;
    }

    .email-popup .body::-webkit-scrollbar {
        width: 1.018vw;
        height: 1.527vw;
        border-radius: 25.445vw;
    }

    .email-popup .body::-webkit-scrollbar-thumb {
        border-radius: 25.445vw;
    }

    .email-popup .body .close {
        width: 10.178vw;
        height: 10.178vw;
        top: 3.053vw;
        right: 3.053vw;
        font-size: 5.089vw;
    }

    .email-popup .body .head {
        margin-bottom: 6.107vw;
    }

    .email-popup .body .head .text1 {
        font-size: 6.107vw;
        line-height: 8.142vw;
    }

    .email-popup .body .head .text2 {
        margin-top: 3.053vw;
        font-size: 3.308vw;
        line-height: 5.089vw;
    }

    .email-popup .body form {
        text-align: center;
    }

    .email-popup .body form .content {
        display: block;
    }

    .email-popup .body form input {
        text-align: left;
        width: 100%;
        height: 12.214vw;
        padding-left: 6.107vw;
        padding-right: 6.107vw;
        border-radius: 25.445vw;
        margin-right: 0;
        font-size: 3.562vw;
        margin-bottom: 3.053vw;
    }

    .email-popup .body form .image {
        width: 100%;
        margin-top: 7.634vw;
    }

    .email-popup .body form button {
        margin-left: auto;
        margin-right: auto;
    }

    .email-popup .body .success-tip .icon {
        font-size: 24.427vw;
    }

    .email-popup .body .success-tip .info .text1 {
        font-size: 6.107vw;
        line-height: 7.125vw;
        margin-top: 6.107vw;
    }

    .email-popup .body .success-tip .info .text2 {
        font-size: 3.308vw;
        line-height: 5.089vw;
        margin-top: 2.036vw;
    }
}

/* ==================== 邮件订阅弹窗 End ==================== */
/* ==================== 通用底部留言 Start ==================== */
.foot-msg {
    padding-top: 3.47vw;
    padding-bottom: 3.47vw;
    background-color: #0075FF;
}

.foot-msg .mxw-box {
    padding-left: 2.78vw;
    padding-right: 2.78vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.foot-msg .inquiry {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.foot-msg .inquiry .info {
    margin-right: 5.56vw;
}

.foot-msg .inquiry .info .index-text5 {
    color: #FFF;
    margin-bottom: 0.83vw;
}

.foot-msg .index-text11 {
    color: #FFF;
}

.foot-msg .index-text11 a {
    color: inherit;
    text-decoration: underline;
    font-family: inherit;
}

.foot-msg form {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.foot-msg form input {
    width: 23.4vw;
    flex-shrink: 0;
    background-color: #fff;
    color: #000;
    font-size: 0.9vw;
    font-family: "Inter-Regular";
    padding: 0.97vw;
    border-radius: 6.94vw;
    overflow: hidden;
    display: block;
    margin-right: 1.11vw;
}

.foot-msg form button.white {
    color: #0075FF !important;
}

.foot-msg .share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.foot-msg .share .share-item {
    width: 1.67vw;
    flex-shrink: 0;
    margin-right: 0.83vw;
}

.foot-msg .share .share-item img {
    display: block;
    width: 100%;
}

.foot-msg .share .share-item:last-child {
    margin-right: 0;
}

@media screen and (min-width: 1440px) {
    .foot-msg {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .foot-msg .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
    }

    .foot-msg .inquiry .info {
        margin-right: 80px;
    }

    .foot-msg .inquiry .info .index-text5 {
        margin-bottom: 12px;
    }

    .foot-msg form input {
        width: 337px;
        font-size: 13px;
        padding: 14px;
        border-radius: 100px;
        margin-right: 16px;
    }

    .foot-msg .share .share-item {
        width: 24px;
        margin-right: 12px;
    }
}

@media screen and (max-width: 768px) {
    .foot-msg {
        padding-top: 6.51vw;
        padding-bottom: 6.51vw;
    }

    .foot-msg .mxw-box {
        display: block;
        padding-left: 5.21vw;
        padding-right: 5.21vw;
    }

    .foot-msg .inquiry {
        display: block;
    }

    .foot-msg .inquiry .info {
        margin-right: 0;
    }

    .foot-msg .inquiry .info .index-text5 {
        margin-bottom: 3.65vw;
        text-align: center;
    }

    .foot-msg form {
        display: block;
    }

    .foot-msg form input {
        width: 41.67vw;
        margin-bottom: 4.17vw;
        font-size: 1.69vw;
        padding: 1.82vw;
        border-radius: 13.02vw;
        margin-left: auto;
        margin-right: auto;
    }

    .foot-msg form button {
        margin-left: auto;
        margin-right: auto;
    }

    .foot-msg .share {
        margin-top: 10.68vw;
        justify-content: center;
    }

    .foot-msg .share .share-item {
        width: 5.21vw;
        margin-right: 1.56vw;
    }

    .foot-msg .index-text11 {
        text-align: center;
        margin-top: 5.21vw;
    }
}

@media screen and (max-width: 500px) {
    .foot-msg {
        padding-top: 12.72vw;
        padding-bottom: 12.72vw;
    }

    .foot-msg .mxw-box {
        padding-left: 10.18vw;
        padding-right: 10.18vw;
    }

    .foot-msg .inquiry .info .index-text5 {
        margin-bottom: 7.12vw;
    }

    .foot-msg form input {
        width: 81.42vw;
        margin-bottom: 8.14vw;
        font-size: 3.31vw;
        padding: 3.56vw;
        border-radius: 25.45vw;
    }

    .foot-msg .share {
        margin-top: 20.87vw;
    }

    .foot-msg .share .share-item {
        width: 10.18vw;
        margin-right: 3.05vw;
    }

    .foot-msg .index-text11 {
        margin-top: 10.18vw;
    }
}

/* ==================== 通用底部留言 End ==================== */
/* ==================== 通用产品分页 Start ==================== */
.common-page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.861vw;
}

.common-page .text {
    margin-left: 2.778vw;
    margin-right: 2.778vw;
    text-align: center;
}

.common-page .swiper-btn {
    position: static;
    transform: translate(0, 0);
}

.common-page .swiper-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.common-page .swiper-btn::before {
    font-size: 1.111vw;
}

@media screen and (min-width: 1440px) {
    .common-page {
        margin-top: 70px;
    }

    .common-page .text {
        margin-left: 40px;
        margin-right: 40px;
    }

    .common-page .swiper-btn::before {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .common-page {
        margin-top: 9.115vw;
    }

    .common-page .text {
        margin-left: 5.208vw;
        margin-right: 5.208vw;
    }

    .common-page .swiper-btn::before {
        font-size: 2.083vw;
    }
}

@media screen and (max-width: 500px) {
    .common-page {
        margin-top: 17.812vw;
    }

    .common-page .text {
        margin-left: 10.178vw;
        margin-right: 10.178vw;
    }

    .common-page .swiper-btn::before {
        font-size: 4.071vw;
    }
}

/* ==================== 通用产品分页 End ==================== */
/* ==================== 通用视频弹窗 Start ==================== */
.video-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.694vw);
    -webkit-backdrop-filter: blur(0.694vw);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.video-popup .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: center;
    width: 68.056vw;
    border-radius: 16px;
    background-color: #fff;
}

.video-popup .body .close {
    width: 2.778vw;
    height: 2.778vw;
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.389vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.video-popup .body iframe {
    width: 100%;
    display: block;
    height: 34.722vw;
}

@media screen and (min-width: 1440px) {
    .video-popup {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .video-popup .body {
        width: 980px;
    }

    .video-popup .body .close {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .video-popup .body iframe {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .video-popup {
        backdrop-filter: blur(1.302vw);
        -webkit-backdrop-filter: blur(1.302vw);
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .video-popup .body {
        width: 100%;
    }

    .video-popup .body .close {
        width: 5.208vw;
        height: 5.208vw;
        font-size: 2.604vw;
    }

    .video-popup .body iframe {
        height: 65.104vw;
    }
}

@media screen and (max-width: 500px) {
    .video-popup {
        backdrop-filter: blur(2.545vw);
        -webkit-backdrop-filter: blur(2.545vw);
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .video-popup .body .close {
        width: 7.634vw;
        height: 7.634vw;
        font-size: 5.089vw;
    }

    .video-popup .body iframe {
        height: 50.891vw;
    }
}

/* ==================== 通用视频弹窗 End ==================== */
/* ==================== 通用分页切换 Start ==================== */
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 128px auto 0;
    grid-gap: 40px;
}

.pager.c-white {
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .pager {
        grid-gap: 32px;
        margin-top: 56px;
    }
}

.pager .text {
    font-size: 14px;
    color: #000;
    font-family: "Inter-Regular";
}

.pager .prev,
.pager .next {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}

.pager .prev a,
.pager .next a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pager .prev a:before,
.pager .next a:before {
    display: block;
    font-size: 14px;
    color: #000;
    font-family: "iconfont";
}

.pager .prev a:before {
    content: "\e62f";
}

.pager .next a:before {
    content: "\e630";
}

.pager .prev.events,
.pager .next.events {
    pointer-events: none;
    opacity: 0.5;
}

.pager .prev:hover,
.pager .next:hover {
    opacity: 0.6;
}

.pager .prev i,
.pager .next i {
    color: #999;
}

/* ==================== 通用分页切换 End ==================== */
/* ==================== 404页面样式 Start ==================== */
.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 640px;
    margin: 134px auto 50vh;
}

@media screen and (max-width: 1024px) {
    .page-404 {
        padding: 0 24px 0;
    }
}

.page-404 p {
    font-size: 20px;
    margin-top: 24px;
}

@media screen and (max-width: 1024px) {
    .page-404 p {
        font-size: 16px;
    }
}

.page-404 .title {
    font-size: 56px;
    font-family: Inter-Medium;
    line-height: normal;
}

@media screen and (max-width: 1024px) {
    .page-404 .title {
        font-size: 48px;
    }
}

.page-404 .tip {
    font-size: 24px;
    margin: 12px auto;
    font-family: Inter-Medium;
}

@media screen and (max-width: 1024px) {
    .page-404 .tip {
        font-size: 20px;
        margin: 12px auto 8px;
    }
}

.page-404 .summary {
    font-size: 13px;
}

.page-404 .f-more {
    margin-top: 40px;
}

.page-404.product-stop {
    margin-top: 96px;
}

@media screen and (max-width: 1024px) {
    .page-404.product-stop {
        margin-top: 120px;
    }
}

.page-404.product-stop .icon {
    margin-bottom: 40px;
}

.page-404.product-stop .summary {
    font-size: 16px;
}

.page-404.product-stop .f-more {
    margin-top: 24px;
}

.f-more {
    background: #0075FF;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    color: #fff;
    transition: all 0.5s;
    font-size: 13px;
    border: 1px solid #0075FF;
    text-transform: uppercase;
    cursor: pointer;
}

.f-more:hover,
.f-more:active,
.f-more:focus {
    opacity: 0.6;
}

.f-more.black {
    background: #000;
    color: #fff;
    border-color: #000;
}

.f-more.white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.f-more.no-bg {
    background: none;
}

.f-more.white-color {
    color: #fff;
}

.f-more.black-color {
    color: #000;
}

.f-more.orange-color {
    color: #0075FF;
}

/* ==================== 404页面样式 End ==================== */
/* ==================== 内页5 - 板块一 Start ==================== */
/* ==================== 内页5 - 板块一 End ==================== */
/* ==================== 内页5 - 板块二 Start ==================== */
.ny5-section2 {
    padding-bottom: 11.111vw;
}

.ny5-section2 .top {
    text-align: center;
}

.ny5-section2 .top .ny2-tabs {
    margin-bottom: 0;
}

.ny5-section2 > .mxw-box {
    padding-left: 5.556vw;
    padding-right: 5.556vw;
}

.ny5-section2 .title {
    margin-top: 2.083vw;
}

.ny5-section2 form {
    margin-top: 3.472vw;
    width: 44.444vw;
    height: 4.444vw;
    border-radius: 6.944vw;
    overflow: hidden;
    background-color: #f6f6f6;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.389vw 2.778vw;
    margin-bottom: 5.556vw;
    margin-left: auto;
    margin-right: auto;
}

.ny5-section2 form input {
    min-width: 0;
    flex-grow: 1;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
}

.ny5-section2 form input::-webkit-input-placeholder {
    color: #999;
}

.ny5-section2 form input::-moz-placeholder {
    color: #999;
}

.ny5-section2 form input:-moz-placeholder {
    color: #999;
}

.ny5-section2 form input:-ms-input-placeholder {
    color: #999;
}

.ny5-section2 form button {
    display: block;
    cursor: pointer;
    outline: none;
    font-size: 1.667vw;
    color: #000;
}

.ny5-section2 form button .iconfont {
    font-size: inherit;
}

.ny5-section2 .itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny5-section2 .item {
    width: 32.46%;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
    padding-top: 2.222vw;
    padding-bottom: 3.889vw;
    border-radius: 16px;
    display: flex;
    align-items: cenfter;
    justify-content: space-between;
    background-color: #F5FBFF;
}

.ny5-section2 .item:nth-child(3n-1) {
    margin-left: 1.3%;
    margin-right: 1.3%;
}

.ny5-section2 .item:nth-child(3) ~ .item {
    margin-top: 1.3%;
}

.ny5-section2 .item .info {
    min-width: 0;
    flex-grow: 1;
}

.ny5-section2 .item .text1 {
    font-size: 0.903vw;
    line-height: 1.25vw;
    font-family: "Inter-Regular";
    color: #999;
}

.ny5-section2 .item .text2 {
    margin-top: 1.111vw;
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.667vw;
    line-height: 1.944vw;
}

.ny5-section2 .item .common-btn2 {
    margin-top: 1.667vw;
}

.ny5-section2 .more-btn {
    margin-top: 3.472vw;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1440px) {
    .ny5-section2 {
        padding-bottom: 160px;
    }

    .ny5-section2 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny5-section2 .title {
        margin-top: 30px;
    }

    .ny5-section2 form {
        margin-top: 50px;
        width: 640px;
        height: 64px;
        border-radius: 100px;
        padding: 20px 40px;
        margin-bottom: 80px;
    }

    .ny5-section2 form input {
        font-size: 16px;
        line-height: 24px;
    }

    .ny5-section2 form button {
        font-size: 24px;
    }

    .ny5-section2 .item {
        width: 32.46%;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 32px;
        padding-bottom: 56px;
    }

    .ny5-section2 .item .text1 {
        font-size: 13px;
        line-height: 18px;
    }

    .ny5-section2 .item .text2 {
        margin-top: 16px;
        font-size: 24px;
        line-height: 28px;
    }

    .ny5-section2 .item .common-btn2 {
        margin-top: 24px;
    }

    .ny5-section2 .more-btn {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .ny5-section2 {
        padding-bottom: 15.625vw;
    }

    .ny5-section2 .top .ny2-tabs {
        margin-bottom: 0;
    }

    .ny5-section2 > .mxw-box {
        padding-left: 3.255vw;
        padding-right: 3.255vw;
    }

    .ny5-section2 .title {
        margin-top: 4.167vw;
    }

    .ny5-section2 form {
        margin-top: 3.516vw;
        width: 100%;
        height: 8.333vw;
        border-radius: 13.021vw;
        padding: 2.604vw 3.125vw;
        margin-bottom: 6.51vw;
    }

    .ny5-section2 form input {
        font-size: 1.823vw;
        line-height: 2.344vw;
        font-family: "Inter-SemiBold";
    }

    .ny5-section2 form button {
        font-size: 3.125vw;
    }

    .ny5-section2 .item {
        padding: 3.125vw;
        padding-bottom: 4.688vw;
        height: 15.625vw;
        width: 49.25%;
        margin: 0 !important;
        border-radius: 1.56vw;
    }

    .ny5-section2 .item:nth-child(2n) {
        margin-left: 1.5% !important;
    }

    .ny5-section2 .item:nth-child(2) ~ .item {
        margin-top: 1.5% !important;
    }

    .ny5-section2 .item .text1 {
        font-size: 1.563vw;
        line-height: 2.083vw;
    }

    .ny5-section2 .item .text2 {
        margin-top: 0.781vw;
        font-size: 2.604vw;
        line-height: 3.906vw;
    }

    .ny5-section2 .more-btn {
        margin-top: 6.51vw;
    }
}

@media screen and (max-width: 500px) {
    .ny5-section2 {
        padding-bottom: 30.534vw;
    }

    .ny5-section2 .top .ny2-tabs {
        margin-bottom: 0;
    }

    .ny5-section2 > .mxw-box {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny5-section2 .title {
        margin-top: 5.598vw;
        font-size: 6.107vw;
    }

    .ny5-section2 form {
        margin-top: 8.651vw;
        width: 100%;
        height: 14.249vw;
        border-radius: 25.445vw;
        padding: 5.089vw 6.107vw;
        margin-bottom: 10.178vw;
    }

    .ny5-section2 form input {
        font-size: 3.562vw;
        line-height: 4.58vw;
    }

    .ny5-section2 form button {
        font-size: 6.107vw;
    }

    .ny5-section2 .item {
        padding: 6.107vw;
        padding-bottom: 9.16vw;
        height: 30.534vw;
        width: 100%;
        margin: 0 !important;
        margin-bottom: 3.053vw !important;
        border-radius: 2.04vw;
    }

    .ny5-section2 .item:last-child {
        margin-bottom: 0 !important;
    }

    .ny5-section2 .item .text1 {
        font-size: 3.053vw;
        line-height: 4.071vw;
    }

    .ny5-section2 .item .text2 {
        margin-top: 1.527vw;
        font-size: 5.089vw;
        line-height: 7.634vw;
    }

    .ny5-section2 .more-btn {
        margin-top: 12.723vw;
    }
}

/* ==================== 内页5 - 板块二 End ==================== */
/* ==================== 内页5 - 板块三 Start ==================== */
/* ==================== 内页5 - 板块三 End ==================== */
/* ==================== 内页5 - 板块四 Start ==================== */
/* ==================== 内页5 - 板块四 End ==================== */
/* ==================== 内页5 - 板块五 Start ==================== */
/* ==================== 内页5 - 板块五 End ==================== */
/* ==================== 内页5 - 板块六 Start ==================== */
/* ==================== 内页5 - 板块六 End ==================== */
/* ==================== 内页5 - 板块七 Start ==================== */
/* ==================== 内页5 - 板块七 End ==================== */
/* ==================== 内页5 - 板块八 Start ==================== */
/* ==================== 内页5 - 板块八 End ==================== */
/* ==================== 内页6 - 板块一 Start ==================== */
/* ==================== 内页6 - 板块一 End ==================== */
/* ==================== 内页6 - 板块二 Start ==================== */
.ny6-section2 {
    background-color: #F6F6F6;
    padding-bottom: 6.944vw;
}

.ny6-section2 > .mxw-box {
    padding-left: 2.778vw;
    padding-right: 2.778vw;
}

.ny6-section2 .top {
    text-align: center;
}

.ny6-section2 .top .ny2-tabs {
    margin-bottom: 0;
}

.ny6-section2 .itembox {
    background-color: #ffff;
    border-radius: 16px;
    padding: 2.778vw;
}

.ny6-section2 .item {
    margin-bottom: 7.778vw;
}

.ny6-section2 .item:last-child {
    margin-bottom: 0;
}

.ny6-section2 .item .title {
    margin-bottom: 1.667vw;
}

.ny6-section2 .item > ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.ny6-section2 .item > ul > li {
    width: 49.5%;
    background: #F5FBFF;
    padding: 1.667vw;
    border-radius: 16px;
}

.ny6-section2 .item .li-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.083vw;
}

.ny6-section2 .item .li-top .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ny6-section2 .item .li-top .left .icon {
    width: 4.861vw;
    display: block;
    border-radius: 0.694vw;
    overflow: hidden;
    margin-right: 1.667vw;
    flex-shrink: 0;
}

.ny6-section2 .item .li-top .left .left-info {
    min-width: 0;
    flex-grow: 1;
}

.ny6-section2 .item .li-top .left .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.389vw;
    line-height: 2.083vw;
}

.ny6-section2 .item .li-top .left .text2 {
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    line-height: 1.25vw;
}

.ny6-section2 .item .li-top .right {
    margin-left: 1.667vw;
    flex-shrink: 0;
    width: 7.778vw;
    display: block;
}

.ny6-section2 .item .li-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ny6-section2 .item .li-list .list-item {
    display: block;
    margin-right: 1.667vw;
}

.ny6-section2 .item .li-list .list-item:last-child {
    margin-right: 0;
}

.ny6-section2 .item .li-list .icon {
    width: 100%;
    width: 9.167vw;
    margin-left: auto;
    margin-right: auto;
}

.ny6-section2 .item .li-list .icon img {
    width: 100%;
}

.ny6-section2 .item .li-list .text {
    margin-top: 0.417vw;
    color: #999;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    line-height: 1.25vw;
}

.ny6-section2 .list2 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.ny6-section2 .list2 .list2-item {
    background-color: #F5FBFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.083vw 1.667vw;
    height: 11.111vw;
    border-radius: 16px;
    width: 49.5%;
}

.ny6-section2 .list2 .list2-item:nth-child(2n-1) {
    margin-right: 1%;
}

.ny6-section2 .list2 .list2-item:nth-child(2) ~ .list2-item {
    margin-top: 1%;
}

.ny6-section2 .list2 .left {
    align-self: flex-start;
}

.ny6-section2 .list2 .left .text1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    font-weight: 500;
    line-height: 1.25vw;
}

.ny6-section2 .list2 .left .text1 .icon {
    width: 1.111vw;
    margin-right: 0.556vw;
    line-height: 1;
}

.ny6-section2 .list2 .left .text2 {
    margin-top: 0.556vw;
    color: #000;
    font-size: 1.389vw;
    font-family: "Inter-SemiBold";
    line-height: 2.083vw;
}

.ny6-section2 .list2 .common-btn2 {
    flex-shrink: 0;
}

@media screen and (min-width: 1440px) {
    .ny6-section2 {
        padding-bottom: 100px;
    }

    .ny6-section2 > .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ny6-section2 .itembox {
        padding: 40px;
    }

    .ny6-section2 .item {
        margin-bottom: 112px;
    }

    .ny6-section2 .item .title {
        margin-bottom: 24px;
    }

    .ny6-section2 .item > ul > li {
        padding: 24px;
    }

    .ny6-section2 .item .li-top {
        margin-bottom: 30px;
    }

    .ny6-section2 .item .li-top .left .icon {
        width: 70px;
        border-radius: 10px;
        margin-right: 24px;
    }

    .ny6-section2 .item .li-top .left .text1 {
        font-size: 20px;
        line-height: 30px;
    }

    .ny6-section2 .item .li-top .left .text2 {
        font-size: 13px;
        line-height: 18px;
    }

    .ny6-section2 .item .li-top .right {
        margin-left: 24px;
        width: 112px;
    }

    .ny6-section2 .item .li-list .list-item {
        margin-right: 24px;
    }

    .ny6-section2 .item .li-list .icon {
        width: 132px;
    }

    .ny6-section2 .item .li-list .text {
        margin-top: 6px;
        font-size: 13px;
        line-height: 18px;
    }

    .ny6-section2 .list2 .list2-item {
        padding: 30px 24px;
        height: 160px;
    }

    .ny6-section2 .list2 .left .text1 {
        font-size: 13px;
        line-height: 18px;
    }

    .ny6-section2 .list2 .left .text1 .icon {
        font-size: 16px;
        margin-right: 8px;
    }

    .ny6-section2 .list2 .left .text2 {
        margin-top: 8px;
        font-size: 20px;
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .ny6-section2 {
        padding-bottom: 13.021vw;
    }

    .ny6-section2 > .mxw-box {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny6-section2 .itembox {
        padding: 8.333vw 3.125vw;
        padding-bottom: 22.917vw;
    }

    .ny6-section2 .item {
        margin-bottom: 14.583vw;
    }

    .ny6-section2 .item:last-child {
        margin-bottom: 0;
    }

    .ny6-section2 .item .title {
        margin-bottom: 3.125vw;
        font-size: 3.125vw;
        line-height: 4.948vw;
    }

    .ny6-section2 .item > ul {
        width: 100%;
        display: block;
    }

    .ny6-section2 .item > ul > li {
        width: 100%;
        padding-top: 5.859vw;
        padding-bottom: 4.427vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        margin-bottom: 2.083vw;
        border-radius: 1.56vw;
    }

    .ny6-section2 .item > ul > li:last-child {
        margin-bottom: 0;
    }

    .ny6-section2 .item .li-top {
        margin-bottom: 3.906vw;
    }

    .ny6-section2 .item .li-top .left .icon {
        width: 9.115vw;
        border-radius: 1.302vw;
        margin-right: 3.125vw;
    }

    .ny6-section2 .item .li-top .left .text1 {
        font-size: 2.604vw;
        line-height: 3.906vw;
    }

    .ny6-section2 .item .li-top .left .text2 {
        font-size: 1.693vw;
        line-height: 2.344vw;
    }

    .ny6-section2 .item .li-top .right {
        margin-left: 3.125vw;
        width: 14.583vw;
    }

    .ny6-section2 .item .li-list .list-item {
        margin-right: 3.125vw;
    }

    .ny6-section2 .item .li-list .icon {
        width: 17.188vw;
    }

    .ny6-section2 .item .li-list .text {
        margin-top: 0.781vw;
        font-size: 1.693vw;
        line-height: 2.344vw;
    }

    .ny6-section2 .list2 .list2-item {
        width: 49%;
        padding: 3.906vw 3.125vw;
        height: 20.833vw;
        border-radius: 1.56vw;
    }

    .ny6-section2 .list2 .list2-item:nth-child(2n-1) {
        margin-right: 2%;
    }

    .ny6-section2 .list2 .list2-item:nth-child(2) ~ .list2-item {
        margin-top: 2%;
    }

    .ny6-section2 .list2 .left .text1 {
        font-size: 1.693vw;
        line-height: 2.344vw;
    }

    .ny6-section2 .list2 .left .text1 .icon {
        font-size: 2.083vw;
        margin-right: 1.042vw;
    }

    .ny6-section2 .list2 .left .text2 {
        margin-top: 1.042vw;
        font-size: 2.604vw;
        line-height: 3.906vw;
    }
}

@media screen and (max-width: 500px) {
    .ny6-section2 {
        background-color: #fff;
        padding-bottom: 0;
    }

    .ny6-section2 > .mxw-box {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny6-section2 .itembox {
        padding: 8.142vw 0;
        padding-bottom: 12.723vw;
    }

    .ny6-section2 .item {
        margin-bottom: 12.723vw;
    }

    .ny6-section2 .item .title {
        margin-bottom: 6.107vw;
        font-size: 6.107vw;
        line-height: 9.669vw;
    }

    .ny6-section2 .item > ul > li {
        padding-top: 6.107vw;
        padding-bottom: 5.344vw;
        padding-left: 4.071vw;
        padding-right: 4.071vw;
        margin-bottom: 4.071vw;
        border-radius: 2.04vw;
    }

    .ny6-section2 .item .li-top {
        margin-bottom: 12.723vw;
    }

    .ny6-section2 .item .li-top .left .icon {
        width: 14.249vw;
        border-radius: 2.545vw;
        margin-right: 16x;
    }

    .ny6-section2 .item .li-top .left .text1 {
        font-size: 5.089vw;
        line-height: 7.634vw;
    }

    .ny6-section2 .item .li-top .left .text2 {
        font-size: 3.053vw;
        line-height: 4.071vw;
        margin-top: 1.018vw;
    }

    .ny6-section2 .item .li-top .right {
        margin-left: 2.545vw;
        width: 20.356vw;
    }

    .ny6-section2 .item .li-list .list-item {
        margin-right: 7.125vw;
    }

    .ny6-section2 .item .li-list .icon {
        width: 33.588vw;
    }

    .ny6-section2 .item .li-list .text {
        margin-top: 1.527vw;
        font-size: 3.308vw;
        line-height: 4.58vw;
    }

    .ny6-section2 .list2 {
        width: 100%;
        display: block;
    }

    .ny6-section2 .list2 .list2-item {
        padding: 6.107vw;
        height: 30.534vw;
        width: 100%;
        border-radius: 2.04vw;
    }

    .ny6-section2 .list2 .list2-item:nth-child(2n-1) {
        margin-right: 0;
    }

    .ny6-section2 .list2 .list2-item:nth-child(1) ~ .list2-item {
        margin-top: 2.545vw !important;
    }

    .ny6-section2 .list2 .left .text1 {
        font-size: 3.053vw;
        line-height: 4.58vw;
    }

    .ny6-section2 .list2 .left .text1 .icon {
        font-size: 2.545vw;
        margin-right: 1.018vw;
    }

    .ny6-section2 .list2 .left .text2 {
        margin-top: 1.527vw;
        font-size: 5.089vw;
        line-height: 7.634vw;
    }
}

/* ==================== 内页6 - 板块二 End ==================== */
/* ==================== 内页7 - 板块一 Start ==================== */
/* ==================== 内页7 - 板块一 End ==================== */
/* ==================== 内页7 - 板块二 Start ==================== */
.ny7-section2 {
    padding-bottom: 18.056vw;
}

.ny7-section2 .top {
    text-align: center;
}

.ny7-section2 .top .ny2-tabs {
    margin-bottom: 0;
}

.ny7-section2 > .mxw-box {
    padding-left: 5.556vw;
    padding-right: 5.556vw;
}

.ny7-section2 .title {
    margin-top: 2.083vw;
    margin-bottom: 3.472vw;
}

.ny7-section2 form {
    width: 44.444vw;
    height: 4.444vw;
    border-radius: 6.944vw;
    overflow: hidden;
    background-color: #f6f6f6;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.389vw 2.778vw;
    margin-bottom: 5.556vw;
    margin-left: auto;
    margin-right: auto;
}

.ny7-section2 form input {
    min-width: 0;
    flex-grow: 1;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    line-height: 1.389vw;
}

.ny7-section2 form input::-webkit-input-placeholder {
    color: #999;
}

.ny7-section2 form input::-moz-placeholder {
    color: #999;
}

.ny7-section2 form input:-moz-placeholder {
    color: #999;
}

.ny7-section2 form input:-ms-input-placeholder {
    color: #999;
}

.ny7-section2 form button {
    display: block;
    cursor: pointer;
    outline: none;
    font-size: 1.667vw;
    color: #000;
}

.ny7-section2 form button .iconfont {
    font-size: inherit;
}

.ny7-section2 .itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny7-section2 .item {
    width: 32.46%;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
    height: 11.111vw;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F5FBFF;
}

.ny7-section2 .item:nth-child(3n-1) {
    margin-left: 1.3%;
    margin-right: 1.3%;
}

.ny7-section2 .item:nth-child(3) ~ .item {
    margin-top: 1.3%;
}

.ny7-section2 .item .text1 {
    min-width: 0;
    flex-grow: 1;
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.667vw;
    line-height: 2.083vw;
}

.ny7-section2 .more-btn {
    margin-top: 3.472vw;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1440px) {
    .ny7-section2 {
        padding-bottom: 260px;
    }

    .ny7-section2 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny7-section2 .title {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .ny7-section2 form {
        width: 640px;
        height: 64px;
        border-radius: 100px;
        padding: 20px 40px;
        margin-bottom: 80px;
    }

    .ny7-section2 form input {
        font-size: 13px;
        line-height: 20px;
    }

    .ny7-section2 form button {
        font-size: 24px;
    }

    .ny7-section2 .item {
        padding-left: 24px;
        padding-right: 24px;
        height: 160px;
    }

    .ny7-section2 .item .text1 {
        font-size: 24px;
        line-height: 30px;
    }

    .ny7-section2 .more-btn {
        margin-top: 49.997px;
    }
}

@media screen and (max-width: 768px) {
    .ny7-section2 {
        padding-bottom: 13.021vw;
    }

    .ny7-section2 > .mxw-box {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny7-section2 .title {
        margin-top: 4.167vw;
        margin-bottom: 3.125vw;
    }

    .ny7-section2 form {
        width: 100%;
        height: 7.292vw;
        border-radius: 13.021vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        margin-bottom: 6.51vw;
    }

    .ny7-section2 form input {
        font-size: 1.693vw;
        line-height: 2.604vw;
        height: 100%;
    }

    .ny7-section2 form button {
        font-size: 3.125vw;
    }

    .ny7-section2 .item {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        height: 20.833vw;
        width: 49%;
        margin: 0 !important;
        border-radius: 1.56vw;
    }

    .ny7-section2 .item:nth-child(2n-1) {
        margin-right: 2% !important;
    }

    .ny7-section2 .item:nth-child(2) ~ .item {
        margin-top: 2% !important;
    }

    .ny7-section2 .item .text1 {
        font-size: 2.604vw;
        line-height: 3.125vw;
        margin-right: 2.083vw;
    }

    .ny7-section2 .more-btn {
        margin-top: 6.51vw;
    }
}

@media screen and (max-width: 500px) {
    .ny7-section2 {
        padding-bottom: 25.445vw;
    }

    .ny7-section2 > .mxw-box {
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .ny7-section2 .title {
        margin-top: 8.142vw;
        margin-bottom: 6.107vw;
    }

    .ny7-section2 form {
        height: 14.249vw;
        border-radius: 25.445vw;
        padding-left: 6.107vw;
        padding-right: 6.107vw;
        margin-bottom: 12.723vw;
    }

    .ny7-section2 form input {
        font-size: 3.053vw;
        line-height: 4.58vw;
    }

    .ny7-section2 form button {
        font-size: 6.107vw;
    }

    .ny7-section2 .item {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
        height: auto;
        padding-top: 6.361vw;
        padding-bottom: 6.361vw;
        width: 100%;
        margin: 0 !important;
        border-radius: 2.04vw;
    }

    .ny7-section2 .item:nth-child(1) ~ .item {
        margin-top: 3.053vw !important;
    }

    .ny7-section2 .item:nth-child(2n-1) {
        margin-right: 0 !important;
    }

    .ny7-section2 .item .text1 {
        font-size: 5.089vw;
        line-height: 6.107vw;
        margin-right: 4.071vw;
    }

    .ny7-section2 .more-btn {
        margin-top: 12.723vw;
    }
}

/* ==================== 内页7 - 板块二 End ==================== */
/* ==================== 内页7 - 板块一 Start ==================== */
.ny7-1-section1 {
    padding-bottom: 11.806vw;
}

.ny7-1-section1 .top {
    padding-left: 5.556vw;
    padding-right: 5.556vw;
    padding-top: 2.778vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #0075FF;
    font-size: 0.972vw;
    font-family: "Inter-SemiBold";
}

.ny7-1-section1 .top .icon {
    font-size: 1.667vw;
    margin-right: 0.556vw;
}

.ny7-1-section1 > .mxw-box {
    padding-left: 7.5vw;
    padding-right: 7.5vw;
}

.ny7-1-section1 .title {
    margin-top: 6.597vw;
    color: #000;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 2.778vw;
    line-height: 3.333vw;
    margin-bottom: 5.556vw;
}

.ny7-1-section1 .item {
    display: block;
    width: 100%;
    border-bottom: 1px solid #F6F6F6;
    margin-bottom: 1.111vw;
    padding-bottom: 1.736vw;
}

.ny7-1-section1 .item.active .head2:after,
.ny7-1-section1 .item.active .head:after {
    transform: rotateX(180deg);
}

.ny7-1-section1 .item:last-child {
    margin-bottom: 0;
}

.ny7-1-section1 .item .head2,
.ny7-1-section1 .item .head {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.389vw;
    line-height: 2.083vw;
    padding-right: 2.083vw;
    position: relative;
    padding-top: 1.736vw;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.ny7-1-section1 .item .head2:after,
.ny7-1-section1 .item .head:after {
    content: "\e656";
    font-family: iconfont;
    display: block;
    font-size: 1.667vw;
    color: #999;
    position: absolute;
    top: 1.736vw;
    right: 0;
}

.ny7-1-section1 .item .head2 span,
.ny7-1-section1 .item .head span {
    margin-right: 1.111vw;
    font-family: inherit;
    font-size: inherit;
    flex-shrink: 0;
}

.ny7-1-section1 .item .desc {
    padding-left: 2.917vw;
    padding-right: 2.917vw;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    font-weight: 400;
    line-height: 1.389vw;
    padding-top: 1.389vw;
    display: none;
}
.ny7-1-section1 .item .desc a {
    color: #0075FF;
}
@media screen and (min-width: 1440px) {
    .ny7-1-section1 {
        padding-bottom: 170px;
    }

    .ny7-1-section1 .top {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 40px;
        font-size: 14px;
    }

    .ny7-1-section1 .top .icon {
        font-size: 24px;
        margin-right: 8px;
    }

    .ny7-1-section1 > .mxw-box {
        padding-left: 108px;
        padding-right: 108px;
    }

    .ny7-1-section1 .title {
        margin-top: 95px;
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 80px;
    }

    .ny7-1-section1 .item {
        margin-bottom: 16px;
        padding-bottom: 25px;
    }

    .ny7-1-section1 .item .head2,
    .ny7-1-section1 .item .head {
        font-size: 20px;
        line-height: 30px;
        padding-right: 30px;
        padding-top: 25px;
    }

    .ny7-1-section1 .item .head2:after,
    .ny7-1-section1 .item .head:after {
        font-size: 24px;
        top: 25px;
    }

    .ny7-1-section1 .item .head2 span,
    .ny7-1-section1 .item .head span {
        margin-right: 16px;
    }

    .ny7-1-section1 .item .desc {
        padding-left: 42px;
        padding-right: 42px;
        font-size: 13px;
        line-height: 20px;
        padding-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .ny7-1-section1 {
        padding-bottom: 15.625vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny7-1-section1 .top {
        padding-left: 0;
        padding-right: 0;
        padding-top: 3.646vw;
        font-size: 1.823vw;
    }

    .ny7-1-section1 .top .icon {
        font-size: 3.125vw;
        margin-right: 1.042vw;
    }

    .ny7-1-section1 > .mxw-box {
        padding-left: 0;
        padding-right: 0;
    }

    .ny7-1-section1 .title {
        margin-top: 9.115vw;
        font-size: 3.125vw;
        line-height: 5.208vw;
        margin-bottom: 5.208vw;
    }

    .ny7-1-section1 .item {
        margin-bottom: 0;
        padding-bottom: 3.255vw;
    }

    .ny7-1-section1 .item .head2,
    .ny7-1-section1 .item .head {
        font-size: 2.083vw;
        line-height: 3.906vw;
        padding-right: 3.906vw;
        padding-top: 3.255vw;
    }

    .ny7-1-section1 .item .head2:after,
    .ny7-1-section1 .item .head:after {
        font-size: 3.125vw;
        top: 3.255vw;
    }

    .ny7-1-section1 .item .head2 span,
    .ny7-1-section1 .item .head span {
        margin-right: 3.125vw;
    }

    .ny7-1-section1 .item .desc {
        padding-left: 5.859vw;
        padding-right: 5.859vw;
        font-size: 1.693vw;
        line-height: 2.604vw;
        margin-top: 1.042vw;
        padding-top: 2.604vw;
    }
}

@media screen and (max-width: 500px) {
    .ny7-1-section1 {
        padding-bottom: 30.534vw;
        /*padding-left: 6.107vw;*/
        /*padding-right: 6.107vw;*/
        padding-left: 0;
        padding-right: 0;
    }

    .ny7-1-section1 .top {
        padding-top: 6.107vw;
        font-size: 3.562vw;
    }

    .ny7-1-section1 .top .icon {
        font-size: 6.107vw;
        margin-right: 2.036vw;
    }

    .ny7-1-section1 .title {
        margin-top: 18.321vw;
        font-size: 6.107vw;
        line-height: 10.178vw;
        margin-bottom: 10.178vw;
    }

    .ny7-1-section1 .item {
        padding-bottom: 6.361vw;
    }

    .ny7-1-section1 .item .head2,
    .ny7-1-section1 .item .head {
        font-size: 4.071vw;
        line-height: 6.107vw;
        padding-right: 12.723vw;
        padding-top: 6.361vw;
    }

    .ny7-1-section1 .item .head2:after,
    .ny7-1-section1 .item .head:after {
        font-size: 6.107vw;
        top: 6.361vw;
    }

    .ny7-1-section1 .item .head2 span,
    .ny7-1-section1 .item .head span {
        margin-right: 6.107vw;
    }

    .ny7-1-section1 .item .desc {
        padding-left: 11.45vw;
        padding-right: 11.45vw;
        padding-top: 5.089vw;
        font-size: 3.308vw;
        line-height: 5.089vw;
        margin-top: 2.036vw;
    }
}

/* ==================== 内页7 - 板块一 End ==================== */
/* ==================== 内页12 - 板块一 Start ==================== */
.ny12-section1 {
    text-align: center;
    padding-bottom: 7.22vw;
}

.ny12-section1 > .mxw-box {
    padding-left: 5.56vw;
    padding-right: 5.56vw;
}

.ny12-section1 .ny2-tabs {
    margin-bottom: 0;
}

.ny12-section1 .head {
    padding-top: 7.5vw;
    padding-bottom: 2.78vw;
}

.ny12-section1 .head .text1 {
    color: #000;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 3.89vw;
    line-height: 4.44vw;
}

.ny12-section1 .head .text2 {
    margin-top: 0.56vw;
    color: #000;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 1.11vw;
    line-height: 1.94vw;
}

.ny12-section1 .itembox {
    margin-top: 6.67vw;
    text-align: left;
}

.ny12-section1 .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.78vw;
}

.ny12-section1 .item:last-child {
    margin-bottom: 0;
}

.ny12-section1 .item .info-text1 {
    font-family: "Inter-Regular";
    font-size: 0.97vw;
    font-weight: 500;
    line-height: 1.46vw;
    padding-left: 0.83vw;
    padding-right: 0.83vw;
    color: #0075FF;
    border: 1px solid;
    border-radius: 6.94vw;
    margin-bottom: 1.67vw;
    display: table;
}

.ny12-section1 .item .info {
    min-width: 0;
    flex-grow: 1;
    margin-right: 2.22vw;
}

.ny12-section1 .item .info .info-text2 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.67vw;
    line-height: 2.22vw;
}

.ny12-section1 .item .info .desc {
    color: #666;
    font-family: "Inter-Regular";
    font-size: 0.97vw;
    line-height: 1.46vw;
    margin-top: 0.56vw;
}

.ny12-section1 .item .image {
    width: 50vw;
    flex-shrink: 0;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.ny12-section1 .item .image img {
    width: 100%;
}

.ny12-section1 .item .list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 3.33vw;
}

.ny12-section1 .item .list-item:first-child {
    width: 11.11vw;
    margin-right: 2.78vw;
}

.ny12-section1 .item .list-item:last-child {
    min-width: 0;
    flex-grow: 1;
}

.ny12-section1 .item .list-item .text1 {
    color: #999;
    font-family: "Inter-Thin";
    font-size: 0.83vw;
    font-weight: 600;
    line-height: 1.25vw;
}

.ny12-section1 .item .list-item .text2 {
    margin-top: 0.28vw;
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.11vw;
    line-height: 1.67vw;
}

.ny12-section1 .item .common-btn {
    margin-top: 4.44vw;
}

@media screen and (min-width: 1440px) {
    .ny12-section1 {
        padding-bottom: 104px;
    }

    .ny12-section1 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny12-section1 .head {
        padding-top: 108px;
        padding-bottom: 40px;
    }

    .ny12-section1 .head .text1 {
        font-size: 56px;
        line-height: 64px;
    }

    .ny12-section1 .head .text2 {
        margin-top: 8px;
        font-size: 16px;
        line-height: 28px;
    }

    .ny12-section1 .itembox {
        margin-top: 96px;
    }

    .ny12-section1 .item {
        margin-bottom: 40px;
    }

    .ny12-section1 .item .info-text1 {
        font-size: 14px;
        line-height: 21px;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 100px;
        margin-bottom: 24px;
    }

    .ny12-section1 .item .info {
        margin-right: 32px;
    }

    .ny12-section1 .item .info .info-text2 {
        font-size: 24px;
        line-height: 32px;
    }

    .ny12-section1 .item .info .desc {
        font-size: 14px;
        line-height: 21px;
        margin-top: 8px;
    }

    .ny12-section1 .item .image {
        width: 720px;
    }

    .ny12-section1 .item .list {
        margin-top: 48px;
    }

    .ny12-section1 .item .list-item:first-child {
        width: 160px;
        margin-right: 40px;
    }

    .ny12-section1 .item .list-item .text1 {
        font-size: 12px;
        line-height: 18px;
    }

    .ny12-section1 .item .list-item .text2 {
        margin-top: 4px;
        font-size: 16px;
        line-height: 24px;
    }

    .ny12-section1 .item .common-btn {
        margin-top: 64px;
    }
}

@media screen and (max-width: 768px) {
    .ny12-section1 {
        padding-bottom: 12.5vw;
    }

    .ny12-section1 > .mxw-box {
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .ny12-section1 .head {
        padding-top: 8.33vw;
        padding-bottom: 5.73vw;
    }

    .ny12-section1 .head .text1 {
        font-size: 5.21vw;
        line-height: 5.21vw;
    }

    .ny12-section1 .head .text2 {
        margin-top: 1.56vw;
        font-size: 1.82vw;
        line-height: 2.21vw;
    }

    .ny12-section1 .itembox {
        margin-top: 5.86vw;
    }

    .ny12-section1 .item {
        margin-bottom: 5.21vw;
    }

    .ny12-section1 .item .info-text1 {
        font-size: 1.56vw;
        line-height: 2.6vw;
        padding-left: 1.3vw;
        padding-right: 1.3vw;
        border-radius: 13.02vw;
        margin-bottom: 1.56vw;
    }

    .ny12-section1 .item .info {
        margin-right: 1.82vw;
    }

    .ny12-section1 .item .info .info-text2 {
        font-size: 2.08vw;
        line-height: 3.13vw;
    }

    .ny12-section1 .item .info .desc {
        font-size: 1.69vw;
        line-height: 2.6vw;
    }

    .ny12-section1 .item .image {
        width: 360px;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border-radius: 1.56vw;
    }

    .ny12-section1 .item .image img {
        height: 100%;
        max-width: inherit;
        width: auto;
    }

    .ny12-section1 .item .list {
        margin-top: 5.21vw;
    }

    .ny12-section1 .item .list-item {
        margin-bottom: 2.08vw;
        justify-content: space-between;
    }

    .ny12-section1 .item .list-item:first-child {
        width: 48%;
    }

    .ny12-section1 .item .list-item:last-child {
        width: 48%;
    }

    .ny12-section1 .item .list-item .text1 {
        font-size: 1.56vw;
        line-height: 2.34vw;
    }

    .ny12-section1 .item .list-item .text2 {
        margin-top: 0.52vw;
        font-size: 1.82vw;
        line-height: 3.13vw;
    }

    .ny12-section1 .item .common-btn {
        margin-top: 3.91vw;
    }
}

@media screen and (max-width: 500px) {
    .ny12-section1 {
        padding-bottom: 22.39vw;
    }

    .ny12-section1 > .mxw-box {
        padding-left: 4.07vw;
        padding-right: 4.07vw;
    }

    .ny12-section1 .head {
        padding-top: 12.21vw;
        padding-bottom: 9.16vw;
    }

    .ny12-section1 .head .text1 {
        font-size: 8.14vw;
        line-height: 10.18vw;
    }

    .ny12-section1 .head .text2 {
        margin-top: 1.27vw;
        font-size: 3.56vw;
        line-height: 4.33vw;
    }

    .ny12-section1 .itembox {
        margin-top: 12.72vw;
    }

    .ny12-section1 .item {
        flex-wrap: wrap;
        margin-bottom: 10.18vw;
    }

    .ny12-section1 .item .info-text1 {
        font-size: 3.05vw;
        line-height: 5.09vw;
        padding-left: 2.54vw;
        padding-right: 2.54vw;
        border-radius: 25.45vw;
        top: 2.04vw;
        left: 2.04vw;
    }

    .ny12-section1 .item .info {
        width: 100%;
        margin-right: 0;
        order: 2;
    }

    .ny12-section1 .item .info .info-text2 {
        font-size: 4.07vw;
        line-height: 6.11vw;
    }

    .ny12-section1 .item .info .desc {
        margin-top: 2.04vw;
        line-height: 5.09vw;
        font-size: 3.31vw;
    }

    .ny12-section1 .item .image {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin-bottom: 4.07vw;
        border-radius: 2.04vw;
    }

    .ny12-section1 .item .list {
        margin-top: 10.18vw;
    }

    .ny12-section1 .item .list-item {
        margin-bottom: 4.07vw;
    }

    .ny12-section1 .item .list-item .text1 {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }

    .ny12-section1 .item .list-item .text2 {
        margin-top: 1.02vw;
        font-size: 3.56vw;
        line-height: 6.11vw;
    }

    .ny12-section1 .item .common-btn {
        margin-top: 7.63vw;
    }
}

/* ==================== 内页12 - 板块一 End ==================== */
/* ==================== 内页12 - 板块二 Start ==================== */
.ny12-section2 {
    padding-bottom: 8.33vw;
}

.ny12-section2 > .mxw-box {
    padding-left: 5.56vw;
    padding-right: 5.56vw;
}

.ny12-section2 .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.08vw;
}

.ny12-section2 .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.67vw;
    line-height: 2.64vw;
}

.ny12-section2 .head .text2 {
    display: block;
    color: #0075FF;
    font-family: "Inter-Regular";
    font-size: 0.97vw;
    line-height: 1.25vw;
}

.ny12-section2 .itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny12-section2 .item {
    width: 32.5%;
}

.ny12-section2 .item:hover .text2 {
    color: #000;
}

.ny12-section2 .item:nth-child(3n-1) {
    margin-left: 1.25%;
    margin-right: 1.25%;
}

.ny12-section2 .item:nth-child(3) ~ .item {
    margin-top: 5.56vw;
}

.ny12-section2 .item .image {
    border-radius: 16px;
    margin-bottom: 1.67vw;
    display: block;
    overflow: hidden;
}

.ny12-section2 .item .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.39vw;
    line-height: 2.08vw;
    margin-bottom: 0.56vw;
    display: block;
}

.ny12-section2 .item .text2 {
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.97vw;
    line-height: 1.46vw;
}

@media screen and (min-width: 1440px) {
    .ny12-section2 {
        padding-bottom: 120px;
    }

    .ny12-section2 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny12-section2 .head {
        margin-bottom: 30px;
    }

    .ny12-section2 .head .text1 {
        font-size: 24px;
        line-height: 38px;
    }

    .ny12-section2 .head .text2 {
        font-size: 14px;
        line-height: 18px;
    }

    .ny12-section2 .item:nth-child(3) ~ .item {
        margin-top: 80px;
    }

    .ny12-section2 .item .image {
        margin-bottom: 24px;
    }

    .ny12-section2 .item .text1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 8px;
    }

    .ny12-section2 .item .text2 {
        font-size: 14px;
        line-height: 21px;
    }
}

@media screen and (max-width: 768px) {
    .ny12-section2 {
        padding-bottom: 12.5vw;
    }

    .ny12-section2 > .mxw-box {
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .ny12-section2 .head {
        margin-bottom: 3.13vw;
    }

    .ny12-section2 .head .text1 {
        font-size: 3.13vw;
        line-height: 3.65vw;
    }

    .ny12-section2 .head .text2 {
        font-size: 1.69vw;
        line-height: 2.21vw;
    }

    .ny12-section2 .item:nth-child(3) ~ .item {
        margin-top: 8.33vw;
    }

    .ny12-section2 .item .image {
        margin-bottom: 2.08vw;
        border-radius: 1.56vw;
    }

    .ny12-section2 .item .text1 {
        font-size: 2.08vw;
        line-height: 2.6vw;
        margin-bottom: 1.04vw;
    }

    .ny12-section2 .item .text2 {
        font-size: 1.69vw;
        line-height: 2.6vw;
    }
}

@media screen and (max-width: 500px) {
    .ny12-section2 {
        padding-bottom: 24.43vw;
    }

    .ny12-section2 > .mxw-box {
        padding-left: 4.07vw;
        padding-right: 4.07vw;
    }

    .ny12-section2 .head {
        margin-bottom: 7.63vw;
    }

    .ny12-section2 .head .text1 {
        font-size: 5.09vw;
        line-height: 7.63vw;
    }

    .ny12-section2 .head .text2 {
        font-size: 3.31vw;
        line-height: 4.33vw;
    }

    .ny12-section2 .item {
        width: 100%;
        padding-bottom: 6.11vw;
        padding-top: 6.11vw;
        border-bottom: 1px solid #F6F6F6;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .ny12-section2 .item:first-child {
        padding-top: 0;
    }

    .ny12-section2 .item:nth-child(3n-1) {
        margin-left: 0;
        margin-right: 0;
    }

    .ny12-section2 .item:nth-child(3) ~ .item {
        margin-top: 0;
    }

    .ny12-section2 .item .image {
        width: 24.43vw;
        height: 24.43vw;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        order: 2;
        margin-left: 2.54vw;
        border-radius: 2.04vw;
        flex-shrink: 0;
    }

    .ny12-section2 .item .image img {
        height: 100%;
        width: auto;
        max-width: inherit;
    }

    .ny12-section2 .item .info {
        min-width: 0;
        flex-grow: 1;
    }

    .ny12-section2 .item .text1 {
        font-size: 4.07vw;
        line-height: 1.2;
        margin-bottom: 2.04vw;
    }

    .ny12-section2 .item .text2 {
        font-size: 3.05vw;
        line-height: 5.34vw;
    }
}

/* ==================== 内页12 - 板块二 End ==================== */
/* ==================== 内页12 - 板块一弹窗 Start ==================== */
.ny12-section1-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.694vw);
    -webkit-backdrop-filter: blur(0.694vw);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.ny12-section1-popup.active {
    opacity: 1;
    visibility: visible;
}

.ny12-section1-popup.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ny12-section1-popup .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: center;
    width: 45.556vw;
    padding: 2.222vw 2.778vw;
    border-radius: 16px;
    background-color: #fff;
}

.ny12-section1-popup .body .close {
    width: 2.778vw;
    height: 2.778vw;
    position: absolute;
    top: 0.556vw;
    right: 0.556vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.389vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.ny12-section1-popup .body .head {
    margin-bottom: 1.667vw;
}

.ny12-section1-popup .body .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.778vw;
}

.ny12-section1-popup .body .head .text2 {
    margin-top: 0.556vw;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
}

.ny12-section1-popup .body form {
    width: 100%;
}

.ny12-section1-popup .body form .form-itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny12-section1-popup .body form .form-item {
    width: 50%;
    border-bottom: 1px solid #F6F6F6;
}

.ny12-section1-popup .body form .form-item .layui-edge {
    width: 0.694vw;
    height: 0.694vw;
    border: 0;
    border-top: 0.139vw solid #999;
    border-right: 0.139vw solid #999;
    margin-right: 0.486vw;
    transform: rotate(135deg);
    margin-top: -0.417vw;
}

.ny12-section1-popup .body form .form-item .layui-input {
    height: 3.889vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.ny12-section1-popup .body form .form-item .layui-input::-webkit-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-input::-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-input:-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-input:-ms-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-form-selected .layui-edge {
    transform: rotate(-45deg);
    margin-top: 0;
}

.ny12-section1-popup .body form .form-item .layui-form-select .layui-input {
    height: 3.889vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.ny12-section1-popup .body form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-form-select .layui-input::-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-form-select .layui-input:-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form .form-item .layui-form-selected dl {
    top: 100%;
    padding-top: 0;
    padding-bottom: 0.556vw;
    border: 0;
    text-align: left;
    border-bottom-left-radius: 0.556vw;
    border-bottom-right-radius: 0.556vw;
    border: 1px solid #F6F6F6;
    background: #FFF;
    box-shadow: 0vw 0.417vw 0.833vw 0vw rgba(0, 0, 0, 0.1);
}

.ny12-section1-popup .body form .form-item .layui-form-select dl dd {
    padding: 0 0.833vw;
    height: 2.778vw;
    line-height: 2.778vw;
    color: #999;
    font-size: 0.833vw;
    font-family: "Inter-Regular";
    background-color: #fff;
}

.ny12-section1-popup .body form .form-item .layui-form-select dl dd.layui-this {
    background-color: #F6F6F6;
    color: #000;
}

.ny12-section1-popup .body form textarea {
    height: 9.444vw;
    width: 100%;
    padding: 1.111vw;
    border-radius: 16px;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
    resize: none;
    border: 0;
    outline: none;
    background-color: #F6F6F6;
    margin-top: 1.667vw;
}

.ny12-section1-popup .body form textarea::-webkit-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form textarea::-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form textarea:-moz-placeholder {
    color: #999;
}

.ny12-section1-popup .body form textarea:-ms-input-placeholder {
    color: #999;
}

.ny12-section1-popup .body form button {
    margin-top: 2.778vw;
}

@media screen and (min-width: 1440px) {
    .ny12-section1-popup {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .ny12-section1-popup .body {
        width: 656px;
        padding: 32px 40px;
    }

    .ny12-section1-popup .body .close {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
        font-size: 20px;
    }

    .ny12-section1-popup .body .head {
        margin-bottom: 24px;
    }

    .ny12-section1-popup .body .head .text1 {
        font-size: 32px;
        line-height: 40px;
    }

    .ny12-section1-popup .body .head .text2 {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }

    .ny12-section1-popup .body form .form-item .layui-edge {
        width: 10px;
        height: 10px;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        margin-right: 7px;
        margin-top: -6px;
    }

    .ny12-section1-popup .body form .form-item .layui-input {
        height: 56px;
        font-size: 13px;
    }

    .ny12-section1-popup .body form .form-item .layui-form-select .layui-input {
        height: 56px;
        font-size: 13px;
    }

    .ny12-section1-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    }

    .ny12-section1-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 12px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }

    .ny12-section1-popup .body form textarea {
        height: 136px;
        padding: 16px;
        font-size: 13px;
        margin-top: 24px;
    }

    .ny12-section1-popup .body form button {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .ny12-section1-popup {
        backdrop-filter: blur(1.302vw);
        -webkit-backdrop-filter: blur(1.302vw);
    }

    .ny12-section1-popup .body {
        width: 85.417vw;
        padding: 5.208vw;
        border-radius: 1.56vw;
    }

    .ny12-section1-popup .body .close {
        width: 5.208vw;
        height: 5.208vw;
        top: 1.042vw;
        right: 1.042vw;
        font-size: 2.604vw;
    }

    .ny12-section1-popup .body .head {
        margin-bottom: 3.125vw;
    }

    .ny12-section1-popup .body .head .text1 {
        font-size: 3.125vw;
        line-height: 3.646vw;
    }

    .ny12-section1-popup .body .head .text2 {
        margin-top: 1.172vw;
        font-size: 1.693vw;
        line-height: 2.604vw;
    }

    .ny12-section1-popup .body form .form-item .layui-edge {
        width: 1.302vw;
        height: 1.302vw;
        border-top: 0.26vw solid #999;
        border-right: 0.26vw solid #999;
        margin-right: 0.911vw;
        margin-top: -0.781vw;
    }

    .ny12-section1-popup .body form .form-item .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .ny12-section1-popup .body form .form-item .layui-form-select .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .ny12-section1-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 1.042vw;
        border-bottom-left-radius: 1.042vw;
        border-bottom-right-radius: 1.042vw;
        box-shadow: 0vw 0.781vw 1.563vw 0vw rgba(0, 0, 0, 0.1);
    }

    .ny12-section1-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 1.563vw;
        height: 5.208vw;
        line-height: 5.208vw;
        font-size: 1.563vw;
    }

    .ny12-section1-popup .body form textarea {
        height: 20.833vw;
        padding: 2.083vw;
        font-size: 1.693vw;
        margin-top: 5.208vw;
        border-radius: 1.56vw;
    }

    .ny12-section1-popup .body form button {
        margin-top: 5.208vw;
    }
}

@media screen and (max-width: 500px) {
    .ny12-section1-popup {
        backdrop-filter: blur(2.545vw);
        -webkit-backdrop-filter: blur(2.545vw);
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .ny12-section1-popup .body {
        width: 100%;
        padding: 10.178vw 8.142vw;
        border-radius: 2.04vw;
        max-height: 90%;
        height: 100%;
        overflow: auto;
        align-items: flex-start;
    }

    .ny12-section1-popup .body .close {
        width: 10.178vw;
        height: 10.178vw;
        top: 2.036vw;
        right: 2.036vw;
        font-size: 5.089vw;
    }

    .ny12-section1-popup .body .head {
        margin-bottom: 6.107vw;
    }

    .ny12-section1-popup .body .head .text1 {
        font-size: 6.107vw;
        line-height: 7.125vw;
    }

    .ny12-section1-popup .body .head .text2 {
        margin-top: 2.29vw;
        font-size: 3.308vw;
        line-height: 5.089vw;
    }

    .ny12-section1-popup .body form .form-item {
        width: 100%;
    }

    .ny12-section1-popup .body form .form-item .layui-edge {
        width: 2.545vw;
        height: 2.545vw;
        border-top: 0.509vw solid #999;
        border-right: 0.509vw solid #999;
        margin-right: 1.781vw;
        margin-top: -1.527vw;
    }

    .ny12-section1-popup .body form .form-item .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .ny12-section1-popup .body form .form-item .layui-form-select .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .ny12-section1-popup .body form .form-item .layui-form-selected dl {
        padding-bottom: 2.036vw;
        border-bottom-left-radius: 2.036vw;
        border-bottom-right-radius: 2.036vw;
        box-shadow: 0vw 1.527vw 3.053vw 0vw rgba(0, 0, 0, 0.1);
    }

    .ny12-section1-popup .body form .form-item .layui-form-select dl dd {
        padding: 0 3.053vw;
        height: 10.178vw;
        line-height: 10.178vw;
        font-size: 3.053vw;
    }

    .ny12-section1-popup .body form textarea {
        height: 44.784vw;
        padding: 4.071vw;
        font-size: 3.308vw;
        margin-top: 8.906vw;
        border-radius: 2.04vw;
    }

    .ny12-section1-popup .body form button {
        margin-top: 10.178vw;
    }
}

/* ==================== 内页12 - 板块一弹窗 End ==================== */
/* ==================== ny15 - 板块一 Start ==================== */
.ny15-section1 {
    text-align: center;
    padding-bottom: 13.889vw;
}

.ny15-section1 > .mxw-box {
    padding-left: 5.556vw;
    padding-right: 5.556vw;
}

.ny15-section1 .ny2-tabs {
    margin-bottom: 0;
}

.ny15-section1 .title {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 3.889vw;
    line-height: 4.444vw;
    padding-top: 5.556vw;
    padding-bottom: 2.778vw;
}

.ny15-section1 .itembox {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    margin-top: 4.444vw;
}

.ny15-section1 .item {
    width: 32%;
}

.ny15-section1 .item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
}

.ny15-section1 .item:nth-child(3n) ~ .item {
    margin-top: 5.556vw;
}

.ny15-section1 .item .image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.667vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 16.667vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ny15-section1 .item .image img {
    height: 100%;
    width: auto;
    max-width: inherit;
}

.ny15-section1 .item .info {
    width: 100%;
}

.ny15-section1 .item .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 1.389vw;
    line-height: 2.083vw;
    display: block;
    overflow: hidden;
    word-break: break-word !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ny15-section1 .item .text2 {
    color: var(--text-default, #666);
    font-size: 1.111vw;
    font-family: "Inter-Regular";
    line-height: 1.667vw;
    margin-top: 0.556vw;
    display: block;
    overflow: hidden;
    word-break: break-word !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: calc(1.667vw * 2);
}

@media screen and (min-width: 1440px) {
    .ny15-section1 {
        padding-bottom: 200px;
    }

    .ny15-section1 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny15-section1 .title {
        font-size: 56px;
        line-height: 64px;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .ny15-section1 .itembox {
        margin-top: 64px;
    }

    .ny15-section1 .item:nth-child(3n) ~ .item {
        margin-top: 80px;
    }

    .ny15-section1 .item .image {
        margin-bottom: 24px;
        height: 0;
        padding-bottom: 67%;
    }

    .ny15-section1 .item .text1 {
        font-size: 20px;
        line-height: 30px;
    }

    .ny15-section1 .item .text2 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 8px;
        height: calc(24px * 2);
    }
}

@media screen and (max-width: 768px) {
    .ny15-section1 {
        padding-bottom: 13.021vw;
    }

    .ny15-section1 > .mxw-box {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny15-section1 .title {
        font-size: 5.208vw;
        line-height: 5.208vw;
        padding-top: 8.333vw;
        padding-bottom: 3.646vw;
    }

    .ny15-section1 .itembox {
        margin-top: 6.25vw;
    }

    .ny15-section1 .item:nth-child(3n) ~ .item {
        margin-top: 8.333vw;
    }

    .ny15-section1 .item .image {
        margin-bottom: 2.083vw;
        border-radius: 1.56vw;
    }

    .ny15-section1 .item .text1 {
        font-size: 2.083vw;
        line-height: 2.474vw;
    }

    .ny15-section1 .item .text2 {
        font-size: 1.693vw;
        line-height: 2.474vw;
        margin-top: 1.563vw;
        height: calc(2.474vw * 2);
    }
}

@media screen and (max-width: 500px) {
    .ny15-section1 {
        padding-bottom: 25.445vw;
    }

    .ny15-section1 > .mxw-box {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny15-section1 .title {
        font-size: 8.142vw;
        line-height: 10.178vw;
        padding-top: 10.178vw;
        padding-bottom: 11.196vw;
    }

    .ny15-section1 .itembox {
        margin-top: 16.285vw;
    }

    .ny15-section1 .item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        border-bottom: 1px solid #F6F6F6;
        padding-bottom: 4.071vw;
        padding-top: 4.071vw;
        margin: 0 !important;
    }

    .ny15-section1 .item:first-child {
        padding-top: 0;
    }

    .ny15-section1 .item:nth-child(3n) ~ .item {
        margin-top: 0;
    }

    .ny15-section1 .item .image {
        order: 2;
        width: 24.427vw;
        height: 24.427vw;
        margin-bottom: 0;
        margin-left: 2.799vw;
        border-radius: 2.04vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ny15-section1 .item .image img {
        width: auto;
        height: 100%;
        max-width: inherit;
    }

    .ny15-section1 .item .info {
        min-width: 0;
        flex-grow: 1;
        width: auto;
    }

    .ny15-section1 .item .text1 {
        font-size: 4.071vw;
        line-height: 4.835vw;
    }

    .ny15-section1 .item .text2 {
        font-size: 3.053vw;
        line-height: 4.835vw;
        margin-top: 2.036vw;
        height: calc(4.835vw * 2);
    }
}

/* ==================== ny15 - 板块一 End ==================== */
.ny18-main {
    background-color: #000;
}

/* ==================== ny18 - 表单弹窗 Start ==================== */
.ny18-popup2 {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.994px);
    -webkit-backdrop-filter: blur(9.994px);
    top: 0;
    left: 0;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.ny18-popup2.active {
    opacity: 1;
    visibility: visible;
}

.ny18-popup2.active .body {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ny18-popup2 .body {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
    transform: translateY(100%);
    display: flex;
    align-items: center;
    width: 45.556vw;
    padding: 2.222vw 2.778vw;
    padding-bottom: 3.333vw;
    border-radius: 16px;
    background-color: #fff;
}

.ny18-popup2 .body .close {
    width: 2.778vw;
    height: 2.778vw;
    position: absolute;
    top: 0.556vw;
    right: 0.556vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.389vw;
    border-radius: 100%;
    background-color: #F6F6F6;
    cursor: pointer;
    z-index: 3;
}

.ny18-popup2 .body .head {
    margin-bottom: 1.667vw;
}

.ny18-popup2 .body .head .text1 {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.778vw;
}

.ny18-popup2 .body .head .text2 {
    margin-top: 0.556vw;
    color: #000;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.667vw;
}

.ny18-popup2 .body form {
    width: 100%;
}

.ny18-popup2 .body form .form-itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny18-popup2 .body form .form-item {
    width: 50%;
    border-bottom: 1px solid #F6F6F6;
}

.ny18-popup2 .body form .form-item .layui-edge {
    width: 0.694vw;
    height: 0.694vw;
    border: 0;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    margin-right: 0.486vw;
    transform: rotate(135deg);
    margin-top: -0.417vw;
}

.ny18-popup2 .body form .form-item .layui-input {
    height: 3.889vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.ny18-popup2 .body form .form-item .layui-input::-webkit-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-input::-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-input:-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-input:-ms-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-form-selected .layui-edge {
    transform: rotate(-45deg);
    margin-top: 0;
}

.ny18-popup2 .body form .form-item .layui-form-select .layui-input {
    height: 3.889vw;
    border: 0;
    padding: 0;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
}

.ny18-popup2 .body form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-form-select .layui-input::-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-form-select .layui-input:-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form .form-item .layui-form-selected dl {
    top: 100%;
    padding-top: 0;
    padding-bottom: 0.556vw;
    border: 0;
    text-align: left;
    border-bottom-left-radius: 0.556vw;
    border-bottom-right-radius: 0.556vw;
    border: 1px solid #F6F6F6;
    background: #FFF;
    box-shadow: 0vw 0.417vw 0.833vw 0vw rgba(0, 0, 0, 0.1);
}

.ny18-popup2 .body form .form-item .layui-form-select dl dd {
    padding: 0 0.833vw;
    height: 2.778vw;
    line-height: 2.778vw;
    color: #999;
    font-size: 0.833vw;
    font-family: "Inter-Regular";
    background-color: #fff;
}

.ny18-popup2 .body form .form-item .layui-form-select dl dd.layui-this {
    background-color: #F6F6F6;
    color: #000;
}

.ny18-popup2 .body form textarea {
    height: 11.111vw;
    width: 100%;
    padding: 1.111vw;
    border-radius: 16px;
    font-size: 0.903vw;
    font-family: "Inter-Regular";
    color: #000;
    resize: none;
    border: 0;
    outline: none;
    background-color: #F6F6F6;
    margin-top: 2.222vw;
}

.ny18-popup2 .body form textarea::-webkit-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form textarea::-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form textarea:-moz-placeholder {
    color: #999;
}

.ny18-popup2 .body form textarea:-ms-input-placeholder {
    color: #999;
}

.ny18-popup2 .body form button {
    margin-top: 2.778vw;
}

@media screen and (min-width: 1440px) {
    .ny18-popup2 .body {
        width: 656px;
        padding: 32px 40px;
        padding-bottom: 48px;
    }

    .ny18-popup2 .body .close {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
        font-size: 20px;
    }

    .ny18-popup2 .body .head {
        margin-bottom: 24px;
    }

    .ny18-popup2 .body .head .text1 {
        font-size: 32px;
        line-height: 40px;
    }

    .ny18-popup2 .body .head .text2 {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }

    .ny18-popup2 .body form .form-item .layui-edge {
        width: 10px;
        height: 10px;
        margin-right: 7px;
        margin-top: -6px;
    }

    .ny18-popup2 .body form .form-item .layui-input {
        height: 56px;
        font-size: 13px;
    }

    .ny18-popup2 .body form .form-item .layui-form-select .layui-input {
        height: 56px;
        font-size: 13px;
    }

    .ny18-popup2 .body form .form-item .layui-form-selected dl {
        padding-bottom: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    }

    .ny18-popup2 .body form .form-item .layui-form-select dl dd {
        padding: 0 12px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }

    .ny18-popup2 .body form textarea {
        height: 160px;
        padding: 16px;
        font-size: 13px;
        margin-top: 32px;
    }

    .ny18-popup2 .body form button {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .ny18-popup2 .body {
        width: 85.417vw;
        padding: 5.208vw;
        padding-bottom: 6.25vw;
    }

    .ny18-popup2 .body .close {
        width: 5.208vw;
        height: 5.208vw;
        top: 1.042vw;
        right: 1.042vw;
        font-size: 2.604vw;
    }

    .ny18-popup2 .body .head {
        margin-bottom: 3.125vw;
    }

    .ny18-popup2 .body .head .text1 {
        font-size: 3.125vw;
        line-height: 3.646vw;
    }

    .ny18-popup2 .body .head .text2 {
        margin-top: 1.042vw;
        font-size: 1.693vw;
        line-height: 2.604vw;
    }

    .ny18-popup2 .body form .form-item .layui-edge {
        width: 1.302vw;
        height: 1.302vw;
        margin-right: 0.911vw;
        margin-top: -0.781vw;
    }

    .ny18-popup2 .body form .form-item .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .ny18-popup2 .body form .form-item .layui-form-select .layui-input {
        height: 7.292vw;
        font-size: 1.693vw;
    }

    .ny18-popup2 .body form .form-item .layui-form-selected dl {
        padding-bottom: 1.042vw;
        border-bottom-left-radius: 1.042vw;
        border-bottom-right-radius: 1.042vw;
        box-shadow: 0vw 0.781vw 1.563vw 0vw rgba(0, 0, 0, 0.1);
    }

    .ny18-popup2 .body form .form-item .layui-form-select dl dd {
        padding: 0 1.563vw;
        height: 5.208vw;
        line-height: 5.208vw;
        font-size: 1.563vw;
    }

    .ny18-popup2 .body form textarea {
        height: 20.833vw;
        padding: 2.083vw;
        font-size: 1.693vw;
        margin-top: 4.167vw;
        border-radius: 1.56vw;
    }

    .ny18-popup2 .body form button {
        margin-top: 5.208vw;
    }
}

@media screen and (max-width: 500px) {
    .ny18-popup2 {
        align-items: flex-end;
    }

    .ny18-popup2 .body {
        width: 100%;
        padding: 10.178vw 8.142vw;
        max-height: 90%;
        height: 100%;
        overflow: auto;
        align-items: flex-start;
    }

    .ny18-popup2 .body .close {
        width: 10.178vw;
        height: 10.178vw;
        top: 2.036vw;
        right: 2.036vw;
        font-size: 5.089vw;
    }

    .ny18-popup2 .body .head {
        margin-bottom: 7.634vw;
    }

    .ny18-popup2 .body .head .text1 {
        font-size: 6.107vw;
        line-height: 7.125vw;
    }

    .ny18-popup2 .body .head .text2 {
        margin-top: 1.018vw;
        font-size: 3.308vw;
        line-height: 5.089vw;
    }

    .ny18-popup2 .body form .form-item {
        width: 100%;
    }

    .ny18-popup2 .body form .form-item .layui-edge {
        width: 2.545vw;
        height: 2.545vw;
        margin-right: 1.781vw;
        margin-top: -1.527vw;
    }

    .ny18-popup2 .body form .form-item .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .ny18-popup2 .body form .form-item .layui-form-select .layui-input {
        height: 14.249vw;
        font-size: 3.308vw;
    }

    .ny18-popup2 .body form .form-item .layui-form-selected dl {
        padding-bottom: 2.036vw;
        border-bottom-left-radius: 2.036vw;
        border-bottom-right-radius: 2.036vw;
        box-shadow: 0vw 1.527vw 3.053vw 0vw rgba(0, 0, 0, 0.1);
    }

    .ny18-popup2 .body form .form-item .layui-form-select dl dd {
        padding: 0 3.053vw;
        height: 10.178vw;
        line-height: 10.178vw;
        font-size: 3.053vw;
    }

    .ny18-popup2 .body form textarea {
        height: 48.346vw;
        padding: 4.071vw;
        font-size: 3.308vw;
        margin-top: 8.142vw;
    }

    .ny18-popup2 .body form button {
        margin-top: 10.178vw;
    }
}

/* ==================== ny18 - 表单弹窗 End ==================== */
/* ==================== ny18 - 板块一 Start ==================== */
.ny18-section1 {
    position: relative;
}

.ny18-section1 .image {
    width: 100%;
    height: 100%;
    max-height: 83vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.ny18-section1 .image img {
    width: 100%;
}

.ny18-section1 .info {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}

.ny18-section1 .info .text1 {
    color: #fff;
    font-family: "Inter-SemiBold";
    text-align: center;
    font-size: 3.889vw;
    line-height: 4.444vw;
}

.ny18-section1 .info .text2 {
    margin-top: 0.417vw;
    color: #FFF;
    font-family: "Inter-Regular";
    font-size: 1.111vw;
    line-height: 1.944vw;
}

.ny18-section1 .info .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.472vw;
}

.ny18-section1 .info .btn-group .common-btn:first-child {
    margin-right: 1.111vw;
}

@media screen and (min-width: 1440px) {
    .ny18-section1 .info .text1 {
        font-size: 56px;
        line-height: 64px;
    }

    .ny18-section1 .info .text2 {
        margin-top: 6px;
        font-size: 16px;
        line-height: 28px;
    }

    .ny18-section1 .info .btn-group {
        margin-top: 50px;
    }

    .ny18-section1 .info .btn-group .common-btn:first-child {
        margin-right: 16px;
    }
}

@media screen and (max-width: 768px) {
    .ny18-section1 .info .text1 {
        font-size: 5.208vw;
        line-height: 5.208vw;
    }

    .ny18-section1 .info .text2 {
        margin-top: 0.781vw;
        font-size: 1.823vw;
        line-height: 2.344vw;
    }

    .ny18-section1 .info .btn-group {
        margin-top: 5.208vw;
    }

    .ny18-section1 .info .btn-group .common-btn:first-child {
        margin-right: 2.083vw;
    }
}

@media screen and (max-width: 500px) {
    .ny18-section1 .info {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny18-section1 .info .text1 {
        font-size: 8.142vw;
        line-height: 10.178vw;
    }

    .ny18-section1 .info .text2 {
        margin-top: 6.107vw;
        font-size: 3.562vw;
        line-height: 4.58vw;
    }

    .ny18-section1 .info .btn-group {
        margin-top: 12.723vw;
    }

    .ny18-section1 .info .btn-group .common-btn:first-child {
        margin-right: 4.071vw;
    }
}

/* ==================== ny18 - 板块一 End ==================== */
/* ==================== ny18 - 板块二 Start ==================== */
.ny18-section2 {
    padding-top: 9.722vw;
    padding-bottom: 5.833vw;
    overflow: hidden;
}

.ny18-section2 > .mxw-box {
    min-height: 40.972vw;
}

.ny18-section2 .ny18-section2-swiper {
    width: 59.028vw;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.ny18-section2 .ny18-section2-swiper .swiper-slide {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    cursor: pointer;
}

.ny18-section2 .ny18-section2-swiper .swiper-slide.swiper-slide-active {
    z-index: 4;
    opacity: 1;
    pointer-events: inherit;
}

.ny18-section2 .ny18-section2-swiper .swiper-slide.swiper-slide-active .image {
    opacity: 1;
}

.ny18-section2 .ny18-section2-swiper .swiper-slide.swiper-slide-active .text1 {
    opacity: 1;
    visibility: visible;
}

.ny18-section2 .ny18-section2-swiper .image {
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.3;
    transition: opacity 0.4s;
    position: relative;
}

.ny18-section2 .ny18-section2-swiper .image:after {
    content: "\e615";
    display: block;
    font-size: 6.667vw;
    font-family: iconfont;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
}

.ny18-section2 .ny18-section2-swiper .image img {
    width: 100%;
}

.ny18-section2 .ny18-section2-swiper .text1 {
    color: #FFF;
    text-align: center;
    font-size: 2.778vw;
    font-family: "Inter-SemiBold";
    line-height: 1.2;
    margin-top: 0.694vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, font-size 0.4s;
}

.ny18-section2 .swiper-btn {
    width: 3.889vw;
    height: 3.889vw;
    opacity: 0.4;
    top: 40%;
}

.ny18-section2 .swiper-btn:hover {
    opacity: 1;
}

.ny18-section2 .swiper-btn:before {
    font-size: 1.181vw;
    color: #000;
}

.ny18-section2 .swiper-btn-prev {
    left: -13.194vw;
}

.ny18-section2 .swiper-btn-next {
    right: -13.194vw;
}

.ny18-section2 .swiper-pagination2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin: 0;
    margin-top: 2.778vw;
}

.ny18-section2 .swiper-pagination2 .swiper-pagination-bullet {
    transition: width 0.4s, height 0.4s;
    width: 0.278vw;
    height: 0.278vw;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.8;
    margin-left: 0.347vw;
    margin-right: 0.347vw;
}

.ny18-section2 .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 0.556vw;
    height: 0.556vw;
}

@media screen and (min-width: 1440px) {
    .ny18-section2 {
        padding-top: 140px;
        padding-bottom: 84px;
    }

    .ny18-section2 > .mxw-box {
        min-height: 590px;
    }

    .ny18-section2 .ny18-section2-swiper {
        width: 850px;
    }

    .ny18-section2 .ny18-section2-swiper .image:after {
        font-size: 96px;
    }

    .ny18-section2 .ny18-section2-swiper .text1 {
        font-size: 40px;
        margin-top: 10px;
    }

    .ny18-section2 .swiper-btn {
        width: 56px;
        height: 56px;
    }

    .ny18-section2 .swiper-btn:before {
        font-size: 17px;
    }

    .ny18-section2 .swiper-btn-prev {
        left: -190px;
    }

    .ny18-section2 .swiper-btn-next {
        right: -190px;
    }

    .ny18-section2 .swiper-pagination2 {
        margin-top: 40px;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 8px;
        height: 8px;
    }
}

@media screen and (max-width: 768px) {
    .ny18-section2 {
        padding-top: 10.417vw;
        padding-bottom: 12.5vw;
    }

    .ny18-section2 > .mxw-box {
        min-height: 52.083vw;
    }

    .ny18-section2 .ny18-section2-swiper {
        width: 62.5vw;
    }

    .ny18-section2 .ny18-section2-swiper .image {
        border-radius: 1.56vw;
    }

    .ny18-section2 .ny18-section2-swiper .image:after {
        font-size: 12.5vw;
    }

    .ny18-section2 .ny18-section2-swiper .text1 {
        font-size: 3.125vw;
        line-height: 4.167vw;
        margin-top: 3.125vw;
    }

    .ny18-section2 .swiper-btn {
        width: 7.292vw;
        height: 7.292vw;
    }

    .ny18-section2 .swiper-btn:before {
        font-size: 2.214vw;
    }

    .ny18-section2 .swiper-btn-prev {
        left: -14.323vw;
    }

    .ny18-section2 .swiper-btn-next {
        right: -14.323vw;
    }

    .ny18-section2 .swiper-pagination2 {
        margin-top: 4.167vw;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet {
        width: 0.521vw;
        height: 0.521vw;
        margin-left: 0.651vw;
        margin-right: 0.651vw;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 1.042vw;
        height: 1.042vw;
    }
}

@media screen and (max-width: 500px) {
    .ny18-section2 {
        padding-top: 12.723vw;
        padding-bottom: 24.427vw;
    }

    .ny18-section2 > .mxw-box {
        min-height: inherit;
        padding-right: 4.071vw;
        padding-left: 4.071vw;
    }

    .ny18-section2 .ny18-section2-swiper {
        width: 100%;
    }

    .ny18-section2 .ny18-section2-swiper .swiper-wrapper {
        width: 100%;
        display: block;
        transform: translate(0) !important;
    }

    .ny18-section2 .ny18-section2-swiper .swiper-slide {
        width: 100%;
        transform: translate(0) !important;
        margin-bottom: 12.723vw;
        display: none;
        pointer-events: inherit;
    }

    .ny18-section2 .ny18-section2-swiper .swiper-slide.primary {
        display: block;
    }

    .ny18-section2 .ny18-section2-swiper .swiper-slide.primary-last {
        margin-bottom: 0;
    }

    .ny18-section2 .ny18-section2-swiper .swiper-slide:last-child {
        margin-bottom: 0;
    }

    .ny18-section2 .ny18-section2-swiper .image {
        opacity: 0.5 !important;
        border-radius: 2.04vw;
    }

    .ny18-section2 .ny18-section2-swiper .image:hover {
        opacity: 1 !important;
    }

    .ny18-section2 .ny18-section2-swiper .image:after {
        font-size: 16.285vw;
    }

    .ny18-section2 .ny18-section2-swiper .text1 {
        font-size: 5.089vw;
        line-height: 7.634vw;
        margin-top: 5.089vw;
        opacity: 1;
        visibility: visible;
    }

    .ny18-section2 .swiper-btn {
        width: 14.249vw;
        height: 14.249vw;
    }

    .ny18-section2 .swiper-btn:before {
        font-size: 4.326vw;
    }

    .ny18-section2 .swiper-btn-prev {
        left: -27.99vw;
    }

    .ny18-section2 .swiper-btn-next {
        right: -27.99vw;
    }

    .ny18-section2 .swiper-pagination2 {
        display: none;
        margin-top: 8.142vw;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet {
        width: 1.018vw;
        height: 1.018vw;
        margin-left: 1.272vw;
        margin-right: 1.272vw;
    }

    .ny18-section2 .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 2.036vw;
        height: 2.036vw;
    }
}

/* ==================== ny18 - 板块二 End ==================== */
/* ==================== ny18 - 板块三 Start ==================== */
.ny18-section3 {
    padding-bottom: 5.556vw;
}

.ny18-section3 > .mxw-box {
    padding-left: 5.556vw;
    padding-right: 5.556vw;
}

.ny18-section3 .title {
    color: #FFF;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.639vw;
    margin-bottom: 2.083vw;
}

.ny18-section3 .card {
    margin-bottom: 4.861vw;
}

.ny18-section3 .card:last-child {
    margin-bottom: 0;
}

.ny18-section3 .card .image {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.ny18-section3 .card .image img {
    width: 100%;
}

.ny18-section3 .itembox {
    display: flex;
    flex-wrap: wrap;
}

.ny18-section3 .card1 .item {
    width: 32.5%;
    margin-bottom: 4.444vw;
}

.ny18-section3 .card1 .item:nth-child(3n-1) {
    margin-left: 1.25%;
    margin-right: 1.25%;
}

.ny18-section3 .card2 .item {
    width: 23.5%;
    margin-bottom: 4.444vw;
    margin-right: 2%;
}

.ny18-section3 .card2 .item:nth-child(4n) {
    margin-right: 0;
}

.ny18-section3 .info {
    margin-top: 1.667vw;
    text-align: center;
}

.ny18-section3 .info .text1 {
    color: #FFF;
    font-size: 1.389vw;
    font-family: "Inter-SemiBold";
    line-height: 2.083vw;
}

.ny18-section3 .info .text2 {
    margin-top: 0.556vw;
    color: #FFF;
    font-family: "Inter-Regular";
    font-size: 0.903vw;
    line-height: 1.667vw;
}

.ny18-section3 .common-btn {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

@media screen and (min-width: 1440px) {
    .ny18-section3 {
        padding-bottom: 80px;
    }

    .ny18-section3 > .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny18-section3 .title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .ny18-section3 .card {
        margin-bottom: 70px;
    }

    .ny18-section3 .card1 .item {
        margin-bottom: 64px;
    }

    .ny18-section3 .card2 .item {
        margin-bottom: 64px;
    }

    .ny18-section3 .info {
        margin-top: 24px;
    }

    .ny18-section3 .info .text1 {
        font-size: 20px;
        line-height: 30px;
    }

    .ny18-section3 .info .text2 {
        margin-top: 8px;
        font-size: 13px;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ny18-section3 {
        padding-bottom: 10.417vw;
    }

    .ny18-section3 > .mxw-box {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny18-section3 .title {
        font-size: 3.125vw;
        line-height: 3.646vw;
        margin-bottom: 3.125vw;
    }

    .ny18-section3 .card {
        margin-bottom: 9.115vw;
    }

    .ny18-section3 .card .image {
        border-radius: 1.56vw;
    }

    .ny18-section3 .card1 .item {
        margin-bottom: 5.729vw;
    }

    .ny18-section3 .card2 .item {
        margin-bottom: 6.25vw;
    }

    .ny18-section3 .info {
        margin-top: 3.125vw;
    }

    .ny18-section3 .info .text1 {
        font-size: 2.083vw;
        line-height: 3.125vw;
    }

    .ny18-section3 .info .text2 {
        margin-top: 1.042vw;
        font-size: 1.563vw;
        line-height: 2.344vw;
    }
}

@media screen and (max-width: 500px) {
    .ny18-section3 {
        padding-bottom: 20.356vw;
    }

    .ny18-section3 > .mxw-box {
        padding-left: 4.071vw;
        padding-right: 4.071vw;
    }

    .ny18-section3 .title {
        font-size: 6.107vw;
        line-height: 8.142vw;
        margin-bottom: 5.089vw;
    }

    .ny18-section3 .card {
        margin-bottom: 20.356vw;
    }

    .ny18-section3 .card .image {
        height: 44.529vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2.04vw;
    }

    .ny18-section3 .card .image img {
        width: auto;
        max-width: inherit;
        height: 100%;
    }

    .ny18-section3 .card1 .item {
        width: 47%;
        margin: 0 !important;
        margin-bottom: 10.178vw !important;
    }

    .ny18-section3 .card1 .item:nth-child(2n-1) {
        margin-right: 4% !important;
    }

    .ny18-section3 .card2 .item {
        width: 47%;
        margin: 0 !important;
        margin-bottom: 10.178vw !important;
    }

    .ny18-section3 .card2 .item:nth-child(2n-1) {
        margin-right: 4% !important;
    }

    .ny18-section3 .info {
        margin-top: 6.107vw;
    }

    .ny18-section3 .info .text1 {
        font-size: 4.071vw;
        line-height: 6.107vw;
    }

    .ny18-section3 .info .text2 {
        margin-top: 2.036vw;
        font-size: 3.053vw;
        line-height: 4.58vw;
    }

    .ny18-section3 .common-btn {
        margin-top: 6.107vw;
    }
}

/* ==================== ny18 - 板块三 End ==================== */
/* ==================== ny18 - 板块四 Start ==================== */
.ny18-section4 {
    padding-top: 4.444vw;
    padding-bottom: 6.25vw;
}

.ny18-section4 .item {
    padding-top: 4.444vw;
    padding-bottom: 6.25vw;
    padding-left: 5.556vw;
    padding-right: 5.556vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ny18-section4 .item .title {
    color: #FFF;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 2.639vw;
    margin-bottom: 3.472vw;
}

.ny18-section4 .item .body {
    backdrop-filter: blur(1.389vw);
    -webkit-backdrop-filter: blur(1.389vw);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 4.514vw 2.778vw;
    border-radius: 16px;
}

.ny18-section4 .item .list {
    display: flex;
    align-items: flex-start;
}

.ny18-section4 .item .list-item {
    width: 23.5%;
    margin-right: 2%;
}

.ny18-section4 .item .list-item:nth-child(4n) {
    margin-right: 0;
}

.ny18-section4 .item .list-item .text1 {
    color: #FFF;
    font-size: 1.597vw;
    font-family: "Inter-SemiBold";
    line-height: 2.222vw;
    margin-bottom: 2.778vw;
    height: calc(2.222vw * 3);
}

.ny18-section4 .item .list-item .text2 {
    color: #FFF;
    font-family: "Inter-Thin";
    font-size: 0.972vw;
    line-height: 1.25vw;
}

.ny18-section4 .item .common-btn {
    margin-top: 4.167vw;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1440px) {
    .ny18-section4 {
        padding-top: 64px;
        padding-bottom: 90px;
    }

    .ny18-section4 .item {
        padding-top: 64px;
        padding-bottom: 90px;
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny18-section4 .item .title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 50px;
    }

    .ny18-section4 .item .body {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 65px 40px;
    }

    .ny18-section4 .item .list-item .text1 {
        font-size: 23px;
        line-height: 32px;
        margin-bottom: 40px;
        height: calc(32px * 3);
    }

    .ny18-section4 .item .list-item .text2 {
        font-size: 14px;
        line-height: 18px;
    }

    .ny18-section4 .item .common-btn {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .ny18-section4 {
        padding-top: 0;
        padding-bottom: 11.719vw;
    }

    .ny18-section4 .item {
        padding-top: 5.208vw;
        padding-bottom: 7.292vw;
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny18-section4 .item .title {
        font-size: 3.125vw;
        line-height: 4.167vw;
        margin-bottom: 4.167vw;
    }

    .ny18-section4 .item .body {
        backdrop-filter: blur(2.604vw);
        -webkit-backdrop-filter: blur(2.604vw);
        padding: 6.25vw 5.208vw;
        border-radius: 1.56vw;
    }

    .ny18-section4 .item .list {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ny18-section4 .item .list-item {
        width: 44%;
        margin-right: 0;
    }

    .ny18-section4 .item .list-item:nth-child(2) ~ .list-item {
        margin-top: 9.115vw;
    }

    .ny18-section4 .item .list-item .text1 {
        font-size: 2.604vw;
        line-height: 3.906vw;
        margin-bottom: 2.083vw;
        height: calc(3.906vw * 3);
    }

    .ny18-section4 .item .list-item .text2 {
        font-size: 1.693vw;
        line-height: 2.604vw;
    }

    .ny18-section4 .item .common-btn {
        margin-top: 7.813vw;
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 500px) {
    .ny18-section4 {
        padding-top: 0;
        padding-bottom: 22.901vw;
    }

    .ny18-section4 .item {
        padding-top: 6.107vw;
        padding-bottom: 20.356vw;
        padding-left: 4.071vw;
        padding-right: 4.071vw;
        background-size: 280%;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .ny18-section4 .item .title {
        font-size: 6.107vw;
        line-height: 8.142vw;
        margin-bottom: 6.107vw;
    }

    .ny18-section4 .item .body {
        backdrop-filter: blur(5.089vw);
        -webkit-backdrop-filter: blur(5.089vw);
        padding: 8.142vw 6.107vw;
        padding-bottom: 10.178vw;
    }

    .ny18-section4 .item .list-item {
        width: 100%;
        margin: 0 !important;
    }

    .ny18-section4 .item .list-item:nth-child(1) ~ .list-item {
        margin-top: 11.705vw !important;
    }

    .ny18-section4 .item .list-item .text1 {
        font-size: 5.089vw;
        line-height: 7.634vw;
        margin-bottom: 4.071vw;
        height: auto;
    }

    .ny18-section4 .item .list-item .text1 br:nth-child(2) ~ br {
        display: none;
    }

    .ny18-section4 .item .list-item .text2 {
        font-size: 3.308vw;
        line-height: 4.326vw;
    }

    .ny18-section4 .item .common-btn {
        margin-top: 11.705vw;
    }
}

/* ==================== ny18 - 板块四 End ==================== */
/* ==================== ny18 - 板块五 Start ==================== */
/* ==================== ny18 - 板块五 End ==================== */
/* ==================== ny18 - 板块六 Start ==================== */
/* ==================== ny18 - 板块六 End ==================== */
/* ==================== ny18 - 板块七 Start ==================== */
/* ==================== ny18 - 板块七 End ==================== */
/* ==================== ny18 - 板块八 Start ==================== */
/* ==================== ny18 - 板块八 End ==================== */
/* ==================== 内页23 - 板块一 Start ==================== */
.ny23-section1 .info {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    left: 0;
    width: 100%;
}

.ny23-section1 .info .text1 {
    color: #FFF;
    font-size: 1.11vw;
    font-family: "Inter-Regular";
    font-weight: 400;
    line-height: 1.67vw;
}

.ny23-section1 .info .text2 {
    margin-top: 0.56vw;
    color: #FFF;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 3.89vw;
    line-height: 4.44vw;
}

.ny23-section1 .image img {
    width: 100%;
}

.ny23-section1 .info2 {
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ny23-section1 .info2 .text1 {
    color: #FFF;
    font-family: "Inter-SemiBold";
    font-size: 3.889vw;
    line-height: 4.444vw;
    padding: 4.722vw 5.556vw;
    text-align: left;
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .ny23-section1 .info .text1 {
        font-size: 16px;
        line-height: 24px;
    }

    .ny23-section1 .info .text2 {
        margin-top: 8px;
        font-size: 56px;
        line-height: 64px;
    }

    .ny23-section1 .info2 .text1 {
        font-size: 56px;
        line-height: 64px;
        padding: 68px 80px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-section1 .info .text1 {
        font-size: 1.82vw;
        line-height: 2.73vw;
    }

    .ny23-section1 .info .text2 {
        margin-top: 1.04vw;
        font-size: 5.21vw;
        line-height: 6.25vw;
    }

    .ny23-section1 .info2 .text1 {
        font-size: 5.208vw;
        line-height: 5.208vw;
        padding: 5.208vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-section1 .info {
        padding-left: 4.07vw;
        padding-right: 4.07vw;
    }

    .ny23-section1 .info .text1 {
        font-size: 3.56vw;
        line-height: 5.34vw;
    }

    .ny23-section1 .info .text2 {
        margin-top: 2.04vw;
        font-size: 10.18vw;
        line-height: 12.21vw;
    }

    .ny23-section1 .info2 .text1 {
        font-size: 8.142vw;
        line-height: 10.178vw;
        padding: 6.107vw 8.142vw;
    }
}

/* ==================== 内页23 - 板块一 End ==================== */
/* ==================== 内页23 - 板块二 Start ==================== */
.ny23-section2 {
    padding-bottom: 4.44vw;
}

.ny23-section2 .itembox {
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
}

.ny23-section2 .item {
    text-align: center;
    margin-top: 5vw;
}

.ny23-section2 .item .text1 {
    color: #0075FF;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 2.22vw;
    line-height: 2.78vw;
}

.ny23-section2 .item .text2 {
    margin-top: 0.83vw;
    color: #666;
    text-align: center;
    font-family: "Inter-Regular";
    font-size: 1.11vw;
    line-height: 1.67vw;
}

.ny23-section2 .image {
    width: 66.67vw;
    overflow: hidden;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.44vw;
}

.ny23-section2 .image img {
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .ny23-section2 {
        padding-bottom: 64px;
    }

    .ny23-section2 .itembox {
        width: 720px;
    }

    .ny23-section2 .item {
        margin-top: 72px;
    }

    .ny23-section2 .item .text1 {
        font-size: 32px;
        line-height: 40px;
    }

    .ny23-section2 .item .text2 {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
    }

    .ny23-section2 .image {
        width: 960px;
        margin-top: 64px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-section2 {
        padding-top: 0;
        padding-bottom: 8.33vw;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .ny23-section2 .item {
        margin-top: 8.33vw;
    }

    .ny23-section2 .item .text1 {
        font-size: 3.13vw;
        line-height: 4.17vw;
    }

    .ny23-section2 .item .text2 {
        margin-top: 1.04vw;
        font-size: 1.82vw;
        line-height: 3.13vw;
    }

    .ny23-section2 .image {
        width: 100%;
        margin-top: 8.33vw;
        border-radius: 1.56vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-section2 {
        padding-top: 0;
        padding-bottom: 16.28vw;
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .ny23-section2 .itembox {
        width: 100%;
    }

    .ny23-section2 .item {
        margin-top: 16.28vw;
    }

    .ny23-section2 .item .text1 {
        font-size: 6.11vw;
        line-height: 8.14vw;
    }

    .ny23-section2 .item .text2 {
        margin-top: 2.04vw;
        font-size: 3.56vw;
        line-height: 6.11vw;
    }

    .ny23-section2 .image {
        width: 100%;
        margin-top: 16.28vw;
        border-radius: 2.04vw;
    }
}

/* ==================== 内页23 - 板块二 End ==================== */
/* ==================== 内页23 - 板块三 Start ==================== */
.ny23-section3 .mxw-box {
    padding: 4.86vw 5.56vw;
    padding-bottom: 7.5vw;
}

.ny23-section3 .title {
    color: #000;
    text-align: center;
    font-family: "Inter-SemiBold";
    font-size: 2.22vw;
    line-height: 2.78vw;
}

.ny23-section3 .itembox {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 4.44vw;
}

.ny23-section3 .item {
    position: relative;
    width: 24%;
    margin-right: 1.333%;
    text-align: left;
}

.ny23-section3 .item:nth-child(4n) {
    margin-right: 0;
}

.ny23-section3 .item .image {
    border-radius: 16px;
    overflow: hidden;
}

.ny23-section3 .item .image img {
    width: 100%;
}

.ny23-section3 .item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 1.67vw;
}

.ny23-section3 .item .text1 {
    color: #fff;
    font-family: "Inter-SemiBold";
    font-size: 2.78vw;
    line-height: 3.33vw;
}

.ny23-section3 .item .text1 span {
    font-family: inherit;
}

.ny23-section3 .item .text2 {
    color: #FFF;
    font-family: "Inter-Thin";
    font-size: 0.83vw;
    line-height: 1.25vw;
}

.ny23-section3 .item .icon {
    margin-top: 1.11vw;
    width: 3.33vw;
    display: block;
}

.ny23-section3 .item .icon img {
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .ny23-section3 .mxw-box {
        padding: 70px 80px;
        padding-bottom: 108px;
    }

    .ny23-section3 .title {
        font-size: 32px;
        line-height: 40px;
    }

    .ny23-section3 .itembox {
        margin-top: 40px;
    }

    .ny23-section3 .item .info {
        padding: 24px;
    }

    .ny23-section3 .item .text1 {
        font-size: 40px;
        line-height: 48px;
    }

    .ny23-section3 .item .text2 {
        font-size: 12px;
        line-height: 18px;
    }

    .ny23-section3 .item .icon {
        margin-top: 16px;
        width: 48px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-section3 .mxw-box {
        padding: 3.13vw 1.56vw 9.38vw;
        padding-bottom: 9.635vw;
    }

    .ny23-section3 .title {
        font-size: 3.13vw;
        line-height: 4.17vw;
    }

    .ny23-section3 .itembox {
        margin-top: 5.21vw;
    }

    .ny23-section3 .item {
        width: 49%;
        margin-right: 2%;
    }

    .ny23-section3 .item:nth-child(2n) {
        margin-right: 0;
    }

    .ny23-section3 .item:nth-child(2) ~ .item {
        margin-top: 2%;
    }

    .ny23-section3 .item .image {
        border-radius: 1.56vw;
    }

    .ny23-section3 .item .info {
        padding: 3.13vw;
    }

    .ny23-section3 .item .text1 {
        font-size: 2.99vw;
        line-height: 5.21vw;
    }

    .ny23-section3 .item .text2 {
        font-size: 1.56vw;
        line-height: 2.34vw;
    }

    .ny23-section3 .item .icon {
        margin-top: 2.08vw;
        width: 6.25vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-section3 .mxw-box {
        padding: 6.11vw 3.05vw 18.32vw;
        padding-bottom: 17.812vw;
    }

    .ny23-section3 .title {
        font-size: 6.11vw;
        line-height: 8.14vw;
    }

    .ny23-section3 .itembox {
        margin-top: 10.18vw;
    }

    .ny23-section3 .item {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 12px !important;
    }

    .ny23-section3 .item:last-child {
        margin-bottom: 0 !important;
    }

    .ny23-section3 .item .image {
        border-radius: 2.04vw;
    }

    .ny23-section3 .item .info {
        padding: 6.11vw;
    }

    .ny23-section3 .item .text1 {
        font-size: 5.85vw;
        line-height: 10.18vw;
    }

    .ny23-section3 .item .text2 {
        font-size: 3.05vw;
        line-height: 4.58vw;
    }

    .ny23-section3 .item .icon {
        margin-top: 2.54vw;
        width: 7.63vw;
    }
}

/* ==================== 内页23 - 板块三 End ==================== */
/* ==================== 内页23 - 板块四 Start ==================== */
.ny23-section4 {
    padding-top: 6.67vw;
    padding-bottom: 6.67vw;
    background: linear-gradient(180deg, rgba(0, 117, 255, 0.5) 0%, #FFF 100%);
}

.ny23-section4 .mxw-box {
    width: 66.67vw;
    margin-left: auto;
    margin-right: auto;
}

.ny23-section4 .text {
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: center;
    font-size: 1.11vw;
    font-family: "Inter-Regular";
    line-height: 1.67vw;
}

.ny23-section4 .text1 {
    color: #000;
    text-align: center;
    font-size: 2.78vw;
    font-family: "Inter-SemiBold";
    line-height: 3.33vw;
    margin-bottom: 3.33vw;
}

.ny23-section4 .image {
    width: 100%;
    border-radius: 16px;
    margin-top: 2.78vw;
    margin-bottom: 2.78vw;
    overflow: hidden;
}

.ny23-section4 .image img {
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .ny23-section4 {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .ny23-section4 .mxw-box {
        width: 960px;
    }

    .ny23-section4 .text {
        width: 720px;
        font-size: 16px;
        line-height: 24px;
    }

    .ny23-section4 .text1 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 48px;
    }

    .ny23-section4 .image {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-section4 {
        padding-top: 7.29vw;
        padding-bottom: 7.29vw;
    }

    .ny23-section4 .mxw-box {
        width: 100%;
        padding-left: 3.13vw;
        padding-right: 3.13vw;
    }

    .ny23-section4 .text {
        width: 100%;
        font-size: 1.82vw;
        line-height: 3.13vw;
    }

    .ny23-section4 .text1 {
        font-size: 4.17vw;
        line-height: 5.21vw;
        margin-bottom: 4.17vw;
    }

    .ny23-section4 .image {
        margin-top: 4.17vw;
        margin-bottom: 4.17vw;
        border-radius: 1.56vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-section4 {
        padding-top: 16.28vw;
        padding-bottom: 16.28vw;
    }

    .ny23-section4 .mxw-box {
        padding-left: 6.11vw;
        padding-right: 6.11vw;
    }

    .ny23-section4 .text {
        font-size: 3.56vw;
        line-height: 6.11vw;
    }

    .ny23-section4 .text1 {
        font-size: 8.14vw;
        line-height: 10.18vw;
        margin-bottom: 8.14vw;
    }

    .ny23-section4 .image {
        margin-top: 8.14vw;
        margin-bottom: 8.14vw;
        border-radius: 2.04vw;
    }
}

/* ==================== 内页23 - 板块四 End ==================== */
/* ==================== 内页23 - 板块五 Start ==================== */
.ny23-section5 {
    padding-bottom: 6.944vw;
}

.ny23-section5 .mxw-box {
    padding-left: 5.56vw;
    padding-right: 5.56vw;
}

.ny23-section5 .title {
    color: #000;
    font-family: "Inter-SemiBold";
    font-size: 2.222vw;
    line-height: 3.333vw;
    margin-bottom: 3.889vw;
    text-align: center;
}

.ny23-section5 .itembox {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.ny23-section5 .item {
    width: 24%;
    margin-right: 1.333%;
    background-color: #F6F6F6;
    border-radius: 16px;
    padding-top: 5.556vw;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 2.083vw;
}

.ny23-section5 .item:nth-child(4n) {
    margin-right: 0;
}

.ny23-section5 .item .image {
    width: auto;
    height: 7.361vw;
    margin-bottom: 2.778vw;
    text-align: center;
}

.ny23-section5 .item .image img {
    height: 100%;
    width: auto;
}

.ny23-section5 .item .image2 {
    width: 10.417vw;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.ny23-section5 .item .image2 img {
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .ny23-section5 {
        padding-bottom: 100px;
    }

    .ny23-section5 .mxw-box {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ny23-section5 .title {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 56px;
    }

    .ny23-section5 .item {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .ny23-section5 .item .image {
        height: 106px;
        margin-bottom: 40px;
    }

    .ny23-section5 .item .image2 {
        width: 150px;
    }
}

@media screen and (max-width: 768px) {
    .ny23-section5 {
        padding-bottom: 15.625vw;
        padding-top: 8.333vw;
    }

    .ny23-section5 > .mxw-box {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
    }

    .ny23-section5 .title {
        font-size: 3.125vw;
        line-height: 4.167vw;
        margin-bottom: 4.167vw;
    }

    .ny23-section5 .itembox {
        flex-wrap: wrap;
    }

    .ny23-section5 .item {
        padding: 5.208vw;
        width: 49%;
        margin-right: 2%;
        border-radius: 1.56vw;
    }

    .ny23-section5 .item:nth-child(2n) {
        margin-right: 0;
    }

    .ny23-section5 .item:nth-child(2) ~ .item {
        margin-top: 2%;
    }

    .ny23-section5 .item:nth-child(4n) {
        margin-right: 0;
    }

    .ny23-section5 .item .image {
        height: 13.802vw;
        margin-bottom: 3.906vw;
    }

    .ny23-section5 .item .image2 {
        width: 19.531vw;
    }
}

@media screen and (max-width: 500px) {
    .ny23-section5 {
        padding-bottom: 30.534vw;
        padding-top: 16.285vw;
    }

    .ny23-section5 > .mxw-box {
        padding-left: 6.107vw;
        padding-right: 6.107vw;
    }

    .ny23-section5 .title {
        font-size: 6.107vw;
        line-height: 8.142vw;
        margin-bottom: 10.178vw;
    }

    .ny23-section5 .item {
        width: 100%;
        padding: 10.178vw;
        border-radius: 2.04vw;
        margin: 0 !important;
    }

    .ny23-section5 .item:nth-child(1) ~ .item {
        margin-top: 4.071vw !important;
    }

    .ny23-section5 .item .image {
        height: 26.972vw;
        margin-bottom: 7.634vw;
    }

    .ny23-section5 .item .image2 {
        width: 38.168vw;
    }
}

/* ==================== 内页23 - 板块五 End ==================== */


.body_no_left .itembox .item, .ny1-section1 .itembox .item {
    padding-bottom: 50px;
    position: relative;
}

.buy-now {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    margin: auto;
    text-align: center;
    text-decoration: underline !important;
    font-size: 13px;
    color: #999;
    font-family: "Inter-Medium";
}

.float-group .feedback-button {
    margin-bottom: 80px;
    background: #0075FF !important;
}

.feedback-popup .body .head {
    margin-bottom: 48px;
}

.feedback-popup .body .head .text3 {
    font-size: 28px;
    text-align: center;
    font-family: Inter-SemiBold;
}

.feedback-popup .body .text4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.feedback-popup .body form button {
    margin: 36px auto 0;
    display: flex;
}

.feedback-popup .body form textarea {
    height: 120px;
}

.feedback-popup .body form .form-item {
    border-bottom: none;
    color: #666;
    font-size: 13px;
}

.feedback-popup .layui-form-radio {
    /*margin-right: 0;*/
    /*margin-top: 0;*/
    /*padding-right: 0;*/
}

.feedback-popup .layui-form-radio > i {
    /*font-size: 16px;*/
    /*color: transparent;*/
}

.feedback-popup .layui-form-radio > i::before {
    /*background: #f6f6f6;*/
    /*border-radius: 50%;*/
    /*border: 1px solid #999;*/
}

.layui-form-radio:hover > *,
.layui-form-radioed {
    color: #666;
}

.layui-form-radioed > i {
    color: #0075FF;
}

.layui-icon-radio::before {
    content: "\e63f" !important;
    border-color: #0075FF !important;
    background: url('../svg/img6.svg') no-repeat center / cover !important;
}

.feedback-popup .rate {
    border-top: 1px solid #D9D9D9;
    padding-top: 40px;
    margin-top: 40px;
}

.feedback-popup .rate .rate-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.rate-container {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.rate-container .item {
    cursor: pointer;
}

.rate-container .item.active svg path {
    fill: #0075FF;
}

@media screen and (max-width: 1600px) {
    .popup-box.feedback-popup .layui-form {
        zoom: 0.8;
    }
}

@media screen and (max-width: 768px) {
    .popup-box.feedback-popup .layui-form {
        zoom: 1;
    }

    .index-section2 .btn-group a {
        min-width: auto;
        padding: 10px;
        width: 80px;
    }
}


.tablet-show-box {
    display: none;
}

.index-section2 .item .info {
    height: calc(100% - 80px);
}

.index-section2 .btn-group {
    position: absolute;
    bottom: 16px;
    margin-top: 0 !important;
}

@media screen and (max-width: 1024px) {
    .tablet-show-box {
        display: flex;
        height: 64px;
        align-items: center;
        justify-content: space-between;
        padding-left: 24px;
        padding-right: 24px;
        color: #fff;
        font-size: 16px;
    }

    .index-section2 .item .info {
        height: calc(100% - 24px);
    }
}


@media screen and (max-width: 750px) {
    .index-section2 .item .info {
        height: calc(100% - 7vw);
    }
}

.index-text3 a {
    color: #000;
    font-family: "Inter-SemiBold";
    transition: color 0.4s;
}


.ny17-section1 p {
    font-size: 16px;
    color: #666;
    line-height: 25px;
    margin-bottom: 20px;
}

.ny17-section1 li {
    font-size: 16px;
    color: #666;
    line-height: 25px;
}

.ny17-section1 h2 {
    font-weight: 600;
    font-size: 23px;
}
.ny17-section1 h3 {
    font-size: 20px;
    font-weight: 600;
}
.ny17-section1 h2,
.ny17-section1 h3 {
    margin-bottom: 16px;
}
.ny17-section1 ul,
.ny17-section1 ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.ny17-section1 ul,
.ny17-section1 ol,
.ny17-section1 ul li,
.ny17-section1 ol li {
    list-style: unset;
}
.ny17-section1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.table-wrapper {
    overflow: auto;
}
.table-wrapper table {
    min-width: max-content;
}

.ny17-section1 thead {
    background-color: #f4f4f4;
}
.ny17-section1 th {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: 600;
    color: #333;
}
.ny17-section1 td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #555;
}

.ny17-section1 strong {
    color: #000;
}

.ny17-section2 .title2 {
    text-transform: capitalize;
}

@media screen and (max-width: 750px) {
    .ny17-section1 h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

#load_more_btn {
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}