@charset "utf-8";
/*初始化样式*/
*,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*设置平滑*/
html {
    scroll-behavior: smooth;
    font-size: calc(100 * 100vw / 3840);
}

body {
    font: 14px MiSans-Regular, '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.8;
    background: #f7f7f7;
}

/*字体引入*/
@font-face {
    font-family: MiSans-Demibold;
    src: url("../webfonts/MiSans-Demibold.woff2") format('truetype');
}

@font-face {
    font-family: MiSans-Semibold;
    src: url("../webfonts/MiSans-Semibold.woff2") format('truetype');
}

@font-face {
    font-family: MiSans-Medium;
    src: url("../webfonts/MiSans-Medium.woff2") format('truetype');
}

@font-face {
    font-family: MiSans-Regular;
    src: url("../webfonts/MiSans-Regular.woff2") format('truetype');
}

@font-face {
    font-family: MiSans-Normal;
    src: url("../webfonts/MiSans-Normal.woff2") format('truetype');
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ol,
ul {
    padding-left: 20px;
}

li::marker {
    color: var(--dominant-color);
}

img {
    vertical-align: top;
    border: 0;
}

input,
select,
textarea,
button {
    vertical-align: middle;
    font-family: '微软雅黑';
}

textarea,
input {
    text-indent: 10px;
}

/*表单元素默认有20像素的缩进*/
input[type='submit'],
input[type='button'],
button {
    text-indent: 0;
    text-align: center;
    cursor: pointer;
}

label,
button,
a {
    cursor: pointer;
}

ins,
em,
b,
i {
    text-decoration: none;
    font-style: normal;
}

/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
    outline: none;
    border: none;
}

/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
    color: #999;
    transition: color 0.5s;
}

/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
    color: #c2c2c2;
}

/* table */
table {
    border-collapse: collapse;
    border-spacing: 0;
    font: inherit;
}

/* a_link */
a {
    color: inherit;
    text-decoration: none;
}

a[href] {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

li {
    max-width: 100%;
}

p {
    white-space: normal;
    max-width: 100%;
}

audio,
canvas,
progress,
video {
    vertical-align: baseline;
}

/*用来解决在安卓上的点击出现篮框问题*/
body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

font {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    text-transform: inherit;
}

/*默认input样式*/
.input {
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 40px;
    color: #666;
}

input[type=checkbox] {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #333;
    position: relative;
    text-indent: 0;
}

input[type=checkbox]:checked {
    background: var(--dominant-color) !important;
    border-color: var(--dominant-color) !important;
}

input[type=checkbox]:checked ~ span {
    color: var(--dominant-color);
}

input[type=checkbox]:checked::after {
    content: '✔';
    color: #fff;
    position: absolute;
    top: -2px;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
}

input[type=radio] {
    border: 1px solid #e5e5e5;
    width: 14px;
    height: 14px;
}

textarea {
    resize: none;
    border: 1px solid #e5e5e5;
    width: 100%;
    min-height: 100px;
    padding: 10px 0;
}

select {
    height: 40px;
    width: 100%;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    color: #666;
    background-size: 11px;
}

.pc {
    display: block;
}

.phone {
    display: none;
}

/*滚动条样式*/
::-webkit-scrollbar {
    width: 6px;
    background-color: #eaeaea;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 10px;
    background-color: var(--dominant-color);
}

::-webkit-scrollbar-corner {
    background-color: #eaeaea;
    height: 10px;
}

::-webkit-scrollbar:horizontal {
    height: 5px;
}

::-webkit-selection {
    background: var(--dominant-color);
    color: #fff;
}

::-moz-selection {
    background: var(--dominant-color);
    color: #fff;
}

/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.clamp1 {
    -webkit-line-clamp: 1;
}

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

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

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

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

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

/*swiper样式设置*/
body .swiper-button-prev:focus,
body .swiper-button-next:focus,
body .swiper-pagination-bullet:focus {
    outline: none;
}

/*swiper默认样式*/
body .swiper-button-prev,
body .swiper-button-next {
    color: #000;
    width: 0.675rem;
    height: 0.675rem;
    flex-direction: row;
    transition: all 0.5s;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #666;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    body .swiper-button-prev,
    body .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

body .swiper-button-prev:hover,
body .swiper-button-next:hover {
    background: #000;
    border-color: #000;
}

body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after,
body .swiper-button-prev:hover i,
body .swiper-button-next:hover i {
    color: #fff;
}

body .swiper-button-prev {
    left: 0;
}

body .swiper-button-next {
    right: 0;
}

body .swiper-button-prev::after,
body .swiper-button-next::after {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    body .swiper-button-prev::after,
    body .swiper-button-next::after {
        font-size: 12px;
    }
}

/*默认弹窗样式*/
.pop-up {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.pop-up .mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.pop-up .pop-up-box {
    width: 90%;
    margin-left: 5%;
    height: 100%;
    max-height: 80vh;
    margin-top: 10vh;
}

.pop-up .pop-up-box .loading-box {
    position: relative;
    z-index: 2;
    max-width: 90%;
    height: 80%;
}

.pop-up .pop-up-box video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.pop-up .pop-up-box .pop-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: 0.5s;
}

.pop-up .pop-up-box .pop-close i {
    font-size: 36px;
    color: #fff;
}

.form-susses {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 18px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
    padding: 40px 50px;
    border-radius: 10px;
    height: fit-content;
    z-index: 999;
    background: #fff;
    width: fit-content;
    display: none;
    align-items: center;
}

.form-susses i {
    color: var(--dominant-color);
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    input::placeholder,
    textarea::placeholder {
        font-size: 12px !important;
    }

    .pc {
        display: none;
    }

    .phone {
        display: block;
    }
}

/*-----默认配置------*/
.section {
    width: 90%;
    max-width: 26rem;
    margin: auto;
}

@media screen and (max-width: 1366px) {
    .section {
        max-width: 80% !important;
    }
}

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

img {
    vertical-align: middle;
    max-width: 100%;
}

.imgBox {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.imgBox img {
    width: 100%;
    max-width: 100%;
    transition: all 0.5s;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.imgBox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.imgBox-hover:hover img {
    transition: all 0.5s;
    transform: scale(1.1);
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 0.28rem;
}

@media screen and (max-width: 768px) {
    .swiper-button-prev i,
    .swiper-button-next i {
        font-size: 12px !important;
    }
}

/*头部样式*/
.index header {
    background: none;
}

header {
    width: 100%;
    z-index: 10;
    transition: all 0.5s;
    position: sticky;
    top: 0;
    height: 1.5rem;
    background: #ffffff;
    /*搜索*/
    /*搜索*/
    /*语言*/
    /*语言*/
}

@media screen and (max-width: 1024px) {
    header {
        height: 60px;
    }
}

header.z-active {
    z-index: 99;
}

header.active,
header.hover-active {
    background: #ffffff;
}

header.active .logo,
header.hover-active .logo {
    filter: none !important;
}

header.active .search.active,
header.hover-active .search.active {
    border: 1px solid #eee;
}

header.active .header-box .header-menu nav .first-item .first-item-title,
header.hover-active .header-box .header-menu nav .first-item .first-item-title,
header.active .language .language-title,
header.hover-active .language .language-title {
    color: #333 !important;
}

header.active .search img,
header.hover-active .search img,
header.active .language .language-title img,
header.hover-active .language .language-title img {
    filter: brightness(0.5) !important;
}

header.active .search::after,
header.hover-active .search::after {
    background: #333;
}

@media screen and (max-width: 1024px) {
    header {
        position: relative;
    }
}

header .header-phone-click {
    cursor: pointer;
    width: 22px;
    height: 16px;
    align-items: center;
    position: relative;
    right: 0;
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 1024px) {
    header .header-phone-click {
        display: flex;
        order: 3;
        margin-left: 0;
    }
}

header .header-phone-click .phone-click-line {
    height: 2px;
    background: #000;
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
}

header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.5s;
}

header .header-phone-click .phone-click-line::before {
    top: 0;
    transition: all 0.5s;
}

header .header-phone-click .phone-click-line::after {
    bottom: 0;
    transition: all 0.5s;
}

header .header-phone-click.active .phone-click-line {
    background: transparent;
    transition: all 0.5s;
}

header .header-phone-click.active .phone-click-line::before {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(7px) rotate(45deg);
}

header .header-phone-click.active .phone-click-line::after {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(-7px) rotate(-45deg);
}

header .header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /*logo*/
    /*logo*/
}

header .header-box .logo {
    max-width: 1.34rem;
    margin-right: 1.5rem;
}

@media screen and (max-width: 1024px) {
    header .header-box .logo {
        width: 100%;
        justify-content: flex-start;
        max-width: 100px;
        display: block;
    }
}

header .header-box .logo img {
    max-width: inherit;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
}

header .header-box .header-menu {
    flex: 1;
    height: 100%;
    /*导航*/
    /*导航*/
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu {
        width: 100%;
        position: absolute;
        background: #fff;
        top: 60px;
        height: 100vh;
        z-index: 10;
        left: 0;
        margin-left: 0;
        padding: 30px 5% 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        display: none;
        overflow: auto;
    }
}

header .header-box .header-menu nav {
    position: relative;
    width: 100%;
    color: #808080;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
}

@media screen and (max-width: 1366px) {
    header .header-box .header-menu nav {
        margin-left: auto;
        margin-right: 40px;
    }
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
    }
}

header .header-box .header-menu nav .first-item {
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    margin-right: 30px;
    z-index: 1;
}

@media screen and (max-width: 1280px) {
    header .header-box .header-menu nav .first-item {
        margin-right: 15px;
    }
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item {
        height: auto;
        width: 100%;
        margin-right: 0;
        justify-content: flex-start;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
}

header .header-box .header-menu nav .first-item .first-box {
    position: relative;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .first-box {
        border-bottom: 1px solid #eee;
    }
}

header .header-box .header-menu nav .first-item.active .first-box::after,
header .header-box .header-menu nav .first-item:hover .first-box::after {
    opacity: 1;
}

header .header-box .header-menu nav .first-item.active .first-item-title,
header .header-box .header-menu nav .first-item:hover .first-item-title {
    color: var(--dominant-color);
}

header .header-box .header-menu nav .first-item .first-item-title {
    font-size: max(14px, 0.21rem);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #808080;
    transition: all 0.5s;
    width: 100%;
}

@media screen and (max-width: 1600px) {
    header .header-box .header-menu nav .first-item .first-item-title {
        font-size: 12px;
    }
}

@media screen and (max-width: 1280px) {
    header .header-box .header-menu nav .first-item .first-item-title {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .first-item-title {
        height: 50px;
        width: 100%;
        justify-content: flex-start;
    }
}

header .header-box .header-menu nav .first-item .first-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    opacity: 0;
    border-width: 10px;
    border-style: solid;
    transition: all 0.5s;
    border-color: transparent transparent var(--dominant-color);
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .first-item-title::after {
        display: none;
    }
}

header .header-box .header-menu nav .first-item i {
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item i {
        display: block;
    }
}

header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
}

header .header-box .header-menu nav .first-item i::before {
    width: 14px;
    height: 2px;
}

header .header-box .header-menu nav .first-item i::after {
    height: 14px;
    width: 2px;
}

header .header-box .header-menu nav .first-item i.active {
    transform: rotate(45deg);
}

header .header-box .header-menu nav .first-item .second-box {
    position: absolute;
    overflow: initial !important;
    top: 1.5rem;
    width: 100%;
    left: 0;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    padding: 20px 0 100px;
    display: none;
    /*特殊*/
}

header .header-box .header-menu nav .first-item .second-box .bg {
    position: absolute;
    top: 0;
    left: -100vw;
    width: 200vw;
    height: 100%;
    background: #fff;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box {
        width: 100%;
        position: relative;
        top: 0;
        background: none;
        opacity: 1;
        visibility: visible;
        transform: translate(0);
        padding: 0;
        box-shadow: none;
        border: none;
        display: none;
        transition: all 0s;
        pointer-events: auto;
        left: 0;
    }
}

header .header-box .header-menu nav .first-item .second-box::before {
    position: absolute;
    height: 10px;
    left: 0;
    top: -10px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box::before {
        display: none;
    }
}

header .header-box .header-menu nav .first-item .second-box::after {
    /*content: '';*/
    position: absolute;
    height: 100%;
    left: -300%;
    top: 0;
    width: 10000%;
    background: #fff;
    z-index: 0;
    transition: all 0s;
}

header .header-box .header-menu nav .first-item .second-box .items {
    height: inherit;
    overflow: hidden;
    width: max-content;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box .items {
        width: 100%;
    }
}

header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box .second-item {
        position: relative;
    }
}

header .header-box .header-menu nav .first-item .second-box .second-item i {
    bottom: auto;
    height: 40px;
}

header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    display: block;
    font-size: max(16px, 0.24rem);
    transition: all 0.2s;
    line-height: 1.8;
    text-align: left;
    overflow: hidden;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 1440px) {
    header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
        color: #000;
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }
}

header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title img {
    width: 0.2rem;
    margin-left: 10px;
    transition: all 0.2s;
    transform: translate(-180%, 180%);
    opacity: 0;
}

header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: #edb65b;
}

header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover img {
    opacity: 1;
    transform: translate(0);
}

header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box {
    opacity: 1;
    pointer-events: auto;
}

header .header-box .header-menu nav .first-item .second-box .three-box {
    width: 140px;
    padding: 30px 20px;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    border-left: 1px solid #eee;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box .three-box {
        padding: 0;
        pointer-events: auto;
        position: initial;
        opacity: 1;
        display: none;
    }
}

header .header-box .header-menu nav .first-item .second-box .three-box.active {
    display: block;
}

header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    margin-bottom: 10px;
    display: block;
    color: #8a8a8a;
    font-size: 16px;
}

@media screen and (max-width: 1440px) {
    header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
        font-size: 12px;
        margin-bottom: 0;
        padding: 10px 20px;
    }
}

header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
    color: var(--dominant-color);
}

header .header-box .header-menu nav .first-item .second-box .three-box::after {
    content: '';
    width: 20px;
    height: 100%;
    left: -10px;
    position: absolute;
    top: 0;
    background: #fff;
    z-index: -1;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box {
    width: 100vw;
    padding: 0;
    position: fixed;
    border-radius: 0;
    overflow: hidden !important;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box {
        position: relative;
        overflow: hidden !important;
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    padding: 2rem 0;
    gap: 1.6rem 1rem;
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item {
    display: flex;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .left {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .left {
        width: 80px;
        height: 80px;
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .left .img {
    width: 100%;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .left .img img {
    object-fit: contain;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right {
    flex: 1;
    margin-left: 0.3rem;
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right {
        margin-left: 30px;
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title {
    display: flex;
    justify-content: flex-start;
    font-size: max(14px, 0.22rem);
    font-family: MiSans-Demibold;
    color: #000;
    align-items: center;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon {
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon {
        display: none;
    }
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #edb65b;
    transition: all 0.2s;
    transform: scale(0);
    border-radius: 50%;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon .icon1,
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon .icon2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s;
    z-index: 2;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon .icon2 {
    transform: translate(-180%, 180%);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon .icon2 img {
    filter: brightness(100);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .title .icon img {
    transition: all 0.5s;
    width: 0.14rem;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .lists .list {
    display: block;
    margin-top: 0.5rem;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .lists .list .key {
    color: #333;
    transition: all 0.5s;
    font-size: max(14px, 0.2rem);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .lists .list .value {
    color: #bfbfce;
    font-size: max(12px, 0.14rem);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item .right .lists .list:hover .key {
    color: #edb65b;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item:hover .title .icon {
    border: none;
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item:hover .title .icon::after {
    transform: scale(1.1);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item:hover .title .icon .icon1 {
    transform: translate(180%, -180%);
}

header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box .item:hover .title .icon .icon2 {
    transform: translate(0);
}

@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item:hover .second-box {
        pointer-events: auto;
    }
}

header .header-box .header-menu nav .logo {
    margin-left: auto;
    margin-right: auto;
}

header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 60px;
    margin-right: 0;
}

@media screen and (max-width: 1600px) {
    header .header-box .header-menu nav .logo ~ .first-item {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1280px) {
    header .header-box .header-menu nav .logo ~ .first-item {
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .logo ~ .first-item {
        margin-left: 0;
    }
}

header .header-box .header-menu nav .shop {
    margin-left: 60px;
    background: #1e1e1e;
    border-radius: 25px;
    width: 120px;
    height: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

@media screen and (max-width: 1600px) {
    header .header-box .header-menu nav .shop {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1280px) {
    header .header-box .header-menu nav .shop {
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    header .header-box .header-menu nav .shop {
        margin-left: 0;
        margin-top: 30px;
        height: 40px;
        font-size: 14px;
        width: 100%;
    }
}

header .header-box .header-menu nav .shop img {
    width: 19px;
    height: 19px;
    margin-right: 10px;
}

header .search {
    margin: auto 20px auto 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 0.31rem;
}

@media screen and (max-width: 1024px) {
    header .search {
        margin-top: 0;
        width: 30px;
        margin-left: 0;
    }
}

header .search.active {
    background: #fff;
    width: 4rem;
    border: 1px solid #eee;
}

header .search.active .header-search label button {
    filter: brightness(0);
    opacity: 0.6;
}

header .search.active .header-search label button img {
    width: 0.26rem;
}

header .search .search-click {
    display: flex;
    width: 0.62rem;
    height: 0.62rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    right: 0;
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    header .search .search-click {
        height: 30px;
        width: 30px;
    }
}

header .search img {
    width: 0.32rem;
    filter: brightness(0.5);
}

@media screen and (max-width: 1024px) {
    header .search img {
        height: 30px;
        width: 30px;
    }
}

header .language {
    color: #fff;
    position: relative;
    cursor: pointer;
    width: 0.62rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    header .language {
        margin-top: 30px;
    }
}

header .language .language-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    grid-gap: 2px;
    font-family: Montserrat-Light;
}

header .language .language-title i {
    font-size: 14px;
    transform: translateY(1px);
}

header .language .language-title img {
    width: 0.32rem;
    filter: brightness(0.5);
}

header .language .language-show {
    position: absolute;
    top: 1.5rem;
    color: #333;
    left: 50%;
    margin: auto;
    width: 3.6rem;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) translateX(-50%);
    pointer-events: none;
    background: #fff;
    overflow: auto;
}

header .language .language-show::-webkit-scrollbar-thumb {
    background: #bababa;
}

header .language .language-show .language-show-box {
    background: #fff;
    max-height: 80vh;
}

header .language .language-show .popup-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 100%;
    overflow-y: auto;
}

header .language .language-show .popup-content .country-item {
    padding: 0.15rem 0.4rem;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0.08rem;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start;
}

header .language .language-show .popup-content .country-item .country-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

header .language .language-show .popup-content .country-item .country-content .country-item-flag {
    width: 0.4rem;
    height: 0.36rem;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.16rem;
}

header .language .language-show .popup-content .country-item .country-content .country-item-name {
    font-size: 0.24rem;
    line-height: 0.26rem;
    color: #393939;
}

header .language .language-show .popup-content .country-item .country-text {
    font-size: 0.24rem;
    line-height: 0.26rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 10px;
}

header .language .language-show .popup-content .country-item:hover {
    background: #f8f9ed;
}

header .language:hover .language-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
    pointer-events: auto;
}

header .header-contact {
    margin-left: 50px;
    font-size: 14px;
    font-weight: 600;
    width: 133px;
    height: 42px;
    background: var(--dominant-color);
    color: #fff;
    border-radius: 21px;
}

@media screen and (max-width: 1024px) {
    header .header-contact {
        display: none;
    }
}

header .header-contact img {
    margin-right: 20px;
    width: 20px;
}

header .header-search {
    height: 0.62rem;
    border-radius: 0.31rem;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    header .header-search {
        height: 30px;
        width: 30px;
    }
}

header .header-search form {
    width: 100%;
}

header .header-search label {
    margin-right: 0;
    margin-left: auto;
    display: block;
    width: 100%;
    position: relative;
}

header .header-search label input {
    width: 100%;
    height: 0.62rem;
    border: none;
    background: none;
    color: #222;
    padding-left: 0.62rem;
    text-indent: 0;
}

header .header-search label input::placeholder {
    color: #fff;
}

header .header-search label button {
    width: 0.62rem;
    height: 0.62rem;
    background: none;
    color: #fff;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (max-width: 1024px) {
    header .header-search label button {
        height: 30px;
        width: 30px;
    }
}

header .header-search label button img {
    width: 0.32rem;
}

@media screen and (max-width: 1024px) {
    header .header-search label button img {
        width: 30px;
    }
}

.first-item2 {
    height: 100%;
    display: flex;
    margin-left: auto;
    margin-right: 0;
}

@media screen and (max-width: 1024px) {
    .first-item2 {
        margin-left: 0;
        display: none;
    }
}

.bg-blur {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(16px);
    transition: all 0.5s;
    pointer-events: none;
    z-index: -1;
    margin-top: 1.5rem;
}

.bg-blur.active {
    opacity: 1;
}

@media screen and (min-width: 1025px) {
    .index header .logo {
        filter: contrast(0) brightness(100);
    }

    .index header .header-box .header-menu nav .first-item .first-item-title {
        color: rgba(255, 255, 255, 0.6);
    }

    .index header .header-box .header-menu nav .first-item:hover .first-item-title,
    .index header .header-box .header-menu nav .first-item.active .first-item-title {
        color: #fff;
    }

    .index header .search img,
    .index header .language .language-title img {
        filter: brightness(100);
    }

    .index header .search::after {
        background: #333;
    }
}

/*底部样式*/
.footer {
    background: #fff;
    border-radius: 1.28rem 1.28rem 0 0;
    padding: 1.5rem 0.4rem 0.8rem;
    position: relative;
    z-index: 2;
}

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

.footer .footer-logo {
    width: 4.85rem;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .footer .footer-logo {
        width: 130px;
        padding: 30px 0 20px;
    }
}

.footer .footer-link {
    gap: 0.6rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    .footer .footer-link {
        gap: 10px;
        margin-bottom: 10px;
    }
}

.footer .footer-link a {
    display: flex;
    width: 0.6rem;
    height: 0.6rem;
    align-items: center;
    justify-content: center;
    filter: brightness(0);
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .footer .footer-link a {
        width: 24px;
        height: 24px;
    }
}

.footer .footer-link a img {
    object-fit: contain;
}

.footer .footer-link a:hover {
    filter: none;
}

.footer .footer-copyright {
    margin-top: 0.8rem;
    text-align: center;
    font-size: max(12px, 0.18rem);
    color: #747474;
}

.go-top {
    width: 140px;
    height: 50px;
    z-index: 1;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.5s;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.go-top img {
    width: 16px;
    margin-left: 20px;
}

.go-top i {
    transition: all 0.5s;
}

.go-top:hover {
    background: var(--dominant-color) !important;
}

.go-top:hover i {
    color: #fff;
}

/*底部样式*/
/*根元素代码*/
:root {
    /*--dominant-color:#3a93bd;*/
    --dominant-color: #f7a434;
    /*--linear-color:linear-gradient(to right ,#3a93bd 14%,#0079b2);*/
    --linear-color: linear-gradient(223deg, rgba(99, 229, 242, 0.2), rgba(58, 174, 239, 0.8));
}

.black {
    background: #000;
}

/*--------------------------------------------------------*/
/*通用*/
.index-padding {
    padding: 1.2rem 0;
}

@media screen and (max-width: 768px) {
    .index-padding {
        padding: 30px 0;
    }
}

.index-title {
    color: #9b9b9b;
}

.index-title .sup {
    color: var(--dominant-color);
    font-size: 16px;
}

.index-title .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    color: var(--dominant-color);
}

@media screen and (max-width: 1600px) {
    .index-title .title {
        font-size: 32px;
    }
}

@media screen and (max-width: 1440px) {
    .index-title .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .index-title .title {
        font-size: 20px;
    }
}

.index-title .title span {
    color: #9b9b9b;
}

.index-title .tip {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dominant-color);
    font-size: 20px;
}

@media screen and (max-width: 1440px) {
    .index-title .tip {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .index-title .tip {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.index-title .summary {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 1440px) {
    .index-title .summary {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .index-title .summary {
        font-size: 14px;
    }
}

.index-title .summary span {
    color: #000;
}

.index-title .summary2 {
    font-size: 18px;
    color: #666666;
    margin: 30px 0 40px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .index-title .summary2 {
        font-size: 14px;
    }
}

.index-title .summary3 {
    font-size: 16px;
    color: #666666;
    margin: 30px 0 40px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .index-title .summary3 {
        font-size: 14px;
    }
}

.index-title .summary3 a {
    color: var(--dominant-color);
}

.f-more {
    font-size: 0.2rem;
    color: #000;
    line-height: 1;
    text-align: center;
    border-radius: 25px;
    transition: all 0.5s;
    padding: 16px 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: #fff;
    min-width: 160px;
}

.f-more::after {
    content: '→';
    margin-left: 10px;
    transition: all 0.5s;
}

@media screen and (max-width: 1600px) {
    .f-more {
        font-size: 14px;
    }
}

.f-more.black {
    background: #000;
    color: #fff;
}

.f-more:hover {
    opacity: 0.6;
}

.f-more-show {
    font-size: 16px;
    color: var(--dominant-color);
    line-height: 1;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: auto;
    cursor: pointer;
}

.zhan-wei {
    height: 90px;
}

@media screen and (max-width: 1024px) {
    .zhan-wei {
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .zhan-wei {
        display: none;
    }
}

.zhan-wei2 {
    height: 100px;
}

@media screen and (max-width: 1024px) {
    .zhan-wei2 {
        height: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .zhan-wei2 {
        display: none;
    }
}

/* ==================== 通用播放分页 Start ==================== */
/*.common-pagination {
  bottom: 30.01px;
  left: 0;
  z-index: 13;
  position: sticky;
  text-align: center;
  opacity: 0;
}
.common-pagination.white .swiper-pagination {
  background: -webkit-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: -o-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: -moz-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
}
.common-pagination.white .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}
.common-pagination.white .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  background-color: #fff;
}
.common-pagination.white .play-btn {
  color: #fff;
  background: -webkit-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: -o-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: -moz-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
  background: linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
}
.common-pagination.white2 .swiper-pagination {
  background: -webkit-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
  background: -o-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
  background: -moz-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
  background: linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
  border-color: rgba(255, 255, 255, 0.05);
}
.common-pagination.white2 .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}
.common-pagination.white2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  background-color: #fff;
}
.common-pagination.white2 .play-btn {
  border-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  background: -webkit-linear-gradient(155deg, #353537, #353537);
  background: -o-linear-gradient(155deg, #353537, #353537);
  background: -moz-linear-gradient(155deg, #353537, #353537);
  background: linear-gradient(155deg, #353537, #353537);
}
.common-pagination .body {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.common-pagination .pagination {
  position: relative;
  z-index: 2;
}
.common-pagination .swiper-pagination {
  min-width: 0.9rem;
  height: 0.9rem;
  position: static;
  padding: 0 22.003px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 100px;
  border: 1px solid #DFDEDE;
  background: -webkit-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: -o-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: -moz-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  backdrop-filter: blur(0.1168rem);
  -webkit-backdrop-filter: blur(0.1168rem);

  @media screen and (max-width: 768px) {
    height: 30px;
  }
}
.common-pagination .swiper-pagination .swiper-pagination-bullet {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 0;
  overflow: hidden;
  margin-right: 7px;
  margin-left: 7px;
  background-color: #707073;
  position: relative;
  opacity: 1;
  transition: width 1s, border-radius 1s;
  border-radius: 100px;

  @media screen and (max-width: 768px) {
    width: 6px;
    height: 6px;
  }
}
.common-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 100px;
}
.common-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  animation: common-pagination-ani 5s linear forwards;
  animation-play-state: running;
}
.common-pagination .swiper-pagination .swiper-pagination-bullet.play:after {
  animation-play-state: running;
}
.common-pagination .swiper-pagination .swiper-pagination-bullet.paused:after {
  animation-play-state: paused;
}
.common-pagination .play-btn {
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #DFDEDE;
  background: -webkit-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: -o-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: -moz-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  background: linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  font-size: 0.26rem;

  @media screen and (max-width: 768px) {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

}
.common-pagination .play-btn.active .fa-play {
  display: none;
}
.common-pagination .play-btn.active .fa-pause {
  display: block;
}
.common-pagination .play-btn .iconfont {
  font-size: 30.01px;
}
.common-pagination .play-btn .fa-pause {
  display: none;
}
.common-pagination .play-btn-bg {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: #0071E3;
  transform: scale(1.5);
  margin-top: -27px;
  margin-left: -27px;
}
@keyframes common-pagination-ani {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}*/
/* ==================== 通用播放分页 End ==================== */
/* ==================== 通用播放分页 Start ==================== */
.common-pagination {
    bottom: 30.01px;
    left: 0;
    z-index: 13;
    position: sticky;
    text-align: center;
    opacity: 0;
}

.common-pagination.white .swiper-pagination {
    background: -webkit-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: -o-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: -moz-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
}

.common-pagination.white .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

.common-pagination.white .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background-color: #fff;
}

.common-pagination.white .play-btn {
    color: #fff;
    background: -webkit-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: -o-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: -moz-linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
    background: linear-gradient(146deg, rgba(234, 234, 234, 0.4) 0%, rgba(237, 235, 235, 0.58) 100%);
}

.common-pagination.white2 .swiper-pagination {
    background: -webkit-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
    background: -o-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
    background: -moz-linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
    background: linear-gradient(146deg, rgba(46, 46, 48, 0.72) 0%, rgba(46, 46, 48, 0.75) 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.common-pagination.white2 .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

.common-pagination.white2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background-color: #fff;
}

.common-pagination.white2 .play-btn {
    border-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    background: -webkit-linear-gradient(155deg, #353537, #353537);
    background: -o-linear-gradient(155deg, #353537, #353537);
    background: -moz-linear-gradient(155deg, #353537, #353537);
    background: linear-gradient(155deg, #353537, #353537);
}

.common-pagination .body {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.common-pagination .pagination {
    position: relative;
    z-index: 2;
}

.common-pagination .swiper-pagination {
    min-width: 54px;
    height: 54px;
    position: static;
    padding: 0 22.003px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 100px;
    background: -webkit-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: -o-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: -moz-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    backdrop-filter: blur(0.1168rem);
    -webkit-backdrop-filter: blur(0.1168rem);
}

.common-pagination .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 7px;
    margin-left: 7px;
    background-color: #707073;
    position: relative;
    opacity: 0;
    transition: width 1s, border-radius 1s;
    border-radius: 100px;
}

.common-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 100px;
}

.common-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    content: "";
    display: block;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    animation: common-pagination-ani 5s linear forwards;
    animation-play-state: running;
}

.common-pagination .swiper-pagination .swiper-pagination-bullet.play:after {
    animation-play-state: running;
}

.common-pagination .swiper-pagination .swiper-pagination-bullet.paused:after {
    animation-play-state: paused;
}

.common-pagination .play-btn {
    width: 54px;
    height: 54px;
    background: -webkit-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: -o-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: -moz-linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    background: linear-gradient(146deg, rgba(218, 214, 214, 0.4) 0%, rgba(214, 211, 211, 0.58) 100%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 7px;
    z-index: 3;
    position: relative;
    flex-shrink: 0;
}

.common-pagination .play-btn .fa-pause {
    display: none;
}

.common-pagination .play-btn.active .fa-play {
    display: none;
}

.common-pagination .play-btn.active .fa-pause {
    display: block;
}

.common-pagination .play-btn .iconfont {
    font-size: 30.01px;
}

.common-pagination .play-btn .iconfont:nth-child(2) {
    display: none;
}

.common-pagination .play-btn-bg {
    width: 54px;
    height: 54px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: #edb65b;
    transform: scale(1.5);
    margin-top: -27px;
    margin-left: -27px;
}

@keyframes common-pagination-ani {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .common-pagination {
        bottom: 15px;
    }

    .common-pagination .swiper-pagination {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        border-radius: 25px;
        border: 1px solid #E8E8EB;
    }

    .common-pagination .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin-right: 4px;
        margin-left: 4px;
    }

    .common-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 40px;
    }

    .common-pagination .play-btn {
        width: 34px;
        height: 34px;
        border: 1px solid #E8E8EB;
    }

    .common-pagination .play-btn .iconfont {
        font-size: 18px;
    }

    .common-pagination .play-btn-bg {
        width: 32px;
        height: 32px;
        margin-top: -16px;
        margin-left: -16px;
    }
}

/* ==================== 通用播放分页 End ==================== */
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页*/
/*轮播*/
.banner {
    margin-top: -1.5rem;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .banner {
        margin-top: 0;
    }
}

.banner .img {
    height: 100%;
}

.banner .img img,
.banner .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .banner .img img,
    .banner .img video {
        height: 50vh;
    }
}

.banner .swiper-banner {
    height: 100%;
}

.banner .swiper-banner .text {
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20%;
    top: 0;
    color: #fff;
    text-align: left;
    height: fit-content;
    max-width: 20rem !important;
}

@media screen and (max-width: 1366px) {
    .banner .swiper-banner .text {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .text {
        top: auto;
        bottom: 50px;
        max-width: 100% !important;
    }
}

.banner .swiper-banner .text .img {
    transition: all 1s;
    transform: translateY(100px);
    opacity: 0;
}

.banner .swiper-banner .text .img img {
    max-width: 724px;
    width: 37.708vw;
}

.banner .swiper-banner .text .sup {
    transition: all 1s;
    transform: translateY(100px);
    opacity: 0;
    font-size: 20px;
    color: #000;
}

@media screen and (max-width: 1600px) {
    .banner .swiper-banner .text .sup {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .text .sup {
        font-size: 14px;
    }
}

.banner .swiper-banner .text .title {
    font-size: 1.2rem;
    transition: all 0.5s;
    transform: translateY(50px);
    opacity: 0;
    width: 100%;
    line-height: 1.3;
    font-weight: 600;

    background: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 13rem;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .text .title {
        font-size: 24px;
        line-height: 1.3;
        max-width: 100%;
    }
}

.banner .swiper-banner .text .summary {
    margin-top: 20px;
    font-size: 0.43rem;
    transition: all 0.5s;
    transform: translateY(50px);
    opacity: 0;
    width: 100%;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #86868b 50%, rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .text .summary {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.banner .swiper-banner .text.white .title {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner .swiper-banner .text.white .summary {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner .swiper-banner .text.white .banner-more .more {
    border-color: #fff;
    color: #fff;
}
.banner .swiper-banner .text.white .banner-more .more:hover {
    border-color: #fff;
    color: #000;
    background: #fff;
}

.banner .swiper-banner .text.white .banner-more .more:hover img {
    filter: none;
}

.banner .swiper-banner .text .banner-more {
    transition: all 0.5s;
    transform: translateY(50px);
    opacity: 0;
    text-align: left;
    margin-top: 40px;
}

.banner .swiper-banner .text .banner-more .more {
    width: 2rem;
    height: 0.8rem;
    color: #333;
    position: relative;
    border-radius: 29px;
    font-size: 0.2rem;
    transition: all 0.5s;
    border: 1px solid #a7a7a7;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .text .banner-more .more {
        width: 100px;
        height: 30px;
        font-size: 12px;
    }
}

.banner .swiper-banner .text .banner-more .more i {
    font-size: 12px;
    margin-left: 4px;
    transform: translateY(1px);
}

.banner .swiper-banner .text .banner-more .more span {
    transform: translateX(0.07rem);
    transition: all 0.2s;
}

.banner .swiper-banner .text .banner-more .more img {
    width: 0.14rem;
    margin-left: 5px;
    transition: all 0.5s;
    transform: translate(-180%, 180%);
    opacity: 0;
}

.banner .swiper-banner .text .banner-more .more:hover {
    background: #000;
    color: #fff;
}

.banner .swiper-banner .text .banner-more .more:hover span {
    transform: translateX(0);
}

.banner .swiper-banner .text .banner-more .more:hover img {
    filter: brightness(100);
    transform: translate(0, 0);
    opacity: 1;
}

.banner .swiper-banner .swiper-slide-active .img {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.banner .swiper-banner .swiper-slide-active .sup {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.banner .swiper-banner .swiper-slide-active .title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.banner .swiper-banner .swiper-slide-active .summary {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.banner .swiper-banner .swiper-slide-active .numbers {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.banner .swiper-banner .swiper-slide-active .tip {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.9s;
}

.banner .swiper-banner .swiper-slide-active .banner-more {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.9s;
}

.banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
    width: 90%;
    max-width: 1720px;
    margin: auto;
    left: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
    .banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 30px;
    }
}

.banner .swiper-banner .swiper-pagination-bullet {
    --swiper-pagination-bullet-inactive-color: #fff;
    opacity: 0.4;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
    position: relative;
    border-radius: 50%;
}

.banner .swiper-banner .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    opacity: 0.8;
}

.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    --swiper-pagination-color: var(--dominant-color);
    opacity: 1;
}

.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: var(--dominant-color);
}

.banner .swiper-banner .swiper-pager {
    display: flex;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 1;
    width: 90%;
    max-width: 1740px;
    margin: auto;
    align-items: center;
    color: #fff;
}

.banner .swiper-banner .swiper-pagination-progressbar {
    position: initial;
    max-width: 700px;
    margin: 0 20px;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .swiper-pagination-progressbar {
        max-width: 50%;
    }
}

.banner .swiper-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fff;
}

.banner .swiper-banner .swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 2px;
}

.banner .swiper-banner .swiper-button-prev,
.banner .swiper-banner .swiper-button-next {
    border: none;
    width: 0.84rem;
    height: 0.84rem;
    opacity: 0;
}

.banner .swiper-banner .swiper-button-prev::after,
.banner .swiper-banner .swiper-button-next::after {
    display: none;
}

@media screen and (max-width: 768px) {
    .banner .swiper-banner .swiper-button-prev,
    .banner .swiper-banner .swiper-button-next {
        display: none;
    }
}

.banner .swiper-banner .swiper-button-prev {
    left: 6.4rem;
}

.banner .swiper-banner .swiper-button-next {
    right: 6.4rem;
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
    opacity: 1;
}

.banner .item-pagination {
    max-width: 20rem;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .banner .item-pagination {
        display: none;
    }
}

.banner .item-pagination .swiper {
    margin-left: 0;
    width: fit-content;
    height: 90px;
}

.banner .item-pagination .swiper-slide {
    height: 30px;
    color: #fff;
    opacity: 0.2;
    transition: all 0.5s;
    font-size: max(14px, 0.2rem);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.banner .item-pagination .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.banner .item-pagination .swiper-slide.swiper-slide-active .yuan {
    opacity: 1;
}

.banner .item-pagination .swiper-slide.swiper-slide-active #circle {
    transition-duration: 5.5s;
    stroke-dashoffset: 0;
}

.banner .item-pagination .swiper-slide .yuan {
    margin-right: 20px;
    opacity: 0;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.banner .item-pagination .swiper-slide svg {
    top: -1px;
    left: -1px;
    width: 21px;
    height: 21px;
    opacity: 1;
    z-index: 10;
    position: absolute;
}

.banner .item-pagination .swiper-slide svg #circle {
    transition-timing-function: linear;
    stroke-dasharray: 140, 140;
    stroke-dashoffset: 140;
}

.banner .item-pagination .swiper-button-prev,
.banner .item-pagination .swiper-button-next {
    height: 30px;
    width: 100%;
    background: #000;
    border-radius: 0;
    margin-top: auto;
    opacity: 0;
}

.banner .item-pagination .swiper-button-prev {
    bottom: auto;
    top: 0;
}

.banner .item-pagination .swiper-button-next {
    top: auto;
    bottom: 0;
}

.banner .swiper-banner .text.text-center {
    text-align: center;
    bottom: auto;
    top: 15%;
    display: flex;
    flex-direction: column;
}

.banner .swiper-banner .text.text-center .more {
    margin-left: auto;
    margin-right: auto;
}

.banner .swiper-banner .text.text-center .banner-more {
    order: 3;
}

.banner .swiper-banner .text.text-center .title {
    margin-left: auto;
    margin-right: auto;
    order: 2;
}

.banner .swiper-banner .text.text-center .summary {
    margin-bottom: 10px;
    order: 1;
}

.banner .swiper-banner .text.text-right {
    text-align: right;
    bottom: auto;
    top: 20%;
}

.banner .swiper-banner .text.text-right .text-box {
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: 0;
}

.banner .swiper-banner .text.text-right .more {
    margin-left: auto;
    margin-right: auto;
}

.banner .swiper-banner .text.text-right .title {
    margin-left: auto;
    margin-right: 0;
}

#KeyShotXR {
    margin: auto;
}

.index1 {
    background: #f7f7f7;
    position: relative;
}

.index1 .tabs {
    font-size: max(14px, 0.26rem);
    color: #c5c5c5;
    font-family: MiSans-Demibold;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .index1 .tabs {
        flex-wrap: wrap;
    }
}

.index1 .tabs .item {
    cursor: pointer;
}

.index1 .tabs .item.active {
    color: #333;
}

.index1 .swiper {
    margin-top: 2rem;
    position: relative;
}

.index1 .swiper .swiper-slide {
    position: relative;
}

.index1 .swiper .text {
    text-align: center;
}

.index1 .swiper .text .title {
    font-family: MiSans-Demibold;
    font-size: max(20px, 0.72rem);
}

.index1 .swiper .text .button {
    margin-top: 0.8rem;
    gap: 0.4rem;
}

@media screen and (max-width: 768px) {
    .index1 .swiper .text .button {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

.index1 .swiper .text .button .more,
.index1 .swiper .text .button .M3d {
    width: 100px;
    height: 40px;
    border-radius: 1rem;
}

@media screen and (min-width: 1921px) {
    .index1 .swiper .text .button .more,
    .index1 .swiper .text .button .M3d {
        width: 2.1rem;
        height: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .index1 .swiper .text .button .more,
    .index1 .swiper .text .button .M3d {
        border-radius: 20px;
    }
}

.index1 .swiper .text .button .more {
    border: 1px solid #d7d7d7;
    transition: all 0.5s;
}

.index1 .swiper .text .button .more:hover {
    background: #000;
    color: #fff;
}

.index1 .swiper .text .button .M3d {
    background: #efefef;
    font-size: max(14px, 0.24rem);
    font-family: MiSans-Demibold;
    cursor: pointer;
}

.index1 .swiper .text .button .M3d img {
    width: 0.3rem;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .index1 .swiper .text .button .M3d img {
        width: 20px;
    }
}

.index1 .swiper .text .button .M3d.active {
    background: none;
}

.index1 .swiper .img {
    position: relative;
}

.imgGbl-box {
    cursor: url("../images/img36.png"), auto;
}

.index1 .swiper .img.no-3d {
    pointer-events: none;
}

.index1 .swiper .img:hover {
    /*cursor: none;*/
}

.index1 .swiper .imgBox {
    padding-bottom: 43%;
}

.index1 .swiper .tip {
    font-size: max(30px, 3.7rem);
    background: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: -8%;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    font-family: MiSans-Demibold;
}

.index1 .swiper .hover-active {
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    opacity: 0;
}

.index2 {
    background: #fff;
    padding-top: 2.5rem;
    padding-bottom: 2.6rem;
}

.index2 .swiper .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.index2 .swiper .swiper-slide .img {
    height: 100%;
}

.index2 .swiper .swiper-slide .img video {
    height: 100%;
}

.index2 .swiper .text {
    position: absolute;
    top: 1rem;
    left: 20px;
    right: 20px;
    color: #fff;
    text-align: center;
}

.index2 .swiper .text .title {
    font-size: max(16px, 0.75rem);
    font-family: MiSans-Demibold;
}

.index2 .swiper .text .more {
    font-size: max(14px, 0.2rem);
    margin-top: 0.3rem;
    display: block;
}

.index2 .swiper .text .more:hover {
    text-decoration: underline;
}

.index2 .swiper-button {
    width: 18rem;
    margin: 0.9rem auto 0;
    position: sticky;
    bottom: 1rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.2s;
}

@media screen and (max-width: 768px) {
    .index2 .swiper-button {
        width: 90%;
        margin-top: 20px;
    }
}

.index2 .swiper-button .button {
    gap: 0.3rem;
}

@media screen and (max-width: 768px) {
    .index2 .swiper-button .button {
        gap: 10px;
    }
}

.index2 .swiper-button .button .swiper-button-prev,
.index2 .swiper-button .button .swiper-button-next {
    width: 0.9rem;
    height: 0.9rem;
    position: initial;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .index2 .swiper-button .button .swiper-button-prev,
    .index2 .swiper-button .button .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

.index2 .swiper-button .button .swiper-button-prev::after,
.index2 .swiper-button .button .swiper-button-next::after {
    display: none;
}

.index3 {
    background: #f7f7f7;
    padding: 3rem 0;
}

.index3 .index3-box {
    max-width: 18rem;
}

.index3 .index3-box .top {
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .top {
        flex-direction: column-reverse;
    }
}

.index3 .index3-box .top .left .sup {
    font-size: max(14px, 0.28rem);
    font-family: MiSans-Demibold;
}

.index3 .index3-box .top .left .sup .list {
    display: none;
}

.index3 .index3-box .top .left .sup .list.active {
    display: flex;
    align-items: center;
}

.index3 .index3-box .top .left .sup img {
    width: 0.5rem;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .top .left .sup img {
        width: 16px;
    }
}

.index3 .index3-box .top .left .title {
    font-size: max(20px, 0.62rem);
    font-family: MiSans-Demibold;
    margin-top: 0.6rem;
}

.index3 .index3-box .top .left .more {
    border: 1px solid #d7d7d7;
    width: 120px;
    height: 40px;
    font-size: max(14px, 0.2rem);
    border-radius: 0.5rem;
    margin-top: 0.8rem;
    transition: all 0.5s;
}

@media screen and (min-width: 1921px) {
    .index3 .index3-box .top .left .more {
        width: 2.1rem;
        height: 0.8rem;
    }
}

.index3 .index3-box .top .left .more:hover {
    background: #000;
    color: #fff;
}

.index3 .index3-box .top .left .item {
    display: none;
}

.index3 .index3-box .top .left .item.active {
    display: block;
}

.index3 .index3-box .top .right {
    width: 5.7rem;
    height: 5.7rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .top .right {
        width: 60vw;
        height: 60vw;
        margin: 50px auto 30px;
    }
}

.index3 .index3-box .top .right .item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index3 .index3-box .top .right .item.next1 {
    opacity: 0;
    transform: rotateX(270deg);
    transform-origin: bottom;
    transition: opacity 1s ease, transform 1s ease;
}

.index3 .index3-box .top .right .item.next2 {
    opacity: 0;
    top: 20%;
}

.index3 .index3-box .top .right .item.prev1 {
    top: -10%;
    transform: scale(0.9);
}

.index3 .index3-box .top .right .item.prev2 {
    top: -20%;
    transform: scale(0.8);
}

.index3 .index3-box .top .right.carousel2 .item.prev2 {
    opacity: 0;
}

.index3 .index3-box .top .right .item.prev3 {
    top: -30%;
    transform: scale(0.7);
    opacity: 0;
}

.index3 .index3-box .bottom {
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom {
        flex-direction: column-reverse;
    }
}

.index3 .index3-box .bottom .button {
    gap: 0.3rem;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom .button {
        gap: 10px;
    }
}

.index3 .index3-box .bottom .button div {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    border: 1px solid #d7d7d7;
    cursor: pointer;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom .button div {
        width: 30px;
        height: 30px;
    }
}

.index3 .index3-box .bottom .button div i {
    transition: all 0.5s;
    font-size: 0.28rem;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom .button div i {
        font-size: 12px;
    }
}

.index3 .index3-box .bottom .button div:hover {
    background: #222;
}

.index3 .index3-box .bottom .button div:hover i {
    color: #fff;
}

.index3 .index3-box .bottom .items {
    margin-left: 0.8rem;
    flex: 1;
    position: relative;
    gap: 20px;
    border-bottom: 2px solid #d7d7d7;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom .items {
        margin-bottom: 30px;
        margin-left: 0;
        width: 100%;
        margin-top: 30px;
    }
}

.index3 .index3-box .bottom .items .item {
    flex: 1;
    text-align: center;
    font-size: max(16px, 0.24rem);
    cursor: pointer;
    padding-bottom: 0.3rem;
    transition: all 0.5s;
    color: #747474;
    position: relative;
}

@media screen and (max-width: 768px) {
    .index3 .index3-box .bottom .items .item {
        font-size: 12px;
        padding-bottom: 10px;
    }
}

.index3 .index3-box .bottom .items .item::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #d5a454;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: all 0.5s;
}

.index3 .index3-box .bottom .items .item.active {
    color: #000;
    border-color: #d5a454;
    font-weight: 600;
}

.index3 .index3-box .bottom .items .item.active::after {
    opacity: 1;
}

.index3 .index3-box .bottom .items .item:hover {
    font-weight: 400;
}

.index3 .index3-box .bottom .items .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    transition: all 0.5s;
    background: #d5a454;
    height: 2px;
}

.index4 {
    margin-bottom: -60px;
}

.form {
    display: flex;
    grid-gap: 30px;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .form {
        grid-gap: 10px;
    }
}

.form label {
    display: block;
    flex-basis: calc(50% - 15px);
}

@media screen and (max-width: 768px) {
    .form label {
        flex-basis: 100%;
    }
}

.form label.w100 {
    flex-basis: 100%;
}

.form select {
    height: 58px;
    padding-left: 20px;
    background: #f1f1f1;
    border: none;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .form select {
        font-size: 12px;
    }
}

.form input {
    width: 100%;
    height: 58px;
    border-radius: 10px;
    background: #f1f1f1;
    border: none;
    padding: 0 20px;
    text-indent: 0;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .form input {
        height: 50px;
        padding: 0 10px;
    }
}

.form textarea {
    border-radius: 10px;
    height: 154px;
    background: #f1f1f1;
    border: none;
    padding: 20px;
    text-indent: 0;
    font-size: 16px;
}

.form .a,
.form button {
    width: 100%;
    margin: auto;
    height: 58px;
    background: var(--dominant-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .form .a,
    .form button {
        font-size: 16px;
    }
}

.f-button {
    display: flex;
    width: 200px;
    height: 50px;
    background: #00abf1;
    border-radius: 4px;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.goTop {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    transition: all 0.5s;
    z-index: 1000;
    top: -70px;
    left: 0;
    right: 0;
    margin: auto;
}

.goTop:hover .button span {
    transform: translateY(-10px);
}

@media screen and (max-width: 768px) {
    .goTop {
        transform: scale(0.5);
    }
}

.goTop .lazy {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.goTop .button {
    width: 80px;
    height: 80px;
    color: var(--dominant-color);
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goTop .button span {
    transition: all 0.5s;
}

.goTop svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 55px);
    height: calc(100% - 55px);
}

.goTop svg.cm {
    transition: none;
    opacity: 1;
}

.goTop svg .p1 {
    animation: circleRotate 4s linear infinite;
    transform-origin: 50% 50%;
}

.goTop svg circle {
    fill: #fff;
    stroke: transparent;
}

.goTop svg .p2 {
    animation: circleRotateReverse 4s linear infinite;
}

.goTop.button-div {
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    margin-left: 0;
    transform-origin: 0;
    transform: scale(1);
}

.goTop.button-div .button {
    width: 30px;
    height: 30px;
}

.goTop.button-div .button span {
    font-size: 14px;
    transform: translateY(0) !important;
}

/*--------------------------------------------------------*/
/*内页*/
/*内页通用*/
.page-title {
    text-align: left;
    position: relative;
    margin-bottom: 1.3rem;
}

.page-title.textC {
    text-align: center;
}

.page-title.colorW {
    color: #fff;
}

.page-title .title {
    line-height: 1;
    font-size: 0.75rem;
    font-family: MiSans-Demibold;
    position: relative;
}

@media screen and (max-width: 768px) {
    .page-title .title {
        font-size: 20px;
    }
}

.page-title .title img {
    max-width: 200px;
}

.page-title .title2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .page-title .title2 {
        font-size: 16px;
    }
}

.page-title .summary {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-family: Montserrat-Light;
}

@media screen and (max-width: 768px) {
    .page-title .summary {
        font-size: 12px;
        margin-top: 10px;
    }
}

.page-title .summary a:hover {
    text-decoration: underline;
}

.page-color-title {
    margin-top: 310px;
    font-size: 200px;
    background: linear-gradient(to top, white 55%, black 45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1600px) {
    .page-color-title {
        margin-top: 130px;
        font-size: 120px;
    }
}

@media screen and (max-width: 1440px) {
    .page-color-title {
        margin-top: 130px;
        font-size: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .page-color-title {
        margin-top: 0;
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    .page-color-title {
        display: none;
    }
}

/*内页大图*/
.pageBanner {
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    width: 26rem;
}

.pageBanner .img {
    width: 100%;
    height: 100%;
}

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

.pageBanner .banner-box {
    margin: auto;
    position: absolute;
    left: 2.2rem;
    bottom: 1.6rem;
    z-index: 2;
    height: fit-content;
    text-align: left;
}

.pageBanner .banner-box .banner-title {
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    font-family: MiSans-Demibold;
    background: linear-gradient(103deg, #FFC9A2 -19.67%, #FF6B00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pageBanner .banner-box .banner-summary {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .pageBanner .banner-box .banner-summary {
        font-size: 14px;
    }
}

.pageBanner .banner-box .banner-button {
    width: 210px;
    height: 60px;
    background: var(--dominant-color);
    border-radius: 4px;
    margin: 40px auto 0;
    transition: all 0.5s;

}

.pageBanner .banner-box .banner-button:hover {
    opacity: 0.7;
}

.page-banner {
    position: relative;
}

.page-banner .page-img {
    border-radius: 16px;
    overflow: hidden;
}

.page-banner .page-img img {
    width: 100%;
}

.page-banner .page-text {
    position: absolute;
    left: 2.2rem;
    bottom: 1.2rem;
    text-align: left;
}

.page-banner .page-text .title {
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
    background: linear-gradient(150deg, #f9bd48, #f69b30);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    .page-banner .page-text .title {
        font-size: 16px;
    }
}

.page-banner .page-text .summary {
    margin-top: 30px;
    font-size: 0.36rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .page-banner .page-text .summary {
        margin-top: 4px;
        font-size: 12px;
    }
}

@keyframes sizing {
    0%,
    100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

/*内页侧边栏*/
/*内页导航*/
.page-menu {
    width: 100%;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.03);
}

.page-menu .page-phone-click {
    display: none;
}

@media screen and (max-width: 768px) {
    .page-menu .page-phone-click {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        background: var(--dominant-color);
        color: #fff;
        font-size: 14px;
    }
}

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

.page-menu .menu-box {
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    grid-gap: 10px;
}

@media screen and (max-width: 768px) {
    .page-menu .menu-box {
        grid-gap: 20px;
        justify-content: flex-start;
        overflow: auto;
    }
}

.page-menu .menu-box a {
    color: #333333;
    font-size: 18px;
    transition: all 0.5s;
    position: relative;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

@media screen and (max-width: 1600px) {
    .page-menu .menu-box a {
        font-size: 16px;
        height: 60px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1440px) {
    .page-menu .menu-box a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .page-menu .menu-box a {
        font-size: 14px;
        height: 50px;
        padding: 0;
        flex-shrink: 0;
    }
}

.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
    color: var(--dominant-color);
}

.page-menu .menu-box a.active::after,
.page-menu .menu-box a:hover::after {
    width: 100%;
}

.page-menu .menu-box a::after {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--dominant-color);
    height: 2px;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .page-menu {
        flex-direction: column;
        font-size: 14px;
        height: auto;
    }
}

.page-menu .first-menu {
    width: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 10px;
}

.page-menu .first-menu.active span {
    background: #15808f;
}

.page-menu .first-menu.active span .f-title {
    color: #fff;
}

.page-menu .first-menu.active span i::before,
.page-menu .first-menu.active span i::after {
    background: #fff;
}

.page-menu .first-menu span {
    position: relative;
    width: 100%;
}

.page-menu .first-menu span i {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 12px;
    transition: all 0.5s;
    border-radius: 50%;
    width: 50px;
    height: 100%;
    display: flex;
    right: 0;
    margin: auto;
}

.page-menu .first-menu span i::before,
.page-menu .first-menu span i::after {
    content: '';
    position: absolute;
    background: #000;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-menu .first-menu span i::before {
    width: 14px;
    height: 2px;
}

.page-menu .first-menu span i::after {
    height: 14px;
    width: 2px;
}

.page-menu .first-menu span:hover i::before,
.page-menu .first-menu span:hover i::after {
    background: #fff;
}

.page-menu .first-menu span:hover .f-title {
    background: #ed941e;
    color: #fff;
}

.page-menu .first-menu .f-title {
    font-size: 16px;
    position: relative;
    color: #000;
    text-align: left;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border: 1px solid #ddd;
    line-height: 1.4;
    transition: all 0.5s;
}

@media screen and (max-width: 1280px) {
    .page-menu .first-menu .f-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .page-menu .first-menu .f-title {
        padding: 0;
        height: 40px;
        line-height: 40px;
        text-align: center;
        justify-content: center;
    }
}

.page-menu .first-menu .f-title.active,
.page-menu .first-menu .f-title:hover {
    background: #ed941e;
    color: #fff;
}

.page-menu .first-menu .f-title.active::after,
.page-menu .first-menu .f-title:hover::after {
    width: 100%;
}

.page-menu .first-menu .s-box {
    display: none;
}

.page-menu .first-menu .s-box a {
    font-size: 16px;
    text-align: left;
    justify-content: flex-start;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    padding: 15px 40px;
    display: block;
}

.page-menu .first-menu .s-box a::after {
    display: none;
}

.page-menu .first-menu .s-box a:hover {
    background: #ed941e;
    color: #fff;
}

@media screen and (max-width: 1600px) {
    .page-menu .first-menu .s-box a {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .page-menu .first-menu .s-box a {
        font-size: 12px;
        height: 40px;
        text-align: center;
        justify-content: center;
        line-height: 40px;
        padding: 0;
    }
}

/*面包屑*/
.location {
    display: flex;
    align-items: center;
    color: #999999;
    flex-wrap: wrap;
    padding: 30px 0;
}

.location i {
    color: #9e9e9e;
}

.location span {
    color: var(--dominant-color);
}

.location a {
    color: #666;
    font-size: 16px;
}

.location a i {
    color: var(--dominant-color);
    margin-right: 4px;
}

@media screen and (max-width: 768px) {
    .location a {
        font-size: 12px;
    }
}

.location a:hover {
    text-decoration: underline;
}

/*分页*/
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4.167vw;
}

.pager a {
    width: 45px;
    height: 45px;
    margin: 0 6px;
    border: 1px solid #ddd;
    color: #6e6e6e;
    transition: all 0.5s;
    background: #fff;
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    .pager a {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin: 0 4px;
    }
}

.pager a:hover,
.pager a.active {
    background: var(--dominant-color);
    border-color: var(--dominant-color);
    color: #fff;
}

.pager2 {
    margin-top: 140px;
}

@media screen and (max-width: 768px) {
    .pager2 {
        margin-top: 50px;
        flex-direction: column-reverse;
    }
}

.pager2 .left .prev,
.pager2 .left .next {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #000;
    transition: all 0.5s;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.04);
    margin-right: 20px;
    cursor: pointer;
}

.pager2 .left .prev:hover,
.pager2 .left .next:hover {
    background: #000;
    color: #fff;
}

.pager2 .right {
    flex-basis: calc(100% - 220px);
    color: #d5d5d5;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .pager2 .right {
        margin-bottom: 20px;
    }
}

.pager2 .right .line1 {
    height: 1px;
    flex: 1;
    background: #d5d5d5;
}

@media screen and (max-width: 768px) {
    .pager2 .right .line1 {
        display: none;
    }
}

.pager2 .right .number {
    flex-basis: 145px;
}

.pager2 .right .number .num {
    color: #000;
    margin-right: 6px;
}

.pager2 .right .number .max {
    margin-left: 6px;
}

.pager2 .right .line2 {
    height: 1px;
    flex-basis: 270px;
    background: #d5d5d5;
}

@media screen and (max-width: 768px) {
    .pager2 .right .line2 {
        display: none;
    }
}

/*内页左右结构*/
.page-box {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .page-box {
        flex-direction: column;
    }
}

.page-box .left {
    flex-basis: 340px;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .page-box .left {
        flex-basis: 300px;
    }
}

@media screen and (max-width: 768px) {
    .page-box .left {
        width: 100%;
        flex-basis: 100%;
    }
}

.page-box .right {
    flex: 1;
    margin-left: 50px;
}

@media screen and (max-width: 768px) {
    .page-box .right {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .page-box .right .right-content {
        padding: 10px;
    }
}

.pages {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.pages .prev,
.pages .next {
    flex-basis: 100%;
    transition: all 0.5s;
    font-size: 20px;
    color: var(--dominant-color);
    margin-bottom: 20px;
    display: inline-block;
}

.pages .prev:hover,
.pages .next:hover {
    text-decoration: underline;
}

/*新闻资讯*/
.news .news-box .item {
    transition: all 0.5s;
    border-bottom: 2px solid #eee;
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 35px;
}

@media screen and (max-width: 768px) {
    .news .news-box .item {
        flex-direction: column;
    }
}

.news .news-box .item .img {
    border-radius: 10px;
    overflow: hidden;
    width: 490px;
}

@media screen and (max-width: 1600px) {
    .news .news-box .item .img {
        width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .news .news-box .item .img {
        width: 100%;
    }
}

.news .news-box .item .img .imgBox {
    padding-bottom: 53%;
}

.news .news-box .item .text {
    margin-left: 30px;
    flex: 1;
    color: #666;
}

@media screen and (max-width: 768px) {
    .news .news-box .item .text {
        margin-left: 0;
        margin-top: 10px;
    }
}

.news .news-box .item .text .title {
    color: #000;
    transition: all 0.5s;
    font-size: 18px;
}

@media screen and (max-width: 1600px) {
    .news .news-box .item .text .title {
        font-size: 16px;
    }
}

.news .news-box .item .text .summary {
    margin: 10px 0 40px;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.5s;
    color: #666;
}

@media screen and (max-width: 768px) {
    .news .news-box .item .text .summary {
        font-size: 12px;
        margin: 10px 0;
        min-height: auto;
    }
}

.news .news-box .item .text .more {
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .news .news-box .item .text .more {
        font-size: 12px;
    }
}

.news .news-box .item .text .more i {
    transform: translateY(1px);
}

.news .news-box .item .time {
    color: #aaaaaa;
    transition: all 0.5s;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .news .news-box .item .time {
        margin-top: 10px;
    }
}

.news .news-box .item:hover .title {
    color: var(--dominant-color);
}

.news .news-box .item:hover .more {
    color: var(--dominant-color);
}

.activities .news .news-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 120px;
}

@media screen and (max-width: 1600px) {
    .activities .news .news-box {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .activities .news .news-box {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        border-bottom: none;
        padding-bottom: 0;
    }
}

.activities .news .news-box .item {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .activities .news .news-box .item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
}

.activities .news .news-box .text {
    margin-left: 0;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .activities .news .news-box .text {
        margin-top: 10px;
    }
}

.activities .news .news-box .text .time {
    color: #666;
}

.activities .news .news-box .text .summary {
    margin-bottom: 20px;
}

.activities .news .news-box .img {
    width: 100%;
}

.activities .activities-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    padding-bottom: 120px;
    border-bottom: 2px solid #eee;
}

@media screen and (max-width: 1600px) {
    .activities .activities-box {
        padding-bottom: 80px;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .activities .activities-box {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.activities .activities-box .item {
    display: flex;
    justify-content: space-between;
    grid-gap: 30px;
}

@media screen and (max-width: 750px) {
    .activities .activities-box .item {
        flex-direction: column-reverse;
    }
}

.activities .activities-box .item .text {
    flex-basis: 50%;
}

.activities .activities-box .item .text .sup {
    background: var(--dominant-color);
    padding: 10px 21px;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    margin-top: 28px;
}

@media screen and (max-width: 1600px) {
    .activities .activities-box .item .text .sup {
        margin-top: 0;
    }
}

.activities .activities-box .item .text .title {
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 1600px) {
    .activities .activities-box .item .text .title {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .text .title {
        margin-top: 12px;
        font-size: 16px;
    }
}

.activities .activities-box .item .text .summary {
    color: #666666;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 20px 0;
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .text .summary {
        font-size: 14px;
    }
}

.activities .activities-box .item .text .i-items {
    grid-gap: 24px;
    margin-bottom: 60px;
    display: flex;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #d9d9d9;
}

@media screen and (max-width: 1600px) {
    .activities .activities-box .item .text .i-items {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .text .i-items {
        margin-bottom: 40px;
        margin-top: 24px;
        padding-top: 24px;
    }
}

.activities .activities-box .item .text .i-item:first-child {
    width: 160px;
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .text .i-item:first-child {
        width: 120px;
    }
}

@media screen and (max-width: 750px) {
    .activities .activities-box .item .text .i-item:first-child {
        min-width: initial;
    }
}

.activities .activities-box .item .text .i-item:last-child {
    flex: 1;
}

.activities .activities-box .item .text .i-item .key {
    color: #999;
    font-size: 12px;
}

.activities .activities-box .item .text .i-item .value {
    font-size: 18px;
    margin-top: 8px;
}

@media screen and (max-width: 1600px) {
    .activities .activities-box .item .text .i-item .value {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .text .i-item .value {
        font-size: 14px;
    }
}

.activities .activities-box .item .img {
    flex-basis: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.activities .activities-box .item .img .imgBox {
    padding-bottom: 57%;
}

.activities .activities-box .item .img .imgBox .img2 {
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    .activities .activities-box .item .img .imgBox {
        padding-bottom: 100%;
    }

    .activities .activities-box .item .img .imgBox .img1 {
        opacity: 0;
    }

    .activities .activities-box .item .img .imgBox .img2 {
        opacity: 1;
    }
}

@media screen and (max-width: 750px) {
    .activities .activities-box .item .img .imgBox {
        padding-bottom: 50%;
    }

    .activities .activities-box .item .img .imgBox .img1 {
        opacity: 1;
    }

    .activities .activities-box .item .img .imgBox .img2 {
        opacity: 0;
    }
}

.activities .activities-box .item .more {
    width: 144px;
    height: 46px;
    background: #333333;
    border-radius: 6px;
    color: #fff;
    transition: all 0.5s;
    font-size: 16px;
}

.activities .activities-box .item .more:hover {
    background: var(--dominant-color);
}

.news-search {
    margin-bottom: 30px;
}

.news-search label {
    max-width: 600px;
    margin-right: 0;
    margin-left: auto;
    display: block;
    width: 100%;
    position: relative;
}

.news-search label input {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 2px solid #eee;
    background: none;
    color: #666;
    padding-left: 0;
    text-indent: 0;
}

.news-search label input::placeholder {
    color: #666;
}

.news-search label button {
    width: 50px;
    height: 50px;
    background: none;
    color: #666;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.news-search label button img {
    width: 16px;
    filter: brightness(0);
    opacity: 0.5;
}

.news-search label i {
    position: absolute;
    font-size: 20px;
    right: -50px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

@media screen and (max-width: 768px) {
    .video {
        margin-top: 50px;
    }
}

.video .news .news-box {
    margin-top: 0;
    grid-gap: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    .video .news .news-box {
        grid-gap: 0;
    }
}

.video .news .news-box .text {
    margin-top: 10px;
}

.related-title {
    font-family: Montserrat-Bold;
    font-size: 26px;
    color: var(--dominant-color);

    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .related-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.news-detail-right .news .news-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
    border: none;
}

.news-detail-right .news .news-box .item {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.news-detail-right .news .news-box .text {
    margin-top: 16px;
}

.news-detail-right .news .news-box .text .title {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 0;
}

.news-detail-right .news .news-box .text .time {
    margin-top: 10px;
}

.page-menu2 .items {
    margin-bottom: 15px;
    background: #f8f8f9;
}

@media screen and (max-width: 768px) {
    .page-menu2 .items {
        margin-bottom: 10px;
    }
}

.page-menu2 .items.active .icon {
    transform: rotate(90deg);
}

.page-menu2 .items .first-item {
    height: 55px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: all 0.5s;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .page-menu2 .items .first-item {
        font-size: 14px;
        height: 40px;
    }
}

.page-menu2 .items .first-item.active,
.page-menu2 .items .first-item:hover {
    background: var(--dominant-color);
    color: #fff;
}

.page-menu2 .items .first-item.active .icon,
.page-menu2 .items .first-item:hover .icon {
    color: #fff;
}

.page-menu2 .items .first-item .icon {
    width: 34px;
    height: 34px;
    color: #666;
    border-radius: 50%;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .page-menu2 .items .first-item .icon {
        width: 20px;
        height: 20px;
    }
}

.page-menu2 .items .second-box {
    border-top: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 10px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.page-menu2 .items .second-box label {
    display: block;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .page-menu2 .items .second-box label {
        font-size: 14px;
        margin: 10px 0;
    }
}

.page-menu2 .items .second-box label input {
    border: 1px solid #a7a7a7;
}

.page-menu2 .items .second-box label.active,
.page-menu2 .items .second-box label:hover {
    color: var(--dominant-color);
}

/*新闻详情*/
.news-detail .title {
    font-family: Montserrat-Bold;
    font-size: 26px;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 20px;
}

@media screen and (max-width: 1366px) {
    .news-detail .title {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .news-detail .title {
        font-size: 20px;
    }
}

.news-detail .mid {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.news-detail .mid .item {
    display: flex;
    align-items: center;
    margin: 0 20px;
    color: #999;
}

.news-detail .mid .item .icon {
    width: 24px;
    height: 20px;
    margin-right: 10px;
}

.news-detail .mid .item .icon img {
    object-fit: contain;
    height: 100%;
}

.news-detail .details {
    display: flex;
    border-top: 2px solid #eee;
    margin-top: 30px;
    padding-top: 70px;
    grid-gap: 60px;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .news-detail .details {
        flex-direction: column;
        margin-top: 10px;
        padding-top: 30px;
    }
}

.news-detail .details .left {
    flex: 1;
    max-width: 1015px;
}

.news-detail .details .left .details-container {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    min-height: 300px;
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .news-detail .details .left .details-container {
        font-size: 14px;
    }

    .news-detail .details .left .details-container img {
        max-width: 100% !important;
        height: auto !important;
    }
}

.news-detail .details .right {
    flex-basis: 400px;
}

@media screen and (max-width: 1440px) {
    .news-detail .details .right {
        flex-basis: 300px;
    }
}

@media screen and (max-width: 768px) {
    .news-detail .details .right {
        flex-basis: 100%;
        width: 100%;
    }
}

.news-detail .detail-pager a {
    font-size: 16px;
    transition: all 0.5s;
    font-family: Montserrat-Light;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .news-detail .detail-pager a {
        flex-basis: 100%;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.news-detail .detail-pager a img {
    transition: all 0.5s;
}

.news-detail .detail-pager a:hover {
    color: var(--dominant-color);
}

.news-detail .detail-pager .share-box {
    margin-top: 50px;
    font-size: 16px;
    color: var(--dominant-color);
}

.news-detail .detail-pager .share-box .share {
    margin-left: 20px;
}

.news-detail .detail-pager .share-box .share a {
    margin-right: 4px;
}

.news-detail .detail-pager .share-box .share img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/*联系我们*/
.page-info {
    max-width: 22.88rem;
    margin: 1.8rem auto 0;
}

@media screen and (max-width: 768px) {
    .page-info {
        max-width: 100%;
        margin-top: 40px;
    }
}

.page-text {
    font-size: max(12px, 0.2rem);
}

.page-text h6 {
    color: #808080;
    font-size: max(12px, 0.2rem);
}

.page-text table tr td {
    padding: 10px 20px;
    border: 1px solid #333;
}

.contact {
    margin-bottom: 3rem;
    background: #f5f5f7;
}

.contact .swiper {
    overflow: initial;
}

.contact .swiper .swiper-slide {
    background: #fff;
    border-radius: 0.3rem;
    padding: 0.7rem;
    margin-right: 0.4rem;
    height: auto;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-slide {
        padding: 20px;
        margin-right: 20px;
        border-radius: 10px;
    }
}

.contact .swiper .swiper-slide .icon {
    width: 0.7rem;
    height: 0.7rem;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-slide .icon {
        width: 30px;
        height: 30px;
    }
}

.contact .swiper .swiper-slide .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact .swiper .swiper-slide .text {
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-slide .text {
        margin-top: 10px;
    }
}

.contact .swiper .swiper-slide .text .title {
    font-size: max(20px, 0.45rem);
    font-family: MiSans-Demibold;
    line-height: 1;
}

.contact .swiper .swiper-slide .text .summary {
    margin-top: 0.4rem;
    font-size: max(14px, 0.3rem);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-slide .text .summary {
        flex-direction: column;
        margin-top: 10px;
    }
}

.contact .swiper .swiper-slide .text .summary span {
    text-decoration: underline;
    margin-right: 0.4rem;
}

.contact .swiper .swiper-slide .text .copy {
    width: 0.22rem;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-slide .text .copy {
        width: 12px;
    }
}

.contact .swiper .swiper-slide .text .copy img {
    width: 100%;
}

.contact .swiper .swiper-button {
    margin-top: 0.9rem;
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
    gap: 0.2rem;
}

@media screen and (max-width: 768px) {
    .contact .swiper .swiper-button {
        gap: 10px;
        margin-top: 20px;
    }
}

.contact .swiper .swiper-button .swiper-button-prev,
.contact .swiper .swiper-button .swiper-button-next {
    position: initial;
    margin-top: auto;
    border: none;
}

.contact .swiper .swiper-button .swiper-button-prev::after,
.contact .swiper .swiper-button .swiper-button-next::after {
    display: none;
}

.download {
    margin-bottom: 3rem;
}

.download .items {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

@media screen and (max-width: 768px) {
    .download .items {
        gap: 20px;
    }
}

.download .items .item {
    padding: 1.2rem;
    background: #fff;
    border-radius: 0.3rem;
}

@media screen and (max-width: 768px) {
    .download .items .item {
        padding: 20px;
    }
}

.download .items .item .title {
    font-size: max(16px, 0.6rem);
    font-family: MiSans-Demibold;
}

.download .items .item .title span {
    display: block;
    font-size: 16px;
    margin-top: 10px;
}

.download .items .item .bottom {
    margin-top: 0.2rem;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .download .items .item .bottom {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .download .items .item .bottom .right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }
}

.download .items .item .bottom .summary {
    font-size: max(12px, 0.3rem);
    color: #6b6b6b;
}

.download .items .item .bottom .time {
    font-size: 0.2rem;
    color: #808080;
    text-align: center;
}

.download .items .item .bottom .download-click {
    margin-top: 0.4rem;
    width: 2.84rem;
    height: 1.02rem;
    border-radius: 0.517rem;
    background: linear-gradient(to left, #fffcb1 0%, #f9bd48 40%, #f69b30 73%);
    background-size: 120%;
    font-size: max(12px, 0.28rem);
    font-family: MiSans-Demibold;
    margin-left: auto;
    cursor: pointer;
    min-width: 110px;
}

@media screen and (max-width: 768px) {
    .download .items .item .bottom .download-click {
        height: 40px;
        margin-left: 0;
        border-radius: 20px;
        margin-top: 0;
    }
}

.download .items .item .bottom .download-click img {
    width: 0.38rem;
    margin-right: 0.2rem;
}

@media screen and (max-width: 768px) {
    .download .items .item .bottom .download-click img {
        width: 14px;
    }
}

.after-sales {
    margin-bottom: 3rem;
}

.faq {
    margin-bottom: 3rem;
}

.faq .faq-menu {
    margin: 0.3rem auto 1.3rem;
}

@media screen and (max-width: 768px) {
    .faq .faq-menu {
        flex-direction: column;
        align-items: flex-start;
    }
}

.faq .faq-menu .page-title {
    margin-bottom: 0;
}

.faq .faq-menu .menu {
    font-size: max(14px, 0.2rem);
    display: flex;
    gap: 0.2rem;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .faq .faq-menu .menu {
        margin-top: 20px;
        gap: 10px 20px;
    }
}

.faq .faq-menu .menu a {
    border-radius: 0.25rem;
    display: block;
    transition: all 0.5s;
    padding: 0.13rem 0.3rem;
}

@media screen and (max-width: 768px) {
    .faq .faq-menu .menu a {
        padding: 6px 10px;
        border-radius: 10px;
    }
}

.faq .faq-menu .menu a.active {
    color: #fff;
    background: linear-gradient(to right, #f9bd48, #f69b30);
}

.faq .faq-menu .menu a.active:hover {
    color: #fff;
    background: linear-gradient(to right, #f9bd48, #f69b30);
}

.faq .faq-menu .menu a:hover {
    background: #fff;
}

.faq .faq-items {
    max-width: 13.2rem;
    margin: 1.8rem auto 0;
}

@media screen and (max-width: 1280px) {
    .faq .faq-items {
        max-width: 26rem;
    }
}

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

.faq .faq-items .faq-item {
    border-radius: 0.18rem;
    border: 1px solid #c3c2c2;
    margin-bottom: 0.4rem;
}

@media screen and (max-width: 768px) {
    .faq .faq-items .faq-item {
        margin-bottom: 20px;
        border-radius: 6px;
    }
}

.faq .faq-items .faq-item .top {
    padding: 0.4rem;
    font-size: max(14px, 0.28rem);
    font-family: MiSans-Medium;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .faq .faq-items .faq-item .top {
        padding: 10px;
    }
}

.faq .faq-items .faq-item .top span {
    flex: 1;
}

.faq .faq-items .faq-item .top i {
    transition: all 0.5s;
    margin-left: 20px;
}

.faq .faq-items .faq-item .top.active i {
    transform: rotate(180deg);
}

.faq .faq-items .faq-item .bottom {
    display: none;
    font-size: max(12px, 0.24rem);
    color: #6b6b70;
    padding: 0 0.4rem 0.4rem;
}

@media screen and (max-width: 768px) {
    .faq .faq-items .faq-item .bottom {
        padding: 0 10px 10px;
        line-height: 1.6;
    }
}

.video {
    margin-bottom: 3rem;
    background: #fff;
    padding-bottom: 0;
}

.video .video-top {
    margin-bottom: 1.2rem;
}

@media screen and (max-width: 768px) {
    .video .video-top {
        flex-direction: column;
        margin-bottom: 30px;
    }
}

.video .video-top .page-title {
    margin-bottom: 0;
}

.video .video-top button {
    background: none;
}

.video .video-top button img {
    filter: brightness(0);
    width: 0.26rem;
    opacity: 0.6;
}

@media screen and (max-width: 768px) {
    .video .video-top button img {
        width: 16px;
    }
}

@media screen and (max-width: 768px) {
    .video .video-top form {
        margin-top: 10px;
        border-bottom: 1px solid #eee;
    }
}

.video .video-top form input {
    font-family: MiSans-Demibold;
    font-size: max(14px, 0.32rem);
    border: none;
    background: none;
}

@media screen and (max-width: 768px) {
    .video .video-top form input {
        max-width: 100%;
        height: 40px;
    }
}

.video .video1 .swiper-slide {
    border-radius: 0.4rem;
    overflow: hidden;
    cursor: pointer;
}

.video .video1 .swiper-slide .play {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: max(24px, 1rem);
    opacity: 0;
}

.video .video1 .swiper-slide:hover .play {
    opacity: 1;
}

.video .video2 {
    margin-top: 1.4rem;
    background: #f7f7f7;
    padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .video .video2 {
        padding-bottom: 50px;
        margin-top: 50px;
    }
}

.video .video2 .video2-top {
    max-width: 18rem;
}

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

.video .video2 .left {
    width: 2.1rem;
}

@media screen and (max-width: 768px) {
    .video .video2 .left {
        width: 70px;
    }
}

.video .video2 .mid {
    text-align: center;
}

.video .video2 .mid .title {
    font-size: max(16px, 0.5rem);
    font-family: MiSans-Semibold;
}

.video .video2 .mid .sub {
    font-size: max(12px, 0.2rem);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.2rem;
}

.video .video2 .right {
    gap: 0.3rem;
}

.video .video2 .right .swiper-button-prev,
.video .video2 .right .swiper-button-next {
    position: initial;
    margin-top: auto;
    width: 0.9rem;
    height: 0.9rem;
    background: none;
}

@media screen and (max-width: 768px) {
    .video .video2 .right .swiper-button-prev,
    .video .video2 .right .swiper-button-next {
        width: 30px;
        height: 30px;
        gap: 10px;
    }
}

.video .video2 .right .swiper-button-prev:hover,
.video .video2 .right .swiper-button-next:hover {
    background: #29292a;
}

.video .video2 .right .swiper-button-prev::after,
.video .video2 .right .swiper-button-next::after {
    display: none;
}

.video .video2 .right .close {
    cursor: pointer;
}

.video .video2 .right .close img {
    width: 0.58rem;
}

@media screen and (max-width: 768px) {
    .video .video2 .right .close img {
        width: 30px;
    }
}

.video .video2 .item {
    background: #fff;
    border-radius: 0.15rem;
    overflow: hidden;
    height: auto;
    cursor: pointer;
    position: relative;
}

.video .video2 .item .text {
    padding: 0.6rem;
}

@media screen and (max-width: 768px) {
    .video .video2 .item .text {
        padding: 20px;
    }
}

.video .video2 .item .text .title {
    font-size: max(16px, 0.3rem);
    font-family: MiSans-Semibold;
}

.video .video2 .item .text .summary {
    margin-top: 0.1rem;
    font-size: max(14px, 0.24rem);
    color: #1d1d1f;
}

@media screen and (max-width: 768px) {
    .video .video2 .item .text .summary {
        margin-top: 6px;
    }
}

.video .video2 .item .play {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: max(24px, 1rem);
    opacity: 0;
}

.video .video2 .item:hover .play {
    opacity: 1;
}

.video .video3 {
    background: #f7f7f7;
    padding-bottom: 2rem;
}

.video .video3 .video2-top {
    max-width: 18rem;
}

@media screen and (max-width: 768px) {
    .video .video3 .video2-top {
        max-width: 100%;
    }
}

.video .video3 .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .video .video3 .items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.video .video3 .left {
    width: 2.1rem;
}

@media screen and (max-width: 768px) {
    .video .video3 .left {
        width: 70px;
    }
}

.video .video3 .mid {
    text-align: center;
}

.video .video3 .mid .title {
    font-size: max(16px, 0.5rem);
    font-family: MiSans-Semibold;
}

.video .video3 .mid .sub {
    font-size: max(12px, 0.2rem);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.2rem;
}

.video .video3 .right {
    gap: 0.3rem;
}

.video .video3 .right .swiper-button-prev,
.video .video3 .right .swiper-button-next {
    position: initial;
    margin-top: auto;
    width: 0.9rem;
    height: 0.9rem;
    background: none;
}

@media screen and (max-width: 768px) {
    .video .video3 .right .swiper-button-prev,
    .video .video3 .right .swiper-button-next {
        width: 30px;
        height: 30px;
        gap: 10px;
    }
}

.video .video3 .right .swiper-button-prev:hover,
.video .video3 .right .swiper-button-next:hover {
    background: #29292a;
}

.video .video3 .right .swiper-button-prev::after,
.video .video3 .right .swiper-button-next::after {
    display: none;
}

.video .video3 .right .close {
    cursor: pointer;
}

.video .video3 .right .close img {
    width: 0.58rem;
}

@media screen and (max-width: 768px) {
    .video .video3 .right .close img {
        width: 30px;
    }
}

.video .video3 .item {
    background: #fff;
    border-radius: 0.15rem;
    overflow: hidden;
    height: auto;
    cursor: pointer;
    position: relative;
}

.video .video3 .item .text {
    padding: 0.6rem;
}

@media screen and (max-width: 768px) {
    .video .video3 .item .text {
        padding: 20px;
    }
}

.video .video3 .item .text .title {
    font-size: max(16px, 0.3rem);
    font-family: MiSans-Semibold;
}

.video .video3 .item .text .summary {
    margin-top: 0.1rem;
    font-size: max(14px, 0.24rem);
    color: #1d1d1f;
}

@media screen and (max-width: 768px) {
    .video .video3 .item .text .summary {
        margin-top: 6px;
    }
}

.video .video3 .item .play {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: max(24px, 1rem);
    opacity: 0;
}

.video .video3 .item:hover .play {
    opacity: 1;
}

.video .video-show-box {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 100vh;
    background: #fff;
    transition: all 0.5s;
}

.video .video-show-box.active {
    top: 0;
}

.video .video-show-box .video2 {
    margin-top: 0;
    height: 100%;
    overflow: auto;
}

.video .video-show-box .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 0.6rem;
    max-width: 32.8rem;
}

@media screen and (max-width: 768px) {
    .video .video-show-box .items {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.buy .text {
    text-align: center;
}

.buy .text .title1 {
    font-size: 0.38rem;
    background: linear-gradient(to bottom, #fdfbfb, #a2a3a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
}

@media screen and (max-width: 768px) {
    .buy .text .title1 {
        font-size: 16px;
    }
}

.buy .text .title2 {
    font-size: 1.1rem;
    background: linear-gradient(to bottom, #fdfbfb, #a2a3a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    line-height: 1.2;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .buy .text .title2 {
        font-size: 24px;
        margin-top: 60px;
    }
}

.buy .bottom {
    padding-bottom: 5rem;
    padding-top: 1rem;
    margin-top: -20%;
    position: relative;
    background: url('../images/img32.png') no-repeat top center / cover;
}

.buy .bottom .tabs {
    background: #3f3f43;
    border-radius: 30px;
    padding: 4px;
    color: #95959e;
    gap: 30px;
    width: fit-content;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .buy .bottom .tabs {
        width: 90%;
        gap: 10px;
        overflow: auto;
    }
}

.buy .bottom .tabs .item {
    border-radius: 30px;
    padding: 10px 20px;
    transition: all 0.5s;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .buy .bottom .tabs .item {
        flex-shrink: 0;
    }
}

.buy .bottom .tabs .item.active {
    background: #111113;
    color: #e5b15b;
}

.buy .bottom .tabs .item:hover {
    background: #363639;
}

.buy .bottom .tabs-change {
    max-width: 1760px;
    margin-top: 50px;
}

.buy .bottom .tabs-change .item {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media screen and (max-width: 1600px) {
    .buy .bottom .tabs-change .item {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1280px) {
    .buy .bottom .tabs-change .item {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .buy .bottom .tabs-change .item {
        grid-template-columns: repeat(1, 1fr);
    }
}

.buy .bottom .tabs-change .item .list {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    background: #0a0a0b;
    cursor: pointer;
    transition: all 0.5s;
}

.buy .bottom .tabs-change .item .list .img {
    width: 110px;
    margin-right: 20px;
}

.buy .bottom .tabs-change .item .list .text {
    text-align: left;
    flex: 1;
}

.buy .bottom .tabs-change .item .list .text .title {
    color: #fff;
    font-size: 18px;
}

.buy .bottom .tabs-change .item .list .text .summary {
    color: #6e6e6e;
    font-size: 12px;
    margin-top: 4px;
}

.buy .bottom .tabs-change .item .list:hover {
    background: #fff;
}

.buy .bottom .tabs-change .item .list:hover .title {
    color: #333;
}

.buy .bottom .tabs-change .item.active {
    display: grid;
}

.community {
    margin-bottom: 3rem;
}

/*产品中心*/
.product-banner {
    position: relative;
}

.product-banner .img img {
    width: 100%;
}

.product-banner .text {
    position: absolute;
    left: 0;
    right: 0;
    top: 1.8rem;
    margin: auto;
    text-align: center;
    max-width: 19rem;
}

.product-banner .text .title {
    font-size: 0.42rem;
    font-family: MiSans-Demibold;
}
.product-banner .text.white .title {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .product-banner .text .title {
        font-size: 20px;
    }
}

.product-banner .text .summary {
    font-size: 0.24rem;
    color: #86868b;
    margin-top: 0.2rem;
    font-family: MiSans-Demibold;
}
.product-banner .text.white .summary {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .product-banner .text .summary {
        font-size: 14px;
    }
}

.product-banner .text .more {
    margin: 30px auto 0;
    width: 1.8rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    border: 1px solid #000;
    font-size: 0.2rem;
    color: #000;
    transition: all 0.5s;
}
.product-banner .text.white .more {
    color: #fff;
    border-color: #fff;
}
@media screen and (max-width: 768px) {
    .product-banner .text .more {
        font-size: 12px;
        width: 100px;
        height: 36px;
        border-radius: 20px;
    }
}

.product-banner .text .more span {
    transition: transform 0.3s;
    position: absolute;
}

.product-banner .text .more img {
    width: 0.12rem;
    margin-left: 0.1rem;
    transition: all 0.5s;
    transform: translate(-180%, 180%);
    opacity: 0;
    margin-right: 10px;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .product-banner .text .more img {
        display: none;
    }
}

.product-banner .text .more:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product-banner .text .more:hover span {
    transform: translate(-0.1rem);
}

.product-banner .text .more:hover img {
    opacity: 1;
    transform: translate(0);
    filter: brightness(100);
}
.product-banner .text.white .more:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.product-banner .text.white .more:hover img {
    filter: brightness(0);
}

.product-banner .text.textLeft {
    text-align: left;
    top: 0;
    height: fit-content;
    bottom: 0;
}

.product-banner .text.textLeft .more {
    margin-left: 0;
}

.product-banner .text.textRight {
    text-align: left;
    top: 0;
    height: fit-content;
    bottom: 0;
}

.product-banner .text.textRight .t-right {
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .product-banner .text.textRight .t-right {
        margin-left: 0;
    }
}

.product-banner .text.textRight .more {
    margin-right: auto;
    margin-left: 0;
}

.product-banner .text.textBottom {
    top: auto;
    bottom: 1.8rem;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.product-banner .text.textBottom .title {
    /*color: #fff;*/
}

.product-banner .text.textBottom .summary {
    /*color: #fff;*/
}

.product-banner .text.textBottom .more {
    /*color: #fff;*/
    /*border-color: #fff;*/
    margin-right: 0;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .product-banner .img img {
        height: 250px;
        object-fit: cover;
    }
}

@keyframes top {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.product .product-top {
    padding-left: calc(300px + 2.1rem);
    margin-bottom: 1.2rem;
    margin-top: 1rem;
}

@media screen and (min-width: 1921px) {
    .product .product-top {
        padding-left: calc(4.2rem + 2.1rem);
    }
}

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

.product .product-top .item-box-w {
    width: 100%;
}

.product .product-top .items-box {
    width: 100px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    transform: scale(0);
    transition: all 0.3s linear;
}

.product .product-top .items-box.active {
    overflow: initial;
}

.product .product-top .items {
    padding: 0.2rem;
    transition: all 0.5s;
    width: fit-content;
}

.product .product-top .items .item {
    width: 1rem;
    border-radius: 10px;
    margin-right: 2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.5s;
    position: relative;
    opacity: 0;
    top: 20px;
}

.product .product-top .items .item:first-child {
    top: 0;
    background: none;
    pointer-events: none;
    opacity: 1;
}

@media screen and (min-width: 1921px) {
    .product .product-top .items .item {
        width: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .product .product-top .items .item {
        width: 50px;
    }
}

.product .product-top .items .item .img {
    padding: 0.1rem;
}

@media screen and (max-width: 768px) {
    .product .product-top .items .item .img {
        padding: 10px;
    }
}

.product .product-top .items .item .img img {
    object-fit: contain;
}

.product .product-top .items .item .text {
    position: absolute;
    bottom: calc(100% + 30px);
    width: max-content;
    padding: 6px 40px;
    background: #fff;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.product .product-top .items .item .text::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #fff transparent transparent;
    margin: auto;
}

.product .product-top .items .item:hover {
    background: #f4f4f4;
    animation: top linear 0.5s;
}

.product .product-top .items .item:hover .text {
    opacity: 1;
    pointer-events: auto;
}

.product .product-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;

}

@media screen and (max-width: 768px) {
    .product .product-bottom {
        flex-direction: column;
        margin-top: 40px;
    }
}

.product .product-bottom .product-left {
    flex-basis: 300px;
}

@media screen and (min-width: 1921px) {
    .product .product-bottom .product-left {
        flex-basis: 4.2rem;
    }
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-left {
        position: fixed;
        background: #fff;
        z-index: 90;
        top: 0;
        height: 100vh;
        left: -100vw;
        width: 100vw;
        overflow: auto;
        padding: 80px 20px 20px;
        transition: all 0.5s;
    }
}

.product .product-bottom .product-left.active {
    left: 0;
}

.product .product-bottom .product-left .phone-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-left .phone-close {
        display: flex;
    }
}

.product .product-bottom .product-left .filter-top {
    padding: 0 0.2rem;
    margin-bottom: 0.5rem;
}

.product .product-bottom .product-left .filter-top .filter-title {
    font-size: max(16px, 0.45rem);
    font-family: MiSans-Demibold;
}

.product .product-bottom .product-left .filter-top .reset {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #edeef0;
    cursor: pointer;
}

.product .product-bottom .product-left .filter-top .reset img {
    width: 0.18rem;
}

.product .product-bottom .product-left .filter-bottom .items {
    border-bottom: 1px solid #eee;
    padding: 0.2rem 0.2rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-left .filter-bottom .items {
        padding: 10px;
    }
}

.product .product-bottom .product-left .filter-bottom .items:nth-child(1) {
    border-top: 1px solid #eee;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .title {
    font-size: max(14px, 0.16rem);
}

.product .product-bottom .product-left .filter-bottom .items .item-top .close {
    opacity: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .close i {
    font-size: 14px;
    opacity: 0.6;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .close.active {
    opacity: 1;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .slider {
    margin-left: 10px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #edeef0;
    cursor: pointer;
    transition: all 0.5s;
    transform: rotate(180deg);
}

.product .product-bottom .product-left .filter-bottom .items .item-top .slider i {
    transition: all 0.5s;
    font-size: 14px;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .slider:hover {
    background: #edeef0;
}

.product .product-bottom .product-left .filter-bottom .items .item-top .slider.active {
    transform: rotate(0);
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom {
    margin-top: 0.2rem;
    gap: 0.3rem;
    display: none;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .i-box {
    flex-wrap: wrap;
    gap: 10px;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item {
    position: relative;
    font-size: max(14px, 0.16rem);
    border-radius: 22px;
    padding: 0.1rem 0.3rem;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-left .filter-bottom .items .item-bottom .item {
        padding: 10px;
    }
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item span {
    position: relative;
    z-index: 2;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item:hover {
    background: #f2f2f3;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #f9bd48, #f69b30);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-size: 300%;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item.active {
    color: #fff;
}

.product .product-bottom .product-left .filter-bottom .items .item-bottom .item.active::before {
    opacity: 1;
}

.product .product-bottom .product-right {
    flex: 1;
    margin-left: 2.1rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right {
        margin-left: 0;
    }
}

.product .product-bottom .product-right .product-title {
    font-size: max(16px, 0.45rem);
    color: #7d7d85;
    font-family: MiSans-Demibold;
}

.product .product-bottom .product-right .product-title span {
    background: linear-gradient(to left, #fffcb1, #f9bd48 40%, #f69b30 73%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    background-size: 150% 100%;
    margin-right: 0.1rem;
}

.product .product-bottom .product-right .product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.6rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

.product .product-bottom .product-right .product-container .item {
    position: relative;
    border-radius: 0.32rem;
    overflow: hidden;
    background: #fff;
}

.product .product-bottom .product-right .product-container .item .imgBox {
    padding-bottom: 110%;
    transform: translateY(-5%) scale(1.1);
}

.product .product-bottom .product-right .product-container .item .imgBox img {
    opacity: 0;
    object-fit: contain;
}

.product .product-bottom .product-right .product-container .item .imgBox img.active {
    opacity: 1;
}

.product .product-bottom .product-right .product-container .item .text {
    position: absolute;
    z-index: 2;
    top: 1rem;
    /*left: 0.65rem;*/
    width: 100%;
    /*right: 0.65rem;*/
    padding: 0 0.65rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .text {
        top: 20px;
        /*left: 20px;*/
        /*right: 20px;*/
        padding: 0 20px;
    }
}

.product .product-bottom .product-right .product-container .item .text .sup {
    position: absolute;
    bottom: 130%;
    background: linear-gradient(to left, #fffcb1, #f9bd48 40%, #f69b30 73%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 150% 100%;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .text .sup {
        position: initial;
    }
}

.product .product-bottom .product-right .product-container .item .text .title {
    font-size: max(16px, 0.45rem);
    font-family: MiSans-Demibold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product .product-bottom .product-right .product-container .item .sub-bottom {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.7rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .colors {
    display: flex;
    gap: 0.1rem;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .colors {
        gap: 10px;
        margin-bottom: 10px;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .colors .color {
    width: 0.3rem;
    height: 0.3rem;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 50%;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .colors .color.active {
    border: 1px solid var(--dominant-color);
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .colors .color {
        width: 16px;
        height: 16px;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom {
    padding-top: 0.6rem;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .title {
    max-width: 3.5rem;
    font-size: max(14px, 0.45rem);
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .bottom .title {
        max-width: 100%;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more {
    width: 3rem;
    height: 1rem;
    font-size: 0.28rem;
    background: #f7f7f7;
    border-radius: 0.5rem;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more {
        width: 120px;
        height: 40px;
        border-radius: 20px;
        font-size: 14px;
        display: none;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon {
    width: 0.5rem;
    height: 0.5rem;
    background: #262224;
    border-radius: 50%;
    transition: all 0.5s;
    margin-left: 0.2rem;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon {
        width: 16px;
        height: 16px;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon img {
    filter: brightness(100);
    width: 0.16rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon img {
        width: 4px;
    }
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #fffcb1, #f9bd48 40%, #f69b30 73%);
    transition: all 0.5s;
    transform: scale(0);
    border-radius: 50%;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon .icon1,
.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon .icon2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    z-index: 2;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more .icon .icon2 {
    transform: translate(-180%, 180%);
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more:hover {
    background: none;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more:hover .icon {
    background: none;
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more:hover .icon::after {
    transform: scale(1.1);
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more:hover .icon .icon1 {
    transform: translate(180%, -180%);
}

.product .product-bottom .product-right .product-container .item .sub-bottom .bottom .more:hover .icon .icon2 {
    transform: translate(0);
}

.phone-filter-click {
    width: 100%;
    height: 50px;
    background: #edb65b;
    z-index: 90;
    display: none;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .phone-filter-click {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.product-detail {
    background: #fff;
    position: relative;
}

.product-detail .top {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    padding-top: 1rem;
}

@media screen and (max-width: 768px) {
    .product-detail .top {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 50px;
        padding-left: 0;
        padding-right: 0;
        width: 90%;
        margin: auto;
    }
}

.product-detail .top .left {
    position: relative;
}

.product-detail .top .sup {
    position: absolute;
    bottom: 130%;
    background: linear-gradient(to left, #fffcb1, #f9bd48 40%, #f69b30 73%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 150% 100%;
    font-family: MiSans-Demibold;
}

.product-detail .top .title {
    font-size: max(20px, 0.68rem);
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .product-detail .top .right {
        margin-top: 30px;
        overflow: auto;
        width: 100%;
    }
}

.product-detail .top .right .lists {
    gap: 10px;
    font-size: max(14px, 0.2rem);
    color: #95959e;
    height: 40px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .product-detail .top .right .lists {
        width: 100%;
        justify-content: flex-start;
        gap: 0;
    }
}

.product-detail .top .right .lists .list {
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .product-detail .top .right .lists .list {
        flex-shrink: 0;
    }
}

.product-detail .top .right .lists .list.active {
    color: #fff;
    background: #000;
}

.product-detail .top .right .lists .list.active:hover {
    color: #fff;
}

.product-detail .top .right .lists .list:hover {
    color: #000;
}

.product-detail .top .right .lists .bg {
    background: #000;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
}

.product-detail .mid {
    margin-top: 1rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .product-detail .mid {
        flex-direction: column;
    }
}

.product-detail .mid .left {
    width: calc(100% - 500px - 1rem);
    position: sticky;
    height: fit-content;
    top: 15%;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .left {
        width: 100%;
        position: initial;
    }
}

.product-detail .mid .left .swiper-big {
    background: #f6f5f8;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail .mid .left .swiper-big .swiper-slide {
    height: auto;
    opacity: 0 !important;
}

.product-detail .mid .left .swiper-big .swiper-slide .imgGbl-box {
    cursor: none;
}

.product-detail .mid .left .swiper-big .swiper-slide .img {
    height: 100%;
    padding: 0 10%;
    transform: translateY(5%);
}

.product-detail .mid .left .swiper-big .swiper-slide .img.no-3d {
    pointer-events: none;
}

.product-detail .mid .left .swiper-big .swiper-slide .img .imgBox {
    padding-bottom: 80vh;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .left .swiper-big .swiper-slide .img .imgBox {
        padding-bottom: 75%;
    }
}

.product-detail .mid .left .swiper-big .swiper-slide .img .imgBox img {
    object-fit: contain;
}

.product-detail .mid .left .swiper-big .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.product-detail .mid .left .swiper-big .swiper-slide.swiper-slide-active .M3d {
    display: block;
}

.product-detail .mid .left .swiper-big .swiper-slide .imgGbl-box:hover {
    cursor: none;
}

.product-detail .mid .left .swiper-big .swiper-slide .hover-active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.product-detail .mid .left .swiper-big::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    right: 0;
    background: url('../images/img49.png') no-repeat center / contain;
    width: 100%;
    height: 40%;
}

.product-detail .mid .left .swiper-big .swiper-button-prev,
.product-detail .mid .left .swiper-big .swiper-button-next {
    background: none;
}

.product-detail .mid .left .swiper-big .swiper-button-prev::after,
.product-detail .mid .left .swiper-big .swiper-button-next::after {
    display: none;
}

.product-detail .mid .left .swiper-big .swiper-button-prev:hover,
.product-detail .mid .left .swiper-big .swiper-button-next:hover {
    background: #b3b3b6;
    color: #fff;
    border-color: #b3b3b6;
}

.product-detail .mid .left .swiper-big .swiper-button-prev {
    left: 5%;
}

.product-detail .mid .left .swiper-big .swiper-button-next {
    right: 5%;
}

.product-detail .mid .left .swiper-small-box {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 0 30px;
    width: calc(60%);
}

.product-detail .mid .left .swiper-small-box .swiper-button-prev,
.product-detail .mid .left .swiper-small-box .swiper-button-next {
    width: 20px;
    height: 100%;
    border-radius: 4px;
    /*background: #a5a5a5;*/
    /*border-color: #a5a5a5;*/
    color: #fff;
    top: 0;
    margin-top: 0;
    background: none;
    border: none;
}

.product-detail .mid .left .swiper-small-box .swiper-button-prev i,
.product-detail .mid .left .swiper-small-box .swiper-button-next i {
    color: #333;
    transition: all 0.5s;
}

.product-detail .mid .left .swiper-small-box .swiper-button-prev:hover,
.product-detail .mid .left .swiper-small-box .swiper-button-next:hover {
    background: #dcdced;
    border-color: #dcdced;
}

.product-detail .mid .left .swiper-small-box .swiper-button-next.swiper-button-disabled {
    background: #dcdced;
    border-color: #dcdced;
}

.product-detail .mid .left .swiper-small-box .swiper-button-next.swiper-button-disabled i {
    color: #fff;
}

.product-detail .mid .left .swiper-small-box .swiper-button-prev:hover i,
.product-detail .mid .left .swiper-small-box .swiper-button-next:hover i {
    color: #fff;
}

.product-detail .mid .left .swiper-small-box .swiper-button-prev::after,
.product-detail .mid .left .swiper-small-box .swiper-button-next::after {
    font-size: 14px;
    color: transparent;
    display: none;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .left .swiper-small-box {
        position: initial;
        margin-top: 20px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .product-detail .mid .left .swiper-small-box .swiper-button-prev,
    .product-detail .mid .left .swiper-small-box .swiper-button-next {
        display: none;
    }
}

.product-detail .mid .left .swiper-small .swiper-slide {
    cursor: pointer;
    border-radius: 10px;
}

.product-detail .mid .left .swiper-small .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid #9f9f9f;
    overflow: hidden;
}

.product-detail .mid .left .swiper-small img {
    object-fit: contain;
    height: 100%;
    width: auto;
}

.product-detail .mid .left .M3d {
    position: absolute;
    right: 30px;
    top: 30px;
    background: #efefef;
    border-radius: 20px;
    padding: 10px 20px;
    z-index: 2;
    cursor: pointer;
    display: none;
}

.product-detail .mid .left .M3d img {
    width: 20px;
    margin-right: 10px;
}

.product-detail .mid .left .M3d.active {
    background: none;
}

.product-detail .mid .right {
    margin-left: 1rem;
    flex-basis: 500px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right {
        margin-left: 0;
        flex-basis: auto;
    }
}

.product-detail .mid .right .title1 {
    margin-top: 1.6rem;
    color: #000;
    font-size: 20px;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .title1 {
        font-size: 20px;
    }
}

.product-detail .mid .right .title1 span {
    color: #000;
    font-family: MiSans-Demibold;
}

.product-detail .mid .right .lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .lists {
        margin-top: 20px;
    }
}

.product-detail .mid .right .lists .list {
    border: 1px solid #aaa;
    padding: 30px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .lists .list {
        padding: 20px;
        border-radius: 10px;
    }
}

.product-detail .mid .right .lists .list:hover {
    border: 1px solid #555557;
}
.product-detail .mid .right .lists .list.active {
    border: 2px solid #232324;
}

.product-detail .mid .right .lists .list .l-top {
    display: flex;
    justify-content: space-between;
}

.product-detail .mid .right .lists .list .l-top .title {
    font-size: 20px;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .lists .list .l-top .title {
        font-size: 16px;
    }
}

.product-detail .mid .right .lists .list .l-top .summary {
    font-size: 16px;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .lists .list .l-top .summary {
        font-size: 14px;
        margin-top: 4px;
    }
}

.product-detail .mid .right .lists .list .l-top .l-right {
    background: linear-gradient(to left, #fffcb1, #f9bd48 40%, #f69b30 73%);
    background-size: 150% 100%;
    color: #fff;
    border-radius: 20px;
    height: fit-content;
    padding: 6px 20px;
}

.product-detail .mid .right .lists .list .l-bottom {
    margin-top: 30px;
    color: #edb65b;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .lists .list .l-bottom {
        font-size: 12px;
    }
}

.product-detail .mid .right .lists .list .l-bottom img {
    margin-right: 10px;
}

.product-detail .mid .right .tip {
    margin-top: 0.5rem;
    background: #f5f5f7;
    border-radius: 18px;
    padding: 40px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .tip {
        padding: 20px;
        border-radius: 10px;
    }
}

.product-detail .mid .right .tip .title {
    font-size: 21px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .tip .title {
        font-size: 16px;
    }
}

.product-detail .mid .right .tip .summary {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .tip .summary {
        font-size: 14px;
    }
}

.product-detail .mid .right .tip img {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 19px;
}

.product-detail .mid .right .colors {
    margin-top: 40px;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .colors {
        margin-bottom: 100px;
    }
}

.product-detail .mid .right .colors .color-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-detail .mid .right .colors .color {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    border: 1px solid #000;
    margin-right: 10px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .product-detail .mid .right .colors .color {
        width: 20px;
        height: 20px;
    }
}

.product-detail .mid .right .colors .color.active {
    border: 2px solid var(--dominant-color);
}

.product-detail .product-bottom {
    padding-bottom: 3rem;
    position: relative;
    background: #f5f5f5;
}

.product-detail .product-bottom .detail-list {
    background: url('../images/img47.jpg') no-repeat center / cover;
    height: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 5;
}

@media screen and (max-width: 768px) {
    .product-detail .product-bottom .detail-list {
        top: 0;
        height: auto;
        padding: 10px 0;
    }
}

.product-detail .product-bottom .detail-list .section {
    height: 100%;
}

@media screen and (max-width: 768px) {
    .product-detail .product-bottom .detail-list .section {
        flex-direction: column;
    }
}

.product-detail .product-bottom .detail-list .title {
    font-size: clamp(12px,0.2rem,20px);
    display: flex;
    align-items: center;
    width: 60%;

}

.product-detail .product-bottom .product-bottom-swiper {
    width: calc(100% - 200px);
    text-align: left;
}

.product-detail .product-bottom .detail-list .swiper-slide {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;

}

.product-detail .product-bottom .detail-list .swiper-slide::after {
    width: 1px;
    height: 50px;
    top: 0;
    right: -30px;
    bottom: 0;
    margin: auto;
    content: '';
    background: #95959e;
    position: absolute;
}

.product-detail .product-bottom .detail-list .swiper-slide:first-child {
    padding-left: 0;
}

.product-detail .product-bottom .detail-list .title img {
    width: 0.48rem;
    margin-right: 0.5rem;
}

.product-detail .product-bottom .detail-list .title span {
    color: #95959e;
    margin-left: 30px;
    margin-right: 30px;
}

.product-detail .product-bottom .detail-list .title a {
    color: #95959e;
    transition: all 0.5s;
}

.product-detail .product-bottom .detail-list .title a:hover,
.product-detail .product-bottom .detail-list .title a.active {
    color: #000;
}

@media screen and (max-width: 768px) {
    .product-detail .product-bottom .detail-list .lists-box {
        width: 100%;
        overflow: hidden;
    }

    .product-detail .product-bottom .detail-list .title {
        width: 100%;
    }
}

.product-detail .product-bottom .detail-list .lists {
    gap: 10px;
    font-size: clamp(12px,0.2rem,20px);
    color: #95959e;
    height: 0.8rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    .product-detail .product-bottom .detail-list .lists {
        margin-top: 10px;
        justify-content: flex-start;
        margin-right: auto;
        gap: 0;
        overflow: auto;
    }
}

.product-detail .product-bottom .detail-list .lists .list {
    cursor: pointer;
    padding: 0 0.4rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
    border-radius: 0.6rem;
}

@media screen and (max-width: 768px) {
    .product-detail .product-bottom .detail-list .lists .list {
        flex-shrink: 0;
    }
}

.product-detail .product-bottom .detail-list .lists .list.active {
    color: #fff;
    background: #000;
}

.product-detail .product-bottom .detail-list .lists .list.active:hover {
    color: #fff;
}

.product-detail .product-bottom .detail-list .lists .list:hover {
    color: #000;
}

.product-detail .product-bottom .detail-list .lists .bg {
    background: #000;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
}

.product-detail .spe {
    border-top: 1px solid #eee;
}

.product-detail .spe .spe-box {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.product-detail .spe .spe-box .item {
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1280px) {
    .product-detail .spe .spe-box .item {
        flex-direction: column;
    }
}

.product-detail .spe .spe-box .item .left {
    flex-basis: 180px;
    font-size: 28px;
    line-height: 2;
}
@media screen and (max-width: 1600px) {
    .product-detail .spe .spe-box .item .left {
        font-size: 22px;
        flex-basis: 150px;
    }
}
@media screen and (max-width: 1280px) {
    .product-detail .spe .spe-box .item .left {
        flex-basis: auto;
    }
}
@media screen and (max-width: 768px) {
    .product-detail .spe .spe-box .item .left {
        font-size: 16px;
        flex-basis: auto;
    }
}

.product-detail .spe .spe-box .item .right {
    flex: 1;
    margin-left: 100px;
    line-height: 3;
    font-size: 18px;
}

@media screen and (max-width: 1600px) {
    .product-detail .spe .spe-box .item .right {
        font-size: 16px;
        margin-left: 20px;
    }
}
@media screen and (max-width: 1280px) {
    .product-detail .spe .spe-box .item .right {
        margin-left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .product-detail .spe .spe-box .item .right {
        font-size: 14px;
        margin-left: 0;
        line-height: 2;
    }
}

/*搜索结果*/
.search-box {
    margin-bottom: 200px;
}

@media screen and (max-width: 768px) {
    .search-box {
        margin-bottom: 40px;
    }
}

.search-box:last-child {
    margin-bottom: 0;
}

.search-box .search-title {
    font-size: 0.44rem;
    font-family: MiSans-Demibold;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .search-box .search-title {
        font-size: 18px;
    }
}

.search-box .product .product-bottom .product-right {
    margin-left: 0;
}

.search-box .product .product-bottom .product-right .product-container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .search-box .product .product-bottom .product-right .product-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.search-box .product .product-bottom {
    margin-top: 0;
}

.community .community-box {
    background: #fff;
    padding: 1.5rem;
    margin-top: 120px;
    border-radius: 26px;
}

@media screen and (max-width: 768px) {
    .community .community-box {
        margin-top: 30px;
    }
}

.community .community-box .title {
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
    .community .community-box .title {
        flex-direction: column;
    }
}

.community .community-box .title span {
    font-size: 0.75rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .community .community-box .title span {
        font-size: 20px;
    }
}

.community .community-box .title .time {
    font-size: 0.28rem;
    color: #808080;
}

@media screen and (max-width: 768px) {
    .community .community-box .title .time {
        font-size: 12px;
    }
}

.community .community-box .page-text {
    padding-bottom: 4rem;
}

.software {
    background: #000;
    .software-box {
        background: #fff;
        padding-bottom: 0;
    }

    &.software2 {
        background: #f5f5f7;
        .software-box {
            background: #f5f5f7;

        }


        .box2,.box3,.box4,.box5-img {
            background: #fff;
        }

        .box5 {
            margin-bottom: 2rem;
        }

        .box6 {
            .download {
                background: #fff;

                &:hover {
                    background: var(--dominant-color);;
                }
            }
        }
    }
}

.software .box1 {
    text-align: center;
    border-radius: 26px;
}

.software .box1 .logo {
    width: 2rem;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .software .box1 .logo {
        width: 80px;
    }
}

.software .box1 .logo img {
    filter: drop-shadow(20px 10px 30px rgba(0, 0, 0, 0.2));
}

.software .box1 span {
    margin-top: 30px;
    font-size: 0.46rem;
    text-align: center;
    font-family: MiSans-Demibold;
    display: block;
    font-weight: 900;
}

@media screen and (max-width: 768px) {
    .software .box1 span {
        font-size: 20px;
    }
}

.software .box1 .title {
    font-size: 1.8rem;
    font-family: MiSans-Demibold;
    text-align: center;
    line-height: 1.1;
    margin-top: 1.4rem;
}

.software .box2 {
    margin-top: 3rem;
    border-radius: 26px;
    overflow: hidden;
}

.software .box3 {
    margin-top: 2rem;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.software .box3 .text {
    position: absolute;
    bottom: 1.3rem;
    left: 1.3rem;
}

.software .box3 .text .tip {
    font-size: 0.38rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .software .box3 .text .tip {
        font-size: 12px;
    }
}

.software .box3 .text .title {
    font-size: 1.26rem;
    background: linear-gradient(to right, #ebc9b6, #b38873);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    line-height: 1.1;
}

.software .box4 {
    margin-top: 2rem;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.software .box4 .text {
    position: absolute;
    bottom: 0;
    right: 2rem;
    top: 0;
    margin: auto;
    height: fit-content;
    max-width: 40%;
}

.software .box4 .text .tip {
    font-size: 0.38rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .software .box4 .text .tip {
        font-size: 12px;
    }
}

.software .box4 .text .title {
    font-size: 1.26rem;
    background: linear-gradient(to left, #ebc9b6, #b38873);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    line-height: 1.1;
}

.software .box5 {
    margin-top: 2rem;
}

.software .box5 .title1 {
    font-size: 0.8rem;
    font-family: MiSans-Semibold;
    margin-bottom: 0.6rem;
}

@media screen and (max-width: 768px) {
    .software .box5 .title1 {
        font-size: 16px;
    }
}

.software .box5 .box5-img {
    overflow: hidden;
    position: relative;
    border-radius: 26px;
}

@media screen and (max-width: 768px) {
    .software .box5 .box5-img {
        border-radius: 10px;
    }
}

.software .box5 .box5-img .text {
    position: absolute;
    top: 0.6rem;
    left: 1rem;
    font-size: 0.38rem;
}

@media screen and (max-width: 768px) {
    .software .box5 .box5-img .text {
        font-size: 12px;
        top: 20px;
        left: 20px;
    }
}

.software .box6 {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.software .box6 .logo {
    width: 3.5rem;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .software .box6 .logo {
        width: 80px;
    }
}

.software .box6 .title {
    font-size: 2rem;
    text-align: center;
    font-family: MiSans-Semibold;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.software .box6 .download {
    width: 4.8rem;
    height: 1.7rem;
    border-radius: 999px;
    background: #f5f5f7;
    font-size: 0.48rem;
    transition: all 0.5s;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .software .box6 .download {
        width: 150px;
        height: 40px;
        font-size: 12px;
    }
}

.software .box6 .download:hover {
    background: var(--dominant-color);
    color: #fff;
}

.software .box7 {
    position: relative;
}

@media screen and (max-width: 768px) {
    .software .box7 {
        background: #000;
    }
}

.software .box7 .box7-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

@media screen and (max-width: 768px) {
    .software .box7 .box7-box {
        position: relative;
        padding: 30px 0;
    }
}

.software .box7 .box7-box .text {
    max-width: 10rem;
}

@media screen and (max-width: 768px) {
    .software .box7 .box7-box .text {
        max-width: 100%;
    }
}

.software .box7 .box7-box .tip {
    font-size: 0.4rem;
    background: linear-gradient(#f38c05, #edb65b);
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    display: inline-flex;
    font-family: MiSans-Semibold;
}

@media screen and (max-width: 768px) {
    .software .box7 .box7-box .tip {
        font-size: 12px;
    }
}

.software .box7 .box7-box .title {
    font-size: 1.2rem;
    background: linear-gradient(to bottom, #fdfbfb, #a2a3a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .software .box7 .box7-box .title {
        font-size: 16px;
    }
}

.software .box7 .box7-box .summary {
    color: #7d7d7d;
    font-size: 0.42rem;
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .software .box7 .box7-box .summary {
        font-size: 14px;
    }
}

.software .box8 {
    margin-top: 2rem;
    background: #f5f5f7;
    border-radius: 0.42rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .software .box8 {
        flex-direction: column;
        border-radius: 10px;
    }
}

.software .box8 .left {
    flex-basis: 50%;
    font-size: 0.38rem;
    padding: 0.3rem 1.3rem;
}

@media screen and (max-width: 768px) {
    .software .box8 .left {
        font-size: 14px;
        padding: 20px;
    }
}

.software .box8 .right {
    padding-top: 1.8rem;
    flex-basis: 50%;
}

@media screen and (max-width: 768px) {
    .software .box8 .right {
        padding-left: 30px;
    }
}

.about {
    background: #000;
}

.about .about1 {
    position: relative;
    background: #000;
}

.about .about1 .text1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 9rem;
    text-align: center;
    color: #fff;
    max-width: 10rem;
}

.about .about1 .text1 .title {
    font-size: 1.6rem;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .about .about1 .text1 .title {
        font-size: 20px;
    }
}

.about .about1 .text1 .tip {
    font-size: 0.8rem;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Arial;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .about .about1 .text1 .tip {
        font-size: 16px;
    }
}

.about .about1 .text1 .summary {
    font-size: 0.4rem;
    color: #e5dbd5;
}

@media screen and (max-width: 768px) {
    .about .about1 .text1 .summary {
        font-size: 12px;
    }
}

.about .about1 .text2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 5rem;
    text-align: center;
    color: #fff;
    max-width: 15rem;
}

@media screen and (max-width: 768px) {
    .about .about1 .text2 {
        position: relative;
    }
}

.about .about1 .text2 .title {
    font-size: 1.2rem;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .about .about1 .text2 .title {
        font-size: 20px;
    }
}

.about .about1 .text2 .summary {
    font-size: 0.38rem;
    color: #e5dbd5;
}

@media screen and (max-width: 768px) {
    .about .about1 .text2 .summary {
        font-size: 12px;
    }
}

.about .about2 {
    background: #0e1114;
    padding-bottom: 3rem;
}

.about .about2 .about2-box {
    background: #000;
    padding: 3rem 0;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .about .about2 .about2-box {
        flex-direction: column;
    }
}

.about .about2 .about2-box .left {
    flex: 1;
    padding: 1.5rem;
}

.about .about2 .about2-box .right {
    flex-basis: 50%;
}

.about .about2 .about2-box .title {
    font-size: 0.64rem;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .about .about2 .about2-box .title {
        font-size: 20px;
    }
}

.about .about2 .about2-box .summary {
    font-size: 0.4rem;
    color: #e5dbd5;
}

@media screen and (max-width: 768px) {
    .about .about2 .about2-box .summary {
        font-size: 12px;
    }
}

.about .about3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: url('../images/img70.jpg') repeat-y top center / cover;
}

.about .about3 .top .text {
    max-width: 17rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text {
        margin-bottom: 40px;
    }
}

.about .about3 .top .text .left {
    flex-basis: 40%;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .left {
        flex-basis: auto;
        width: 100%;
    }
}

.about .about3 .top .text .right {
    flex-basis: 50%;
    max-width: 7rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .right {
        flex-basis: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
}

.about .about3 .top .text .t-top {
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .t-top {
        flex-direction: column;
    }
}

.about .about3 .top .text .t-top .left span {
    display: block;
    font-size: 1.1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), #000000 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .t-top .left span {
        font-size: 20px;
    }
}

.about .about3 .top .text .t-bottom {
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .t-bottom {
        flex-direction: column;
    }
}

.about .about3 .top .text .text1 {
    font-size: 0.3rem;
    color: #86868b;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .text .text1 {
        font-size: 12px;
    }
}

.about .about3 .top .text .text1 span {
    color: #000;
}

.about .about3 .top .slider-box {
    max-width: 22rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.about .about3 .top .slider-box .s-left {
    flex-basis: 11.5rem;
    position: sticky;
    top: 25%;
    height: fit-content;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .s-left {
        display: none;
    }
}

.about .about3 .top .slider-box .s-left img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.about .about3 .top .slider-box .s-left img:nth-child(1) {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.about .about3 .top .slider-box .s-left img.active {
    opacity: 1;
    transform: translateY(0);
}

.about .about3 .top .slider-box .s-right {
    flex: 1;
}

.about .about3 .top .slider-box .item {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.about .about3 .top .slider-box .item .left {
    flex-basis: calc(70% - 200px);
    padding-bottom: 3rem;
    display: none;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .item .left {
        order: 2;
        flex-basis: calc(100% - 30px);
        display: block;
    }
}

.about .about3 .top .slider-box .item .left img {
    width: 100%;
}

.about .about3 .top .slider-box .item .left .text {
    display: none;
}

.about .about3 .top .slider-box .item .left .text .time {
    font-size: 16px;
    margin-bottom: 10px;
}

.about .about3 .top .slider-box .item .left .text .summary {
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .item .left .text {
        display: block;
        margin-top: 20px;
    }
}

.about .about3 .top .slider-box .item .mid {
    flex-basis: 200px;
    text-align: center;
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .item .mid {
        order: 1;
        flex-basis: 20px;
    }
}

.about .about3 .top .slider-box .item .mid .number {
    width: 0.6rem;
    height: 0.6rem;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .item .mid .number {
        width: 20px;
        height: 20px;
    }
}

.about .about3 .top .slider-box .item .mid .line {
    height: 100%;
    width: 1px;
    background: #d5d5d5;
    margin: auto;
    position: relative;
}

.about .about3 .top .slider-box .item .mid .line .line2 {
    height: 100%;
    width: 1px;
    background: #636363;
}

.about .about3 .top .slider-box .item .right {
    flex-basis: calc(100% - 200px);
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .top .slider-box .item .right {
        display: none;
    }
}

.about .about3 .top .slider-box .item .right .time {
    font-size: 0.42rem;
}

.about .about3 .top .slider-box .item .right .summary {
    font-size: 0.32rem;
}

.about .about3 .top .slider-box .item:last-child .line {
    display: none;
}

.about .about3 .bottom {
    background: #fff;
    border-radius: 0.6rem;
    padding: 2.5rem;
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
    .about .about3 .bottom {
        padding: 20px;
    }
}

.about .about3 .bottom .text1 {
    font-size: 0.4rem;
    color: #86868b;
}

@media screen and (max-width: 768px) {
    .about .about3 .bottom .text1 {
        font-size: 14px;
    }
}

.about .about3 .bottom .text1 span {
    color: #000;
}

.about .about3 .bottom .text2 {
    font-size: 0.8rem;
    background: linear-gradient(to left, #b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    margin: 1.2rem auto;
}

@media screen and (max-width: 768px) {
    .about .about3 .bottom .text2 {
        font-size: 20px;
        margin: 40px auto;
    }
}

.about .about4 {
    position: relative;
    background: #000;
}

.about .about4 .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.about .about4 .about4-box {
    margin: -5% auto auto;
    padding-bottom: 5rem;
}

.about .about4 .about4-box .text {
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .about .about4 .about4-box .text {
        flex-direction: column;
    }
}

.about .about4 .about4-box .left {
    flex-basis: 50%;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .about .about4 .about4-box .left {
        font-size: 20px;
    }
}

.about .about4 .about4-box .right {
    font-size: 0.5rem;
    color: #e5dbd5;
    flex-basis: 50%;
}

@media screen and (max-width: 768px) {
    .about .about4 .about4-box .right {
        font-size: 12px;
        margin-top: 20px;
    }
}

.about .about5 {
    margin-top: -1px;
    background: #000;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about .about5 .about5-box {
    height: 100%;
}

.about .about5 .text {
    transition: all 1s;
}

.about .about5 .item {
    text-align: center;
    height: 100vh;
    opacity: 1;
    margin: auto;
    pointer-events: none;
    transform: translateY(30px);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .about .about5 .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.about .about5 .item .title {
    text-align: center;
    margin-top: -15%;
}

@media screen and (max-width: 768px) {
    .about .about5 .item .title {
        padding: 0;
        margin-top: 0
    }
}

.about .about5 .item .summary-title span {
    font-size: 1.4rem;
    background: linear-gradient(#b38873, #ebc9b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
}

@media screen and (max-width: 768px) {
    .about .about5 .item .title span {
        font-size: 20px;
    }
}

.about .about5 .item .summary {
    font-size: 0.6rem;
    color: #e5dbd5;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .about .about5 .item .summary {
        font-size: 14px;
    }
}

.about .about5 .item span {
    filter: blur(10px);
    transition: all 0.5s;
}

.about .about5 .item.active {
    opacity: 1;
    transform: translateY(0);
}

.about .about5 .line {
    width: 5.5rem;
    height: 0.1rem;
    border-radius: 0.05rem;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    background: #696969;
}

@media screen and (max-width: 768px) {
    .about .about5 .line {
        width: 60%;
        height: 3px;
        border-radius: 20px;
    }
}

.about .about5 .line .line2 {
    background: #fff;
    width: 0;
    height: 100%;
}

/* ==================== 首页 - 板块一 Start ==================== */
.earth-text {
    display: none;
}

.index-section1 {
    margin-top: 2rem;
}

.index-section1 .earth-box {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    max-width: 18rem;
}

@media screen and (max-width: 1366px) {
    .index-section1 .earth-box {
        max-width: 60% !important;
    }
}

.index-section1 .earth-box .earth {
    width: 100%;
    height: 100%;
    position: relative;
}

.load-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 9999;
    border-radius: 100%;
    border: 1px dashed rgba(112, 112, 112, 0.2);
    background-color: #fbfbfb;
    transition: all 0.5s;
}

.load-el.hide {
    opacity: 0;
    visibility: hidden;
}

.load-el .common-model-load {
    padding-top: 0;
}

.load-el .common-model-load .load-progress {
    background-color: #333;
}

.load-el .common-model-load .load-text {
    color: #333;
}

.index-section1 .earth-box #labels {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    color: white;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.index-section1 .earth-box #labels > div {
    margin-top: -0.26vw;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    user-select: none;
    pointer-events: initial;
    transition-property: visibility, opacity;
    transition-duration: 0.2s;
}

.index-section1 .earth-box #labels > div:hover .text {
    opacity: 1;
    visibility: visible;
}

.index-section1 .earth-box #labels > div .summary,
.index-section1 .earth-box #labels > div .img {
    display: none !important;
}

.index-section1 .earth-box #labels > div.show {
    opacity: 1;
    visibility: visible;
}

.index-section1 .earth-box #labels > div.hide {
    opacity: 0;
    visibility: hidden;
}

.index-section1 .earth-box #labels .text {
    text-align: center;
    font-size: 0.833vw;
    color: var(--dominant-color);
    margin-bottom: 0.219vw;
    border-radius: 0.219vw;
    opacity: 1;
    transition: all 0.4s;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 4;
}

@media screen and (max-width: 768px) {
    .index-section1 .earth-box #labels .text {
        font-size: 12px;
    }
}

.index-section1 .earth-box #labels .icon {
    background: url(../images/img037@21x21.png) no-repeat center;
    background-size: 100%;
    width: 30px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .index-section1 .earth-box {
        width: 90%;
    }
}

/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 通用3d加载中动画 Start ==================== */
.common-model-load {
    padding-top: 0.67rem;
}

.common-model-load .load-itembox {
    width: 1.33rem;
    height: 1.33rem;
    margin: 0.67rem auto;
    transition: all 3s;
    position: relative;
    animation: rotate_animate 3s ease infinite;
    animation-delay: 0.8s;
    transform-style: preserve-3d;
    transform: rotateX(-37.5deg) rotateY(405deg);
}

.common-model-load .load-item {
    width: 1.33rem;
    height: 1.33rem;
    border: 0.05rem solid #fff;
    position: absolute;
    background-color: rgba(102, 102, 102, 0.5);
}

.common-model-load .load-item:nth-of-type(1) {
    transform: rotateY(90deg) translateZ(-0.67rem);
}

.common-model-load .load-item:nth-of-type(2) {
    transform: rotateY(90deg) translateZ(0.67rem);
}

.common-model-load .load-item:nth-of-type(3) {
    transform: rotateX(90deg) translateZ(0.67rem);
}

.common-model-load .load-item:nth-of-type(4) {
    transform: rotateX(90deg) translateZ(-0.67rem);
}

.common-model-load .load-item:nth-of-type(5) {
    transform: translateZ(0.67rem);
}

.common-model-load .load-item:nth-of-type(6) {
    transform: translateZ(-0.67rem);
}

.common-model-load .load-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 3.33rem;
}

.common-model-load .load-text {
    color: #fff;
    font-size: 0.27rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.common-model-load .load-progress {
    position: relative;
    background-color: #fff;
    border-radius: 1.67rem;
    height: 0.05rem;
    width: 0;
    max-width: 100%;
    margin-bottom: 0.17rem;
}

@keyframes rotate_animate {
    0% {
        transform: rotateX(-37.5deg) rotateY(45deg);
    }
    50% {
        transform: rotateX(-37.5deg) rotateY(405deg);
    }
    to {
        transform: rotateX(-37.5deg) rotateY(405deg);
    }
}

@media screen and (max-width: 749px) {
    .common-model-load {
        padding-top: 19.8px;
    }

    .common-model-load .load-itembox {
        width: 40.2px;
        height: 40.2px;
        margin: 19.8px auto;
        transition: all 3s;
        position: relative;
        animation: rotate_animate 3s ease infinite;
        animation-delay: 0.8s;
        transform-style: preserve-3d;
        transform: rotateX(-37.5deg) rotateY(405deg);
    }

    .common-model-load .load-item {
        width: 40.2px;
        height: 40.2px;
        border: 1.8px solid #fff;
    }

    .common-model-load .load-item:nth-of-type(1) {
        transform: rotateY(90deg) translateZ(-19.8px);
    }

    .common-model-load .load-item:nth-of-type(2) {
        transform: rotateY(90deg) translateZ(19.8px);
    }

    .common-model-load .load-item:nth-of-type(3) {
        transform: rotateX(90deg) translateZ(19.8px);
    }

    .common-model-load .load-item:nth-of-type(4) {
        transform: rotateX(90deg) translateZ(-19.8px);
    }

    .common-model-load .load-item:nth-of-type(5) {
        transform: translateZ(19.8px);
    }

    .common-model-load .load-item:nth-of-type(6) {
        transform: translateZ(-19.8px);
    }

    .common-model-load .load-text {
        font-size: 12px;
    }
}

/* ==================== 通用3d加载中动画 End ==================== */
.gallery {
    background: #f5f5f5;
    padding: 120px 0;
}

.gallery .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .gallery .items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.gallery .items .item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery .items .item {
    background: #fff;
}

.product-detail-download {
    padding: 120px 0;
}

.product-detail-download .page-info {
    margin-top: 0;
    max-width: 26rem;
}

.product-detail-download .items .item {
    padding: 0.5rem 1.3rem;
}

.product-detail-download .items .item .bottom {
    margin-top: 0;
}

.product-detail-download .items .item .bottom .download-click {
    margin-top: 0;
}

.yaoqing {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 300px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    z-index: 30;
    display: none;
    width: 90%;
    max-width: 400px;
}

.yaoqing .title {
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.yaoqing .title .close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.yaoqing label {
    margin-top: 40px;
    width: 100%;
    display: block;
}

.yaoqing input {
    border: 1px solid #eee;
    width: 100%;
    height: 40px;
}

.yaoqing .button {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: var(--dominant-color);
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    cursor: pointer;
}

/*网格布局*/
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.grid-gap-10 {
    grid-gap: 0.521vw;
}

.grid-gap-20 {
    grid-gap: 1.042vw;
}

.grid-gap-30 {
    grid-gap: 1.5625vw;
}

.grid-gap-40 {
    grid-gap: 2.083vw;
}

@media screen and (max-width: 1600px) {
    .grid-1600-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-1600-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1600-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-1600-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-1600-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 1280px) {
    .grid-1280-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-1280-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1280-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-1280-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-1280-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .grid-768-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-768-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-768-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-768-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-768-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/*弹性布局*/
.flex-center,
.flex-left,
.flex-right,
.flex-between {
    display: flex;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-left {
    align-items: center;
    justify-content: flex-start;
}

.flex-right {
    align-items: center;
    justify-content: flex-end;
}

.flex-between {
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .flex-phone-direction-column {
        flex-direction: column;
    }

    .flex-phone-direction-column-r {
        flex-direction: column-reverse;
    }

    .flex-phone-direction-row {
        flex-direction: row;
    }

    .flex-phone-direction-row-r {
        flex-direction: row-reverse;
    }
}

.cards span,
.cards p,
.cards div {
    font-family: MiSans-Semibold;
}



.cards span:not(.swiper-pagination-bullet) {
    background-image: linear-gradient(#fff, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.cards .card1 {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .cards .card1 {
        height: auto;
    }
}

.cards .card1 video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards .card1 .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

.cards .card1 .text img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

.cards .card1 .text::before {
    /*content: '';*/
    background: #000;
    top: 0;
    left: 0;
    position: absolute;
    height: 30vh;
    width: 100%;
}

.cards .card1 .text::after {
    /*content: '';*/
    background: #000;
    bottom: 0;
    left: 0;
    position: absolute;
    height: 30vh;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .cards .card1 .text {
        display: none;
    }
}

.cards .card2 {
    height: 100vh;
}

@media screen and (max-width: 768px) {
    .cards .card2 {
        height: auto;
        padding: 30px 0;
    }
}

.cards .card2 .cards2-box {
    height: 70vh;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box {
        flex-direction: column;
        height: auto;
    }
}

.cards .card2 .cards2-box .left {
    flex: 1;
}

.cards .card2 .cards2-box .left .title1 {
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box .left .title1 {
        font-size: 14px;
    }
}

.cards .card2 .cards2-box .left .title2 {
    font-size: 1rem;
    font-family: MiSans-Demibold;
    margin: 30px 0;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box .left .title2 {
        font-size: 20px;
        margin: 10px 0;
    }
}

.cards .card2 .cards2-box .left .title3 {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box .left .title3 {
        font-size: 16px;
    }
}

.cards .card2 .cards2-box .right {
    text-align: center;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box .right {
        max-width: 60%;
        margin: auto;
    }
}

.cards .card2 .cards2-box .right img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .cards .card2 .cards2-box .right img {
        height: auto;
    }
}

.cards .card2 .card2-black {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), #000000);
    width: 100%;
    position: absolute;
    top: 100vh;
    left: 0;
}

.cards .card2-1 {
    height: 100vh;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 {
        height: auto;
        padding: 30px 0;
    }
}

.cards .card2-1 .cards2-box {
    height: 70vh;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box {
        flex-direction: column;
        height: auto;
    }
}

.cards .card2-1 .cards2-box .left {
    flex: 1;
}

.cards .card2-1 .cards2-box .left .title1 {
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box .left .title1 {
        font-size: 14px;
    }
}

.cards .card2-1 .cards2-box .left .title2 {
    font-size: 1rem;
    font-family: MiSans-Demibold;
    margin: 30px 0;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box .left .title2 {
        font-size: 20px;
        margin: 10px 0;
    }
}

.cards .card2-1 .cards2-box .left .title3 {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box .left .title3 {
        font-size: 16px;
    }
}

.cards .card2-1 .cards2-box .right {
    text-align: center;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box .right {
        max-width: 60%;
        margin: auto;
    }
}

.cards .card2-1 .cards2-box .right img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .cards2-box .right img {
        height: auto;
        max-height: 300px;
    }
}

.cards .card2-1 .card2-black {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), #000000);
    width: 100%;
    position: absolute;
    top: 100vh;
    left: 0;
}

@media screen and (max-width: 768px) {
    .cards .card2-1 .card2-black {
        display: none;
    }
}

.cards .card3 {
    position: relative;
}

.cards .card3 .text1 {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    margin: auto;
}

.cards .card3 .text1 .sup {
    font-size: 0.8rem;
    color: #86868b;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card3 .text1 .sup {
        font-size: 12px;
    }
}

.cards .card3 .text1 .title {
    font-size: 2.1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
    letter-spacing: -3px;
}

.cards .card3 .text1 .title h4 {
    font-size: 1.8rem;
}

.cards .card3 .text1 .title h6 {
    font-size: 1.6rem;
}

.cards .card3 .text1 .title h6 {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .cards .card3 .text1 .title {
        font-size: 16px;
    }
}

.cards .card3 .text1 .title span {
    background-image: linear-gradient(to top, #f5b445, #ffce7b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

.cards .card4 {
    position: relative;
}

.cards .card4 .text {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card4 .text {
        position: inherit;
        padding-bottom: 20vh;
        padding-top: 50px;
    }
}

.cards .card4 .text .text1 {
    font-size: 0.6rem;
    color: #474747;
    line-height: 1.6;
}

.cards .card4 .text .text1:nth-child(3) {
    color: #adadad;
}

@media screen and (max-width: 768px) {
    .cards .card4 .text .text1 {
        font-size: 12px;
    }
}

.cards .card4 .text .text2 {
    font-size: 1rem;
    color: #fff;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
    .cards .card4 .text .text2 {
        font-size: 12px;
    }
}

.cards .card4 .text .text3 {
    color: #adadad;
    margin-top: 0.3rem;
    font-size: 0.6rem;
}

@media screen and (max-width: 768px) {
    .cards .card4 .text .text3 {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .cards .card4 .img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .cards .card4 .img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.cards .card5 {
    position: relative;
}

.cards .card5 .text1 {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card5 .text1 {
        font-size: 16px;
    }
}

.cards .card5 .text1 span {
    color: #f5b445;
    font-family: MiSans-Demibold;

    background-image: linear-gradient(to top, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .card5 .text2 {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.4rem;
    color: #86868b;
    text-align: center;
    font-family: MiSans-Demibold;
    max-width: 800px;
}

@media screen and (max-width: 768px) {
    .cards .card5 .text2 {
        font-size: 12px;
    }
}

.cards .card5 .text2 span {
    font-family: MiSans-Demibold;
}

.cards .card6 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card6 {
        padding: 50px 0;
    }
}

.cards .card6 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text1 {
        flex-direction: column;
    }
}

.cards .card6 .text1 .left {
    flex-basis: 50%;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text1 .left {
        flex-basis: 100%;
        font-size: 16px;
    }
}

.cards .card6 .text1 .right {
    flex-basis: 50%;
    font-size: 0.38rem;
    margin-top: 20px;
    color: #86868b;
    max-width: 600px;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text1 .right {
        font-size: 12px;
    }
}

.cards .card6 .text1 .right span {
    font-family: MiSans-Demibold;
}

.cards .card6 .img {
    margin: 1.5rem auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card6 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

.cards .card6 .text2 .left {
    font-size: 1.1rem;
    background: linear-gradient(to top, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text2 .left {
        font-size: 12px;
    }
}

.cards .card6 .text2 .right .right1 .r1-title {
    font-size: 1.1rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text2 .right .right1 .r1-title {
        font-size: 12px;
    }
}

.cards .card6 .text2 .right .right1 .r1-summary {
    font-size: 0.5rem;
    color: #86868b;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text2 .right .right1 .r1-summary {
        font-size: 12px;
    }
}

.cards .card6 .text2 .right .right2 {
    margin-top: 1.5rem;
    font-size: 0.6rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card6 .text2 .right .right2 {
        font-size: 12px;
    }
}

.cards .card6 .line {
    margin-top: 1rem;
    height: 4px;
    background: linear-gradient(to top, #e7c897, #b18750);
}

.cards .card7 {
    padding: 3rem 0;
    background: #000;
}

@media screen and (max-width: 768px) {
    .cards .card7 {
        padding: 50px 0;
    }
}

.cards .card7 .card7-title {
    text-align: center;
    font-size: 1rem;
    /*
  background: linear-gradient(to bottom, #ffffff 44%, rgba(255, 255,255 , 0));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: MiSans-Demibold;
  */

    color: #fff;
    /*background: linear-gradient(to right, #ff8a00, #e52e71);*/
    -webkit-mask: linear-gradient(to bottom, rgba(6, 9, 19, 1) 50%, rgba(255, 255, 255, 0.3));
    mask: linear-gradient(to bottom, rgba(6, 9, 19, 1) 50%, rgba(255, 255, 255, 0.3));
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-title {
        font-size: 20px;
    }
}

.cards .card7 .card7-box {
    margin-top: 1.5rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 25rem;
    align-items: initial;
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-box {
        gap: 10px;
    }
}

.cards .card7 .card7-box .item {
    background: #191919;
    border-radius: 0.28rem;
    width: calc((100% - 1.5rem) / 4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 1rem 20px;
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-box .item {
        width: calc((100% - 10px) / 2);
    }
}

.cards .card7 .card7-box .item .icon {
    width: 0.9rem;
    height: 0.9rem;
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-box .item .icon {
        width: 30px;
        height: 30px;
    }
}

.cards .card7 .card7-box .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cards .card7 .card7-box .item .title {
    font-size: 0.5rem;
    font-family: MiSans-Demibold;
    margin-top: 0.6rem;
    background: linear-gradient(to bottom, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-box .item .title {
        font-size: 16px;
    }
}

.cards .card7 .card7-box .item .summary {
    font-size: 0.32rem;
    color: #636366;
    font-family: MiSans-Demibold;
    margin-top: 0.2rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card7 .card7-box .item .summary {
        font-size: 12px;
    }
}

.cards .card8 {
    padding: 3rem 0;
    background: #000;
}

@media screen and (max-width: 768px) {
    .cards .card8 {
        padding: 50px 0;
    }
}

.cards .card8 .card8-box {
    gap: 0.4rem;
    max-width: 22rem;
    align-items: inherit;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box {
        flex-direction: column;
    }
}

.cards .card8 .card8-box .left {
    background: #0e0e0e;
    border-radius: 0.5rem;
    flex-basis: 50%;
    padding: 1rem;
}

.cards .card8 .card8-box .left .box1 .title {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    font-size: 0.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .left .box1 .title {
        font-size: 16px;
    }
}

.cards .card8 .card8-box .left .box1 .icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .left .box1 .icon {
        width: 20px;
        height: 20px;
    }
}

.cards .card8 .card8-box .left .box1 .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cards .card8 .card8-box .left .box2 {
    margin-top: 2rem;
}

.cards .card8 .card8-box .left .box2 .item {
    background: #191919;
    margin-bottom: 0.2rem;
    padding: 0.5rem;
    border-radius: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .left .box2 .item {
        padding: 20px;
        margin-bottom: 10px;
    }
}

.cards .card8 .card8-box .left .box2 .item .key {
    background: linear-gradient(to bottom, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.4rem;
    font-family: MiSans-Semibold;
    flex-basis: 100px;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .left .box2 .item .key {
        font-size: 14px;
        flex-basis: 50px;
    }
}

.cards .card8 .card8-box .left .box2 .item .value {
    color: #86868b;
    font-size: 0.3rem;
    flex: 1;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .left .box2 .item .value {
        font-size: 12px;
    }
}

.cards .card8 .card8-box .right {
    background: #0e0e0e;
    border-radius: 0.28rem;
    flex-basis: 50%;
    padding: 1rem;
}

.cards .card8 .card8-box .right .title {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    font-size: 0.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card8 .card8-box .right .title {
        font-size: 14px;
    }
}

.cards .card8 .card8-box .right .img {
    margin-top: 1rem;
}

.cards .card9 {
    background: linear-gradient(to bottom, #1b1b1c, #090909);
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card9 {
        padding: 50px 0;
    }
}

.cards .card9 .title {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card9 .title {
        font-size: 20px;
    }
}

.cards .card9 .img {
    position: relative;
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.cards .card9 .img .summary {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.3rem;
    color: #86868b;
    max-width: 10rem;
}

@media screen and (max-width: 768px) {
    .cards .card9 .img .summary {
        font-size: 12px;
        max-width: 90%;
    }
}

.cards .card10 {
    padding: 3rem 0;
    background: #e7ebec;
}

@media screen and (max-width: 768px) {
    .cards .card10 {
        padding: 50px 0;
    }
}

.cards .card10 .card10-box {
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box {
        flex-direction: column;
    }
}

.cards .card10 .card10-box .left {
    flex-basis: 40%;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box .left {
        flex-basis: 100%;
    }
}

.cards .card10 .card10-box .left .icon {
    width: 0.8rem;
    height: 0.8rem;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box .left .icon {
        width: 30px;
        height: 30px;
    }
}

.cards .card10 .card10-box .left .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cards .card10 .card10-box .left .title {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box .left .title {
        font-size: 16px;
    }
}

.cards .card10 .card10-box .left .summary {
    font-size: 0.4rem;
    margin-top: 1.5rem;
    color: #86868b;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box .left .summary {
        font-size: 12px;
    }
}

.cards .card10 .card10-box .left .summary span {
    background-image: linear-gradient(#000, #000);
}

.cards .card10 .card10-box .right {
    flex-basis: 60%;
}

@media screen and (max-width: 768px) {
    .cards .card10 .card10-box .right {
        margin-top: 40px;
    }
}

.cards .card11 {
    padding: 3rem 0;
    background-image: linear-gradient(to bottom, #050506, #141414);
}

@media screen and (max-width: 768px) {
    .cards .card11 {
        padding: 50px 0;
    }
}

.cards .card11 .card11-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cards .card11 .card11-box .item {
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cards .card11 .card11-box .item:nth-child(1) {
    flex-basis: calc(70% - 0.5rem);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
}

@media screen and (max-width: 768px) {
    .cards .card11 .card11-box .item:nth-child(1) {
        flex-direction: column;
        height: 18rem;
    }
}

.cards .card11 .card11-box .item:nth-child(1) .left {
    flex-basis: 30%;
    text-align: center;
    font-size: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card11 .card11-box .item:nth-child(1) .left {
        font-size: 12px;
    }
}

.cards .card11 .card11-box .item:nth-child(1) .left img {
    width: 3.5rem;
}

.cards .card11 .card11-box .item:nth-child(1) .right {
    flex-basis: 30%;
    font-size: 0.3rem;
    color: #86868b;
    margin-left: 10%;
}

@media screen and (max-width: 768px) {
    .cards .card11 .card11-box .item:nth-child(1) .right {
        font-size: 12px;
        margin-top: 20px;
    }
}

.cards .card11 .card11-box .item:nth-child(2) {
    flex-basis: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 5rem;
}

.cards .card11 .card11-box .item:nth-child(2) img {
    width: 2.5rem;
}

.cards .card11 .card11-box .item:nth-child(3) {
    flex-basis: calc(60% - 0.5rem);
    height: 8rem;
}

.cards .card11 .card11-box .item:nth-child(3) img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cards .card11 .card11-box .item:nth-child(3) .title,
.cards .card11 .card11-box .item:nth-child(4) .title {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    color: #fff;
    z-index: 2;
    font-size: 0.5rem;
}

.cards .card11 .card11-box .item:nth-child(4) {
    flex-basis: 40%;
    height: 8rem;
}

.cards .card11 .card11-box .item:nth-child(4) img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cards .card11 .card11-box .item:nth-child(5) {
    flex-basis: calc(24% - 0.5rem);
}

.cards .card11 .card11-box .item:nth-child(5) img {
    width: 2.5rem;
}

.cards .card11 .card11-box .item:nth-child(6) {
    flex-basis: calc(24% - 0.5rem);
}

.cards .card11 .card11-box .item:nth-child(7) {
    flex-basis: 52%;
    height: 5rem;
}

.cards .card11 .card11-box .item:nth-child(7) .title {
    position: absolute;
    top: 1rem;
    left: 0.2rem;
    right: 0.2rem;
    margin: auto;
    font-size: 0.4rem;
    color: #fff;
    text-align: center;
}

.cards .card11 .card11-box .item:nth-child(7) .summary {
    position: absolute;
    bottom: 0.8rem;
    left: 0.2rem;
    right: 0.2rem;
    margin: auto;
    font-size: 0.2rem;
    color: #999;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card11 .card11-box .item:nth-child(5) {
        flex-basis: calc(50% - 0.5rem);
    }

    .cards .card11 .card11-box .item:nth-child(6) {
        flex-basis: calc(50% - 0.5rem);
    }

    .cards .card11 .card11-box .item:nth-child(7) {
        flex-basis: 100%;
    }

    .cards .card11 .card11-box .item:nth-child(3),
    .cards .card11 .card11-box .item:nth-child(4) {
        height: 16rem;
    }

    .cards .card11 .card11-box .item:nth-child(7) {
        height: 12rem;
    }

    .cards .card11 .card11-box .item:nth-child(3) .title,
    .cards .card11 .card11-box .item:nth-child(4) .title {
        font-size: 14px;
    }

    .cards .card11 .card11-box .item:nth-child(7) .title {
        font-size: 14px;
    }

    .cards .card11 .card11-box .item:nth-child(7) .summary {
        font-size: 12px;
    }
}


.cards .card12 {
    position: relative;
}

.cards .card12 .text {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    align-items: flex-start;
    max-width: 20rem;
}


@media screen and (max-width: 768px) {
    .cards .card12 .text {
        flex-direction: column;
    }
}

.cards .card12 .text .left {
    background: linear-gradient(to top, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    font-size: 1.1rem;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card12 .text .left {
        font-size: 16px;
    }
}

.cards .card12 .text .right {
    color: #86868b;
    font-size: 0.4rem;
    flex-basis: 40%;
    max-width: 7rem;
}

@media screen and (max-width: 768px) {
    .cards .card12 .text .right {
        font-size: 12px;
        max-width: 100%;
        margin-top: 30px;
    }
}

.cards .card13 {
    background: #000;
    padding: 6rem 0;
}

.cards .card13 .text {
    /*background: linear-gradient(to left, #e7c897, #b18750);*/
    background: linear-gradient(to left, #ebd6b5, #b39872);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.2;
    width: fit-content;
    margin: auto;
}

.cards .card14 {
    position: relative;
}

.cards .card14 .text1 {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    margin: auto;
}

.cards .card14 .text1 .sup {
    font-size: 0.8rem;
    color: #86868b;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card14 .text1 .sup {
        font-size: 12px;
    }
}

.cards .card14 .text1 .title {
    font-size: 2.1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card14 .text1 .title {
        font-size: 16px;
    }
}

.cards .card14 .text1 .title span {
    background: linear-gradient(to top, #f5b445, #ffce7b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

.cards .card14 .text2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
    margin: auto;
    border-radius: 1rem;
    background: #323234;
    width: fit-content;
    font-size: 0.3rem;
    color: #fff;
    /*padding-right:  1.96rem;*/
    /*padding-left:  1rem;*/
    text-align: right;
    display: flex;
;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .cards .card14 .text2 {
        font-size: 12px;
        /*padding: 10px 10px 10px 20px;*/
        border-radius: 20px;
    }
}
.cards .card14 .text2 .t {
    padding-left: 1rem;
    padding-right: 1rem;
}
.cards .card14 .text2 img {
    /*position: absolute;*/
    /*right: 0.2rem;*/
    /*top: 0;*/
    /*bottom: 0;*/
    width: 0.76rem;
    height: 0.76rem;
    margin: 0.2rem 0.2rem 0.2rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card14 .text2 img {
        width: 20px;
        height: 20px;
        margin: 6px 6px 6px 0
    }

    .cards .card14 .text2 .t {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.cards .card15 {
    background: linear-gradient(to right, #080704, #15120d);
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card15 {
        padding: 50px 0;
    }
}

.cards .card15 .text {
    color: #fff;
    text-align: center;
    font-family: MiSans-Demibold;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cards .card15 .text .tip {
    background: linear-gradient(to right, #ebd6b5, #b39872);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Semibold;
    width: fit-content;
    text-align: center;
    margin: auto;
}

.cards .card15 .card15-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

@media screen and (max-width: 768px) {
    .cards .card15 .card15-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.cards .card15 .card15-box .title {
    font-size: 0.6rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 768px) {
    .cards .card15 .card15-box .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.cards .card15 .card15-box .img {
    border-radius: 0.4rem;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .cards .card15 .card15-box .img {
        border-radius: 20px;
    }
}

.cards .card15 .card15-box .summary {
    padding: 0.5rem;
    font-size: 0.28rem;
    background: linear-gradient(to right, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card15 .card15-box .summary {
        font-size: 12px;
        padding: 20px;
    }
}

.cards .card16 {
    position: relative;
}

.cards .card16 .text1 {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    margin: auto;
}

.cards .card16 .text1 .sup {
    font-size: 0.8rem;
    color: #86868b;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card16 .text1 .sup {
        font-size: 12px;
    }
}

.cards .card16 .text1 .title {
    font-size: 2.1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card16 .text1 .title {
        font-size: 16px;
    }
}

.cards .card16 .text1 .title span {
    background: linear-gradient(to top, #f5b445, #ffce7b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

.cards .card17 {
    position: relative;
}

@media screen and (max-width: 768px) {
    .cards .card17 {
        background: #000;
    }
}

.cards .card17 .text1 {
    position: absolute;
    bottom: 16%;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .cards .card17 .text1 {
        position: inherit;
        background: #000;
    }
}

.cards .card17 .text1 .text2 {
    max-width: 12rem;
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .cards .card17 .text1 .text2 {
        max-width: 100%;
    }
}

.cards .card17 .text1 .title {
    font-size: 1.1rem;
    color: #fff;
    font-family: MiSans-Demibold;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card17 .text1 .title {
        font-size: 16px;
    }
}

.cards .card17 .text1 .summary {
    color: #86868b;
    font-size: 0.3rem;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card17 .text1 .summary {
        font-size: 12px;
    }
}

.cards .card18 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card18 {
        padding: 50px 0;
    }
}

.cards .card18 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text1 {
        flex-direction: column;
    }
}

.cards .card18 .text1 .left {
    flex-basis: 50%;
    font-size: 1.1rem;
    /*background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));*/
    /*background-clip: text;*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    font-family: MiSans-Demibold;
}

.cards .card18 .text1 .left span {
    font-size: 1.1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text1 .left {
        font-size: 16px;
    }
}

.cards .card18 .text1 .right {
    flex-basis: 50%;
    font-size: 0.38rem;
    margin-top: 20px;
    color: #86868b;
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text1 .right {
        font-size: 12px;
    }
}

.cards .card18 .text1 .right span {
}

.cards .card18 .img {
    margin: 3rem auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card18 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text2 {
        flex-direction: column;
    }
}

.cards .card18 .text2 .left {
    font-size: 0.4rem;
    color: #86868b;
    flex-basis: 50%;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text2 .left {
        font-size: 12px;
    }
}

.cards .card18 .text2 .right {
    font-size: 1.1rem;
    /*background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));*/
    /*background-clip: text;*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    font-family: MiSans-Demibold;
}

.cards .card18 .text2 .right span {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card18 .text2 .right {
        font-size: 16px;
        margin-top: 30px;
    }
}

.cards .card18 .text2 .right .tip {
    font-size: 0.5rem;
    background: linear-gradient(to right, #e7c897, #b18750);
    background: linear-gradient(to bottom, #ff9835, #ffbe46);
    background: linear-gradient(to top, #f3d39d, #efb655 40%, #d69226 73%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;


}

@media screen and (max-width: 768px) {
    .cards .card18 .text2 .right .tip {
        font-size: 12px;
    }
}

.cards .card19 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card19 {
        padding: 50px 0;
    }
}

.cards .card19 .text1 {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text1 {
        font-size: 16px;
    }
}

.cards .card19 .text1 span {
    background: linear-gradient(to top, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

.cards .card19 .img {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card19 .text2 {
    background: #323234;
    font-size: 0.3rem;
    color: #fff;
    border-radius: 1rem;
    /*padding: 0.4rem 1.76rem 0.4rem 1rem;*/
    max-width: fit-content;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text2 {
        padding: 10px;
        font-size: 12px;
        border-radius: 20px;
    }
}

.cards .card19 .text2 .t {
    padding-left: 1rem;
    padding-right: 1rem;
}

.cards .card19 .text2 img {
    /*margin-left: 0.2rem;*/
    /*position: absolute;*/
    margin: 0.2rem 0.2rem 0.2rem 0;
    /*right: 0.2rem;*/
    top: 0;
    bottom: 0;
    width: 0.76rem;
    height: 0.76rem;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text2 img {
        width: 20px;
        height: 20px;
        margin: 6px 6px 6px 0;
    }

    .cards .card19 .text2 .t {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.cards .card19 .text3 {
    font-size: 0.3rem;
    color: #89898e;
    max-width: 10rem;
    margin: 3rem auto;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text3 {
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card19 .text3 span {
}

.cards .card19 .text4 {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cards .card19 .text4 .item {
    flex-basis: calc(100% / 3);
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text4 .item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.cards .card19 .text4 .item .key {
    font-size: 0.4rem;
    background: linear-gradient(to left, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
    width: fit-content;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text4 .item .key {
        font-size: 16px;
    }
}

.cards .card19 .text4 .item .value {
    font-size: 0.2rem;
    text-align: center;
    color: #f7f7f9;
}

@media screen and (max-width: 768px) {
    .cards .card19 .text4 .item .value {
        font-size: 12px;
    }
}

.cards .card20 {
    position: relative;
}

.cards .card20 .card20-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    color: #fff;
}

.cards .card20 .card20-box .sup {
    font-family: MiSans-Demibold;
    font-size: 0.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card20 .card20-box .sup {
        font-size: 12px;
    }
}

.cards .card20 .card20-box .title {
    font-size: 1.6rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card20 .card20-box .title {
        font-size: 16px;
    }
}

.cards .card20 .card20-box .summary {
    margin-top: 3rem;
    font-size: 0.36rem;
    color: #d2dae6;
}

@media screen and (max-width: 768px) {
    .cards .card20 .card20-box .summary {
        font-size: 12px;
    }
}

.cards .card20 .card20-box .summary img {
    width: 9rem;
    margin-bottom: 1rem;
}

.cards .card21 {
    background: url('../images/img21-1.jpg') no-repeat center bottom / cover;
    padding: 3rem 0 0;
}

@media screen and (max-width: 768px) {
    .cards .card21 {
        font-size: 16px;
    }
}

.cards .card21 .text1 {
    text-align: center;
}

.cards .card21 .text1 .title {
    font-size: 1.1rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text1 .title {
        font-size: 16px;
    }
}

.cards .card21 .text1 .summary {
    font-size: 0.3rem;
    color: #86868b;
    margin: 1rem auto 2rem;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text1 .summary {
        font-size: 12px;
    }
}

.cards .card21 .text1 .summary span {
}

.cards .card21 .img {
    position: relative;
}

.cards .card21 .img .title {
    font-size: 0.78rem;
    color: #86868b;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 18rem;
}

@media screen and (max-width: 768px) {
    .cards .card21 .img .title {
        font-size: 12px;
    }
}

.cards .card21 .text2 {
    color: #fff;
    align-items: flex-start;
    max-width: 18rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text2 {
        position: relative;
        flex-direction: column;
    }
}

.cards .card21 .text2 .item {
    border-top: 1px solid #86868b;
    padding-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text2 .item {
        margin-bottom: 30px;
        padding-top: 10px;
        width: 100%;
    }
}

.cards .card21 .text2 .item .key {
    font-size: 0.15rem;
    color: #86868b;
    margin-bottom: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text2 .item .key {
        font-size: 16px;
    }
}

.cards .card21 .text2 .item .value {
    font-size: 0.32rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card21 .text2 .item .value {
        font-size: 12px;
    }
}

.cards .card22 {
    background: #fff;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card22 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card22 .top {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
}

.cards .card22 .top .left {
    flex-basis: 55%;
}

.cards .card22 .top .right {
    flex-basis: 35%;
}

@media screen and (max-width: 768px) {
    .cards .card22 .top .right {
        flex-basis: 100%;
        overflow: hidden;
    }
}

.cards .card22 .top .right .title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card22 .top .right .title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.cards .card22 .top .right .item {
    padding-top: 0.3rem;
    padding-bottom: 0.8rem;
    border-top: 1px solid #dddddd;
}

@media screen and (max-width: 768px) {
    .cards .card22 .top .right .item {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.cards .card22 .top .right .item .key {
    font-size: 0.15rem;
    color: #86868b;
}

@media screen and (max-width: 768px) {
    .cards .card22 .top .right .item .key {
        font-size: 12px;
    }
}

.cards .card22 .top .right .item .value {
    font-size: 0.32rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card22 .top .right .item .value {
        font-size: 12px;
    }
}

.cards .card22 .bottom {
    padding: 1rem;
    font-size: 0.4rem;
    color: #86868b;
    max-width: 13rem;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .cards .card22 .bottom {
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card22 .bottom span {
    background-image: linear-gradient(#000,#000);
}

.cards .card23 {
    background: #f5f5f5;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card23 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card23 .card23-box {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cards .card23 .text1 {
    align-items: flex-start;
    padding: 0 1rem;
}

.cards .card23 .text1 .left {
    flex-basis: 50%;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
    letter-spacing: -2px;
}

@media screen and (max-width: 768px) {
    .cards .card23 .text1 .left {
        font-size: 16px;
    }
}

.cards .card23 .img {
    margin: 1rem auto 0;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 1.5rem;
}

.cards .card23 .img .title {
    font-size: 0.6rem;
    margin-bottom: 0.4rem;
}

.cards .card24 {
    background: #161617;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card24 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card24 .card24-title {
    font-size: 0.8rem;
    color: #fff;
    font-family: MiSans-Demibold;
    max-width: 19rem;
}

@media screen and (max-width: 768px) {
    .cards .card24 .card24-title {
        font-size: 16px;
    }
}

.cards .card24 .card24-box {
    max-width: 19rem;
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card24 .card24-box {
        margin-top: 20px;
    }
}

.cards .card24 .card24-box .swiper {
    overflow: inherit;
}

.cards .card24 .card24-box .swiper-slide {
    position: relative;
    border-radius: 0.4rem;
    overflow: hidden;
    height: auto;
    max-height: 800px;
}

.cards .card24 .card24-box .swiper-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cards .card24 .card24-box .swiper-slide .text {
    position: absolute;
    top: 0.6rem;
    left: 0.7rem;
    color: #fff;
    font-size: 0.4rem;
}

@media screen and (max-width: 768px) {
    .cards .card24 .card24-box .swiper-slide .text {
        font-size: 12px;
        top: 30px;
        left: 30px;
    }
}

.cards .card24 .card24-box .swiper-button {
    position: relative;
    background: #444447;
    width: fit-content;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5rem;
    padding: 5px;
}

@media screen and (max-width: 768px) {
    .cards .card24 .card24-box .swiper-button {
        border-radius: 20px;
    }
}

.cards .card24 .card24-box .swiper-button .swiper-pagination {
    position: initial;
    flex: 1;
    margin: 0 20px;
}

.cards .card24 .card24-box .swiper-button .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.cards .card24 .card24-box .swiper-button .swiper-button-prev,
.cards .card24 .card24-box .swiper-button .swiper-button-next {
    background: none;
    position: initial;
    margin-top: auto;
    border: none;
}

.cards .card24 .card24-box .swiper-button .swiper-button-prev::after,
.cards .card24 .card24-box .swiper-button .swiper-button-next::after {
    display: none;
}

.cards .card24 .card24-box .swiper-button .swiper-button-prev:hover,
.cards .card24 .card24-box .swiper-button .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cards .card24 .card24-box .swiper-button .swiper-button-prev i,
.cards .card24 .card24-box .swiper-button .swiper-button-next i {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cards .card24 .card24-box .swiper-button .swiper-button-prev i,
    .cards .card24 .card24-box .swiper-button .swiper-button-next i {
        font-size: 16px;
    }
}

.cards .card25 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card25 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card25 .card25-title {
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
    color: #fff;
    max-width: 19rem;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-title {
        font-size: 16px;
    }
}

.cards .card25 .card25-title span {
    font-size: 0.3rem;
    display: block;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-title span {
        font-size: 12px;
    }
}

.cards .card25 .card25-box {
    margin-top: 1rem;
    align-items: flex-start;
    flex-flow: row wrap;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-box {
        margin-top: 20px;
        flex-direction: column;
    }
}

.cards .card25 .card25-box .left {
    flex-basis: 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-box .left {
        justify-content: center;
        max-width: 90%;
        margin: auto;
        flex-basis: 100%;
    }
}

.cards .card25 .card25-box .left img {
    position: relative;
    display: block;
    max-width: initial;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-box .left img {
        width: 100%;
    }
}

.cards .card25 .card25-box .right {
    flex-basis: 40%;
    max-width: 7rem;
    color: #86868b;
    font-size: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-box .right {
        width: 90%;
        margin: auto;
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card25 .card25-box .right .item {
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card25 .card25-box .right .item {
        margin-bottom: 30px;
    }
}

.cards .card25 .card25-box .right .icon {
    height: 56px;
    margin-bottom: 0.1rem;
}

.cards .card25 .card25-box .right .summary {
    line-height: 1.6;
}

.cards .card25 .card25-box .right .icon img {
    height: 100%;
}

.cards .card25 .card25-box .right span {

}

.cards .card26 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card26 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card26 .card26-title {
    color: #fff;
    font-size: 1rem;
    font-family: MiSans-Demibold;
    margin-bottom: 1rem;
    max-width: 19rem;
}

@media screen and (max-width: 768px) {
    .cards .card26 .card26-title {
        font-size: 16px;
    }
}

.cards .card26 .card26-title span {
    font-size: 0.5rem;
    display: block;
}

@media screen and (max-width: 768px) {
    .cards .card26 .card26-title span {
        font-size: 12px;
    }
}

.cards .card26 .img-box {
    height: 200vh;
}

@media screen and (max-width: 768px) {
    .cards .card26 .img-box {
        height: auto;
    }
}

.cards .card26 .img-box-sticky {
    position: sticky;
    top: 0;
}

.cards .card26 .img {

    /*height: 100vh;*/
    width: 100%;
    max-width: 19rem;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    /*transform: scale(1.3);*/
    /*transform-origin: center center;*/
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .cards .card26 .img {
        height: auto;
        transform: scale(1);
        width: 90%;
        margin: auto;
    }
}

.cards .card26 .summary {
    color: #86868b;
    font-family: MiSans-Demibold;
    font-size: 0.5rem;
    max-width: 14rem;
    margin-top: 1rem;
    padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .cards .card26 .summary {
        font-size: 12px;
        margin-top: 30px;
    }
}

.cards .card26 .summary span {

}

.cards .card27 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card27 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card27 .text {
    max-width: 19rem;
    color: #fff;
    font-family: MiSans-Demibold;
    padding: 0 1rem;
}

.cards .card27 .text .text1 {
    font-size: 0.3rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .cards .card27 .text .text1 {
        font-size: 12px;
    }
}

.cards .card27 .text .text2 {
    font-size: 1.1rem;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card27 .text .text2 {
        font-size: 16px;
        margin-top: 10px;
    }
}

.cards .card27 .text .text3 {
    margin-top: 0.7rem;
    font-size: 0.3rem;
    color: #86868b;
    max-width: 10rem;
}

@media screen and (max-width: 768px) {
    .cards .card27 .text .text3 {
        font-size: 12px;
        max-width: 100%;
        margin-top: 10px;
    }
}

.cards .card27 .text .text3 span {

}

.cards .card27 .card27-box {
    max-width: 19rem;
    margin-top: 1rem;
}

.cards .card27 .card27-box .swiper {
    overflow: inherit;
}

.cards .card27 .card27-box .swiper-slide {
    position: relative;
    border-radius: 0.4rem;
    overflow: hidden;
    max-height: 600px;
    height: auto;
}

.cards .card27 .card27-box .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.cards .card27 .card27-box .swiper-slide.swiper-slide-prev,
.cards .card27 .card27-box .swiper-slide.swiper-slide-next {
    opacity: 0.3;
}

.cards .card27 .card27-box-tabs {
    color: #86868b;
    margin-top: 2rem;
    gap: 0.5rem;
    width: fit-content;
    border-bottom: 1px solid #424245;
}

@media screen and (max-width: 768px) {
    .cards .card27 .card27-box-tabs {
        gap: 20px;
    }
}

.cards .card27 .card27-box-tabs .item {
    font-size: 0.3rem;
    font-family: MiSans-Demibold;
    padding-bottom: 0.5rem;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .cards .card27 .card27-box-tabs .item {
        font-size: 12px;
    }
}

.cards .card27 .card27-box-tabs .item.active,
.cards .card27 .card27-box-tabs .item:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.cards .card27 .card27-box-tabs-summary {
    margin-top: 1rem;
    color: #86868b;
    max-width: 10rem;
    text-align: center;
}

.cards .card27 .card27-box-tabs-summary .item {
    display: none;
}

.cards .card27 .card27-box-tabs-summary .item.active {
    display: block;
}

.cards .card28 {
    background: #000;
    padding: 3rem 0 0;
}

@media screen and (max-width: 768px) {
    .cards .card28 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card28 .text {
    max-width: 19rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

.cards .card28 .text .text1 {
    font-size: 0.3rem;
    margin-bottom: 0.2rem;
}

@media screen and (max-width: 768px) {
    .cards .card28 .text .text1 {
        font-size: 12px;
    }
}

.cards .card28 .text .text2 {
    font-size: 1.1rem;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card28 .text .text2 {
        font-size: 16px;
        margin-top: 20px;
    }
}

.cards .card28 .text .text3 {
    margin-top: 0.5rem;
    font-size: 0.3rem;
    color: #86868b;
    max-width: 10rem;
}

@media screen and (max-width: 768px) {
    .cards .card28 .text .text3 {
        font-size: 12px;
        margin-top: 20px;
        max-width: 100%;
    }
}

.cards .card28 .text .text3 span {

}

.cards .card28 .card28-box {
    /*margin-top: 3rem;*/
}

.cards .card29 {
    background: #0a0a0a;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card29 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card29 .text {
    color: #fff;
    text-align: center;
    font-family: MiSans-Demibold;
    font-size: 1rem;
}

.cards .card29 .text .tip {
    background: linear-gradient(to right, #ebd6b5, #b39872);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    width: fit-content;
    text-align: center;
    margin: auto;
}

.cards .card29 .text .summary {
    font-size: 0.3rem;
    color: #86868b;
    max-width: 13rem;
    margin: 1rem auto 2rem;
    line-height: 1.6;
}

.cards .card29 .tabs {
    max-width: fit-content;
    color: #86868b;
    border-bottom: 1px solid #86868b;
    display: flex;
    gap: 40px;
    font-size: 0.4rem;
}

@media screen and (max-width: 768px) {
    .cards .card29 .tabs {
        font-size: 12px;
        gap: 20px;
    }
}

.cards .card29 .tabs .item {
    padding-bottom: 20px;
    cursor: pointer;
    font-family: MiSans-Demibold;
}

.cards .card29 .tabs .item.active {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.cards .card29 .tabs-summary {
    margin-top: 30px;
}

.cards .card29 .tabs-summary .item {
    display: none;
    text-align: center;
    color: #86868b;
    font-size: 0.3rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card29 .tabs-summary .item {
        font-size: 12px;
    }
}

.cards .card29 .tabs-summary .item.active {
    display: block;
}

.cards .card29 .tabs-change {
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card29 .tabs-change {
        margin-top: 20px;
    }
}

.cards .card29 .tabs-change .item {
    display: none;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .cards .card29 .tabs-change .item {
        flex-direction: column;
    }
}

.cards .card29 .tabs-change .item.active {
    display: flex;
    align-items: flex-start;
}

.cards .card29 .tabs-change .item .text {
    font-size: 0.3rem;
    text-align: center;
    color: #86868b;
}

@media screen and (max-width: 768px) {
    .cards .card29 .tabs-change .item .text {
        font-size: 12px;
    }
}

.cards .card29 .tabs-change .item .text span {

}

.cards .card29 .tabs-change .item .left {
    border-radius: 30px;
    flex-basis: 50%;
    background: #000;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
}

.cards .card29 .tabs-change .item .left .text {
    margin-top: 40px;
}

.cards .card29 .tabs-change .item .left img {
    /*max-width: 40%;*/
}

.cards .card29 .tabs-change .item .right {
    flex-basis: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.cards .card29 .tabs-change .item .right .top {
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    height: 50%;
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.cards .card29 .tabs-change .item .right .bottom {
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    height: 50%;
    text-align: center;
    padding: 1rem;
    justify-content: space-between;
    flex-direction: column;
    z-index: 1;
}

.cards .card29 .tabs-change .item .right .bottom .img {
    margin-top: 50px;
}

.cards .card30 {
    background: #1d1d1f;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card30 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card30 .text {
    max-width: 19rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

.cards .card30 .text .text1 {
    font-size: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card30 .text .text1 {
        font-size: 12px;
    }
}

.cards .card30 .text .text2 {
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card30 .text .text2 {
        font-size: 16px;
        margin-top: 10px;
    }
}

.cards .card30 .text .text3 {
    /*margin-top: 0.6rem;*/
    /*font-size: 0.3rem;*/
    /*color: #86868b;*/
    /*max-width: 13rem;*/
    background: linear-gradient(to right, #ebd6b5, #b39872);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    width: fit-content;
    text-align: center;
    margin: auto;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card30 .text .text3 {
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card30 .text .text3 span {

}

.cards .card30 .card30-box {
    max-width: 19rem;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card30 .card30-box {
        margin-top: 20px;
    }
}

.cards .card30 .card30-box .swiper {
    overflow: inherit;
}

.cards .card30 .card30-box .swiper-slide {
    position: relative;
    overflow: hidden;
}

.cards .card30 .card30-box .swiper-slide img {
    border-radius: 0.4rem;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .cards .card30 .card30-box .swiper-slide img {
        border-radius: 20px;
    }
}

.cards .card30 .card30-box .swiper-slide .text {
    font-size: 0.4rem;
    margin-top: 30px;
    background: linear-gradient(to right, #ebd6b5, #b39872);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    .cards .card30 .card30-box .swiper-slide .text {
        font-size: 12px;
        margin-top: 10px;
    }
}

.cards .card30 .card30-box .swiper-button {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    gap: 20px;
    text-align: right;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    .cards .card30 .card30-box .swiper-button {
        margin-top: 20px;
    }
}

.cards .card30 .card30-box .swiper-button .swiper-button-prev,
.cards .card30 .card30-box .swiper-button .swiper-button-next {
    position: inherit;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.2);
}

.cards .card30 .card30-box .swiper-button .swiper-button-prev::after,
.cards .card30 .card30-box .swiper-button .swiper-button-next::after {
    display: none;
}

.cards .card30 .card30-box .swiper-button .swiper-button-prev i,
.cards .card30 .card30-box .swiper-button .swiper-button-next i {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cards .card30 .card30-box .swiper-button .swiper-button-prev i,
    .cards .card30 .card30-box .swiper-button .swiper-button-next i {
        font-size: 12px;
    }
}

.cards .card31 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card31 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card31 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 3rem;
}

@media screen and (max-width: 768px) {
    .cards .card31 .text1 {
        flex-direction: column;
    }
}

.cards .card31 .text1 .left {
    flex-basis: 50%;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card31 .text1 .left {
        font-size: 16px;
    }
}

.cards .card31 .text1 .right {
    flex-basis: 50%;
    font-size: 0.38rem;
    margin-top: 20px;
    color: #86868b;
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .cards .card31 .text1 .right {
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card31 .text1 .right span {

}

.cards .card31 .img {
    margin: 130px auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .cards .card31 .img {
        border-radius: 20px;
    }
}

.cards .card31 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

.cards .card31 .text2 .left {
    font-size: 1.1rem;
    background: linear-gradient(to top, #e7c897, #b18750);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card31 .text2 .left {
        font-size: 16px;
    }
}

.cards .card31 .text2 .right .right1 .r1-title {
    font-size: 1.1rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

.cards .card31 .text2 .right .right1 .r1-summary {
    font-size: 0.5rem;
    color: #86868b;
    font-family: MiSans-Demibold;
}

.cards .card31 .text2 .right .right2 {
    margin-top: 1.5rem;
    font-size: 0.6rem;
}

.cards .card31 .line {
    margin-top: 1rem;
    height: 4px;
    background: linear-gradient(to top, #e7c897, #b18750);
}

.cards .card32 {
    position: relative;
    overflow: hidden;
}

.cards .card32 .text {
    position: absolute;
    color: #fff;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    max-width: 16rem;
}

@media screen and (max-width: 768px) {
    .cards .card32 .text {
        font-size: 16px;
    }
}

.cards .card33 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card33 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card33 .text {

    text-align: center;
    color: #fff;
}

.cards .card33 .text .title {
    font-family: MiSans-Demibold;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .cards .card33 .text .title {
        font-size: 16px;
    }
}

.cards .card33 .text .summary {
    font-size: 0.3rem;
    color: #86868b;
    margin-top: 0.6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .cards .card33 .text .summary {
        font-size: 12px;
    }
}

.cards .card33 .text .summary span {

}

.cards .card33 .img {
    text-align: center;
    margin: 2rem auto;
}

.cards .card33 .items {
    max-width: 1000px;
    gap: 1rem;
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
    .cards .card33 .items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cards .card33 .items .title {
    color: #fff;
    border-bottom: 1px solid #86868b;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 0.37rem;
}
@media screen and (max-width: 768px) {
    .cards .card33 .items .title {
        font-size: 12px;
    }
}


.cards .card33 .items .summary {
    color: #86868b;
    font-size: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card33 .items .summary {
        font-size: 12px;
    }
}

.cards .card33 .items .summary span {
    background-image: linear-gradient(#000,#000);
}

.cards .card35 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card35 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card35 .text1 {
    text-align: center;
    color: #fff;
    font-family: MiSans-Demibold;
    font-size: 1.1rem;
    max-width: 19rem;
}

@media screen and (max-width: 768px) {
    .cards .card35 .text1 {
        font-size: 16px;
    }
}

.cards .card35 .img {
    text-align: center;
    margin: 1rem auto;
    border-radius: 30px;
    overflow: hidden;
}

.cards .card35 .text2 {
    color: #86868b;
    max-width: 19rem;
    font-size: 0.3rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card35 .text2 {
        font-size: 12px;
    }
}

.cards .card35 .text2 span {

}

.cards .card34 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card34 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card34 .tabs-change {
    position: relative;
    text-align: center;
}

.cards .card34 .tabs-change .item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    opacity: 0;
    text-align: center;
    transition: all 0.5s;
}

.cards .card34 .tabs-change .item:nth-child(1) {
    position: relative;
}

.cards .card34 .tabs-change .item.active {
    pointer-events: auto;
    opacity: 1;
}

.cards .card34 .tabs {
    background: #333336;
    margin-top: 50px;
    border-radius: 40px;
    position: relative;
    max-width: fit-content !important;
    padding: 6px;
}

@media screen and (max-width: 768px) {
    .cards .card34 .tabs {
        margin-top: 20px;
    }
}

.cards .card34 .tabs .tabs-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .cards .card34 .tabs .tabs-box {
        overflow: auto;
        justify-content: flex-start;
    }
}

.cards .card34 .tabs .tabs-box .item {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .cards .card34 .tabs .tabs-box .item {
        flex-shrink: 0;
    }
}

.cards .card34 .tabs .tabs-box .item.active {
    color: #000;
}

.cards .card34 .tabs .tabs-box .line {
    border-radius: 40px;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 0;
    transition: all 0.5s;
}

.cards .card34 .tabs-summary {
    text-align: center;
    margin-top: 40px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cards .card34 .tabs-summary {
        margin-top: 20px;
    }
}

.cards .card34 .tabs-summary .item {
    display: none;
    transition: all 0.5s;
}

.cards .card34 .tabs-summary .item.active {
    display: block;
}

.cards .card36 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card36 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card36 .text1 {
    max-width: 19rem;
    color: #fff;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card36 .text1 {
        font-size: 16px;
    }
}

.cards .card36 .text2 {
    max-width: 19rem;
    align-items: flex-start;
    color: #86868b;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    .cards .card36 .text2 {
        margin-top: 20px;
        flex-direction: column;
    }
}

.cards .card36 .text2 .left {
    flex-basis: 60%;
    font-size: 0.34rem;
    line-height: 1.6;
    font-family: MiSans-Semibold;
}

@media screen and (max-width: 768px) {
    .cards .card36 .text2 .left {
        font-size: 16px;
    }
}

.cards .card36 .text2 .left p {
    margin-bottom: 20px;
    font-family: MiSans-Semibold;
    line-height: inherit;
}

.cards .card36 .text2 .left span {

    font-family: MiSans-Semibold;
}

.cards .card36 .text2 .right {
    flex-basis: 30%;
    font-size: 0.34rem;
    color: #86868b;
}

@media screen and (max-width: 768px) {
    .cards .card36 .text2 .right {
        font-size: 12px;
    }
}

.cards .card36 .text2 .right .item {
    margin-bottom: 30px;
}

.cards .card36 .text2 .right .item span {
    font-size: 0.6rem;

    line-height: 1.6;
    font-family: MiSans-Demibold;
}


.cards .card36 .text2 .right .item .title {
    font-size: 0.6rem;
    color: #fff;
    line-height: 1.6;
    font-family: MiSans-Demibold;
}

.cards .card36 .text2 .right .item .summary {

}

@media screen and (max-width: 768px) {
    .cards .card36 .text2 .right .item .title {
        font-size: 16px;
    }
}

.cards .card36 .img {
    text-align: center;
    margin-top: 1rem;
}

.cards .card37 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card37 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card37 .tabs-change {
    position: relative;
}

.cards .card37 .tabs-change .item {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.cards .card37 .tabs-change .item.active {
    opacity: 1;
    pointer-events: auto;
}

.cards .card37 .tabs-change .item:nth-child(1) {
    position: relative;
}

.cards .card37 .tabs {
    position: sticky;
    bottom: 1rem;
    width: fit-content;
    padding: 10px;
    border-radius: 30px;
    background: #373739;
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.cards .card37 .tabs .item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

@media screen and (max-width: 768px) {
    .cards .card37 .tabs .item {
        width: 20px;
        height: 20px;
    }
}

.cards .card37 .tabs .item.active {
    border-color: #fff;
}

.cards .card38 {
    position: relative;
    overflow: hidden;
}

.cards .card38 .text {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    display: flex;
    max-width: 16rem;
}

@media screen and (max-width: 768px) {
    .cards .card38 .text {
        position: initial;
        flex-direction: column;
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

.cards .card38 .text .title {
    font-size: 0.8rem;
    font-family: MiSans-Demibold;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .cards .card38 .text .title {
        font-size: 16px;
    }
}

.cards .card38 .text .summary {
    color: #86868b;
    font-size: 0.3rem;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .cards .card38 .text .summary {
        font-size: 12px;
        margin-top: 20px;
    }
}

.cards .card38 .text .summary span {
    background-image: linear-gradient(#000,#000);
}

.cards .card38 .text .text1 {
    flex-basis: 7.7rem;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .cards .card38 .text .text1 {
        margin-top: 0;
        flex-basis: 100%;
    }
}

.cards .card38 .text .text2 {
    flex-basis: 6.5rem;
}

.cards .card39 {
    background: #f5f5f7;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card39 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card39 .text {
    /*max-width: 500px;*/
    text-align: center;
}

.cards .card39 .text .title {
    font-family: MiSans-Demibold;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .cards .card39 .text .title {
        font-size: 16px;
    }
}

.cards .card39 .text .summary {
    font-size: 0.3rem;
    color: #86868b;
    margin-top: 0.4rem;
}

@media screen and (max-width: 768px) {
    .cards .card39 .text .summary {
        font-size: 12px;
    }
}

.cards .card39 .img {
    text-align: center;
    margin: 2rem auto;
}

.cards .card39 .items {
    max-width: 1000px;
    gap: 1rem;
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
    .cards .card39 .items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cards .card39 .items .item {
        margin-bottom: 30px;
    }
}

.cards .card39 .items .icon {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .cards .card39 .items .icon {
        margin-bottom: 10px;
    }
}

.cards .card39 .items .summary {
    color: #86868b;
    font-size: 0.3rem;
}

@media screen and (max-width: 768px) {
    .cards .card39 .items .summary {
        font-size: 12px;
    }
}

.cards .card39 .items .summary span {
    background-image: linear-gradient(#000,#000);
}

.cards .card40 {
    background: #111;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card40 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card40 .img {
    border-radius: 0.4rem;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.cards .card40 .img .text {
    position: absolute;
    bottom: 20%;
    left: 25%;
    color: #fff;
    max-width: 600px;
}

.cards .card40 .img .text .text1 {
    font-size: 0.3rem;
    color: #f56900;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .cards .card40 .img .text .text1 {
        font-size: 12px;
    }

    .cards .card40 .img .text {
        left: 20px;
        right: 20px;
    }
}

.cards .card40 .img .text .text2 {
    font-size: 0.8rem;
    line-height: 1.2;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card40 .img .text .text2 {
        font-size: 16px;
    }
}

.cards .card40 .img .text .text3 {
    margin-top: 40px;
    font-size: 0.3rem;
    color: #86868b;
    max-width: 300px;
}

.cards .card40 .img .text .text3 span {

}

@media screen and (max-width: 768px) {
    .cards .card40 .img .text .text3 {
        font-size: 12px;
        margin-top: 20px;
    }
}

.cards .card41 {
    background: url('../images/card41-1.jpg') no-repeat center / cover;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card41 {
        padding: 50px 0;
        overflow: hidden;
    }
}

.cards .card41 .text1 {
    color: #000;
    font-size: 1.1rem;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card41 .text1 {
        font-size: 16px;
    }
}

.cards .card41 .text1 span {
    background-image: linear-gradient(to bottom, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

.cards .card41 .img {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card41 .text3 {
    font-size: 0.3rem;
    color: #89898e;
    max-width: 10rem;
    margin: 3rem auto;
    text-align: center;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card41 .text3 {
        font-size: 12px;
        max-width: 100%;
    }
}

.cards .card41 .text3 span {
    background-image: linear-gradient(#000,#000);
}

.cards .card41 .text4 {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cards .card41 .text4 .item {
    flex-basis: calc(100% / 3);
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 768px) {
    .cards .card41 .text4 .item {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
}

.cards .card41 .text4 .item .key {
    font-size: 0.4rem;
    background: linear-gradient(to bottom, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card41 .text4 .item .key {
        font-size: 16px;
    }
}

.cards .card41 .text4 .item .value {
    font-size: 0.2rem;
    text-align: center;
    color: #1d1d1f;
}

@media screen and (max-width: 768px) {
    .cards .card41 .text4 .item .value {
        font-size: 12px;
    }
}

.cards .card42 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card42 {
        padding: 50px 0;
    }
}

.cards .card42 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card42 .text1 {
        flex-direction: column;
    }
}

.cards .card42 .text1 .left {
    font-size: 1.1rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

.cards .card42 .text1 .left span {
    background-image: linear-gradient(to left, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card42 .text1 .left {
        font-size: 16px;
    }
}

.cards .card42 .img {
    margin: 1rem auto 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card42 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
    max-width: 16rem;
}

@media screen and (max-width: 768px) {
    .cards .card42 .text2 {
        flex-direction: column;
        max-width: 100%;
    }
}

.cards .card42 .text2 .left {
    font-size: 0.4rem;
    color: #86868b;
    flex-basis: 100%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cards .card42 .text2 .left {
        font-size: 12px;
    }
}

.cards .card43 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card43 {
        padding: 50px 0;
    }
}

.cards .card43 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .cards .card43 .text1 {
        flex-direction: column;
    }
}

.cards .card43 .text1 .left {
    flex-basis: 50%;
    font-size: 0.3rem;
    font-family: MiSans-Demibold;
}

.cards .card43 .text1 .left span {
    background-image: linear-gradient(to left, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card43 .text1 .left {
        font-size: 16px;
    }
}

.cards .card43 .text1 .right {
    flex-basis: 50%;
    font-size: 0.5rem;
    margin-top: 30px;
    color: #fff;
    max-width: 50%;
}

@media screen and (max-width: 768px) {
    .cards .card43 .text1 .right {
        font-size: 12px;
    }
}

.cards .card43 .img {
    margin: 1rem auto 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card43 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
    max-width: 23rem;
}

@media screen and (max-width: 768px) {
    .cards .card43 .text2 {
        flex-direction: column;
    }
}

.cards .card43 .text2 .left {
    font-size: 0.4rem;
    color: #86868b;
    flex-basis: 100%;
}

@media screen and (max-width: 768px) {
    .cards .card43 .text2 .left {
        font-size: 12px;
    }
}

.cards .card44 {
    background: #000;
    padding: 3rem 0;
}

@media screen and (max-width: 768px) {
    .cards .card44 {
        padding: 50px 0;
    }
}

.cards .card44 .text1 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .cards .card44 .text1 {
        flex-direction: column;
    }
}

.cards .card44 .text1 .left {
    flex-basis: 100%;
    font-size: 1.1rem;
    font-family: MiSans-Demibold;
}

.cards .card44 .text1 .left span {
    background-image: linear-gradient(to left, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card44 .text1 .left {
        font-size: 16px;
    }
}

.cards .card44 .img {
    margin: 1rem auto 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cards .card44 .text2 {
    color: #fff;
    align-items: flex-start;
    padding: 0 1rem;
    max-width: 23rem;
}

@media screen and (max-width: 768px) {
    .cards .card44 .text2 {
        flex-direction: column;
    }
}

.cards .card44 .text2 .left {
    font-size: 0.4rem;
    color: #86868b;
    flex-basis: 50%;
}

@media screen and (max-width: 768px) {
    .cards .card44 .text2 .left {
        font-size: 12px;
    }
}

.cards .card44 .text2 .right {
    font-size: 0.6rem;
    color: #fff;
    font-family: MiSans-Demibold;
}

@media screen and (max-width: 768px) {
    .cards .card44 .text2 .right {
        font-size: 16px;
        margin-top: 30px;
    }
}


.card45 {
    position: relative;
}

.card45 .text {
    position: absolute;
    top: 13%;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    max-width: 16rem;
}

.card45 .text .title {
    font-size: 1rem;
    line-height: 1.2;
    font-family: MiSans-Demibold;
}

.card45 .text .summary {
    font-size: 0.4rem;
    margin-top: 1rem;
    color: #86868b;
    font-family: MiSans-Demibold;
}

.card45 .text .summary span {
    font-size: 0.4rem;
    background-image: linear-gradient(to bottom, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: MiSans-Demibold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .card45 .text .title {
        font-size: 16px;
    }

    .card45 .text .summary {
        font-size: 12px;
    }

}

.cards .span1 {
    background-image: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .span2 {
    background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .span3 {
    background-image: linear-gradient(to bottom, #ff9835, #ffbe46);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .span4 {
    background-image: linear-gradient(#fff, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .span5 {
    background-image: linear-gradient(#000, #000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards .span6 {
    background-image: linear-gradient(#86868b, #86868b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

table {
    width: 100% !important;
    height: auto !important;
}

tr {
    width: auto !important;
    height: auto !important;
}

tr td:nth-child(1) {
    width: 40% !important;
    height: auto !important;
}
tr td:nth-child(2) {
    width: 60% !important;
    height: auto !important;
}

