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

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

}
:root {
    --font1:Arial;  /* 默认 */
    --font2:ShinGoPr6N-Regular; /* 繁体中文/日文/英文版 */
}

body {
    font: 14px var(--font1), '微软雅黑', "Helvetica Neue", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    color: #000;
    overflow-x: hidden;
    line-height: 1.8;
}
/*字体引入*/
@font-face {
    font-family: MyriadPro-Regular;
    src: url("../webfonts/MyriadPro-Regular.otf") format('opentype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ShinGoPr6N-Regular;
    src: url("../webfonts/ShinGoPr6N-Regular.ttf") format('truetype');
    font-style: normal;
    font-display: swap;
}


strong {
    color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}
ol,
ul {
    padding-left: 20px;
}
li::marker {
    color: #000;
}
img {
    vertical-align: top;
    border: 0;
    transition: all 0.5s;
}
input,
select,
textarea,
button {
    vertical-align: middle;
    font-family: Arial;
    outline: none;
}
textarea,
input {
    text-indent: 20px;
}
/*表单元素默认有20像素的缩进*/
input[type='submit'],
input[type='button'],
button {
    text-indent: 0;
    text-align: center;
    cursor: pointer;
}
label,
button,
a {
    transition: all 0.5s;
    cursor: pointer;
}
a:hover {
    color: var(--color2);
}
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;
}
input ::-webkit-outer-spin-button,
input ::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input {
    -moz-appearance: textfield; /* Firefox */
}
/* 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: 20px;
    height: 20px;
    border: 1px solid #333;
    position: relative;
    text-indent: 0;
    border-radius: 2px;
    cursor: pointer;
}
input::-ms-reveal {
    display: none;
}
input[type=checkbox]:checked {
    background: var(--color1) !important;
    border-color: var(--color1) !important;
}
input[type=checkbox]:checked::after {
    content: '';
    background: url('../images/icon/i49.png') no-repeat center / contain;
    color: #999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    font-size: 16px;
}
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: #999;
}
::-webkit-scrollbar-corner {
    background-color: #eaeaea;
    height: 10px;
}
::-webkit-scrollbar:horizontal {
    height: 5px;
}
::-webkit-selection {
    background: var(--color1);
    color: #fff;
}
::-moz-selection {
    background: var(--color1);
    color: #fff;
}
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6,
.clamp7,
.clamp8 {
    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;
}
.clamp7 {
    -webkit-line-clamp: 7;
}
.clamp8 {
    -webkit-line-clamp: 8;
}
/*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: var(--color1);
    width: clamp(30px, 0.55rem, 55px);
    height: clamp(30px, 0.55rem, 55px);
    flex-direction: row;
    transition: all 0.5s;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    font-size: clamp(14px, 0.2rem, 20px);
    top: 0;
    bottom: 0;
    margin: auto;
}
body .swiper-button-prev:hover,
body .swiper-button-next:hover {
    background: var(--color1);
    border-color: var(--color1);
}
body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after {
    color: #fff;
}
body .swiper-button-prev:hover i,
body .swiper-button-next:hover i {
    color: #fff;
}
body .swiper-button-prev {
    left: 30px;
}
body .swiper-button-next {
    right: 30px;
}
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: 100%;
    height: 100%;
    max-height: 100vh;
}
.pop-up .pop-up-box .loading-box {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: auto;
    height: 100%;
}
.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(--color1);
    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: 1620px;
    margin: auto;
}
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 {
    overflow: hidden;
}
.imgBox-hover:hover img {
    transition: all 0.5s;
    transform: scale(1.02);
}
/*头部样式*/
header {
    width: 100%;
    z-index: 10;
    transition: all 0.5s;
    position: sticky;
    top: 0;
    height: clamp(60px, 0.7rem, 70px);
    background: #0c0c0c;
}
header.z-active {
    z-index: 99;
}
header.active,
header.hover-active {
    background: #ffffff;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
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 {
    color: rgba(0, 0, 0, 0.6);
}
header.active .logo,
header.hover-active .logo {
    filter: none !Important;
}
header.active .header-box .header-menu nav .first-item .first-item-title::after,
header.hover-active .header-box .header-menu nav .first-item .first-item-title::after {
    background: var(--color1);
}
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: #fff;
    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: #fff;
    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: flex-start;
    align-items: center;
    height: 100%;
    /*logo*/
    /*logo*/
}
@media screen and (max-width: 1024px) {
    header .header-box {
        justify-content: flex-end;
    }
}
header .header-box .logo {
    width: clamp(80px, 1.23rem, 123px);
}
@media screen and (max-width: 1024px) {
    header .header-box .logo {
        margin-left: 0;
        margin-right: auto;
    }
}
header .header-box .logo img {
    max-width: inherit;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
}
header .header-box .header-menu {
    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;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        display: none;
        overflow: auto;
    }
}
header .header-box .header-menu nav {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: clamp(60px, 0.6rem, 60px);
}
@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;
        gap: 0;
        margin-left: 0;
    }
}
header .header-box .header-menu nav .first-item {
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@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: 1024px) {
    header .header-box .header-menu nav .first-item .first-box {
        border-bottom: 1px solid #eee;
    }
}
header .header-box .header-menu nav .first-item .first-box .first-item-title {
    font-size: clamp(14px, 0.18rem, 18px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s;
    width: 100%;
    font-weight: 600;
    padding: 0 clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .first-box .first-item-title {
        height: 50px;
        width: 100%;
        justify-content: flex-start;
        color: #333;
    }
}
header .header-box .header-menu nav .first-item .first-box .first-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    opacity: 0;
    transition: all 0.5s;
    background: #fff;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .first-box .first-item-title::after {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .first-box 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: 1024px) {
    header .header-box .header-menu nav .first-item .first-box i {
        display: block;
    }
}
header .header-box .header-menu nav .first-item .first-box i::before,
header .header-box .header-menu nav .first-item .first-box 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 .first-box i::before {
    width: 14px;
    height: 2px;
}
header .header-box .header-menu nav .first-item .first-box i::after {
    height: 14px;
    width: 2px;
}
header .header-box .header-menu nav .first-item .first-box i.active {
    transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item .second-box {
    border-bottom: 2px solid var(--color1);
    position: absolute;
    top: clamp(60px, 0.8rem, 80px);
    -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
    box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    padding: clamp(20px, 0.6rem, 60px) 0;
    /*特殊*/
}
@media screen and (max-width: 1024px) {
    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: 1024px) {
    header .header-box .header-menu nav .first-item .second-box::before {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box::after {
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #eee transparent transparent;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box::after {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box .section {
    display: grid;
    gap: clamp(20px, 0.4rem, 40px) clamp(20px, 0.7rem, 70px);
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .section {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}
header .header-box .header-menu nav .first-item .second-box .brand-section {
    width: clamp(12.9rem, 12.9rem, 1290px);
    position: relative;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .brand-section {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}
header .header-box .header-menu nav .first-item .second-box .brand-section .second-item {
    width: clamp(3.5rem, 3.5rem, 350px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .brand-section .second-item {
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .brand-section .second-item .second-item-title {
        position: relative;
    }
}
header .header-box .header-menu nav .first-item .second-box .second-item {
    height: fit-content;
}
@media screen and (max-width: 1024px) {
    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: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, 0.24rem, 24px);
    transition: all 0.2s;
    line-height: 1.4;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
    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 span {
    opacity: 0.6;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title span {
        display: none;
    }
}
@media screen and (min-width: 769px) {
    header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
        color: var(--color1);
    }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: var(--color1);
    border-color: var(--color1);
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover span {
    opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box2 {
    opacity: 1;
    pointer-events: auto;
}
header .header-box .header-menu nav .first-item .second-box .three-box {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: clamp(10px, 0.3rem, 30px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box {
        padding: 0;
        pointer-events: auto;
        position: initial;
        opacity: 1;
        display: none;
        border: none;
        width: 100%;
    }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-box-box {
    height: fit-content;
    display: grid;
}
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: 20px;
    display: block;
    transition: all 0.5s;
    color: rgba(0, 0, 0, 0.6);
    font-size: clamp(14px, 0.2rem, 20px);
    border-bottom: 1px solid transparent;
    padding-bottom: 6px;
    width: fit-content;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
        margin-bottom: 0;
        padding: 10px 20px;
        width: 100%;
    }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
    color: var(--color1);
    border-bottom: 1px solid var(--color1);
}
header .header-box .header-menu nav .first-item .second-box .three-box::after {
    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 .three-box2 {
    opacity: 0;
    width: clamp(3.5rem, 3.5rem, 350px);
    padding-left: clamp(1rem, 1rem, 100px);
    position: absolute;
    left: clamp(5rem, 5rem, 500px);
    top: 0;
    height: 100%;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box2 {
        position: relative;
        width: 100%;
        padding-left: 20px;
        left: 0;
        opacity: 1;
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box .three-box2::after {
    content: '';
    top: 0;
    left: clamp(0.6rem, 0.6rem, 60px);
    background: #d1d1d1;
    width: 1px;
    height: 100%;
    position: absolute;
    display: none;
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(13px, 0.2rem, 20px);
    transition: all 0.2s;
    line-height: 1.6;
    text-align: left;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: clamp(0.28rem, 0.28rem, 28px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
        display: block;
        padding: 10px 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid transparent;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
        color: #000;
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a span {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item:hover a,
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item.active a {
    color: var(--color1);
    border-bottom: 2px solid var(--color1);
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item:hover .four-item {
    opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .four-item {
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 0;
    width: clamp(4.7rem, 4.7rem, 470px);
    padding-left: clamp(1.2rem, 1.2rem, 120px);
    height: 100%;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .four-item {
        position: relative;
        left: 10px;
        width: 100%;
        padding-left: 0;
        opacity: 1;
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box .four-item::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: clamp(0.6rem, 0.6rem, 60px);
    background: #d1d1d1;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .four-item::after {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box .four-item a {
    padding: 12px 0;
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box .four-item a {
        padding: 10px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box {
    width: 100vw;
    min-height: 338px;
    padding: 0;
    position: fixed;
    border-radius: 0;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box {
        position: relative;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    align-items: flex-start;
    padding: 50px 0;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
        width: 100%;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
    flex-basis: 300px;
    background: #fff;
    border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
        flex-basis: 100px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-title {
    margin-bottom: 20px;
    color: #888;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
    color: #333;
    margin-bottom: 10px;
    width: 100%;
    background: #f8f8f8;
    padding: 15px;
    font-size: 14px;
    transition: all 0.5s;
    cursor: pointer;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
        font-size: 12px;
        padding: 10px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item:hover,
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item.active {
    background: #e7e7e7;
    color: #2f2f2f;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
    margin-left: 60px;
    flex: 1;
    border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
        margin-left: 10px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items {
    display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-title {
    color: #333;
    margin-bottom: 20px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items.active {
    display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
        display: flex;
        overflow: auto;
        grid-gap: 10px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
    background: #f1f2f4;
    padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
        flex-shrink: 0;
        width: 130px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item .imgBox {
    padding-bottom: 75%;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .title {
    color: #333;
    text-align: center;
    margin-top: 10px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
    flex-basis: 20%;
    margin: 0;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
        flex-basis: 100%;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
    margin-top: 30px;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
        margin-top: 0;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
    height: 40px;
    position: relative;
    display: block;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img img {
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
    color: #222;
    text-align: left;
    padding: 0;
    transition: all 0.5s;
    margin-top: 10px;
    display: inline-block;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
        margin-top: 10px;
        padding: 0 10px;
        position: relative;
        width: 100%;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title:hover {
    color: var(--color1);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
    margin-top: 10px;
    line-height: 2;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
        margin-top: 0;
        display: none;
        padding-left: 30px;
        margin-bottom: 10px;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title {
    display: block;
    transition: all 0.5s;
    font-size: 12px;
    color: #999;
    width: fit-content;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title:hover {
    color: var(--color1);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title.news {
    color: var(--color1);
    font-size: 12px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:hover .three-box {
    opacity: 1;
    visibility: visible;
}
header .header-box .header-menu nav .first-item .second-box.product-menu {
    padding: 0;
}
header .header-box .header-menu nav .first-item .second-box.product-menu::before {
    content: '';
    width: 1px;
    height: 100%;
    left: clamp(5rem, 5rem, 500px);
    background: #e5e5e5;
    position: absolute;
    top: 0;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .brand-section {
    left: 0 !important;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .menu-title {
    font-size: clamp(16px, 0.3rem, 30px);
    color: var(--color1);
    margin-top: clamp(50px, 1rem, 100px);
    margin-bottom: clamp(35px, 0.7rem, 70px);
    padding-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .menu-title {
        display: none;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item {
    margin-bottom: 30px;
    width: clamp(5rem, 5rem, 500px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item {
        width: 100%;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:last-child {
        margin-bottom: clamp(80px, 1.6rem, 160px);
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover,
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active {
        background: var(--color1);
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover .second-item-title,
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .second-item-title {
        color: #fff;
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover .second-item-title span,
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .second-item-title span {
        opacity: 1;
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .three-box2 {
        opacity: 1;
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .product-img {
        display: block;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title {
    padding: 12px 1.5rem;
    border-bottom: none;
    font-size: clamp(14px, 0.24rem, 24px);
}
@media screen and (max-width: 1024px) {
    header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title span {
    opacity: 0;
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item:hover .second-box {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
@media screen and (min-width: 1025px) {
    header .header-box .header-menu nav .first-item:hover,
    header .header-box .header-menu nav .first-item.active {
        background: var(--color2);
    }
}
header .header-box .header-menu nav .first-item:hover a,
header .header-box .header-menu nav .first-item.active a {
    color: #000;
}
header .header-back {
    color: #fff;
    width: clamp(100px, 1.2rem, 120px);
    height: clamp(30px, 0.4rem, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #fff;
    font-size: clamp(12px, 0.18rem, 18px);
    margin-right: clamp(10px, 0.5rem, 50px);
    transition: all 0.5s;
    cursor: pointer;
}
header .header-back:hover {
    background: var(--color2);
    border-color: var(--color2);
}
header .header-right {
    align-items: center;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    height: 100%;
    position: relative;
    /*语言*/
    /*语言*/
}
@media screen and (max-width: 1024px) {
    header .header-right {
        margin-right: 20px;
    }
}
header .header-right .r-item {
    width: clamp(35px, 0.7rem, 70px);
    height: 100%;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
}
@media screen and (max-width: 1024px) {
    header .header-right .r-item {
        width: 40px;
    }
}
header .header-right .r-item:hover {
    background: var(--color2);
}
header .header-right .r-item:hover img.icon {
    filter: brightness(0) grayscale(0);
}
header .header-right .r-item img {
    transition: all 0.5s;
}
header .header-right .r-item .status {
    position: absolute;
    right: 15%;
    top: 13px;
    width: clamp(8px, 0.18rem, 18px);
}
@media screen and (max-width: 1024px) {
    header .header-right .r-item .status {
        top: 18px;
    }
}
header .header-right .r-item .cart-show {
    position: absolute;
    top: 100%;
    border-radius: 0 0 0.1rem 0.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(300px, 4rem, 400px);
    background: #fff;
    box-shadow: 0 0 0.5rem 0.5rem rgba(0, 0, 0, 0.03);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s;
}
@media screen and (max-width: 768px) {
    header .header-right .r-item .cart-show {
        width: 100vw;
        left: 0;
        transform: translateX(0);
        position: fixed;
        top: 60px;
    }
}
header .header-right .r-item .cart-show .cart-title {
    background: var(--color3);
    padding: 24px;
    font-size: clamp(12px, 0.14rem, 14px);
    color: #333;
}
header .header-right .r-item .cart-show .cart-empty {
    height: 220px;
    font-size: clamp(12px, 0.18rem, 18px);
    text-align: center;
    color: #333;
    font-weight: 600;
    flex-direction: column;
    border-bottom: 1px solid #eee;
}
header .header-right .r-item .cart-show .cart-empty .cart-empty-text {
    margin-top: clamp(10px, 0.2rem, 20px);
}
header .header-right .r-item .cart-show .cart-empty-button {
    border-radius: 2px;
    background: #f5f5f5;
    font-size: clamp(12px, 0.16rem, 16px);
    width: clamp(100px, 1.6rem, 160px);
    height: clamp(40px, 0.4rem, 40px);
    gap: 10px;
    margin: 24px auto;
    transition: all 0.5s;
    cursor: no-drop;
    color: #999;
}
header .header-right .r-item .cart-show .cart-empty-button i {
    color: #999;
}
header .header-right .r-item .cart-show .cart-box .items {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: clamp(300px, 3.6rem, 360px);
    overflow-y: auto;
}
header .header-right .r-item .cart-show .cart-box .items .item {
    align-items: flex-start;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-img {
    flex-basis: clamp(40px, 0.6rem, 60px);
    height: clamp(40px, 0.6rem, 60px);
    background: #eee;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-img img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-info {
    padding-left: 20px;
    flex: 1;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-info .pro-name {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
    margin-top: 6px;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-info .pro-summary {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #999;
    margin-top: 6px;
}
header .header-right .r-item .cart-show .cart-box .items .item .item-number {
    flex-basis: 50px;
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    margin-top: 6px;
}
header .header-right .r-item .cart-show .cart-box .cart-price {
    padding: 24px;
    background: var(--color3);
    font-size: clamp(12px, 0.16rem, 16px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
}
header .header-right .r-item .cart-show .cart-box .cart-price .list {
    padding-left: calc(clamp(40px, 0.6rem, 60px) + 20px);
}
header .header-right .r-item .cart-show .cart-box .cart-price .value {
    font-weight: 600;
}
header .header-right .r-item .cart-show .cart-box .check-out {
    border-radius: 2px;
    background: var(--color2);
    font-size: clamp(12px, 0.16rem, 16px);
    width: clamp(100px, 1.6rem, 160px);
    height: clamp(40px, 0.4rem, 40px);
    gap: 10px;
    margin: 24px auto;
    transition: all 0.5s;
}
header .header-right .r-item .cart-show .cart-box .check-out:hover {
    background: var(--color3);
}
header .header-right .r-item.cart:hover .cart-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
header .header-right .language {
    color: #fff;
    position: relative;
    cursor: pointer;
}
header .header-right .language .language-show {
    border-radius: 0 0 0.1rem 0.1rem;
    position: absolute;
    top: 100%;
    color: #333;
    right: 0;
    margin: auto;
    width: clamp(160px, 2rem, 200px);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 70vh;
    overflow: auto;
}
header .header-right .language .language-show .language-show-item {
    padding: 10px 10px 10px clamp(15px, 0.24rem, 24px);
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
    box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
    display: block;
    transition: all 0.5s;
    font-size: clamp(12px, 0.16rem, 16px);
}
header .header-right .language .language-show .language-show-item img {
    width: clamp(15px, 0.3rem, 30px);
    filter: none;
    margin-right: 6px;
}
header .header-right .language .language-show .language-show-item:hover {
    background: #fde8f7;
    color: #000;
}
header .header-right .language:hover .language-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
header .header-search-box {
    display: none;
    position: fixed;
    z-index: 99;
    width: 100%;
}
header .header-search-box .mask {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    height: 100vh;
}
header .header-search-box::after {
//content: "";
    position: fixed;
    top: clamp(60px, 0.7rem, 70px);
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}
header .header-search-box .header-search {
    top: clamp(60px, 0.7rem, 70px);
    top:0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    border-radius: 0 0 10px 10px;
    padding: clamp(30px, 0.4rem, 40px) 20px;
    position: relative;
}
header .header-search-box .header-search .search-container {
    max-width: 1000px;
    margin: auto;
    width: 100%;
}
header .header-search-box .header-search .search-container .search-text {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
}
header .header-search-box .header-search .search-container .search-text a {
    color: var(--color1);
    text-decoration: underline;
}
header .header-search-box .header-search .search-container .search-agree {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #000;
    margin-top: 16px;
}
header .header-search-box .header-search .search-container .search-agree label {
    gap: 10px;
}
header .header-search-box .header-search .search-container .search-agree label input {
    border-color: #999;
    color: #999;
    width: 20px;
    height: 20px;
}
header .header-search-box .header-search .search-container .search-agree label input[type=checkbox]:checked {
    background: none !important;
    border-color: #999 !important;
}
header .header-search-box .header-search .search-container .search-agree label input[type=checkbox]:checked::after {
    filter: brightness(0);
    opacity: 0.6;
}
header .header-search-box .header-search .search-container form {
    margin-top: clamp(10px, 0.2rem, 20px);
    width: 100%;
    position: relative;
    max-width:600px;
    display:flex;
    gap:clamp(10px,0.2rem,20px)
}
header .header-search-box .header-search .search-container form label {
    width: 100%;
    display:flex;
    gap:clamp(10px,0.2rem,20px)
}
header .header-search-box .header-search .search-container form label input {
    padding-left: 10px;
    box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.1);
    height: clamp(40px, 0.6rem, 60px);
    border: none;
    border-radius: 4px;
    width: 100%;
    background: var(--color2);
    font-size: clamp(12px, 0.16rem, 16px);
}
header .header-search-box .header-search .search-container form label input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: clamp(12px, 0.16rem, 16px);
}
header .header-search-box .header-search .search-container form label button {
    width: clamp(40px, 0.6rem, 60px);
    height: clamp(40px, 0.6rem, 60px);
    background: none;
    color: #fff;
    font-size: 16px;
//position: absolute;
    right: 0;
    top: 0;
    background:#f5f5f5
}
@media screen and (max-width: 1024px) {
    header .header-search-box .header-search .search-container form label button {
        width: 40px;
    }
}
header .header-search-box .header-search .search-container form label button img {
    filter: contrast(0) brightness(0);
}
header .header-search-box .header-search .search-container form .close {
    position: absolute;
    right: -80px;
    top: 0;
    width: 60px;
    height: clamp(40px, 0.6rem, 60px);
    color: #999;
    font-size: clamp(12px, 0.2rem, 20px);
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.5s;
}
header .header-search-box .header-search .search-container form .close:hover {
    opacity: 0.6;
}
@media screen and (max-width: 1024px) {
    header .search-click {
        margin-right: 0;
        margin-left: auto;
        width: 50px;
    }
}
@media screen and (min-width: 1025px) {
    .index header .logo {
        filter: none;
    }
    .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;
    }
}
/*底部样式*/
#footer {
    position: relative;
    background: #000;
}
#footer .footer-box {
    padding: clamp(20px, 0.6rem, 60px) 0;
}
#footer .footer-box .top {
    align-items: flex-end;
}
@media screen and (max-width: 768px) {
    #footer .footer-box .top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
#footer .footer-box .top .left {
    color: #999999;
    font-size: clamp(12px, 0.16rem, 16px);
    flex-basis: 50%;
}
@media screen and (max-width: 768px) {
    #footer .footer-box .top .left {
        width: 100%;
    }
}
#footer .footer-box .top .left .footer-contact .list {
    margin-bottom: clamp(20px, 0.3rem, 30px);
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.2rem, 20px);
}
#footer .footer-box .top .left .footer-contact .list .key {
    flex-basis: clamp(16px, 0.24rem, 24px);
    height: clamp(16px, 0.24rem, 24px);
}
#footer .footer-box .top .left .footer-contact .list .key img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
#footer .footer-box .top .left .footer-contact .list .value {
    flex: 1;
}
#footer .footer-box .top .left .footer-contact .list:last-child {
    margin-bottom: 0;
}
#footer .footer-box .top .right .footer-share {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    flex-basis: 50%;
}
@media screen and (max-width: 768px) {
    #footer .footer-box .top .right .footer-share {
        margin-bottom: 0px;
    }
}
#footer .footer-box .top .right .footer-share .item {
    border-radius: 50%;
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    background: rgba(255, 255, 255, 0.15);
}
#footer .footer-box .top .right .footer-share .item .show {
    position: absolute;
    bottom: clamp(40px, 0.7rem, 70px);
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    display: none;
}
#footer .footer-box .top .right .footer-share .item .show img {
    max-width: 100%;
    max-height: 100%;
}
#footer .footer-box .top .right .footer-share .item img {
    transition: all 0.5s;
    max-width: 50%;
    max-height: 50%;
}
@media screen and (max-width: 768px) {
    #footer .footer-box .top .right .footer-share .item img {
        width: 30%;
    }
}
#footer .footer-box .top .right .footer-share .item:hover {
    background: var(--color2);
}
#footer .footer-box .top .right .footer-share .item:hover .show {
    display: block;
}
#footer .footer-box .top .right .footer-share .item:hover img {
    filter: none;
}
#footer .footer-box .bottom {
    margin-top: clamp(20px, 0.3rem, 30px);
    padding-top: clamp(20px, 0.3rem, 30px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
#footer .footer-box .bottom .footer-copyright {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #999;
}
#footer .footer-box .bottom .footer-copyright .footer-link {
    margin-top: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.14rem, 14px);
    color: #555555;
    gap: clamp(10px, 0.2rem, 20px);
    flex-wrap: wrap;
}
#footer .footer-box .bottom .footer-copyright .footer-link a {
    position: relative;
    padding-right: 20px;
}
#footer .footer-box .bottom .footer-copyright .footer-link a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 60%;
    background: #555;
}
#footer .footer-box .bottom .footer-copyright .footer-link a:last-child {
    padding-right: 0;
}
#footer .footer-box .bottom .footer-copyright .footer-link a:last-child::after {
    display: none;
}
.page-share-click {
    width: clamp(40px, 0.5rem, 50px);
    height: clamp(40px, 0.5rem, 50px);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 1;
}
.page-share-click img {
    width: 50%;
    filter: grayscale(0) brightness(0);
}
.page-share-click:hover {
    background: var(--color1);
}
.page-share-click:hover img {
    filter: none;
}
.page-share-show {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}
.page-share-show::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.page-share-show .page-share-container {
    width: clamp(300px, 4rem, 400px);
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    height: fit-content;
}
.page-share-show .page-share-container .share-close {
    position: absolute;
    top: clamp(20px, 0.2rem, 20px);
    right: clamp(20px, 0.3rem, 30px);
    height: clamp(16px, 0.18rem, 18px);
    width: clamp(16px, 0.18rem, 18px);
    cursor: pointer;
}
.page-share-show .page-share-container .share-close img {
    width: 100%;
}
.page-share-show .page-share-container .page-share1 {
    padding: clamp(20px, 0.3rem, 30px);
    background: #fff;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.page-share-show .page-share-container .page-share1 .top {
    text-align: center;
}
.page-share-show .page-share-container .page-share1 .top .bg1 {
    margin: auto;
    width: clamp(80px, 1.1rem, 110px);
    height: clamp(80px, 1.1rem, 110px);
    border-radius: 50%;
    background: #fdf0e5;
}
.page-share-show .page-share-container .page-share1 .top .bg1 .bg2 {
    width: clamp(60px, 0.9rem, 90px);
    height: clamp(60px, 0.9rem, 90px);
    border-radius: 50%;
    background: #fff;
}
.page-share-show .page-share-container .page-share1 .top .bg1 .bg2 img {
    width: 50%;
}
.page-share-show .page-share-container .page-share1 .top .share-text {
    color: #333;
    font-size: clamp(12px, 0.18rem, 18px);
    margin-top: clamp(10px, 0.2rem, 20px);
}
.page-share-show .page-share-container .page-share1 .bottom {
    margin-top: clamp(20px, 0.3rem, 30px);
    gap: clamp(10px, 0.24rem, 24px);
}
.page-share-show .page-share-container .page-share1 .bottom .item {
    cursor: pointer;
    width: clamp(40px, 0.5rem, 50px);
    height: clamp(40px, 0.5rem, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.page-share-show .page-share-container .page-share1 .bottom .item:hover {
    opacity: 0.6;
}
.page-share-show .page-share-container .page-share2 {
    pointer-events: none;
    padding: clamp(20px, 0.3rem, 30px);
    background: #fff;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}
.page-share-show .page-share-container .page-share2.active {
    opacity: 1;
    pointer-events: auto;
}
.page-share-show .page-share-container .page-share2 .share-header {
    font-size: clamp(14px, 0.2rem, 20px);
    color: #333;
    gap: 20px;
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
.page-share-show .page-share-container .page-share2 .share-header .icon {
    width: clamp(40px, 0.5rem, 50px);
    height: clamp(40px, 0.5rem, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.page-share-show .page-share-container .page-share2 .item {
    margin-bottom: 20px;
    color: #333;
    font-size: clamp(12px, 0.16rem, 16px);
}
.page-share-show .page-share-container .page-share2 .item .value {
    margin-top: 6px;
    background: #f5f5f5;
    color: #999;
    border-radius: 4px;
    padding: 10px 20px;
    line-height: 1.4;
}
.page-share-show .page-share-container .page-share2 .share-button {
    background: var(--color1);
    height: clamp(40px, 0.48rem, 48px);
    font-size: clamp(12px, 0.16rem, 16px);
    color: #fff;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
}
.page-share-show .page-share-container .page-share2 .share-button:hover {
    background: var(--color2);
}
/*底部样式*/
/*根元素代码*/
:root {
    --color1: #ff6600;
    --color2: #ffadf8;
    --color3: #fde8f7;
    --color4: #ffcdfc;
    /*--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));
}
/*--------------------------------------------------------*/
/*通用*/
.index-padding {
    padding: clamp(40px, 0.5rem, 50px) 0;
}
@media screen and (max-width: 768px) {
    .index-padding {
        padding: 40px 0;
    }
}
.index-title {
    color: #9b9b9b;
}
.index-title .sup {
    color: var(--color1);
    font-size: 16px;
}
.index-title .title {
    font-size: clamp(18px, 0.4rem, 40px);
    line-height: 1.3;
    color: var(--color1);
    font-family: HONORSansCN-Bold;
}
.index-title .title span {
    color: #9b9b9b;
}
.index-title .tip {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color1);
    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 {
    font-size: clamp(14px, 0.2rem, 20px);
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}
.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(--color1);
}
.index-title a {
    display: flex;
    transform: skewX(-25deg);
    background: var(--color1);
    color: #fff;
    height: clamp(30px, 0.5rem, 50px);
    padding: 0 clamp(20px, 0.32rem, 32px);
    align-items: center;
    font-size: clamp(12px, 0.18rem, 18px);
    transition: all 0.5s;
    gap: 20px;
    margin-right: 20px;
    font-family: HONORSansCN-Bold;
}
.index-title a span {
    display: block;
    transform: skewX(25deg);
}
.index-title a:hover {
    opacity: 0.7;
}
.f-more {
    width: fit-content;
    height: 0.58rem;
    min-height: 48px;
    background: #fff;
    color: #000;
    transition: all 0.5s;
    position: relative;
    border-radius: 999px;
    font-size: clamp(12px, 0.16rem, 16px);
    text-transform: uppercase;
    border: 1px solid transparent;
}
@media screen and (max-width: 768px) {
    .f-more {
        height: 35px;
        min-height: auto;
        border-radius: 29px;
    }
}
.f-more span {
    padding: 0 0.3rem;
    flex: 1;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .f-more span {
        padding: 0 10px;
    }
}
.f-more:hover {
    background: var(--color1);
    color: #fff;
}
.f-more:hover .icon {
    background: #fff;
}
.f-more:hover .icon i {
    color: var(--color1);
}
.f-more .icon {
    width: 0.48rem;
    height: 0.48rem;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    background: var(--color1);
    margin-right: 0.05rem;
    transition: all 0.5s;
}
@media screen and (max-width: 768px) {
    .f-more .icon {
        min-width: auto;
        min-height: auto;
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
}
.f-more .icon i {
    color: #fff;
    transition: all 0.5s;
}
.f-more-show {
    font-size: 16px;
    color: var(--color1);
    line-height: 1;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: auto;
    cursor: pointer;
}
.zhan-wei {
    height: clamp(60px, 0.7rem, 70px);
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页*/
/*轮播*/
.banner {
    position: relative;
    z-index: 0;
}
.banner img,
.banner video {
    display: block;
    width: 100%;
    max-height: 8.7rem;
    object-fit: cover;
}
.banner .swiper-button-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}
.banner .swiper-button-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: clamp(32px, 0.4rem, 40px);
    height: clamp(32px, 0.4rem, 40px);
}
.banner .swiper-button-prev i,
.banner .swiper-button-next i {
    color: #000;
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    display: none;
}
.banner .swiper-pagination {
    bottom: 20px !important;
    align-items: center;
    display: flex;
    justify-content: center;
}
.banner .swiper-pagination .swiper-pagination-bullet {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(3px, 0.04rem, 4px);
    border-radius: 2px;
    background: #fff;
    transition: all 0.5s;
    opacity: 0.5;
    margin-left: 8px !important;
    margin-right: 8px !important;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: clamp(30px, 0.4rem, 40px);
    border-radius: 3px;
    height: clamp(4px, 0.06rem, 6px);
    opacity: 1;
}
.index_video {
    width: 100%;
}
.index_video video {
    display: block;
    width: 100%;
}
.index1 {
    gap: clamp(20px, 0.6rem, 60px);
    padding: clamp(40px, 0.8rem, 80px) 0;
}
@media screen and (max-width: 768px) {
    .index1 {
        flex-direction: column;
    }
}
.index1 .button {
    font-family: MyriadPro-Regular;
    height: clamp(45px, 0.9rem, 90px);
    background: url('../images/icon/i15.png') no-repeat center / cover;
    font-size: clamp(14px, 0.36rem, 36px);
    width: 100%;
    box-shadow: 0 10px 20px 10px rgba(255, 205, 251, 0.4);
    transition: all 0.5s;
}
.index1 .button:hover {
    opacity: 0.6;
    color: #000;
}
.form {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .form {
        grid-gap: 10px;
    }
}
.form label {
    display: block;
    flex-basis: calc(50% - 15px);
    position: relative;
}
@media screen and (max-width: 768px) {
    .form label {
        flex-basis: 100%;
    }
}
.form label.w100 {
    flex-basis: 100%;
}
.form label.w33 {
    flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
    .form label.w33 {
        flex-basis: 100%;
    }
}
.form label.checkbox input {
    padding: 0;
}
.form .form-box.w100 {
    flex-basis: 100%;
}
.form .form-box.w33 {
    flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
    .form .form-box.w33 {
        flex-basis: 100%;
    }
}
.form select {
    height: 50px;
    padding-left: 20px;
    background: #fff;
    font-size: clamp(12px, 0.14rem, 14px);
    border-radius: 8px;
    border: 1px solid #B3B3B3;
    color: #1F2937;
    -webkit-appearance: none;
    position: relative;
}
.form input {
    width: 100%;
    height: clamp(40px, 0.5rem, 50px);
    padding: 0 20px;
    text-indent: 0;
    font-size: clamp(12px, 0.14rem, 14px);
    border-radius: 8px;
    border: 1px solid #B3B3B3;
    background: #FFF;
    color: #9CA3AF;
}
.form input::placeholder {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #9CA3AF;
}
.form textarea {
    height: 98px;
    padding: 20px;
    text-indent: 0;
    font-size: clamp(12px, 0.14rem, 14px);
    border-radius: 8px;
    border: 1px solid #B3B3B3;
    background: #FFF;
    color: #9CA3AF;
}
.form textarea::placeholder {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #9CA3AF;
}
.form button {
    display: flex;
    width: fit-content;
    margin: auto;
    border-radius: 8px;
    background: linear-gradient(90deg, #2559B5 0%, #183D85 100%);
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: clamp(14px, 0.14rem, 14px);
    gap: 10px;
    transition: all 0.5s;
}
.form .tip {
    flex-basis: 100%;
}
.form .tip span {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #374151;
}
.form .tip a {
    color: var(--color1);
}
.form .tip a:hover {
    text-decoration: underline;
}
.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(--color1);
    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;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .page-title {
        gap: 20px;
    }
}
.page-title.textC {
    text-align: center;
}
.page-title.colorW {
    color: #fff;
}
.page-title .title {
    font-size: clamp(16px, 0.36rem, 36px);
    position: relative;
    font-weight: 600;
}
.page-title .title.colorW {
    color: #fff;
}
.page-title .title.colorB {
    color: #000;
}
.page-title .title img {
    max-width: 200px;
}
.page-title .tip {
    font-size: clamp(12px, 0.24rem, 24px);
    color: var(--color1);
    margin-top: clamp(10px, 0.2rem, 20px);
}
.page-title .summary {
    margin-top: clamp(10px, 0.2rem, 20px);
    color: #555;
    font-size: clamp(12px, 0.18rem, 18px);
    line-height: 1.6;
}
.page-title .summary.colorW {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .page-title .summary {
        margin-top: 10px;
    }
}
.page-title .summary a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .page-title .page-form {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .page-title .page-form form {
        width: 100%;
    }
}
.page-title .page-form label {
    position: relative;
    transform: skewX(-25deg);
    display: block;
    border: 2px solid #e7e7f9;
}
@media screen and (max-width: 768px) {
    .page-title .page-form label {
        width: 100%;
    }
}
.page-title .page-form label input {
    width: clamp(200px, 4.1rem, 410px);
    height: clamp(34px, 0.46rem, 46px);
    transform: skewX(25deg);
    border: none;
    background: none;
    padding-left: 20px;
    font-size: clamp(14px, 0.18rem, 18px);
    color: var(--color1);
}
@media screen and (max-width: 768px) {
    .page-title .page-form label input {
        width: 100%;
    }
}
.page-title .page-form label input::placeholder {
    color: rgba(20, 17, 192, 0.4);
}
.page-title .page-form button {
    width: clamp(50px, 1.1rem, 110px);
    height: clamp(38px, 0.5rem, 50px);
    background: var(--color1);
    color: #fff;
    transform: skewX(-25deg);
}
.page-title .page-form button i {
    font-size: clamp(12px, 0.2rem, 20px);
    transform: skewX(25deg);
}
.page-title .page-select {
    display: flex;
    gap: 10px;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .page-title .page-select {
        flex-direction: column;
        width: 100%;
    }
}
.page-title .page-select .select-item {
    display: flex;
    align-items: center;
    position: relative;
    height: clamp(38px, 0.5rem, 50px);
    cursor: pointer;
    transform: skewX(-25deg);
    border: 2px solid #e7e7f9;
}
.page-title .page-select .select-item.select-item1 {
    width: clamp(130px, 2.3rem, 230px);
}
@media screen and (max-width: 768px) {
    .page-title .page-select .select-item.select-item1 {
        width: 100%;
    }
}
.page-title .page-select .select-item.select-item2 {
    width: clamp(200px, 3.7rem, 370px);
}
@media screen and (max-width: 768px) {
    .page-title .page-select .select-item.select-item2 {
        width: 100%;
    }
}
.page-title .page-select .select-item .select-text {
    font-size: clamp(12px, 0.18rem, 18px);
    color: var(--color1);
    font-family: HONORSansCN-Bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 0.3rem, 30px);
    width: 100%;
    transform: skewX(25deg);
}
.page-title .page-select .select-item .select {
    display: none;
    position: absolute;
    left: 0.45rem;
    top: 110%;
    background: #fff;
    padding: clamp(20px, 0.3rem, 30px);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.04);
    z-index: 20;
    width: 100%;
    transform: skewX(25deg);
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .page-title .page-select .select-item .select {
        width: 100vw;
    }
}
.page-title .page-select .select-item .select .s-item {
    display: block;
    font-size: clamp(12px, 0.16rem, 16px);
}
.page-title .page-select .select-item .select .s-item:hover {
    color: var(--color1);
}
/*内页大图*/
.pageBanner {
    transition: all 0.5s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    color: #fff;
    height: 6rem;
    max-height: 600px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .pageBanner {
        height: 200px;
    }
}
.pageBanner.news {
    height: 4rem;
    max-height: 400px;
}
@media screen and (max-width: 768px) {
    .pageBanner.news {
        height: 250px;
    }
}
.pageBanner.product {
    height: 9.7rem;
    max-height: 970px;
}
@media screen and (max-width: 768px) {
    .pageBanner.product {
        height: 450px;
    }
}
.pageBanner.product .banner-box {
    bottom: auto;
    top: clamp(70px, 2.2rem, 220px);
}
.pageBanner.product .banner-box .banner-title {
    margin-bottom: 0;
}
.pageBanner.product .banner-box .banner-summary {
    margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner.industry {
    height: 9.7rem;
    max-height: 970px;
}
@media screen and (max-width: 768px) {
    .pageBanner.industry {
        height: 450px;
    }
}
.pageBanner.industry .banner-box {
    bottom: 0;
    top: 0;
    margin: auto;
}
.pageBanner.industry .banner-box .banner-title {
    margin-bottom: 0;
}
.pageBanner.industry .banner-box .banner-summary {
    margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner.product-detail {
    height: 8rem;
    max-height: 800px;
}
@media screen and (max-width: 768px) {
    .pageBanner.product-detail {
        height: 450px;
    }
}
.pageBanner.product-detail .banner-box {
    bottom: 0;
    top: 0;
    margin: auto;
}
.pageBanner.product-detail .banner-box .banner-title {
    margin-bottom: 0;
}
.pageBanner.product-detail .banner-box .banner-list {
    display: flex;
    gap: clamp(20px, 0.6rem, 60px);
    margin-top: clamp(10px, 0.2rem, 20px);
}
.pageBanner.product-detail .banner-box .banner-list .list {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color1);
    font-family: HONORSansCN-Bold;
}
.pageBanner.product-detail .banner-box .banner-list .list .key {
    font-size: clamp(12px, 0.2rem, 20px);
}
.pageBanner.product-detail .banner-box .banner-list .list .value {
    font-size: clamp(14px, 0.3rem, 30px);
}
.pageBanner.product-detail .banner-box .banner-summary {
    margin-top: clamp(10px, 0.2rem, 20px);
}
.pageBanner.imgBanner {
    height: auto;
    max-height: initial;
}
@media screen and (max-width: 768px) {
    .pageBanner.imgBanner .img img {
        height: 300px;
        object-fit: cover;
    }
}
.pageBanner.imgBanner .banner-box {
    bottom: 0;
    top: 0;
    margin: auto;
}
.pageBanner.imgBanner .banner-box .banner-title {
    margin-bottom: 0;
}
.pageBanner.imgBanner .banner-box .banner-summary {
    margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner .video {
    width: 100%;
}
.pageBanner video {
    display: block;
    width: 100%;
}
.pageBanner .banner-box {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(35px, 0.7rem, 70px);
    z-index: 2;
    height: fit-content;
    text-align: left;
}
.pageBanner .banner-box .banner-title {
    color: #fff;
    font-size: clamp(18px, 0.5rem, 50px);
    line-height: 1;
    font-family: HONORSansCN-Bold;
    margin-bottom: clamp(20px, 0.5rem, 50px);
}
.pageBanner .banner-box .banner-summary {
    font-size: clamp(14px, 0.2rem, 20px);
    line-height: 1.6;
    max-width: 800px;
}
.pageBanner .banner-box .banner-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: clamp(20px, 0.3rem, 30px);
}
.pageBanner .banner-box .banner-button a {
    display: flex;
    transform: skewX(-25deg);
    background: var(--color1);
    color: #fff;
    height: clamp(30px, 0.5rem, 50px);
    padding: 0 clamp(20px, 0.5rem, 50px);
    align-items: center;
    font-size: clamp(14px, 0.18rem, 18px);
    transition: all 0.5s;
    font-family: HONORSansCN-Bold;
}
.pageBanner .banner-box .banner-button a span {
    display: block;
    transform: skewX(25deg);
}
.pageBanner .banner-box .banner-button a:hover {
    opacity: 0.7;
}
.pageBanner .banner-box .index-title {
    color: #fff;
}
.pageBanner .banner-box .index-title .title {
    color: #fff;
}
.pageBanner .banner-box .index-title .summary {
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
    .pageBanner .banner-box .index-title .summary {
        display: none;
    }
}
.pageBanner .banner-box .about-play {
    display: inline-block;
    margin: 30px auto 0;
    font-size: 57px;
    cursor: pointer;
}
.pageBanner .pageBanner-mask {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.pageBanner .pageBanner-mask img {
    width: 100%;
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
    gap: clamp(20px, 0.7rem, 70px);
    height: 100%;
}
@media screen and (max-width: 768px) {
    .page-menu {
        overflow-y: auto;
        justify-content: flex-start !important;
        width: 100%;
    }
}
.page-menu::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.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(--color1);
        color: #fff;
        font-size: 14px;
    }
}
.page-menu a {
    font-size: clamp(12px, 0.18rem, 18px);
    color: #000;
    position: relative;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .page-menu a {
        flex-shrink: 0;
    }
}
.page-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    background: var(--color1);
    transition: width 0.3s;
}
.page-menu a.active,
.page-menu a:hover {
    color: var(--color1);
}
.page-menu a.active::after,
.page-menu a:hover::after {
    width: 100%;
}
/*面包屑*/
.location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
    color: #b9b9b9;
    height: clamp(40px, 0.6rem, 60px);
    justify-content: flex-end;
    gap: 10px;
}
.location i {
    color: #fff;
    font-size: 16px;
}
.location a {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #b9b9b9;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
}
.location a img {
    width: clamp(12px, 0.12rem, 12px);
    transform: translateY(-2px);
}
.location a i {
    color: var(--color1);
    margin-right: 4px;
}
.location a.active {
    color: #000;
}
.location a:hover {
    text-decoration: underline;
}
/*分页*/
.pagers {
    margin-top: clamp(30px, 0.9rem, 90px);
    gap: 1.2rem;
}
@media screen and (max-width: 768px) {
    .pagers {
        flex-direction: column;
    }
}
.pagers .pager {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: clamp(20px, 0.4rem, 40px);
    width: 100%;
}
.pagers .pager a {
    height: clamp(30px, 0.4rem, 40px);
    padding: 0 clamp(8px, 0.16rem, 16px);
    margin: 0 6px;
    color: #474f5d;
    transition: all 0.5s;
    background: #fff;
    font-size: clamp(12px, 0.14rem, 14px);
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .pagers .pager a {
        margin: 0 4px;
    }
}
.pagers .pager a:hover,
.pagers .pager a.active {
    color: #fff;
    background: #000;
}
.pagers .pager a.disable {
    color: #9CA3AF;
    pointer-events: none;
}
.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(--color1);
    margin-bottom: 20px;
    display: inline-block;
}
.pages .prev:hover,
.pages .next:hover {
    text-decoration: underline;
}
/*视频*/
.video {
    padding-top: clamp(40px, 0.6rem, 60px);
    padding-bottom: clamp(55px, 1.1rem, 110px);
}
.video .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .video .items {
        grid-template-columns: repeat(1, 1fr);
    }
}
.video .items .item {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.video .items .item .img {
    position: relative;
}
.video .items .item .img .imgBox {
    padding-bottom: 56%;
}
.video .items .item .img .play {
    position: absolute;
    width: clamp(30px, 0.39rem, 39px);
    height: clamp(30px, 0.39rem, 39px);
    bottom: 20px;
    right: 20px;
    margin: auto;
    z-index: 2;
}
.video .items .item .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: clamp(10px, 0.2rem, 20px);
    height: 100%;
}
.video .items .item .text .title {
    font-size: clamp(16px, 0.24rem, 24px);
    margin-bottom: clamp(10px, 0.2rem, 20px);
    transition: all 0.5s;
}
.video .items .item .text .summary {
    line-height: 1.6;
    font-size: clamp(14px, 0.16rem, 16px);
    color: #555;
}
.video .items .item .text .time {
    color: #999;
    margin-top: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.16rem, 16px);
    gap: 10px;
    display: inline-flex;
}
.video .items .item .text .time img {
    width: clamp(14px, 0.16rem, 16px);
    height: clamp(14px, 0.16rem, 16px);
}
.video .items .item:hover .title {
    color: var(--color1);
}
/*新闻资讯*/
.news {
    padding-top: clamp(40px, 0.4rem, 40px);
    padding-bottom: clamp(55px, 1.1rem, 110px);
}
.news .page-title {
    border-bottom: 1px solid #eee;
}
.news .page-title .section {
    height: clamp(50px, 0.7rem, 70px);
    align-items: center;
}
@media screen and (max-width: 768px) {
    .news .page-title .section {
        flex-direction: column;
        align-items: flex-start;
    }
}
.news .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 0.4rem, 40px);
    margin-top: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
    .news .items {
        grid-template-columns: repeat(1, 1fr);
    }
}
.news .items .item {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.06);
}
.news .items .item .img {
    position: relative;
}
.news .items .item .img .imgBox {
    padding-bottom: 66%;
}
.news .items .item .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(20px, 0.2rem, 20px) clamp(20px, 0.3rem, 30px);
}
.news .items .item .text .title {
    font-size: clamp(16px, 0.24rem, 24px);
    margin-bottom: clamp(10px, 0.2rem, 20px);
    transition: all 0.5s;
}
.news .items .item .text .summary {
    line-height: 1.6;
    font-size: clamp(14px, 0.16rem, 16px);
    color: #555;
}
.news .items .item .text .time {
    color: #999;
    margin-top: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.16rem, 16px);
    gap: 10px;
    display: inline-flex;
}
.news .items .item .text .time img {
    width: clamp(14px, 0.16rem, 16px);
    height: clamp(14px, 0.16rem, 16px);
}
.news .items .item:hover .title {
    color: var(--color1);
}
.news .items.items2 {
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(20px, 0.2rem, 20px);
}
.news .items.items2 .item {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
    .news .items.items2 .item {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
}
.news .items.items2 .item .img {
    flex-basis: clamp(140px, 2.8rem, 280px);
}
.news .items.items2 .item .text {
    padding: 10px 0;
    flex: 1;
}
@media screen and (max-width: 768px) {
    .news .items.items2 .item .text {
        padding: 20px;
    }
}
/*新闻详情*/
.news-detail {
    max-width: 1200px;
}
.news-detail .title {
    font-size: clamp(16px, 0.3rem, 30px);
    line-height: 1.3;
    text-align: left;
    margin-bottom: clamp(20px, 0.3rem, 30px);
}
.news-detail .mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000000;
    gap: clamp(10px, 0.6rem, 60px);
    border-bottom: 1px solid #eeeeee;
    padding-bottom: clamp(10px, 0.12rem, 12px);
    margin-bottom: clamp(20px, 0.5rem, 50px);
    color: #888888;
}
@media screen and (max-width: 768px) {
    .news-detail .mid {
        align-items: flex-start;
        gap: 20px;
        margin-top: 10px;
        padding-bottom: 20px;
        flex-direction: column;
    }
}
.news-detail .mid .item {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 0.16rem, 16px);
}
.news-detail .mid .item .news-share .n-left {
    gap: 10px;
    border-right: 1px solid #ddd;
    padding-right: 30px;
    margin-right: 30px;
}
.news-detail .mid .item .news-share .n-right {
    gap: clamp(10px, 0.14rem, 14px);
}
.news-detail .mid .item .news-share .n-right .n-item {
    text-align: center;
    position: relative;

}
.news-detail .mid .item .news-share .n-right .n-item img {
    width: 50%;
    filter: brightness(0);
    opacity: 0.3;
}
.news-share .n-item .show img {
    filter: none !important;
    opacity: 1 !important;
}
.news-detail .details {
    background: #fff;
    padding-top: clamp(40px, 0.8rem, 80px);
    padding-bottom: clamp(40px, 1rem, 100px);
}
.news-detail .details .content .details-container {
    font-size: clamp(12px, 0.2rem, 20px);
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    min-height: 300px;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .news-detail .details .content .details-container {
        font-size: 14px;
        margin-top: 20px;
        width: 100%;
    }
    .news-detail .details .content .details-container img {
        max-width: 100% !important;
        height: auto !important;
    }
}
.news-detail .related {
    padding: clamp(20px, 0.4rem, 40px) 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.news-detail .related ul {
    list-style: square;
}
.news-detail .related ul li::marker {
    color: #999;
}
.news-detail .related .related-title {
    font-size: clamp(14px, 0.18rem, 18px);
    font-weight: bold;
    margin-bottom: clamp(10px, 0.2rem, 20px);
}
.news-detail .related a {
    display: block;
    color: #999;
    font-size: clamp(12px, 0.16rem, 16px);
    margin-bottom: clamp(10px, 0.1rem, 10px);
    transition: all 0.5s;
}
.news-detail .related a:hover {
    color: var(--color1);
}
.news-detail .detail-pager {
    display: flex;
    align-items: flex-end;
    margin-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .news-detail .detail-pager {
        flex-direction: column;
    }
}
.news-detail .detail-pager .d-left {
    flex: 1;
    margin-right: 10%;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
    .news-detail .detail-pager .d-left a {
        flex-basis: 100%;
    }
}
.news-detail .detail-pager .d-left a .sub {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #999;
    margin-bottom: clamp(10px, 0.1rem, 10px);
}
.news-detail .detail-pager .d-left a .t-summary {
    transition: all 0.5s;
    position: relative;
    color: #333;
    font-size: clamp(14px, 0.16rem, 16px);
}
.news-detail .detail-pager .d-left a:hover .t-summary {
    color: var(--color1);
}
.news-detail .detail-pager .d-right {
    min-width: clamp(120px, 1.4rem, 140px);
    height: clamp(30px, 0.4rem, 40px);
    background: #000;
    border-radius: 4px;
    color: #fff;
    transition: all 0.5s;
    padding-left:20px;
    padding-right:20px
}
@media screen and (max-width: 768px) {
    .news-detail .detail-pager .d-right {
        margin: 50px auto 0;
    }
}
.news-detail .detail-pager .d-right:hover {
    background: var(--color1);
}
/*联系我们*/
.contact {
    padding-top: clamp(40px, 0.6rem, 60px);
    padding-bottom: clamp(55px, 1.1rem, 110px);
}
.contact .contact1 {
    background: #f8f8f8;
    padding-top: clamp(25px, 0.5rem, 50px);
    padding-bottom: clamp(25px, 0.4rem, 40px);
}
.contact .contact1 .title {
    border-bottom: 1px solid #eee;
    padding-bottom: clamp(10px, 0.2rem, 20px);
    font-size: clamp(16px, 0.3rem, 30px);
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .contact .contact1 .title {
        text-align: left;
        padding: 0 20px
    }
}
.contact .contact1 .items {
    gap: 20px clamp(20px, 1.1rem, 110px);
    margin-top: clamp(25px, 0.3rem, 30px);
    flex-wrap: wrap;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
    .contact .contact1 .items {
        flex-direction: column;
        align-items: flex-start;
    }
}
.contact .contact1 .items .item {
    gap: 10px;
}
.contact .contact1 .items .item .icon {
    width: clamp(30px, 0.36rem, 36px);
    height: clamp(30px, 0.36rem, 36px);
    border-radius: 50%;
    background: var(--color2);
}
.contact .contact1 .items .item .icon img {
    max-width: 50%;
    max-height: 50%;
    filter: grayscale(0) brightness(0);
}
.contact .contact1 .items .item .text {
    flex: 1;
    font-size: clamp(12px, 0.18rem, 18px);
    max-width: 600px;
}
.contact .contact2 {
    background: #f8f8f8;
    margin-top: clamp(20px, 0.3rem, 30px);
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
    .contact .contact2 {
        flex-direction: column;
        gap: 20px;
    }
}
.contact .contact2 .left {
    flex-basis: clamp(270px, 5.4rem, 540px);
    aspect-ratio: 54 / 82;
}
@media screen and (max-width: 768px) {
    .contact .contact2 .left {
        flex-basis: 100%;
        display:none
    }
}
.contact .contact2 .right {
    flex: 1;
    padding: clamp(20px, 0.7rem, 70px);
}
.contact .contact2 .right .title {
    font-size: clamp(16px, 0.36rem, 36px);
    font-weight: 600;
}
.contact .contact2 .right .summary {
    font-size: clamp(14px, 0.18rem, 18px);
    color: #555555;
    line-height: 2;
    margin-top: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(20px, 0.2rem, 20px);
    max-height:clamp(100px,1rem,100px);
    overflow:auto
}
.contact .contact2 .right .form {
    grid-gap: 30px 20px;
}
.contact .contact2 .right .form label {
    position: relative;
    flex-basis: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
    .contact .contact2 .right .form label {
        flex-basis: 100% !important;
    }
}
.contact .contact2 .right .form label span {
    font-size: clamp(12px, 0.18rem, 18px);
    color: #333333;
    margin-bottom: 10px;
    display: block;
}
.contact .contact2 .right .form label .select2-container {
    margin-bottom: 0;
}
.contact .contact2 .right .form label .select2-container--default .select2-selection--single {
    background: #fff;
    border: none;
    margin-bottom: 0;
    font-size: clamp(12px, 0.16rem, 16px);
}
.contact .contact2 .right .form label .select2-container--default .select2-selection--single span {
    margin-bottom: 0;
    font-size: clamp(12px, 0.16rem, 16px);
    color: #999;
}
.contact .contact2 .right .form label.w66 {
    flex-basis: calc(((100% - 40px) / 3 * 2) + 20px);
}
.contact .contact2 .right .form label.w100 {
    flex-basis: 100%;
}
.contact .contact2 .right .form label input,
.contact .contact2 .right .form label select {
    background: #fff;
    border: none;
    text-indent: 0;
    font-size: clamp(12px, 0.16rem, 16px);
    border-radius: 0;
    padding-left: 20px;
    color: #333;
}
@media screen and (max-width: 768px) {
    .contact .contact2 .right .form label input,
    .contact .contact2 .right .form label select {
        padding-left: 10px;
    }
}
.contact .contact2 .right .form label select {
    color: #999;
    font-size: clamp(12px, 0.16rem, 16px);
}
.contact .contact2 .right .form label textarea {
    background: #fff;
    border: none;
    color: #333;
    padding: 20px;
    font-size: clamp(12px, 0.18rem, 18px);
    height: clamp(80px, 1.6rem, 160px);
    border-radius: 0;
}
@media screen and (max-width: 768px) {
    .contact .contact2 .right .form label textarea {
        height: 100px;
        padding: 10px;
    }
}
.contact .contact2 .right .form label input::placeholder,
.contact .contact2 .right .form label textarea::placeholder {
    color: #999;
    font-size: clamp(12px, 0.16rem, 16px);
}
.contact .contact2 .right .form .button {
    gap: 20px;
    width: 100%;
}
.contact .contact2 .right .form .button button {
    border-radius: 0;
    width: 100%;
    background: #ddd;
    height: clamp(40px, 0.6rem, 60px);
    transition: all 0.5s;
    font-size: clamp(12px, 0.2rem, 20px);
    color: #000;
}
@media screen and (max-width: 768px) {
    .contact .contact2 .right .form .button button {
        margin-top: 10px;
    }
}
.contact .contact2 .right .form .button button:hover {
    transform: translateY(0);
    background: var(--color2);
}
.contact .contact3 {
    margin-top: clamp(40px, 0.8rem, 80px);
}
.contact .contact3 .title {
    text-align: center;
    font-size: clamp(16px, 0.36rem, 36px);
    font-weight: 600;
}
.contact .contact3 .contact3-swiper {
    position: relative;
    margin-top: clamp(20px, 0.3rem, 30px);
}
.contact .contact3 .contact3-swiper .imgBox {
    padding-bottom: calc(91 / 162 * 100%);
}
.contact .contact3 .contact3-swiper .swiper-small-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: clamp(10px, 0.2rem, 20px) clamp(90px, 0.9rem, 90px);
    z-index: 2;
}
.contact .contact3 .contact3-swiper .swiper-small-box .swiper-slide {
    border: 2px solid transparent;
    cursor: pointer;
}
.contact .contact3 .contact3-swiper .swiper-small-box .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--color1);
}
.contact .contact3 .contact3-swiper .swiper-button-prev,
.contact .contact3 .contact3-swiper .swiper-button-next {
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}
.contact .contact3 .contact3-swiper .swiper-button-prev:hover,
.contact .contact3 .contact3-swiper .swiper-button-next:hover {
    background: var(--color1);
}
/*注册页面*/
.register {
    padding-top: clamp(40px, 0.6rem, 60px);
    padding-bottom: clamp(100px, 1.9rem, 190px);
    min-height: clamp(700px, 7rem, 700px);
}
@media screen and (max-width: 768px) {
    .register {
        min-height: 100vh;
    }
}
.register .register-title {
    border-bottom: 1px solid #eee;
    padding-bottom: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(30px, 0.6rem, 60px);
    gap: 20px;
    font-size: clamp(16px, 0.24rem, 24px);
}
.register .register-title img {
    width: clamp(20px, 0.3rem, 30px);
}
.register .form {
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(740px, 7.4rem, 740px);
}
.register .form .tip {
    background: var(--color3);
    border: 1px solid var(--color2);
    border-radius: 4px;
    font-size: clamp(12px, 0.16rem, 16px);
    padding: 20px 20px;
    text-align: center;
    color: #333;
    margin-bottom: clamp(30px, 0.4rem, 40px);
}
.register .form .tip.tip2 {
    background: #e5f9f3;
    border-color: #c6f6e8;
}
.register .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 0.3rem, 30px);
}
.register .form form .form-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: clamp(10px, 0.4rem, 40px);
    align-items: center;
}
@media screen and (max-width: 768px) {
    .register .form form .form-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
.register .form form .form-item .text {
    text-align: right;
    flex: 1;
    height: fit-content;
    font-size: clamp(14px, 0.18rem, 18px);
    color: #333;
}
.register .form form .form-item .text span {
    color: var(--color2);
}
.register .form form .form-item label {
    position: relative;
    flex-basis: clamp(540px, 5.4rem, 540px);
}
@media screen and (max-width: 768px) {
    .register .form form .form-item label {
        width: 100%;
        flex-basis: auto;
    }
}
.register .form form .form-item label input,
.register .form form .form-item label select {
    background: #f8f8f8;
    border-radius: 4px;
    height: clamp(50px, 0.6rem, 60px);
    border-color: #dddddd;
    font-size: clamp(14px, 0.18rem, 18px);
    color: #000;
}
.register .form form .form-item label input[type=checkbox] {
    border-radius: 2px;
    width: 20px;
    height: 20px;
}
.register .form form .form-item label select {
    background: #f8f8f8 url('../images/icon/i24.png') no-repeat right 20px center / clamp(16px, 0.2rem, 20px);
}
.register .form form .form-item .checkbox {
    display: flex;
    gap: 10px;
    line-height: 1.4;
    font-size: clamp(12px, 0.16rem, 16px);
}
.register .form form .form-item .checkbox span {
    color: #999999;
    font-size: clamp(12px, 0.16rem, 16px);
}
.register .form form .form-item .checkbox a {
    color: var(--color1);
    text-decoration: underline;
}
.register .form form .form-item button,
.register .form form .form-item .button {
    width: 100%;
    background: none;
    height: clamp(50px, 0.6rem, 60px);
    transition: all 0.5s;
    font-size: clamp(12px, 0.18rem, 18px);
    border-radius: 2px;
    border: 1px solid #ddd;
    color: var(--color2);
    color: #000;
    background: var(--color2);
    border-color: var(--color2);
}
.register .form form .form-item button:hover,
.register .form form .form-item .button:hover {
    color: #000;
    background: var(--color2);
    border-color: var(--color2);
}
.register .form form .form-item .eye {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: clamp(50px, 0.6rem, 60px);
    height: clamp(50px, 0.6rem, 60px);
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .register .form form .form-item .eye {
        top: auto;
    }
}
.register .form form .form-item .eye .eye2 {
    display: none;
}
.register .form form .form-item .eye.active .eye1 {
    display: none;
}
.register .form form .form-item .eye.active .eye2 {
    display: block;
}
.register .form.reset2 {
    display: none;
}
.register .form.reset3 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    text-align: center;
    margin-top: clamp(50px, 1rem, 100px);
}
.register .form.reset3 .title {
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 0.24rem, 24px);
    text-align: center;
}
.register .form.reset3 .title img {
    width: clamp(60px, 1.3rem, 130px);
    margin: 0 auto clamp(10px, 0.2rem, 20px);
}
.register .form.reset3 .summary {
    font-size: clamp(12px, 0.16rem, 16px);
    margin-top: clamp(10px, 0.3rem, 30px);
}
.register .form.reset3 .button {
    margin-top: clamp(20px, 0.5rem, 50px);
    background: none;
    height: clamp(50px, 0.6rem, 60px);
    transition: all 0.5s;
    font-size: clamp(12px, 0.18rem, 18px);
    border-radius: 2px;
    border: 1px solid #ddd;
    color: var(--color2);
    width: clamp(300px, 5.4rem, 540px);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}
.register .form.reset3 .button:hover {
    color: #000;
    background: var(--color2);
    border-color: var(--color2);
}
/*弹窗*/
.page-show-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    display: none;
}
.page-show-popup .mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.page-show-popup .page-show-container {
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    height: fit-content;
    width: fit-content;
    /*注册成功*/
    /*确认购物单*/
}
.page-show-popup .page-show-container .show-close {
    position: absolute;
    top: clamp(20px, 0.3rem, 30px);
    right: clamp(20px, 0.3rem, 30px);
    height: clamp(16px, 0.18rem, 18px);
    width: clamp(16px, 0.18rem, 18px);
    cursor: pointer;
}
.page-show-popup .page-show-container .show-close img {
    width: 100%;
}
.page-show-popup .page-show-container .register-success {
    width: clamp(400px, 6rem, 600px);
    padding: clamp(20px, 0.5rem, 50px);
    background: #fff;
    border-radius: 20px;
    transform: translateY(-20%);
    position: relative;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .register-success {
        width: 90vw;
    }
}
.page-show-popup .page-show-container .register-success .page-show-title {
    text-align: center;
    font-size: clamp(14px, 0.2rem, 20px);
    color: #333;
    gap: 20px;
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
.page-show-popup .page-show-container .register-success .page-show-title img {
    width: clamp(70px, 1.3rem, 130px);
    height: clamp(70px, 1.3rem, 130px);
    border-radius: 50%;
}
.page-show-popup .page-show-container .register-success .page-show-title p {
    margin-top: clamp(10px, 0.3rem, 30px);
    font-size: clamp(16px, 0.24rem, 24px);
}
.page-show-popup .page-show-container .register-success .page-show-summary {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
    text-align: center;
    margin-top: clamp(10px, 0.3rem, 30px);
    line-height: 1.6;
}
.page-show-popup .page-show-container .register-success .page-show-close {
    width: 150px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin: clamp(20px, 0.4rem, 40px) auto 0;
    transition: all 0.5s;
    cursor: pointer;
}
.page-show-popup .page-show-container .register-success .page-show-close:hover {
    background: var(--color2);
    color: #fff;
}
.page-show-popup .page-show-container .cart-request {
    width: clamp(800px, 12.8rem, 1280px);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request {
        width: 90%;
        margin: auto;
        height: 80vh;
        overflow: auto;
    }
}
.page-show-popup .page-show-container .cart-request .cart-items {
    padding: clamp(20px, 0.5rem, 50px);
}
.page-show-popup .page-show-container .cart-request .page-show-title {
    font-size: clamp(16px, 0.24rem, 24px);
}
.page-show-popup .page-show-container .cart-request .page-show-summary {
    font-size: clamp(12px, 0.16rem, 16px);
    margin-top: clamp(10px, 0.1rem, 10px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box {
    border-top: 1px solid #eee;
    margin-top: clamp(10px, 0.2rem, 20px);
    padding-top: clamp(10px, 0.2rem, 20px);
    display: flex;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box {
        flex-direction: column;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .key-title {
    font-size: clamp(12px, 0.18rem, 18px);
    margin-bottom: clamp(10px, 0.2rem, 20px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left {
    flex-basis: 47%;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .cart-box {
    border-right: 1px solid #ddd;
    padding-right: clamp(20px, 0.5rem, 50px);
    margin-right: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box .left .cart-box {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: clamp(300px, 3.6rem, 360px);
    overflow-y: auto;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item {
    align-items: flex-start;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-img {
    flex-basis: clamp(60px, 0.8rem, 80px);
    height: clamp(60px, 0.8rem, 80px);
    background: #eee;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-img img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-info {
    padding-left: 20px;
    margin-top: clamp(10px, 0.1rem, 10px);
    flex: 1;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-info {
        margin-top: 0;
        padding-left: 10px;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-info .pro-name {
    font-size: clamp(12px, 0.16rem, 16px);
    font-weight: 600;
    margin-top: 6px;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-info .pro-summary {
    font-size: clamp(12px, 0.14rem, 14px);
    margin-top: 6px;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .items .item .item-number {
    margin-top: clamp(10px, 0.2rem, 20px);
    flex-basis: 50px;
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .cart-price {
    border: 1px solid var(--color2);
    padding: 20px 24px;
    padding-right: clamp(20px, 0.5rem, 50px);
    background: var(--color3);
    font-size: clamp(12px, 0.16rem, 16px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    margin-top: clamp(20px, 0.3rem, 30px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .cart-price .list {
    padding-left: calc(clamp(40px, 0.6rem, 60px) + 20px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .left .cart-price .value {
    font-weight: 600;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right {
    flex-basis: 53%;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box .right {
        margin-top: 30px;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form {
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(740px, 7.4rem, 740px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form .tip {
    background: var(--color3);
    border: 1px solid var(--color2);
    border-radius: 4px;
    font-size: clamp(12px, 0.16rem, 16px);
    padding: 20px 20px;
    text-align: center;
    color: #333;
    margin-bottom: clamp(30px, 0.4rem, 40px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form .tip.tip2 {
    background: #e5f9f3;
    border-color: #c6f6e8;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 0.2rem, 20px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: clamp(10px, 0.4rem, 40px);
    align-items: center;
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item .text {
    text-align: right;
    flex: 1;
    height: fit-content;
    font-size: clamp(14px, 0.18rem, 18px);
    color: #999;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item .text span {
    color: red;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label {
    position: relative;
    flex-basis: clamp(300px, 4.4rem, 440px);
}
@media screen and (max-width: 768px) {
    .page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label {
        width: 100%;
        flex-basis: auto;
    }
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label input,
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label select,
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label textarea {
    background: #f8f8f8;
    border-radius: 4px;
    height: clamp(40px, 0.5rem, 50px);
    border-color: #dddddd;
    font-size: clamp(14px, 0.18rem, 18px);
    color: #000;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label input::placeholder,
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label select::placeholder,
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label textarea::placeholder {
    font-size: clamp(14px, 0.18rem, 18px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label textarea {
    height: clamp(80px, 1rem, 100px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label input[type=checkbox] {
    border-radius: 2px;
    width: 20px;
    height: 20px;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item label select {
    background: #f8f8f8 url('../images/icon/i24.png') no-repeat right 20px center / clamp(16px, 0.2rem, 20px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item .checkbox {
    display: flex;
    gap: 10px;
    line-height: 1.4;
    font-size: clamp(12px, 0.16rem, 16px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item .checkbox span {
    color: #999999;
    font-size: clamp(12px, 0.16rem, 16px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item .checkbox a {
    color: var(--color1);
    text-decoration: underline;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item button {
    width: 100%;
    background: none;
    height: clamp(50px, 0.6rem, 60px);
    transition: all 0.5s;
    font-size: clamp(12px, 0.18rem, 18px);
    border-radius: 2px;
    border: 1px solid #ddd;
    color: var(--color2);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form form .form-item button:hover {
    color: #000;
    background: var(--color2);
    border-color: var(--color2);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset2 {
    display: none;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    text-align: center;
    margin-top: clamp(50px, 1rem, 100px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 .title {
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 0.24rem, 24px);
    text-align: center;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 .title img {
    width: clamp(60px, 1.3rem, 130px);
    margin: 0 auto clamp(10px, 0.2rem, 20px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 .summary {
    font-size: clamp(12px, 0.16rem, 16px);
    margin-top: clamp(10px, 0.3rem, 30px);
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 .button {
    margin-top: clamp(20px, 0.5rem, 50px);
    background: none;
    height: clamp(50px, 0.6rem, 60px);
    transition: all 0.5s;
    font-size: clamp(12px, 0.18rem, 18px);
    border-radius: 2px;
    border: 1px solid #ddd;
    color: var(--color2);
    width: clamp(300px, 5.4rem, 540px);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}
.page-show-popup .page-show-container .cart-request .cart-request-box .right .form.reset3 .button:hover {
    color: #000;
    background: var(--color2);
    border-color: var(--color2);
}
.page-show-popup .page-show-container .cart-request .cart-submit {
    background: #f6f6f6;
    padding: clamp(20px, 0.4rem, 40px);
}
.page-show-popup .page-show-container .cart-request .cart-submit .submit-btn {
    width: clamp(200px, 3rem, 300px);
    height: clamp(40px, 0.6rem, 60px);
    border-radius: 4px;
    background: var(--color2);
    font-size: clamp(14px, 0.2rem, 20px);
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
}
.page-show-popup .page-show-container .cart-request .cart-submit .submit-btn:hover {
    background: var(--color3);
}
/*产品中心*/
.product {
    padding-top: clamp(40px, 0.6rem, 60px);
    padding-bottom: clamp(60px, 1.2rem, 120px);
    gap: clamp(20px, 0.4rem, 40px);
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    position: relative;
}
@media screen and (max-width: 768px) {
    .product {
        flex-direction: column;
    }
}
.product .mask {
    display: none;
    z-index: 98;
}
@media screen and (max-width: 768px) {
    .product .mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
    }
}
.product .mask.active {
    display: block;
}
.product .product-phone-click {
    display: none;
}
@media screen and (max-width: 768px) {
    .product .product-phone-click {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width:40px;
        background: var(--color2);
        color: #000;
        font-size: 14px;
        font-weight: 600;
        position:fixed;
        left: 0;
        top:20%;
        z-index:2
    }
}
.product .left {
    flex-basis: clamp(200px, 3rem, 300px);
    border: 2px solid var(--color2);
}
@media screen and (max-width: 768px) {
    .product .left {
        width: 70%;
        position: fixed;
        height: 100vh;
        top: 0;
        left: -100%;
        z-index: 99;
        background: #fff;
        overflow: auto;
        transition: all 0.5s;
    }
}
.product .left.active {
    left: 0;
}
.product .left .items {
    background: #eee;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 1px;
    position: relative;
    z-index: 2;
}
.product .left .items:last-child {
    margin-bottom: 0;
}
.product .left .items.active,
.product .left .items:hover,
.product .left .items.filter {
    background: var(--color2);
}
.product .left .items.active .text i {
    transform: rotate(90deg);
}
.product .left .items .text {
    padding: clamp(12px, 0.16rem, 16px);
    font-size: clamp(14px, 0.18rem, 18px);
    display: flex;
    align-items: center;
    color: #000;
}
@media screen and (max-width: 768px) {
    .product .left .items .text {
        display: flex;
        justify-content: space-between;
    }
}
.product .left .items .text .icon {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(20px, 0.3rem, 30px);
    background: #000;
    border-radius: 2px;
    overflow: hidden;
}
.product .left .items .text .title {
    padding-left: 10px;
    flex:1
}
.product .left .items .text i {
    margin-right: 0;
    margin-left: auto;
    transition: all 0.5s;
}
.product .left .items .item {
    background: #fff;
    display: none;
}
.product .left .items.active .item {
    display: block;
}
.product .left .items .item .i-item {
    display: block;
    font-size: clamp(12px, 0.16rem, 16px);
    transition: all 0.5s;
    padding: clamp(10px, 0.1rem, 10px) clamp(12px, 0.16rem, 16px);
    margin-bottom: 10px;
}
.product .left .items .item .i-item:last-child {
    margin-bottom: 0;
}
.product .left .items .item .i-item .i-text {
    position: relative;
    margin-left: calc(clamp(20px, 0.3rem, 30px) + 10px);
}
.product .left .items .item .i-item .i-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    bottom: 0;
    left: -10px;
    margin: auto;
    opacity: 0;
    transition: all 0.5s;
    border-width: 4px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}
.product .left .items .item .i-item:hover,
.product .left .items .item .i-item.active {
    background: var(--color3);
    color: #000;
}
.product .left .items .item .i-item:hover .i-text,
.product .left .items .item .i-item.active .i-text {
    position: relative;
}
.product .left .items .item .i-item:hover .i-text::after,
.product .left .items .item .i-item.active .i-text::after {
    opacity: 1;
}
.product .right {
    width: calc(100% - clamp(200px, 3rem, 300px) - clamp(20px, 0.4rem, 40px));
}
@media screen and (max-width: 768px) {
    .product .right {
        width: 100%;
    }
    .product .left .items .item .i-item {
        margin-bottom:0
    }
}
.product .right .pro_items {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .product .right .pro_items {
        grid-template-columns: repeat(1, 1fr);
    }
}
.product .right .pro_items.active {
    display: grid;
}
.product .right .pro_items .item {
    position: relative;
}
.product .right .pro_items .item .text {
    padding: clamp(12px, 0.16rem, 16px);
    font-size: clamp(14px, 0.18rem, 18px);
    background: var(--color3);
    font-weight: 600;
    transition: all 0.5s;
}
.product .right .pro_items .item .imgBox {
    padding-bottom: 36%;
}
.product .right .pro_items .item:hover .text {
    background: var(--color2);
    color: #000;
}
.product .right .product-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(10px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .product .right .product-menu {
    //grid-template-columns: repeat(1, 1fr);
    //gap:0
    }
}
.product .right .product-menu a {
    background: url('../images/icon/i44.png') no-repeat center / 100% 100%;
    height: 69px;
    text-align: center;
    font-size: clamp(14px, 0.18rem, 18px);
    font-weight: 600;
    color: #000;
    padding-bottom: 5px;
    transition: all 0.5s;
}
@media screen and (max-width: 768px) {
    .product .right .product-menu a {
        height: 50px;
    }
}
.product .right .product-menu a:hover,
.product .right .product-menu a.active {
    background: url('../images/icon/i45.png') no-repeat center / 100% 100%;
}
.product .right .product-overview .overview-text .o-items {
    margin-top: clamp(30px, 0.6rem, 60px);
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid #eeeeee;
    padding-top: clamp(20px, 0.4rem, 40px);
    position: relative;
}
@media screen and (max-width: 768px) {
    .product .right .product-overview .overview-text .o-items {
        flex-direction: column;
    }
}
.product .right .product-overview .overview-text .o-items::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #000;
    top: -1px;
    left: 0;
}
.product .right .product-overview .overview-text .o-items .o-key {
    flex-basis: clamp(260px, 3.5rem, 350px);
    font-size: clamp(16px, 0.24rem, 24px);
}
@media screen and (max-width: 768px) {
    .product .right .product-overview .overview-text .o-items .o-key {
        flex-basis: 100%;
        width: 100%;
    }
}
.product .right .product-overview .overview-text .o-items .o-value {
    flex: 1;
    font-size: clamp(14px, 0.16rem, 16px);
    line-height: 2;
}
.product .right .product-overview .overview-text .o-items .o-value li {
    list-style: square;
    margin-bottom: clamp(10px, 0.3rem, 30px);
}
.product .right .product-list {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 0.6rem, 60px) clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .product .right .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.product .right .product-list .l-item {
    overflow: initial;
}
.product .right .product-list .l-item a {
    display: block;
    border: 1px solid #000;
}
.product .right .product-list .l-item .text {
    margin-top: 20px;
}
.product .right .product-list .l-item .text .title {
    font-size: clamp(14px, 0.18rem, 18px);
}
.product .right .product-list .l-item .text .new-status {
    width: clamp(20px, 0.4rem, 40px);
    margin-right: clamp(20px, 0.4rem, 40px);
    margin-left: auto;
}
.product .right .product-list .l-item .text .cart {
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
    background: var(--color2);
    position: relative;
    cursor: pointer;
}
.product .right .product-list .l-item .text .cart img {
    width: clamp(16px, 0.2rem, 20px);
}
.product .right .product-list .l-item .text .cart .show-text {
    position: absolute;
    background: #b2b2b2;
    font-size: clamp(12px, 0.16rem, 16px);
    padding: clamp(5px, 0.1rem, 10px);
    color: #fff;
    border-radius: 4px;
    left: 0;
    top: calc(100% + 3px);
    width: max-content;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
}
.product .right .product-list .l-item .text .cart:hover .show-text {
    opacity: 1;
}
.product .right .product-video {
    margin-top: clamp(30px, 0.6rem, 60px);
}
.product .right .product-video .v-item {
    margin-bottom: clamp(50px, 1.1rem, 110px);
}
.product .right .product-video .v-item:last-child {
    margin-bottom: 0;
}
.product .right .product-video .v-item .v-video {
    position: relative;
}
.product .right .product-video .v-item .v-video .imgBox {
    padding-bottom: 56%;
}
.product .right .product-video .v-item .v-video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 0.6rem, 60px);
    height: clamp(40px, 0.6rem, 60px);
}
.product .right .product-video .v-item .v-text {
    align-items: flex-start;
    gap: 20px;
    margin-top: clamp(20px, 0.4rem, 40px);
}
.product .right .product-video .v-item .v-text .v-key {
    font-size: clamp(16px, 0.24rem, 24px);
}
@media screen and (max-width: 768px) {
    .product .right .product-video .v-item .v-text .v-key {
        flex-basis: 100%;
        width: 100%;
    }
}
.product .right .product-video .v-item .v-text .v-value {
    flex: 1;
    font-size: clamp(14px, 0.16rem, 16px);
    line-height: 2;
    margin-top: clamp(10px, 0.2rem, 20px);
}
.product .right .product-video .v-item .v-text .v-value li {
    list-style: square;
    margin-bottom: clamp(10px, 0.3rem, 30px);
}
.product-detail {
    background: #fff;
}
.product-detail .product-detail-top {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .product-detail .product-detail-top {
        flex-direction: column;
        margin-bottom: 30px;
    }
}
.product-detail .product-detail-top .p-left {
    width: 45%;
}
@media screen and (max-width: 768px) {
    .product-detail .product-detail-top .p-left {
        width: 100%;
        margin-bottom: 30px;
    }
}
.product-detail .product-detail-top .p-left .swiper-big {
    position: relative;
}
.product-detail .product-detail-top .p-left .swiper-big i {
    position: absolute;
    right: clamp(10px, 0.2rem, 20px);
    bottom: clamp(10px, 0.2rem, 20px);
    z-index: 2;
    pointer-events: none;
}
.product-detail .product-detail-top .p-left .swiper-small-box {
    position: relative;
    margin-top: 20px;
}
.product-detail .product-detail-top .p-left .swiper-small-box.one-slide .swiper-small {
    width: 100%;
}
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-prev,
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-next {
    color: #999;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
}
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-prev::after,
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-next::after {
    display: none;
}
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-prev:hover i,
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-next:hover i {
    color: var(--color2);
}
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-prev {
    justify-content: flex-start;
    left: 0;
}
.product-detail .product-detail-top .p-left .swiper-small-box .swiper-button-next {
    justify-content: flex-end;
    right: 0;
}
.product-detail .product-detail-top .p-left .swiper-small {
    width: calc(100% - 50px);
    margin: auto;
    padding: 2px;
}
@media screen and (max-width: 768px) {
    .product-detail .product-detail-top .p-left .swiper-small {
        width: 100%;
    }
    .product-detail .product-detail-top .p-left .swiper-small-box {
        display:none
    }
}
.product-detail .product-detail-top .p-left .swiper-small .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    background: #fff;
    max-width:25%
}
.product-detail .product-detail-top .p-left .swiper-small .swiper-slide::after {
    content: '';
    box-shadow: inset 0 0 0 4px var(--color2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.product-detail .product-detail-top .p-left .swiper-small .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
.product-detail .product-detail-top .p-left .swiper-small .swiper-slide.swiper-slide-thumb-active::after {
    opacity: 1;
}
.product-detail .product-detail-top .p-right {
    flex-basis: 51%;
}
.product-detail .product-detail-top .p-right .title {
    font-size: clamp(20px, 0.3rem, 30px);
    border-bottom: 1px solid #ddd;
    padding-bottom: clamp(10px, 0.2rem, 20px);
}
.product-detail .product-detail-top .p-right .title span {
    font-weight: 600;
}
.product-detail .product-detail-top .p-right .lists {
    margin-top: clamp(20px, 0.24rem, 24px);
}
.product-detail .product-detail-top .p-right .lists.add-list {
    margin-top: clamp(30px, 0.7rem, 70px);
}
.product-detail .product-detail-top .p-right .lists .sub-title {
    font-size: clamp(14px, 0.18rem, 18px);
}
.product-detail .product-detail-top .p-right .lists .items {
    margin-top: clamp(10px, 0.16rem, 16px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 0.2rem, 20px) 0;
}
.product-detail .product-detail-top .p-right .lists .items .item {
    border: 1px solid #ddd;
    font-size: clamp(14px, 0.16rem, 16px);
}
.product-detail .product-detail-top .p-right .lists .items .item .key {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    color: #888888;
    padding: clamp(10px, 0.14rem, 14px) clamp(10px, 0.1rem, 10px);
    border-bottom: 1px solid #ddd;
}
.product-detail .product-detail-top .p-right .lists .items .item .value {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 0.14rem, 14px);
}
.product-detail .product-detail-top .p-right .lists .quantity {
    margin-top: clamp(10px, 0.16rem, 16px);
    display: flex;
    align-items: center;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
}
.product-detail .product-detail-top .p-right .lists .quantity input {
    width: clamp(120px, 1.5rem, 150px);
    text-align: center;
    outline: none;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
    height: clamp(50px, 0.6rem, 60px);
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    padding-right:10px
}
.product-detail .product-detail-top .p-right .lists .quantity input::-webkit-outer-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input::-webkit-inner-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input:hover::-webkit-outer-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.product-detail .product-detail-top .p-right .lists .quantity .quantity-button,
.product-detail .product-detail-top .p-right .lists .quantity .box {
    width: clamp(50px, 0.6rem, 60px);
    height: clamp(50px, 0.6rem, 60px);
    background: #f6f6f6;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.product-detail .product-detail-top .p-right .lists .quantity .quantity-button:hover,
.product-detail .product-detail-top .p-right .lists .quantity .box:hover {
    background: var(--color2);
    color: #fff;
}
.product-detail .product-detail-top .p-right .lists .quantity .box {
    margin-left: clamp(10px, 0.1rem, 10px);
}
.product-detail .product-detail-top .p-right .lists .add-cart {
    background: var(--color2);
    width: clamp(200px, 2.7rem, 270px);
    height: clamp(50px, 0.7rem, 70px);
    border-radius: 4px;
    cursor: pointer;
    font-size: clamp(16px, 0.24rem, 24px);
    gap: clamp(10px, 0.2rem, 20px);
    transition: all 0.5s;
}
@media screen and (max-width: 768px) {
    .product-detail .product-detail-top .p-right .lists .add-cart {
        width: 100%;
    }
}
.product-detail .product-detail-top .p-right .lists .add-cart img {
    width: clamp(20px, 0.3rem, 30px);
}
.product-detail .product-detail-top .p-right .lists .add-cart:hover {
    background: var(--color3);
}
.product-detail .product-detail-top .p-right .lists .like {
    cursor: pointer;
    text-align: center;
    font-size: clamp(14px, 0.18rem, 18px);
    position: relative;
    transition: all 0.5s;
    margin-left: clamp(20px, 0.4rem, 40px);
}
.product-detail .product-detail-top .p-right .lists .like img {
    width: clamp(20px, 0.35rem, 35px);
    margin-left: auto;
    margin-right: auto;
}
.product-detail .product-detail-top .p-right .lists .like .like2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}
.product-detail .product-detail-top .p-right .lists .like.active {
    color: var(--color2);
}
.product-detail .product-detail-top .p-right .lists .like.active .like1 {
    opacity: 0;
}
.product-detail .product-detail-top .p-right .lists .like.active .like2 {
    opacity: 1;
}
.product-detail .tip-text {
    margin-top: clamp(10px, 0.2rem, 20px);
    gap: clamp(50px, 1rem, 100px);
    font-size: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 768px) {
    .product-detail .tip-text {
        flex-direction: column;
    }
}
.product-detail .tip-text .tip-left {
    flex-basis: 46%;
    background: #ffcdfc;
    border-radius: 4px;
    padding: clamp(10px, 0.1rem, 10px);
    gap: clamp(10px, 0.2rem, 20px);
    display: flex;
    line-height: 1.6;
}
.product-detail .tip-text .tip-left .icon {
    width: clamp(20px, 0.24rem, 24px);
}
.product-detail .tip-text .tip-left .text {
    flex: 1;
}
.product-detail .tip-text .tip-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.18rem, 18px);
    text-align: center;
}
.product-detail .tip-text .tip-right .icon {
    height: clamp(20px, 0.5rem, 50px);
    margin-bottom: clamp(10px, 0.2rem, 20px);
}
.product-detail .tip-text .tip-right .icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.product-detail .detail-box {
    border-top: 1px solid #ddd;
    margin-top: clamp(20px, 0.4rem, 40px);
    padding-top: clamp(20px, 0.4rem, 40px);
}
.product-detail .detail-box .lists {
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
.product-detail .detail-box .lists .items3 .item:nth-child(n+20) {
    display:none
}
.product-detail .detail-box .lists .title {
    font-size: clamp(14px, 0.24rem, 24px);
    margin-bottom: clamp(10px, 0.2rem, 20px);
}
.product-detail .detail-box .lists .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .product-detail .detail-box .lists .items {
        grid-template-columns: repeat(1, 1fr);
    }
}
.product-detail .detail-box .lists .items .item {
    border: 1px solid #ddd;
    height:fit-content;
    max-height: clamp(200px, 3.8rem, 380px);
    overflow: auto;
}
.product-detail .detail-box .lists .items .item .list {
    display: flex;
    border-top: 1px solid #ddd;
    font-size: clamp(12px, 0.18rem, 18px);
}
.product-detail .detail-box .lists .items .item .list:first-child {
    background: #f6f6f6;
    border-top: none;
    color: #888888;
}
.product-detail .detail-box .lists .items .item .list .key {
    flex-basis: 30%;
    padding: clamp(10px, 0.16rem, 16px) clamp(10px, 0.4rem, 40px);
    border-right: 1px solid #ddd;
    padding-right:5px
}
.product-detail .detail-box .lists .items .item .list .value {
    flex-basis: 70%;
    padding: clamp(10px, 0.16rem, 16px) clamp(10px, 0.4rem, 40px);
}
.product-detail .detail-box .lists .items2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}
@media screen and (max-width: 1280px) {
    .product-detail .detail-box .lists .items2 {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .product-detail .detail-box .lists .items2 {
        grid-template-columns: repeat(3, 1fr);
    }
}
.product-detail .detail-box .lists .items2 .item {
    background: #f6f6f6;
    padding: clamp(10px, 0.1rem, 10px);
    text-align: center;
    font-size: clamp(14px, 0.18rem, 18px);
}
.product-detail .detail-box .lists .items3-more {
    width: clamp(150px, 2rem, 200px);
    background: var(--color1);
    font-size: clamp(14px, 0.18rem, 18px);
    margin: 40px auto 0;
    padding: clamp(10px, 0.2rem, 20px);
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
}
.product-detail .detail-box .lists .items3-more:hover {
    background: var(--color2);
}
.product-detail .detail-box .lists .items3 .item {
    background: #f6f6f6;
    padding: 0 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
.product-detail .detail-box .lists .items3 .item .icon {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(20px, 0.3rem, 30px);
    border-radius: 50%;
}
.product-detail .detail-box .lists .items3 .item .top {
    cursor: pointer;
    height: clamp(50px, 0.7rem, 70px);
    padding: 0 clamp(10px, 0.2rem, 20px);
    gap: clamp(10px, 0.2rem, 20px);
    font-size: clamp(14px, 0.2rem, 20px);
    font-weight: 600;
    color: var(--color1);
}
.product-detail .detail-box .lists .items3 .item .top.active .icon {
    transform: rotate(90deg);
}
.product-detail .detail-box .lists .items3 .item .top .icon {
    background: var(--color1);
    color: #fff;
    transition: all 0.5s;
}
.product-detail .detail-box .lists .items3 .item .bottom {
    display: none;
    margin-bottom: 10px;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-top {
    cursor: pointer;

    background: #999;
    height: clamp(50px, 0.7rem, 70px);
    padding: 0 clamp(10px, 0.2rem, 20px);
    gap: clamp(10px, 0.2rem, 20px);
    font-size: clamp(14px, 0.2rem, 20px);
    color: #fff;
    margin-bottom: 2px;
    position: sticky;
    top: clamp(70px,0.8rem,80px);
    z-index: 2;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-top.active {
    background: var(--color1);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-top.active .icon {
    transform: rotate(90deg);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-top .icon {
    background: #fff;
    color: var(--color1);
    transition: all 0.5s;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-top .text {
    flex:1
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    font-size: clamp(12px, 0.16rem, 16px);
    border-right: none;
    border-bottom: none;
    margin-bottom: 10px;
//overflow-x: auto;
//overflow-y: hidden;
//transform: rotateX(180deg);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom::-webkit-scrollbar {
    height: 10px;
}
@media screen and (max-width: 768px) {
    .product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom {
        overflow-x: auto;
        overflow-y: hidden;
    }
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists {
//display: flex;
//grid-template-columns: repeat(10, 1fr);
    margin-bottom: 0;
//overflow-x: auto;
//overflow-y: hidden;
//transform: rotateX(180deg);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list {
    border-bottom: 1px solid #ddd;
    display: flex;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key {
    position: relative;
    padding: clamp(6px, 0.1rem, 10px) clamp(10px, 0.2rem, 20px);
    cursor: pointer;
    border-right: 1px solid #ddd;
    flex-basis: clamp(130px,2rem,200px);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .value-list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: clamp(10px, 0.2rem, 20px);
    align-items: center;
    padding: clamp(6px, 0.1rem, 10px) clamp(10px, 0.2rem, 20px);

}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .value-list .value {
    border: 1px solid #ddd;
    width: fit-content;
    height: fit-content;
    border-radius: 8px;
    position: relative;
    padding: clamp(10px, 0.1rem, 10px);
    cursor: pointer;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .value-list .value:hover .picture {
    opacity: 1;
    pointer-events: auto;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key.key-header {
    border-top: none;
    height: clamp(80px, 0.8rem, 80px);
    display: flex;
    align-items: center;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key .k-title {
    color: var(--color1);
    font-weight: 600;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key .icon {
    font-size: clamp(12px, 0.12rem, 12px);
    color: #fff;
    background: var(--color1);
    width: clamp(20px, 0.24rem, 24px);
    height: clamp(20px, 0.24rem, 24px);
    margin-top: 10px;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key .summary {
    margin-top: 10px;
    font-size: clamp(12px, 0.14rem, 14px);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .picture {
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    width: clamp(100px, 1rem, 100px);
    height: clamp(100px, 1rem, 100px);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.04);
    padding: 0;

    margin: auto;
    left: 80%;
    top: 80%;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .picture::after {
//content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .picture .picture-box {
    background: #fff;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: clamp(12px, 0.16rem, 16px);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .picture .picture-box .p-icon {
//width: clamp(30px, 0.4rem, 40px);
//height: clamp(30px, 0.4rem, 40px);
//border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
//margin-bottom: 10px;
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .picture .picture-box .p-icon img {
//width: clamp(20px, 0.24rem, 24px);
}
.product-detail .detail-box .lists .items3 .item .bottom .bottom-item .bottom-item-bottom .lists .list .key:hover .picture {
    opacity: 1;
    pointer-events: auto;
}
/*购物车列表*/
.cart-list {
    padding-top: clamp(40px, 0.4rem, 40px);
    padding-bottom: clamp(100px, 1.9rem, 190px);
}
.cart-list .cart-list-title {
    border-bottom: 1px solid #eee;
    padding-bottom: clamp(20px, 0.3rem, 30px);
    margin-bottom: clamp(20px, 0.3rem, 30px);
    gap: 20px;
    font-size: clamp(16px, 0.24rem, 24px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-title {
        flex-direction: column;
        align-items: flex-start;
    }
}
.cart-list .cart-list-title .left {
    line-height: 1;
    gap: 20px;
}
.cart-list .cart-list-title .left img {
    width: clamp(20px, 0.26rem, 26px);
}
.cart-list .cart-list-title .right {
    border: 1px solid #eee;
    line-height: 1;
    gap: 16px;
    background: #f6f6f6;
    padding: clamp(10px, 0.14rem, 14px);
    font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-title .right {
        width: 100%;
    }
}
.cart-list .cart-list-title .right img {
    width: clamp(16px, 0.2rem, 20px);
}
.cart-list .cart-list-content .cart-empty {
    height: 300px;
    font-size: clamp(12px, 0.18rem, 18px);
    text-align: center;
    color: #333;
    font-weight: 600;
    flex-direction: column;
}
.cart-list .cart-list-content .cart-empty .cart-empty-text {
    margin-top: clamp(10px, 0.2rem, 20px);
}
.cart-list .cart-list-content .items {
    background: #eee;
    padding: clamp(10px, 0.1rem, 10px) clamp(10px, 0.3rem, 30px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(12px, 0.18rem, 18px);
    line-height: 1;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items {
        width: 100%;
        flex-wrap: wrap;
    }
}
.cart-list .cart-list-content .items.items-top {
    margin-bottom: clamp(20px, 0.3rem, 30px);
    top:clamp(60px, 0.7rem, 70px);
    z-index:2;
    position: sticky;
    padding:clamp(10px, 0.3rem, 30px);
    background: #dfdfdf;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items.items-top .item {
        display: none;
    }
    .cart-list .cart-list-content .items.items-top .item:nth-child(1) {
        display: flex;
    }
}
.cart-list .cart-list-content .items .checkboxAll {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.3rem, 30px);
}
.cart-list .cart-list-content .items input[type=checkbox] {
    border: 2px solid #010103;
    border-radius: 2px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items input[type=checkbox] {
        width: 16px;
        height: 16px;
    }
}
.cart-list .cart-list-content .items input[type=checkbox]:checked {
    background: var(--color1) !important;
    border-color: var(--color1) !important;
}
.cart-list .cart-list-content .items input[type=checkbox]:checked::after {
    color: #fff;
}
.cart-list .cart-list-content .items .item {
    line-height: 1;
}
.cart-list .cart-list-content .items .item:nth-child(1) {
    flex-basis: clamp(105px, 2.1rem, 210px);
    gap: clamp(10px, 0.3rem, 30px);
}
.cart-list .cart-list-content .items .item:nth-child(1) .img {
    width: clamp(50px, 1rem, 80px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(1) .img {
        width: 20vw;
        margin-right: 20px;
    }
}
.cart-list .cart-list-content .items .item:nth-child(2) {
//flex: 1;
    flex-basis:clamp(210px, 3rem, 300px)
}
.cart-list .cart-list-content .items .item:nth-child(3) {
    flex: 1;
}
.cart-list .cart-list-content .items .item:nth-child(2) .title，.cart-list .cart-list-content .items .item:nth-child(3) {
    font-size: clamp(14px, 0.18rem, 18px);
    font-weight: 600;
}
.cart-list .cart-list-content .items .item:nth-child(2) .summary {
    margin-top: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.16rem, 16px);
    line-height: 1.4;
}
.cart-list .cart-list-content .items .item:nth-child(4) {
    flex-basis: clamp(210px, 3rem, 300px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(4) {
        margin: 10px 0 10px auto;
        flex-basis: 100%;
        width: 100%;
    }
}
.cart-list .cart-list-content .items .item:nth-child(4) .quantity {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(4) .quantity {
        justify-content: flex-end;
    }
}
.cart-list .cart-list-content .items .item:nth-child(4) .quantity input {
    width: 110px;
    text-align: center;
    outline: none;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
    height: clamp(30px, 0.5rem, 50px);
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    paddig-right:10px
}
.product-detail .product-detail-top .p-right .lists .quantity input::-webkit-outer-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input::-webkit-inner-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input:hover::-webkit-outer-spin-button,
.product-detail .product-detail-top .p-right .lists .quantity input:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(4) .quantity input {
        flex: 1;
    }
}
.cart-list .cart-list-content .items .item:nth-child(4) .quantity .quantity-button {
    width: clamp(30px, 0.5rem, 50px);
    height: clamp(30px, 0.5rem, 50px);
    background: #f6f6f6;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.cart-list .cart-list-content .items .item:nth-child(4) .quantity .quantity-button:hover {
    background: var(--color1);
    color: #fff;
}
.cart-list .cart-list-content .items .item:nth-child(5) {
    flex-basis: clamp(110px, 2.2rem, 220px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(5) {
        flex-basis: 33%;
    }
}
/*.cart-list .cart-list-content .items .item:nth-child(6) {*/
/*  flex-basis: clamp(110px, 2.2rem, 220px);*/
/*}*/
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(6) {
        flex-basis: 33%;
    }
}
.cart-list .cart-list-content .items .item:nth-child(6) {
    flex-basis: 100px;
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-content .items .item:nth-child(6) {
        flex-basis: 33%;
        text-align: right;
    }
}
.cart-list .cart-list-content .items .item:nth-child(6) .delete {
    cursor: pointer;
}
.cart-list .cart-list-content .items .item:nth-child(6) .delete img {
    width: clamp(20px, 0.3rem, 30px);
    filter: grayscale(1) brightness(0);
    opacity: 0.5;
}
.cart-list .cart-list-content .items .item:nth-child(6) .delete:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}
.cart-list .cart-list-total {
    background: var(--color3);
    padding: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.cart-list .cart-list-total .item {
    font-size: clamp(14px, 0.18rem, 18px);
    padding-right: 15%;
    gap: 4px;
}
.cart-list .cart-list-total .item .value {
    font-weight: 600;
}
.cart-list .cart-list-submit {
    margin-top: 2px;
    background: #eee;
    padding: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-submit {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.cart-list .cart-list-submit .submit-left {
    font-size: clamp(14px, 0.18rem, 18px);
    gap: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .cart-list .cart-list-submit .submit-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.cart-list .cart-list-submit .submit-left .feature {
    gap: 10px;
}
.cart-list .cart-list-submit .submit-left .feature .f-item {
    background: #f6f6f6;
    width: clamp(80px, 1.2rem, 120px);
    height: clamp(30px, 0.4rem, 40px);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.5s;
}
.cart-list .cart-list-submit .submit-left .feature .f-item:hover {
    background: var(--color2);
}
.cart-list .cart-list-submit .submit-button {
    background: var(--color2);
    border-radius: 4px;
    padding: clamp(8px, 0.15rem, 15px) clamp(10px, 0.36rem, 36px);
    font-size: clamp(14px, 0.18rem, 18px);
    cursor: pointer;
    transition: all 0.3s;
}
.cart-list .cart-list-submit .submit-button:hover {
    background: var(--color1);
}
/*会员中心*/
.member {
    background: #f6f6f6;
    padding: clamp(40px, 0.6rem, 60px) 0;
}
.member .member-box {
    gap: clamp(20px, 0.4rem, 40px);
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .member .member-box {
        flex-direction: column;
    }
}
.member .mask {
    display: none;
    z-index: 98;
}
@media screen and (max-width: 768px) {
    .member .mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
    }
}
.member .mask.active {
    display: block;
}
.member .product-phone-click {
    display: none;
}
@media screen and (max-width: 768px) {
    .member .product-phone-click {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width:40px;
        background: var(--color2);
        color: #000;
        font-size: 14px;
        font-weight: 600;
        position:fixed;
        left: 0;
        top:20%;
        z-index:2
    }
}
.member .left {
    flex-basis: clamp(200px, 3.6rem, 360px);
}
.member .left .l-top {
    background: #fff;
    padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.3rem, 30px) clamp(20px, 1.2rem, 120px);
}
@media screen and (max-width: 768px) {
    .member .left {
        width: 70%;
        position: fixed;
        height: 100vh;
        top: 0;
        left: -100%;
        z-index: 99;
        overflow: auto;
        transition: all 0.5s;
        background: #fff;
    }
}
.member .left.active {
    left: 0;
}
.member .left .member-text {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
.member .left .member-text .icon {
    width: clamp(16px, 0.2rem, 2px);
    margin-top: 4px;
    position: relative;
}
.member .left .member-text .text {
    font-size: clamp(14px, 0.18rem, 18px);
    color: #999;
    flex:1
}
.member .left .member-text .text .name {
    font-size: clamp(16px, 0.24rem, 24px);
    color: #000;
    margin-bottom: clamp(5px, 0.1rem, 10px);
}
.member .left .items {
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-top: 1px solid #eee;
    display: flex;
    juustify-content: space-between;
    align-items: center;
}
.member .left .items:last-child {
    border-bottom: 1px solid #eee;
}
.member .left .items.active .text i,
.member .left .items:hover .text i {
    opacity: 1;
}
.member .left .items.active .text::after,
.member .left .items:hover .text::after {
    opacity: 1;
}
.member .left .items .text {
    width: 100%;
    padding: clamp(16px, 0.24rem, 24px) 0;
    font-size: clamp(14px, 0.18rem, 18px);
    display: flex;
    align-items: center;
    color: #000;
}
@media screen and (max-width: 768px) {
    .member .left .items .text {
        display: flex;
        justify-content: space-between;
    }
}
.member .left .items .text::after {
    content: '';
    position: absolute;
    right: calc(100% + clamp(20px, 0.3rem, 30px) - 3px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 3px;
    height: clamp(20px, 0.4rem, 40px);
    background: var(--color1);
    opacity: 0;
    transition: all 0.5s;
}
.member .left .items .text .icon {
    width: clamp(16px, 0.2rem, 20px);
    margin-right: clamp(10px, 0.2rem, 20px);
    position: relative;
}
.member .left .items .text .icon .point {
    width: 7px;
    height: 7px;
    background: var(--color1);
    border-radius: 50%;
    top: -2px;
    right: 1px;
    position: absolute;
}
.member .left .items .text i {
    margin-right: 0;
    margin-left: auto;
    transition: all 0.5s;
    opacity: 0;
}
.member .left .items .item {
    background: #fff;
    display: none;
}
.member .left .items .item .i-item {
    display: block;
    font-size: clamp(12px, 0.16rem, 16px);
    transition: all 0.5s;
    padding: clamp(10px, 0.1rem, 10px) clamp(12px, 0.16rem, 16px);
    margin-bottom: 10px;
}
.member .left .items .item .i-item:last-child {
    margin-bottom: 0;
}
.member .left .items .item .i-item .i-text {
    position: relative;
    margin-left: calc(clamp(20px, 0.3rem, 30px) + 10px);
}
.member .left .items .item .i-item .i-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    bottom: 0;
    left: -10px;
    margin: auto;
    opacity: 0;
    transition: all 0.5s;
    border-width: 4px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}
.member .left .items .item .i-item:hover,
.member .left .items .item .i-item.active {
    background: var(--color3);
    color: #000;
}
.member .left .items .item .i-item:hover .i-text,
.member .left .items .item .i-item.active .i-text {
    position: relative;
}
.member .left .items .item .i-item:hover .i-text::after,
.member .left .items .item .i-item.active .i-text::after {
    opacity: 1;
}
.member .left .sign-out {
    padding: 0 clamp(20px, 0.3rem, 30px);
    position: relative;
    margin-top: 10px;
    opacity: 0.5;
    background: #fff;
    transition: all 0.5s;
}
.member .left .sign-out .items {
    border-top: none;
}
.member .left .sign-out:hover {
    opacity: 1;
}
.member .right {
    width: calc(100% - clamp(200px, 3.6rem, 360px));
    background: #fff;
    padding: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .member .right {
        width: 100%;
    }
}
.member .right .member-title {
    font-size: clamp(16px, 0.24rem, 24px);
    border-bottom: 1px solid #eee;
    margin-bottom: clamp(10px, 0.2rem, 20px);
    padding-bottom: clamp(10px, 0.2rem, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.member .right .member-title .back {
    margin-right: 0;
    margin-left: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: clamp(120px, 1.4rem, 140px);
    height: clamp(30px, 0.4rem, 40px);
    font-size: clamp(12px, 0.18rem, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 0.2rem, 20px);
}
.member .right .search {
    gap: clamp(10px, 0.1rem, 10px);
    flex-wrap: wrap;
}
.member .right .search label {
    width: clamp(200px, 4rem, 400px);
}
@media screen and (max-width: 768px) {
    .member .right .search label {
        width: 100%;
    }
}
.member .right .search input,
.member .right .search select {
    background: #f6f6f6;
    height: clamp(40px, 0.5rem, 50px);
    font-size: clamp(14px, 0.18rem, 18px);
    border: 1px solid #ddd;
    border-radius: 4px;
    width: clamp(200px, 4rem, 400px);
    color: #999;
}
@media screen and (max-width: 768px) {
    .member .right .search input,
    .member .right .search select {
        width: 100%;
    }
}
.member .right .search input::placeholder,
.member .right .search select::placeholder {
    color: #999;
    font-size: clamp(14px, 0.18rem, 18px);
}
.member .right .search button {
    width: clamp(80px, 1.1rem, 110px);
    height: clamp(40px, 0.5rem, 50px);
    background: var(--color2);
    border-radius: 4px;
    font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
    .member .right .search button {
        width: 100%;
    }
}
.member .right .search button:hover {
    background: var(--color3);
}
.member .right .order-list .o-item {
    margin-top: clamp(20px, 0.3rem, 30px);
    border: 1px solid #ddd;
}
.member .right .order-list .o-item .o-top {
    min-height: 0.6rem;
    padding: clamp(10px, 0.1rem, 10px) clamp(10px, 0.16rem, 16px);
    background: #f6f6f6;
    font-size: clamp(14px, 0.18rem, 18px);
    border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
.member .right .order-list .o-item .o-top .value {
    gap: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .value {
        display: flex;
        line-height: 1.4;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .value span {
        width: 100%;
    }
}
.member .right .order-list .o-item .o-top .value img {
    width: clamp(12px, 0.12rem, 12px);
}
.member .right .order-list .o-item .o-top .value.export-key {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .value.export-key {
        flex-direction: row;
        margin-left: auto;
        margin-right: 0;
    }
}
.member .right .order-list .o-item .o-top .v-title {
    opacity: 0;
}
.member .right .order-list .o-item .o-top .v-title.opacity {
    opacity: 1;
}
.member .right .order-list .o-item .o-top .load-more {
    cursor: pointer;
    margin-right: clamp(10px, 0.2rem, 20px);
}
.member .right .order-list .o-item .o-top .order-detail-click {
    cursor: pointer;
    gap: clamp(4px, 0.1rem, 10px);
    margin-right: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .order-detail-click {
        flex-direction: row;
    }
}
.member .right .order-list .o-item .o-top .export {
    margin-right: clamp(20px, 0.3rem, 30px);
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .export {
        margin-left: auto;
        margin-right: 0;
    }
}
.member .right .order-list .o-item .o-top .status {
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-top .status {
        width: auto;
        margin-right: 0;
        margin-left: 30px;
    }
}
.member .right .order-list .o-item .o-top .status.status1 {
    color: var(--color1);
}
.member .right .order-list .o-item .o-top .status.status2 {
    color: #007eff;
}
.member .right .order-list .o-item .o-top .status.status3 {
    color: #53a100;
}
.member .right .order-list .o-item .o-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom {
        flex-direction: column;
    }
}
.member .right .order-list .o-item .o-bottom .o-left {
    padding: clamp(10px, 0.2rem, 20px) clamp(10px, 0.16rem, 16px);
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: clamp(10px, 0.2rem, 20px);
    height: clamp(300px, 6rem, 600px);
    overflow: auto;
}
.member .right .order-list .o-item .o-bottom .o-left .lists {
    display: flex;
    font-size: clamp(12px, 0.16rem, 16px);
    gap: clamp(10px, 0.2rem, 20px);
    width: 100%;
    align-items: center;
}
.member .right .order-list .o-item .o-bottom .o-left .lists .img {
    width: clamp(60px, 0.8rem, 80px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .lists .img {
        width: 30%;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .lists .list {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .lists .list {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list {
    flex-basis: 25%;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list {
        flex-basis: 40%;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list .title {
    font-weight: 600;
}
.member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list .summary {
    margin-top: clamp(6px, 0.1rem, 0.1rem);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list .summary {
        width: max-content;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list:nth-child(1) {
    flex-basis: 40%;
    margin-left: 0;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .lists .list .l-list:nth-child(1) {
        flex-basis: 100%;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .o-total {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #eee;
    color: #333;
    font-size: clamp(14px, 0.16rem, 16px);
    gap: clamp(20px, 0.7rem, 70px);
    padding: clamp(10px, 0.2rem, 20px) 0 clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .o-total {
        flex-direction: column;
        align-items: flex-start;
    }
}
.member .right .order-list .o-item .o-bottom .o-left .o-total span {
    font-weight: 600;
}
.member .right .order-list .o-item .o-bottom .o-left .o-total .button {
    width: clamp(120px, 1.6rem, 160px);
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: clamp(12px, 0.18rem, 18px);
}
.member .right .order-list .o-item .o-bottom .o-left .o-total .button.export {
    background: #f6f6f6;
}
.member .right .order-list .o-item .o-bottom .o-left .o-total .button:hover {
    background: var(--color2);
    color: #000;
}
.member .right .order-list .o-item .o-bottom .o-left .o-messages .m-lists {
    padding: 20px 0;
}
.member .right .order-list .o-item .o-bottom .o-left .o-messages .m-lists .m-list {
    margin-bottom: clamp(20px, 0.3rem, 30px);
}
.member .right .order-list .o-item .o-bottom .o-left .o-messages .m-lists .m-list .key {
    flex-basis: clamp(150px, 1.8rem, 180px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-left .o-messages .m-lists .m-list .key {
        flex-basis: 100%;
    }
}
.member .right .order-list .o-item .o-bottom .o-right {
    padding: clamp(10px, 0.16rem, 16px);
    flex-basis: clamp(140px, 2.2rem, 220px);
    display: flex;
    align-items: flex-start;
//justify-content: center;
    flex-direction: column;
    gap: clamp(10px, 0.2rem, 20px);
    border-left: 1px solid #ddd;
    height: clamp(300px, 6rem, 600px);
    overflow: hidden;
    overflow-y:auto
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-right {
        border-left: none;
        border-top: 1px solid #ddd;
        flex-basis: auto;
    }
}
.member .right .order-list .o-item .o-bottom .o-right .button {
    width: clamp(120px, 1.6rem, 160px);
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: clamp(12px, 0.18rem, 18px);
}
.member .right .order-list .o-item .o-bottom .o-right .button.export {
    background: #f6f6f6;
}
.member .right .order-list .o-item .o-bottom .o-right .button:hover {
    background: var(--color2);
    color: #000;
}
.member .right .order-list .o-item .o-bottom .o-right .total-item {
    padding-left: clamp(10px, 0.3rem, 30px);
    font-size: clamp(14px, 0.16rem, 16px);
    display:flex;
    align-items:center;
    gap:clamp(10px,0.2rem,20px);
    justify-content: space-between;
    width:100%;
    word-break: break-word;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-right .total-item {
        display: flex;
        align-items: center;
        flex-direction: row;
        padding-left: 0;
    }
}
.member .right .order-list .o-item .o-bottom .o-right .total-item .t-value {
    font-weight: 600;
    font-size: clamp(16px, 0.18rem, 18px);
//margin-top: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-right .total-item .t-value {
        margin-top: 0;
    }
}
.member .right .order-list .o-item .o-bottom .o-messages {
    width: 100%;
}
.member .right .order-list .o-item .o-bottom .o-messages .o-top {
    border-top: 1px solid #ddd;
}
.member .right .order-list .o-item .o-bottom .o-messages .m-lists {
    font-size: clamp(12px, 0.18rem, 18px);
    padding: clamp(20px, 0.4rem, 40px) clamp(10px, 0.16rem, 16px);
}
.member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list {
    display: flex;
    gap: clamp(10px, 0.3rem, 30px);
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list {
        flex-direction: column;
        align-items: flex-start;
    }
}
.member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list:last-child {
    margin-bottom: 0;
}
.member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list .key {
    color: #999;
    text-align: right;
    flex-basis: clamp(100px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list .key {
        flex-basis: auto;
    }
}
.member .right .order-list .o-item .o-bottom .o-messages .m-lists .m-list .value {
    flex: 1;
    line-height: 1.5;
}
.member .right .order-list .o-item .o-messages {
    width: 100%;
}
.member .right .order-list .o-item .o-messages .o-top {
    border-top: 1px solid #ddd;
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-messages .o-top {
        flex-direction: row;
    }
}
.member .right .order-list .o-item .o-messages .m-lists {
    display: none;
    background: #f6f6f6;
    font-size: clamp(12px, 0.18rem, 18px);
    padding: clamp(20px, 0.2rem, 20px) clamp(10px, 0.16rem, 16px);
    border-top: 1px solid #ddd;
}
.member .right .order-list .o-item .o-messages .m-lists .m-list {
    display: flex;
    gap: clamp(10px, 0.1rem, 10px);
    margin-bottom: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-messages .m-lists .m-list {
        flex-direction: column;
        align-items: flex-start;
    }
}
.member .right .order-list .o-item .o-messages .m-lists .m-list:last-child {
    margin-bottom: 0;
}
.member .right .order-list .o-item .o-messages .m-lists .m-list .key {
    color: #999;
    text-align: right;
    flex-basis: clamp(100px, 1.4rem, 140px);
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .member .right .order-list .o-item .o-messages .m-lists .m-list .key {
        flex-basis: auto;
    }
}
.member .right .order-list .o-item .o-messages .m-lists .m-list .value {
    flex: 1;
    line-height: 1.5;
}
.member .right .my-messages .o-item .o-top {
    background: #fff;
    flex-direction: row !important;
}
.member .right .my-messages .chat-messages {
    padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.4rem, 40px);
    width: 100%;
}
.member .right .my-messages .chat-messages .message {
    display: flex;
    margin-bottom: 20px;
}
.member .right .my-messages .chat-messages .message.received {
    justify-content: flex-start;
}
.member .right .my-messages .chat-messages .message.received .avatar {
    background-color: #000;
}
.member .right .my-messages .chat-messages .message.received .bubble {
    border-top-left-radius: 0;
    background: #f6f6f6;
}
.member .right .my-messages .chat-messages .message.sent {
    justify-content: flex-end;
}
.member .right .my-messages .chat-messages .message.sent .avatar {
    background-color: var(--color1);
    order: 2;
}
.member .right .my-messages .chat-messages .message.sent .bubble {
    border-top-right-radius: 0;
    order: 1;
}
.member .right .my-messages .chat-messages .message .avatar {
    width: clamp(24px, 0.3rem, 30px);
    height: clamp(24px, 0.3rem, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 10px;
    flex-shrink: 0;
    border-radius: 2px;
    font-size: clamp(12px, 0.2rem, 20px);
}
.member .right .my-messages .chat-messages .message .text {
    position: relative;
    line-height: 1.5;
    word-wrap: break-word;
}
.member .right .my-messages .chat-messages .message .text .summary {
    padding: 14px 20px;
    font-size: clamp(12px, 0.16rem, 16px);
    max-width: 600px;
    border-radius: 8px;
    background: #fff7f1;
}
.member .right .my-messages .chat-messages .message .text .time {
    font-size: clamp(12px, 0.14rem, 14px);
    color: #999;
    margin-top: clamp(10px, 0.1rem, 10px);
    padding-left: 20px;
}
.member .right .like-list {
    margin-top: clamp(20px, 0.3rem, 30px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 0.6rem, 60px) clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
    .member .right .like-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.member .right .like-list .l-item {
    overflow: initial;
}
.member .right .like-list .l-item a {
    display: block;
    border: 1px solid #000;
}
.member .right .like-list .l-item .text {
    margin-top: clamp(10px, 0.2rem, 20px);
}
.member .right .like-list .l-item .text .title {
    font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
    .member .right .like-list .l-item .text .title {
        flex-direction: column;
        gap: clamp(10px, 0.1rem, 10px);
        align-items: flex-start;
    }
}
.member .right .like-list .l-item .text .summary {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #555555;
    line-height: 1.6;
    margin-top: clamp(10px, 0.2rem, 20px);
}
.member .right .like-list .l-item .text .cart {
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
    background: var(--color2);
    position: relative;
    cursor: pointer;
    margin-top: clamp(10px, 0.2rem, 20px);
}
.member .right .like-list .l-item .text .cart img {
    width: clamp(16px, 0.2rem, 20px);
}
.member .right .like-list .l-item .text .cart .show-text {
    position: absolute;
    background: #b2b2b2;
    font-size: clamp(12px, 0.16rem, 16px);
    padding: clamp(5px, 0.1rem, 10px);
    color: #fff;
    border-radius: 4px;
    left: 0;
    top: calc(100% + 3px);
    width: max-content;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
}
.member .right .like-list .l-item .text .cart:hover .show-text {
    opacity: 1;
    pointer-events: auto;
}
.member .right .like-list .l-item .text .like {
    width: clamp(20px, 0.35rem, 35px);
    cursor: pointer;
}
.member .right .like-list .l-item .text .like:hover {
    opacity: 0.6;
}
.member .right .information {
    padding-top: clamp(20px, 0.3rem, 30px);
    display: flex;
    justify-content: flex-start;
}
@media screen and (max-width: 768px) {
    .member .right .information {
        flex-direction: column;
    }
}
.member .right .information .avatar {
    width: clamp(60px, 1.1rem, 110px);
    height: clamp(60px, 1.1rem, 110px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor:pointer
}
@media screen and (max-width: 768px) {
    .member .right .information .avatar {
        width: 130px;
        height: 130px;
    }
}
.member .right .information .avatar input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor:pointer
}
.member .right .information .information-form {
    flex: 1;
    padding-right: clamp(80px, 1.6rem, 160px);
}
@media screen and (max-width: 1280px) {
    .member .right .information .information-form {
        padding-right: 0;
    }
}
@media screen and (max-width: 768px) {
    .member .right .information .information-form {
        margin-top: 30px;
    }
}
.member .right .information .information-form .form-item {
    display: flex;
    gap: clamp(10px, 0.3rem, 30px);
    align-items: center;
    font-size: clamp(14px, 0.18rem, 18px);
    margin-bottom: clamp(0px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .information .information-form .form-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
}
.member .right .information .information-form .form-item span {
    flex-basis: clamp(130px, 2.6rem, 260px);
    text-align: right;
    color: #999;
}
@media screen and (max-width: 768px) {
    .member .right .information .information-form .form-item span {
        flex-basis: auto;
    }
}
.member .right .information .information-form .form-item label {
    flex: 1;
    position: relative;
}
.member .right .information .information-form .form-item label input {
    width: 100%;
    height: clamp(40px, 0.5rem, 50px);
    background: #f6f6f6;
    border-radius: 4px;
    border: none;
    font-size: clamp(14px, 0.18rem, 18px);
    color: #333;
}
.member .right .information .information-form .form-item label img {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: clamp(16px, 0.2rem, 20px);
}
.member .right .information .information-form .form-item .label-2 {
    flex-basis: clamp(410px, 4.1rem, 410px);
    display: flex;
    gap: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .member .right .information .information-form .form-item .label-2 {
        flex-basis: auto;
        width: 100%;
    }
}
.member .right .information .information-form .form-item .label-2 .select2-container {
    width: 100% !important;
    color: #333;
}
.member .right .information .information-form .form-item .label-2 .select2-container .select2-selection--single {
    border: none;
    color: #333;
}
.member .right .information .information-form .form-item .label-2 .select2-selection__rendered {
    color: #333;
}
.member .right .information .information-form .form-item .label-2 .reset {
    flex-basis: calc(50% - 5px);
    display: flex;
    align-items: center;
    text-decoration: underline;
    padding-left: clamp(5px, 0.2rem, 20px);
    cursor: pointer;
}
.member .right .information .information-form .form-item .label-2 .button {
    background: #f6f6f6;
    flex-basis: calc(50% - 5px);
    height: clamp(40px, 0.5rem, 50px);
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    margin-top: clamp(10px, 0.2rem, 20px);
}
.member .right .information .information-form .form-item .label-2 .button:hover {
    background: var(--color2);
}
.member .right .member-message-title {
    padding-bottom: 0;
    height: clamp(50px, 0.7rem, 70px);
    align-items: center;
}
.member .right .member-message-title .page-menu {
    gap: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .member .right .member-message-title {
        flex-direction: column;
        align-items: flex-start;
    }
}
.member .right .member-message {
    font-size: clamp(14px, 0.18rem, 18px);
}
.member .right .member-message .message-top {
    display: flex;
    align-items: center;
    background: #eee;
    padding: 10px clamp(20px, 0.3rem, 30px);
    gap: clamp(30px, 0.5rem, 50px);
}
.member .right .member-message .message-top .all {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.3rem, 30px);
    line-height: 1;
}
.member .right .member-message .message-top .buttons {
    display: flex;
    gap: clamp(10px, 0.3rem, 30px);
}
.member .right .member-message .message-top .buttons .button {
    background: #f6f6f6;
    border-radius: 4px;
    border: 1px solid #ddd;
    height: clamp(30px, 0.4rem, 40px);
    min-width: clamp(80px, 1.2rem, 120px);
    transition: all 0.5s;
    cursor: pointer;
    padding-left:20px;
    padding-right:20px
}
.member .right .member-message .message-top .buttons .button.set {
    min-width: clamp(100px, 1.5rem, 150px);
    padding-left:20px;
    padding-right:20px
}
.member .right .member-message .message-top .buttons .button:hover {
    border-color: var(--color1);
    color: var(--color1);
}
.member .right .member-message .message-bottom .message-item {
    padding: clamp(20px, 0.2rem, 20px) clamp(20px, 0.3rem, 30px);
    border-bottom: 1px solid #eee;
    gap: clamp(10px, 0.3rem, 30px);
}
.member .right .member-message .message-bottom .message-item.active {
    color:#b5b5b5}
@media screen and (max-width: 768px) {
    .member .right .member-message .message-bottom .message-item {
        align-items: flex-start;
    }
}
.member .right .member-message .message-bottom .message-item:last-child {
    border-bottom: none;
}
.member .right .member-message .message-bottom .message-item a {
    flex: 1;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .member .right .member-message .message-bottom .message-item a {
        flex-direction: column;
        align-items: flex-start;
    }
}
.member .right .member-message .message-bottom .message-item a .message-text {
    flex: 1;
}
.member .right .member-message .message-bottom .message-item a .time {
    flex-basis: clamp(150px, 3rem, 300px);
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}
@media screen and (max-width: 768px) {
    .member .right .member-message .message-bottom .message-item a .time {
        flex-basis: auto;
        margin-top: 10px;
    }
}
.member .right .member-message input[type=checkbox] {
    border-width: 2px;
}
.member .right .member-message-detail .title {
    font-size: clamp(16px, 0.2rem, 20px);
}
.member .right .member-message-detail .time {
    font-size: clamp(12px, 0.2rem, 16px);
    color: #555;
    margin-top: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(20px, 0.3rem, 30px);
}
.member .right .member-message-detail .summary {
    font-size: clamp(12px, 0.18rem, 18px);
    color: #555;
    line-height: 1.8;
}
.member .right .settings {
    font-size: clamp(14px, 0.18rem, 18px);
}
.member .right .settings .settings-item {
    padding: clamp(20px, 0.2rem, 20px) 0;
    border-bottom: 1px solid #eee;
    gap: clamp(10px, 0.3rem, 30px);
    justify-content: space-between;
}
.member .right .settings .settings-item .title {
    font-size: clamp(14px, 0.2rem, 20px);
}
.member .right .settings .settings-item .summary {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #555;
    line-height: 1.8;
}
.member .right .settings .settings-item .setting {
    color: var(--color1);
}
.member .right .settings .settings-item .setting:hover {
    color: var(--color2);
}
/*搜索结果*/
.search-result {
    padding-bottom: clamp(60px, 1.2rem, 120px);
}
.search-result .search-result-box {
    z-index: 99;
    width: 100%;
}
.search-result .search-result-box .header-search {
    top: clamp(60px, 0.7rem, 70px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    border-radius: 0 0 10px 10px;
    padding: clamp(30px, 0.4rem, 40px) 0;
}
.search-result .search-result-box .header-search .search-container {
    width: 100%;
}
.search-result .search-result-box .header-search .search-container .search-text {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #333;
}
.search-result .search-result-box .header-search .search-container .search-text a {
    color: var(--color1);
    text-decoration: underline;
}
.search-result .search-result-box .header-search .search-container .search-agree {
    font-size: clamp(12px, 0.16rem, 16px);
    color: #000;
    margin-top: 16px;
}
.search-result .search-result-box .header-search .search-container .search-agree label {
    gap: 10px;
}
.search-result .search-result-box .header-search .search-container .search-agree label span{
    color:red
}
.search-result .search-result-box .header-search .search-container .search-agree label input {
    border-color: #999;
    color: #999;
    width: 20px;
    height: 20px;
}
.search-result .search-result-box .header-search .search-container .search-agree label input[type=checkbox]:checked {
    background: none !important;
    border-color: #999 !important;
}
.search-result .search-result-box .header-search .search-container .search-agree label input[type=checkbox]:checked::after {
    filter: brightness(0);
    opacity: 0.6;
}
.search-result .search-result-box .header-search .search-container form {
    margin-top: clamp(10px, 0.2rem, 20px);
    width: 100%;
    position: relative;
//display: grid;
//grid-template-columns: repeat(3, 1fr);
//gap: clamp(20px, 0.3rem, 30px) clamp(20px, 0.6rem, 60px);
    max-width:600px
}
@media screen and (max-width: 768px) {
    .search-result .search-result-box .header-search .search-container form {
        grid-template-columns: repeat(1, 1fr);
    }
}
.search-result .search-result-box .header-search .search-container form label {
    width: 100%;
    display:flex;
    gap:clamp(10px,0.2rem,20px)
}
.search-result .search-result-box .header-search .search-container form label input {
    padding-left: 10px;
    box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.1);
    height: clamp(40px, 0.6rem, 60px);
    border: none;
    border-radius: 4px;
    width: 100%;
    background: var(--color2);
    font-size: clamp(12px, 0.16rem, 16px);

}
.search-result .search-result-box .header-search .search-container form label input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: clamp(12px, 0.16rem, 16px);
}
.search-result .search-result-box .header-search .search-container form label button {
    width: clamp(40px, 0.6rem, 60px);
    height: clamp(40px, 0.6rem, 60px);
    background: none;
    color: #fff;
    font-size: 16px;
//position: absolute;
    right: 0;
    top: 0;
    background:#f5f5f5
}
@media screen and (max-width: 1024px) {
    .search-result .search-result-box .header-search .search-container form label button {
        width: 40px;
    }
}
.search-result .search-result-box .header-search .search-container form label button img {
    filter: contrast(0) brightness(0);
}
.search-result .search-result-box .header-search .search-container form .close {
    position: absolute;
    right: -80px;
    top: 0;
    width: 60px;
    height: clamp(40px, 0.6rem, 60px);
    color: #999;
    font-size: clamp(12px, 0.2rem, 20px);
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.5s;
}
.search-result .search-result-box .header-search .search-container form .close:hover {
    opacity: 0.6;
}
.search-result .search-result-title {

    margin-bottom: clamp(20px, 0.2rem, 20px);
    font-size: clamp(14px, 0.24rem, 24px);
    gap: clamp(10px, 0.2rem, 20px);
}
.search-result .search-result-title img {
    width: clamp(20px, 0.3rem, 30px);
}
.search-result .search-result-title .news-arrivals-box {
    margin-left:auto;
    margin-right:0;
    gap:clamp(10px,0.2rem,20px);
    cursor:pointer
}
.search-result .search-result-title .news-arrivals {
    width: clamp(100px, 2rem, 200px);
    height: clamp(40px, 0.5rem, 50px);
    font-size: clamp(12px, 0.2rem, 20px);
    background: var(--color2);
    border-radius: 4px;
    transition: all 0.5s;

}
.search-result .search-result-title .news-arrivals:hover {
    background: var(--color3);
    color: #000;
}
.search-result .product {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
}
.search-result .product .right {
    width: 100%;
}
.search-result .product .right .product-list {
    gap: clamp(20px, 0.6rem, 60px);
    margin-top: 0;
}
.search-result .filter-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 0.3rem, 30px) clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .search-result .filter-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}
.search-result .filter-list .list {
    padding: clamp(10px, 0.15rem, 15px) clamp(10px, 0.2rem, 20px);
    background: #eee;
    gap: clamp(20px, 0.3rem, 30px);
    position: relative;
}
.search-result .filter-list .list.disable {
    opacity: 0.5;
    cursor: not-allowed;
}
.search-result .filter-list .list .icon {
    border-radius: 2px;
    overflow: hidden;
    width: clamp(30px, 0.5rem, 50px);
}
.search-result .filter-list .list .text {
    flex: 1;
    font-size: clamp(12px, 0.2rem, 20px);
}
.search-result .filter-list .list .checkbox {
    margin-right: 0;
    margin-left: auto;
}
.search-result .filter-list .list .checkbox input[type=checkbox] {
    border-width: 2px;
    width: clamp(20px, 0.32rem, 32px);
    height: clamp(20px, 0.32rem, 32px);
    border-radius: 4px;
}
.search-result .filter-list .list .checkbox input[type=checkbox]:checked {
    background: var(--color2) !important;
    border-color: var(--color2) !important;
}
.search-result .filter-list .list .checkbox input[type=checkbox]:checked::after {
    filter: brightness(0);
}
.search-result .filter-button {
    width: clamp(250px, 5rem, 500px);
    height: clamp(40px, 0.64rem, 64px);
    background: var(--color2);
    font-size: clamp(14px, 0.24rem, 24px);
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}
.new-arrivals {
    padding-top: clamp(40px, 0.6rem, 60px);
}
.new-arrivals .search-result-title {
    border-bottom: none;
//margin-bottom: 0;
}
.new-arrivals .product {
    margin-top: clamp(30px, 0.6rem, 60px);
}
/*筛选*/
.mode-search {
    padding-top: clamp(40px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .mode-search .search-result-title {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 768px) {
    .mode-search .search-result-title .brand-select {
        width: 100%;
        margin-left: 0;
    }
}
.mode-search .select-label {
    margin-left: clamp(20px, 0.5rem, 50px);
    width: clamp(300px, 4.5rem, 450px);
}
.mode-search .select-label .select2-container {
    height: clamp(40px, 0.6rem, 60px);
}
.mode-search .select-label .select2-container .select2-selection--single {
    background: #f8f8f8;
    border: none;
}
.mode-search .Hide-Flag {
    font-size: clamp(12px, 0.18rem, 18px);
    color: #888;
    margin: auto 0 0 auto;
}
.mode-search .buttons {
    margin-right: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.18rem, 18px);
}
.mode-search .buttons .button {
//min-width: clamp(100px, 1.2rem, 120px);
//height: clamp(30px, 0.4rem, 40px);
//border-radius: 4px;
    cursor: pointer;
//border: 1px solid #ddd;
    transition: all 0.5s;
    padding-left:20px;
    padding-right:20px
}
.mode-search .buttons .button:hover {
//background: var(--color2);
//border-color: var(--color2);
    background: var(--color3);
    color: #000;
}
.brand-text {
    font-size: clamp(12px, 0.18rem, 18px);
    border-bottom: 1px solid #eee;
    padding-bottom: clamp(20px, 0.2rem, 20px);
    margin-bottom: clamp(20px, 0.2rem, 20px);
}
.mode-search .brand-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px 4px;
    overflow: hidden;
    max-height:200px;
    position:relative
}
@media screen and (max-width: 768px) {
    .mode-search .brand-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
.mode-search .brand-list .list {
    background: #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 0.14rem, 14px);
    height: clamp(50px, 0.6rem, 60px);
    gap:5px
}
.mode-search .brand-list .list img {
    max-width: clamp(20px, 0.3rem, 30px);
    max-height: clamp(20px, 0.3rem, 30px);
}
.mode-search .brand-list .list span {
    width:min-content
}
.mode-search .brand-list.active {
    overflow: auto;
}
.mode-search .brand-list.active-select .list {
//opacity: 0.2;
}
.mode-search .brand-list.active-select .list.active {
    opacity: 1;
    background: var(--color3);
}
.mode-search .brand-load-more {
    width: calc((100% - 4px * 10) / 10);
    height: clamp(20px, 0.2rem, 20px);
    background: #eee;
    border-radius: 4px;
    margin: 10px 0 20px auto;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .mode-search .brand-load-more {
        width: calc((100% - 4px * 3) / 3);
    }
}
.mode-search .brand-load-more:hover {
    background: var(--color2);
}
.mode-search .brand-load-more.active i {
    transform: rotate(180deg);
}
.mode-search .brand-select {
    margin-left: clamp(20px, 0.5rem, 50px);
    width: clamp(300px, 4.5rem, 450px);
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}
.mode-search .brand-select .text {
    font-size: clamp(12px, 0.18rem, 18px);
    height: clamp(40px, 0.6rem, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 0.2rem, 20px);
}
.mode-search .brand-select .text img {
    width: clamp(16px, 0.2rem, 20px);
}
.mode-search .brand-select .text.active {
    border: 1px solid #ddd;
    border-bottom: none;
}
.mode-search .brand-select .select-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: clamp(605px, 6.05rem, 605px);
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    overflow: auto;
    display: none;
    z-index: 4;
}
.mode-search .brand-select .select-box .select-search {
    position: relative;
    width: 100%;
    padding: 10px 20px 5px;
    position: sticky;
    top: 0;
    z-index: 2;
}
.mode-search .brand-select .select-box .select-search label {
    position: relative;
    display: block;
}
.mode-search .brand-select .select-box .select-search input[type=text] {
    width: 100%;
    border: 1px solid #ddd;
    height: clamp(30px, 0.4rem, 40px);
    font-size: clamp(12px, 0.18rem, 18px);
}
.mode-search .brand-select .select-box .select-search button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    background: none;
    padding: 0;
}
.mode-search .brand-select .select-box .select-search button img {
    width: clamp(16px, 0.2rem, 20px);
}
.mode-search .brand-select .select-box .options-box {
    display: flex;
    justify-content: space-between;
}
.mode-search .brand-select .select-box .options-box .options {
    flex: 1;
}
.mode-search .brand-select .select-box .options-box .letter {
    position: sticky;
    top: 10px;
    font-size: clamp(12px, 0.14rem, 14px);
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.5;
    height: fit-content;
}
.mode-search .brand-select .select-box .options-box .letter .letter-item {
    opacity: 0.5;
}
.mode-search .brand-select .select-box .options-box .letter .letter-item:hover {
    opacity: 1;
}
.mode-search .brand-select .select-box .options .option {
    font-size: clamp(12px, 0.18rem, 18px);
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.2rem, 20px);
    line-height: 1.2;
    padding-top: clamp(10px, 0.1rem, 10px);
    padding-bottom: clamp(10px, 0.1rem, 10px);
}
.mode-search .brand-select .select-box .options .option .o-text {
    flex:1;
    word-break: break-word;
}
.mode-search .brand-select .select-box .options .option input {
    border: 2px solid #999;
}
.mode-search .brand-select .select-box .options .option:hover {
    background: var(--color2);
}
.mode-search .brand-select .select-box .options .option:hover input {
    border-color: #fff;
}
.mode-search .brand-select .select-box .options .option:hover input::after {
    content: '';
    background: url('../images/icon/i49.png') no-repeat center / contain;
    color: #999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    font-size: 16px;
}
.mode-search .mode-search-filter {
    margin-bottom: clamp(40px, 0.6rem, 60px);

}
.mode-search .mode-search-filter .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 0.2rem, 20px);
    margin-bottom: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
    .mode-search .mode-search-filter .top {
        flex-direction: column;
    }
}
.mode-search .mode-search-filter .bottom .items-box .items:nth-child(n+11) {
    display:none
}

.mode-search .mode-search-filter .top .t-left {
    flex: 1;
    display: flex;
    gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
    .mode-search .mode-search-filter .top .t-left {
        flex-direction: column;
        width: 100%;
    }
}
.mode-search .mode-search-filter .top .t-left .brand-select .text.active,
.mode-search .mode-search-filter .top .t-left .brand-select .text.active-select {
    background: var(--color3);
}
.mode-search .mode-search-filter .top .t-left .brand-select .select-box {
    height: clamp(200px, 3.5rem, 350px);
}
.mode-search .mode-search-filter .top .t-right {
    flex-basis: clamp(80px, 1rem, 100px);
    background: #f8f8f8;
    height: clamp(40px, 0.6rem, 60px);
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .mode-search .mode-search-filter .top .t-right {
        flex-basis: auto;
        width: 100%;
    }
}
.mode-search .mode-search-filter .top .t-right img {
    width: clamp(20px, 0.3rem, 30px);
}
.mode-search .mode-search-filter .top .brand-select {
    margin-left: 0;
    width: auto;
    flex-basis: 100%;
}
.mode-search .mode-search-filter .top .brand-select .text {
    color: #888;
}
@media screen and (max-width: 768px) {
    .mode-search .mode-search-filter .bottom {
        overflow: auto;
    }
}
@media screen and (max-width: 768px) {
    .mode-search .mode-search-filter .bottom .items-box {
        width: 800px;
    }
}
.mode-search .mode-search-filter .bottom .items {
    display: grid;
    align-items: center;
    gap: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.2rem, 20px);
    grid-template-columns: repeat(6, 1fr);
    padding: clamp(16px, 0.24rem, 24px);
    border-bottom: 1px solid #eee;
    transition: all 0.5s;
    cursor: pointer;
}
.mode-search .mode-search-filter .bottom .items:first-child {
    background: #f8f8f8 !important;
    border-top: 2px solid #000;
    color: #888;
    border-bottom: none;
}
.mode-search .mode-search-filter .bottom .items:hover,
.mode-search .mode-search-filter .bottom .items.active {
    background: var(--color3);
}
.mode-search-result {
//margin-top: clamp(30px, 0.5rem, 50px);
}
.mode-search-result {
    border-top: 1px solid #eee;
}
.mode-search-result .items {
    padding-top: clamp(20px, 0.6rem, 60px);
    padding-bottom: clamp(20px, 0.6rem, 60px);
}
.mode-search-result .items:nth-child(even) {
    background: #eee;
}
.mode-search-result .items:last-child {
    margin-bottom: 0;
}
.mode-search-result .items .items-title {
    font-size: clamp(14px, 0.24rem, 24px);
    font-weight: 600;
    margin-bottom: clamp(20px, 0.3rem, 30px);
}
.mode-search-result .items .lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .mode-search-result .items .lists {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mode-search-result .items .lists .list {
//display: flex;
//background: #f6f6f6;
}
.mode-search-result .items .lists .list .left {
//flex-basis: 50%;
//border: 1px solid #000;
}
.mode-search-result .items .lists .list .right {
    margin-top: 20px;
    flex: 1;
//padding: clamp(20px, 0.4rem, 40px) clamp(20px, 0.6rem, 60px);
    font-size: clamp(14px, 0.18rem, 18px);
    display: flex;
    justify-content: space-between;
//flex-direction: column;
}
.mode-search-result .items .lists .list .right .model {
    margin-top: clamp(10px, 0.1rem, 10px);
}
.mode-search-result .items .lists .list .right .cart {
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
    border-radius: 4px;
    background: var(--color2);
    position: relative;
    cursor: pointer;
}
.mode-search-result .items .lists .list .right .cart img {
    width: clamp(16px, 0.2rem, 20px);
}
.mode-search-result .items .lists .list .right .cart .show-text {
    position: absolute;
    background: #b2b2b2;
    font-size: clamp(12px, 0.16rem, 16px);
    padding: clamp(5px, 0.1rem, 10px);
    color: #fff;
    border-radius: 4px;
    left: 0;
    top: calc(100% + 3px);
    width: max-content;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
}
.mode-search-result .items .lists .list .right .cart:hover .show-text {
    opacity: 1;
}
/*关于我们*/
.about {
    background: #fff;
    padding-top: clamp(20px, 0.2rem, 20px);
}
.about .about-title {
    background: #fff;
    position: sticky;
    top: clamp(60px, 0.7rem, 70px);
    border-bottom: 1px solid #eee;
    z-index: 9;
}
.about .about-title .section {
    height: clamp(50px, 0.7rem, 70px);
    align-items: center;
}
@media screen and (max-width: 768px) {
    .about .about-title .section {
        flex-direction: column;
        align-items: flex-start;
    }
}
.about .page {
    scroll-margin-top: clamp(60px, 0.7rem, 70px);
}
.about .about1 {
    padding-top: clamp(40px, 1rem, 100px);
    padding-bottom: clamp(40px, 1rem, 100px);
    position: relative;
}
.about .about1::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: #f8f8f8;
}
.about .about1 .section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: clamp(30px, 0.9rem, 90px);
}
@media screen and (max-width: 768px) {
    .about .about1 .section {
        flex-direction: column;
    }
}
.about .about1 .section .left {
    flex-basis: 49%;
}
.about .about1 .section .right {
    flex: 1;
}
.about .about1 .section .right .img {
    margin-top: clamp(30px, 0.5rem, 50px);
    margin-bottom: clamp(30px, 0.7rem, 70px);
}
.about .about2 {
    padding-top: clamp(40px, 1.2rem, 120px);
    padding-bottom: clamp(40px, 1.2rem, 120px);
}
.about .about2 .about2-box {
    margin-top: clamp(30px, 0.8rem, 80px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 1.2rem, 120px);
}
@media screen and (max-width: 768px) {
    .about .about2 .about2-box {
        grid-template-columns: repeat(1, 1fr);
    }
}
.about .about2 .about2-box .number {
    display: flex;
    align-items: center;
    color: var(--color1);
    font-size: clamp(18px, 0.24rem, 24px);
    gap: clamp(4px, 0.1rem, 10px);
}
.about .about2 .about2-box .number span {
    font-size: clamp(24px, 0.6rem, 60px);
    font-weight: 600;
}
.about .about2 .about2-box .title {
    margin-top: clamp(10px, 0.16rem, 16px);
    margin-bottom: clamp(10px, 0.16rem, 16px);
    font-size: clamp(16px, 0.2rem, 20px);
    font-weight: 600;
}
.about .about2 .about2-box .summary {
    line-height: 1.6;
    font-size: clamp(14px, 0.16rem, 16px);
    color: #555;
}
.about .about3 {
    background: #f8f8f8;
    padding-top: clamp(40px, 1.2rem, 120px);
    padding-bottom: clamp(40px, 1.2rem, 120px);
}
.about .about3 .about3-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 0.5rem, 50px);
    margin-top: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
    .about .about3 .about3-box {
        grid-template-columns: repeat(1, 1fr);
    }
}
.about .about3 .about3-box .item {
    position: relative;
    transition: all 0.5s;
}
.about .about3 .about3-box .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.about .about3 .about3-box .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.about .about3 .about3-box .item .imgBox {
    padding-bottom: 134%;
}
.about .about3 .about3-box .item .text {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: clamp(20px, 0.3rem, 30px);
}
.about .about3 .about3-box .item .text .title {
    font-size: clamp(16px, 0.2rem, 20px);
    font-weight: 600;
    color: #fff;
}
.about .about3 .about3-box .item .text .summary {
    margin-top: clamp(10px, 0.1rem, 10px);
    line-height: 1.5;
    font-size: clamp(14px, 0.16rem, 16px);
    opacity: 0.7;
    color: #fff;
}
.about .about4 {
    padding-top: clamp(40px, 1.2rem, 120px);
    padding-bottom: clamp(40px, 1.2rem, 120px);
}
.about .about4 .about4-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 0.4rem, 40px);
    margin-top: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
    .about .about4 .about4-box {
        grid-template-columns: repeat(1, 1fr);
    }
}
.about .about4 .about4-box .item {
    background: #f8f8f8;
    padding: clamp(10px, 0.1rem, 10px) clamp(10px, 0.1rem, 10px) clamp(10px, 0.1rem, 10px) 0;
    display: flex;
    align-items: center;
    transition: all 0.5s;
}
.about .about4 .about4-box .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.about .about4 .about4-box .item .icon {
    width: clamp(90px, 1.8rem, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about4 .about4-box .item .text {
    flex: 1;
}
.about .about4 .about4-box .item .text .title {
    font-size: clamp(16px, 0.3rem, 30px);
    font-weight: 600;
    margin-bottom: clamp(10px, 0.1rem, 10px);
}
.about .about4 .about4-box .item .text .summary {
    line-height: 1.5;
    font-size: clamp(14px, 0.16rem, 16px);
    opacity: 0.7;
}
.about .about5 {
    background: #f8f8f8;
    padding-top: clamp(40px, 1.2rem, 120px);
    padding-bottom: clamp(40px, 1.2rem, 120px);
}
.about .about5 .timeline {
    position: relative;
    margin-top: -60px;
}
@media screen and (max-width: 768px) {
    .about .about5 .timeline {
        display: none;
    }
}
.about .about5 .timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - clamp(60px, 0.8rem, 80px));
    height: 1px;
    background: #999;
    z-index: 0;
}
.about .about5 .timeline .swiper-button-prev,
.about .about5 .timeline .swiper-button-next {
    background: none;
    border: 2px solid #c4c9cd;
    color: #c4c9cd;
    width: clamp(30px, 0.4rem, 40px);
    height: clamp(30px, 0.4rem, 40px);
}
.about .about5 .timeline .swiper-button-prev:hover,
.about .about5 .timeline .swiper-button-next:hover {
    border-color: var(--color1);
    background: var(--color1);
    color: #fff;
}
.about .about5 .timeline .swiper-button-prev {
    left: 0;
}
.about .about5 .timeline .swiper-button-next {
    right: 0;
}
.about .about5 .timeline .swiper {
    width: calc(100% - clamp(60px, 0.8rem, 80px));
    margin: auto;
    padding: 120px 0;
}
.about .about5 .timeline .swiper .swiper-slide .point {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(20px, 0.3rem, 30px);
    margin: auto;
    border-radius: 50%;
    border: 1px solid transparent;
    position: relative;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}
.about .about5 .timeline .swiper .swiper-slide .point::before {
    content: '';
    width: clamp(14px, 0.2rem, 20px);
    height: clamp(14px, 0.2rem, 20px);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #f8f8f8;
    border: 1px solid #ddd;
}
.about .about5 .timeline .swiper .swiper-slide .point::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #999;
}
.about .about5 .timeline .swiper .swiper-slide .year {
    position: absolute;
    top: clamp(0.15rem, 0.15rem, 15px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding-top: clamp(60px, 0.6rem, 60px);
    font-size: clamp(12px, 0.18rem, 18px);
    font-weight: 600;
    color: #999;
    background: url('../images/img107-1.png') no-repeat center top / 0.49rem;
}
.about .about5 .timeline .swiper .swiper-slide .year::after {
    content: '';
    position: absolute;
    top: -0.5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color1);
    width: clamp(100px, 1.9rem, 190px);
    height: 1px;
    opacity: 0;
}
@media screen and (max-width: 768px) {
    .about .about5 .timeline .swiper .swiper-slide .year::after {
        display: none;
    }
}
.about .about5 .timeline .swiper .swiper-slide.swiper-slide-thumb-active .point {
    background: #f8f8f8;
    border: 1px dashed var(--color1);
}
.about .about5 .timeline .swiper .swiper-slide.swiper-slide-thumb-active .point::before,
.about .about5 .timeline .swiper .swiper-slide.swiper-slide-thumb-active .point::after {
    background: var(--color1);
}
.about .about5 .timeline .swiper .swiper-slide.swiper-slide-thumb-active .year {
    background: url('../images/img107.png') no-repeat center top / 0.49rem;
    color: var(--color1);
    font-size: clamp(16px, 0.3rem, 30px);
    padding-top: clamp(80px, 0.8rem, 80px);
}
.about .about5 .timeline .swiper .swiper-slide.swiper-slide-thumb-active .year::after {
    opacity: 1;
}
.about .about5 .items {
    width: calc(50% - 90px);
    margin: auto;
    overflow: initial;
}
@media screen and (max-width: 768px) {
    .about .about5 .items {
        width: 90%;
        margin-top: 40px;
    }
}
.about .about5 .items .swiper {
    overflow: initial;
}
.about .about5 .items .swiper .swiper-wrapper {
    align-items: center;
}
.about .about5 .items .item {
    transition: all 0.5s;
}
.about .about5 .items .item.swiper-slide-prev {
    padding-left: 44.5%;
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item.swiper-slide-prev {
        padding-left: 0;
    }
}
.about .about5 .items .item.swiper-slide-next {
    padding-right: 44.5%;
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item.swiper-slide-next {
        padding-right: 0;
    }
}
.about .about5 .items .item .box {
    padding: clamp(20px, 0.3rem, 30px);
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item .box {
        flex-direction: column;
    }
}
.about .about5 .items .item .img {
    flex-basis: 0;
    height: 0;
    transition: all 0.5s;
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item .img {
        flex-basis: 100%;
    }
}
.about .about5 .items .item .img .imgBox {
    padding-bottom: 56%;
    width: 0;
    transition: all 0.5s;
}
.about .about5 .items .item .text {
    transition: all 0.5s;
    flex: 1;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item .text {
        margin-top: 20px;
    }
}
.about .about5 .items .item .text .title {
    font-size: clamp(16px, 0.36rem, 36px);
    color: #999;
    transition: all 0.5s;
}
.about .about5 .items .item .text .line {
    margin-top: clamp(10px, 0.1rem, 10px);
    width: 24px;
    height: 3px;
    background: #dddddd;
}
.about .about5 .items .item .text .summary {
    margin-top: clamp(10px, 0.16rem, 16px);
    font-size: clamp(14px, 0.16rem, 16px);
    color: #999;
    line-height: 1.7;
}
.about .about5 .items .item.active,
.about .about5 .items .item.swiper-slide-active {
    width: calc(100% - 0px) !important;
    padding-right: 0;
}
.about .about5 .items .item.active .img,
.about .about5 .items .item.swiper-slide-active .img {
    height: auto;
    flex-basis: clamp(140px, 2.8rem, 280px);
}
.about .about5 .items .item.active .img .imgBox,
.about .about5 .items .item.swiper-slide-active .img .imgBox {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .about .about5 .items .item.active .text,
    .about .about5 .items .item.swiper-slide-active .text {
        padding-left: 0;
    }
}
.about .about5 .items .item.active .text .title,
.about .about5 .items .item.swiper-slide-active .text .title {
    color: var(--color1);
}
.about .about5 .items .item.active .text .line,
.about .about5 .items .item.swiper-slide-active .text .line {
    background: var(--color1);
}
.about .about5 .items .item.active .text .summary,
.about .about5 .items .item.swiper-slide-active .text .summary {
    color: #555;
}
.about .about6 {
    padding-top: clamp(40px, 1.2rem, 120px);
    padding-bottom: clamp(40px, 0.7rem, 70px);
}
.about .about6 .swiper {
    margin-top: clamp(20px, 0.5rem, 50px);
}
.about .about6 .swiper .swiper-slide {
    border-radius: 12px;
    border: 1px solid #d2d2d2;
    overflow: hidden;
    cursor: pointer;
}
.about .about6 .swiper .swiper-slide .text {
    display: none;
}
.about .about6 .swiper .swiper-pagination {
    position: initial;
    margin-top: clamp(20px, 0.3rem, 30px);
}
.about .about6 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(3px, 0.04rem, 4px);
    border-radius: 2px;
    background: #ddd;
    transition: all 0.5s;
    opacity: 1;
    margin-left: 8px !important;
    margin-right: 8px !important;
}
.about .about6 .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: clamp(30px, 0.4rem, 40px);
    border-radius: 3px;
    height: clamp(4px, 0.06rem, 6px);
    opacity: 1;
    background: var(--color1);
}
.map-popup {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.map-popup .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.map-popup .map-close {
    position: absolute;
    top: clamp(20px, 0.2rem, 20px);
    right: clamp(20px, 0.2rem, 20px);
    width: clamp(16px, 0.2rem, 20px);
    height: clamp(16px, 0.2rem, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0.5;
    cursor: pointer;
}
.map-popup .map-content {
    background: #fff;
    border-radius: 6px;
    max-height: 70vh;
    height: 100vh;
    display: flex;
    padding: clamp(20px, 0.5rem, 50px);
    padding-right: clamp(20px, 0.8rem, 80px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 1200px;
    gap: clamp(20px, 0.9rem, 90px);
}
@media screen and (max-width: 768px) {
    .map-popup .map-content {
        flex-wrap: wrap;
        overflow: auto;
    }
}
.map-popup .map-content .left {
    flex: 1;
}
@media screen and (max-width: 768px) {
    .map-popup .map-content .left {
        width: 100%;
    }
}
.map-popup .map-content .left .title {
    font-size: clamp(16px, 0.24rem, 24px);
    color: var(--color1);
}
.map-popup .map-content .left .line {
    width: 60px;
    height: 3px;
    background: var(--color1);
    margin: clamp(10px, 0.2rem, 20px) 0;
}
.map-popup .map-content .left .summary {
    font-size: clamp(14px, 0.18rem, 18px);
    line-height: 1.7;
    color: #555;
    overflow: auto;
    max-height: 42vh;
    padding-right: 10px;
    white-space: pre-line;
}
@media screen and (max-width: 768px) {
    .map-popup .map-content .left .summary {
        max-height: initial;
        padding-right: 0;
    }
}
.map-popup .map-content .right {
    flex-basis: clamp(200px, 3.5rem, 350px);
}
@media screen and (max-width: 768px) {
    .map-popup .map-content .right {
        width: 100%;
        flex-basis: auto;
    }
}
.map-popup .map-content .right .imgBox {
    padding-bottom: 135%;
}
/*网格布局*/
.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;
    }
}

.download-info {
    width: clamp(800px, 12.8rem, 1280px);
    background: #fff;
    border-radius: 20px;
    height: 70vh;
    position: relative;
    overflow: auto;
}
@media screen and (max-width: 768px) {
    .download-info {
        width: 90%;
        margin: auto;
    }
}
.download-info .download-info-content {
    padding: clamp(10px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content {
        padding-top: 50px;
    }
}
.download-info .download-info-content .download-top {
    margin-bottom: clamp(10px, 0.1rem, 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(12px, 0.18rem, 18px);
}
.download-info .download-info-content .download-top .download-click,
.download-info .download-info-content .download-top .download-time {
    background: #eee;
    padding: clamp(8px, 0.15rem, 15px) clamp(10px, 0.36rem, 36px);
}
.download-info .download-info-content .cart-list-content .items {
    background: #eee;
    padding: clamp(10px, 0.3rem, 30px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(12px, 0.18rem, 18px);
    line-height: 1;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items {
        width: 100%;
        flex-wrap: wrap;
    }
}
.download-info .download-info-content .cart-list-content .items.items-top {
    margin-bottom: clamp(10px, 0.1rem, 10px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items.items-top .item {
        display: none;
    }
    .download-info .download-info-content .cart-list-content .items.items-top .item:nth-child(2) {
        display: flex;
    }
}
.download-info .download-info-content .cart-list-content .items.items-top .item:nth-child(1) {
    flex-basis: 0;
}
.download-info .download-info-content .cart-list-content .items .item {
    line-height: 1;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(1) {
    width: clamp(70px, 1.2rem, 120px);
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(1) .img {
    width: clamp(50px, 1rem, 100px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(1) .img {
        width: 20vw;
        margin-right: 20px;
    }
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(2) {
    flex: 1;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(2) .title {
    font-size: clamp(14px, 0.18rem, 18px);
    font-weight: 600;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(2) .summary {
    margin-top: clamp(10px, 0.2rem, 20px);
    font-size: clamp(12px, 0.16rem, 16px);
    line-height: 1.4;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(3) {
    flex-basis: clamp(110px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(3) {
        margin: 10px 0 10px auto;
        flex-basis: 100%;
        width: 100%;
    }
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity {
        justify-content: flex-end;
    }
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity input {
    width: 110px;
    text-align: center;
    outline: none;
    font-size: clamp(12px, 0.2rem, 20px);
    line-height: 1;
    height: clamp(30px, 0.5rem, 50px);
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity input {
        flex: 1;
    }
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity .quantity-button {
    width: clamp(30px, 0.5rem, 50px);
    height: clamp(30px, 0.5rem, 50px);
    background: #f6f6f6;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(3) .quantity .quantity-button:hover {
    background: var(--color1);
    color: #fff;
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(4) {
    flex-basis: clamp(110px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(4) {
        flex-basis: 33%;
    }
}
.download-info .download-info-content .cart-list-content .items .item:nth-child(5) {
    flex-basis: clamp(110px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
    .download-info .download-info-content .cart-list-content .items .item:nth-child(5) {
        flex-basis: 33%;
    }
}
.notyf__toast {
    max-width: 400px !important;
    font-size: 20px;    /* 字体大小 */
    padding: 20px !important;
    margin-top:clamp(20px, 1rem, 100px);
}
.notyf__ripple {
    border-radius:0 !important;
}
.notyf__ripple {
    width: 1000px !important;
}
.product-detail .detail-box .lists .items3-tabs {
    margin-bottom: clamp(10px, 0.2rem, 20px);
    gap: clamp(10px, 0.2rem, 20px);
//overflow: auto;
    display: grid;
    grid-template-columns: repeat(6,1fr);
}
.product-detail .detail-box .lists .items3-tabs .swiper-button-prev,
.product-detail .detail-box .lists .items3-tabs .swiper-button-next {
    width: clamp(20px, 0.3rem, 30px);
    height: clamp(20px, 0.3rem, 30px);
}
.product-detail .detail-box .lists .items3-tabs .swiper-button-prev {
    left: 10px;
}
.product-detail .detail-box .lists .items3-tabs .swiper-button-next {
    right: 10px;
}
.product-detail .detail-box .lists .items3-tabs .swiper-button-prev.swiper-button-disabled,
.product-detail .detail-box .lists .items3-tabs .swiper-button-next.swiper-button-disabled {
    opacity: 0 !important;
}
.product-detail .detail-box .lists .items3-tabs .tab-item {

    padding: clamp(10px, 0.1rem, 10px) clamp(10px, 0.2rem, 20px);
    min-width: clamp(80px, 1.5rem, 150px);
    text-align: center;
    font-size: clamp(14px, 0.18rem, 18px);
    cursor: pointer;
    flex-shrink: 0;
    border:1px solid #ddd;
    border-radius:4px

}
.product-detail .detail-box .lists .items3-tabs .tab-item.active {
//background: var(--color1);
    color: var(--color1);
    border-color:var(--color1);
}
.product-detail .detail-box .lists .items3-change .change-item {
    display: none;
}
.product-detail .detail-box .lists .items3-change .change-item.active {
    display: block;
}
.sort-buttons {
    margin-bottom: clamp(20px, 0.2rem, 20px);
    gap: 10px;
}
.sort-buttons .sort-btn {
    padding: 8px 16px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(14px, 0.18rem, 18px);
}
.sort-buttons .sort-btn:hover {
    background-color: #e0e0e0;
}
.sort-buttons .sort-btn:active {
    background-color: #d0d0d0;
}
.category-hover {
    cursor: pointer;
    position: relative;
}
.category-hover .category-hover-show {
    position: absolute;
    padding: clamp(10px, 0.2rem, 20px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    bottom: 30px;
    right: 0;
    width: max-content;
    line-height: 1.5;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .product-detail .detail-box .lists .items3-tabs {
        grid-template-columns: repeat(3,1fr);
    }

    .category-hover .category-hover-show {
        left: 0;
        right: auto;
    }
}
.category-hover .category-hover-show .category-hover-item {
    display: flex;
    align-items: center;
    font-size: clamp(14px, 0.18rem, 18px);
}
.category-hover:hover .category-hover-show {
    opacity: 1;
    pointer-events: auto;
}
.mode-search-result .items:nth-child(even) {
    background: #eee;
}
.checkOut {
    padding: 20px 24px;
    background-color: var(--color1);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    width: clamp(100px, 1.8rem, 180px);
//margin: auto;
    font-size: clamp(14px, 0.18rem, 18px);
    display: block;
}
.checkOut:hover {
    color: #fff;
}
.mode-search-result .items .lists .list .right .message {
    color: #fff;
}
.page-show-popup .page-show-container .messages-box {
    background: #fff;
    border-radius: 20px;
    top: 50%;
    position: relative;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
}
.page-show-popup .page-show-container .messages-box .contact {
    padding: 0;
}
.page-show-popup .page-show-container .messages-box .contact .contact2 {
    margin: 0;
}
.mode-search .mode-search-filter .bottom .items .item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.1rem, 10px);
    line-height: 1;
}
.mode-search .mode-search-filter .bottom .items .item input {
    pointer-events: none;
}
.mode-search .brand-list-list-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 20;
    pointer-events: none;
}
.mode-search .brand-list-list-fade img {
    max-width: clamp(30px, 0.4rem, 40px);
    max-height: clamp(30px, 0.4rem, 40px);
    object-fit: contain;
}
.mode-search .brand-list-list-fade span {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
}
.sort {
    display:flex;
    gap:clamp(10px,0.6rem,60px);
    justify-content: flex-end;
    margin-bottom:0.2rem;
    font-size:clamp(12px,0.18rem,18px);
}
.sort a{color:#000;position:relative;display:block;padding-right:1.125em;line-height:1.25em;border-bottom:1px solid transparent;}
.sort a:before,.sort a:after{width:0.25em;height:0.875em;content:'';display:block;position:absolute;top:50%;transform:translateY(-50%);background:no-repeat center center;background-size:contain;}
.sort a:before{background-image:url(../images/desc_01.svg);right:0.4375em;}
.sort a:after{background-image:url(../images/asc_01.svg);right:0;}
.sort .desc,.sort .asc{color:#ff6600;border-bottom-color:#ff6600;}
.sort .desc:before{background-image:url(../images/desc_02.svg);}
.sort .asc:after{background-image:url(../images/asc_02.svg);}


.view-all {
    width: clamp(100px, 2rem, 200px);
    height: clamp(40px, 0.5rem, 50px);
    font-size: clamp(12px, 0.2rem, 20px);
    background: var(--color2);
    border-radius: 4px;
    transition: all 0.5s;
    display:none;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    cursor: pointer
}
.view-all:hover {
    background: var(--color3);
    color: #000;
}
.search-result-title-box {
    max-height:clamp(100px,3rem,300px);
    overflow:auto
}

.no-result {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: clamp(16px, 0.2rem, 20px);
    margin: auto;
}
.no-result  img {
    width: clamp(60px, 1.28rem, 128px);
    margin-bottom: clamp(20px, 0.2rem, 20px);
}

.tip {
    font-size: clamp(16px, 0.24rem, 24px);
    margin-bottom: clamp(20px, 0.2rem, 20px);

}
.tip span {
    color: var(--color1);
}



.search-result-select-box {
    max-width: 1000px;
    margin-bottom: clamp(20px, 0.2rem, 20px);
}
.firight {
    position: fixed;
    right: -3px;
    bottom: 10%;
    z-index: 9;
}
.firight a {
    width: clamp(30px,0.4rem,40px);
    background-color: var(--color1);
    height: clamp(30px,0.4rem,40px);
    margin-bottom: 1px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color:#fff
}

.toSrceen{
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    right: 65px;
    top: 28px;
  cursor: pointer;}

.screen-box {
 position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
display:none
}
div.zoomDiv {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    /*width: 500px !important;*/
    /*height: 600px !important;*/
    background: #ffffff;
    border: 1px solid #CCCCCC;
    display: none;
    text-align: center;
    overflow: hidden;
}
div.zoomDiv img {
    max-width: inherit;
}
div.zoomMask {
    position: absolute;
    background: url("../images/mask.png") repeat scroll 0 0 transparent;
    cursor: move;
    z-index: 1;
    /*width: 200px !important;*/
    /*height: 200px !important;*/
}
/*# sourceMappingURL=style.css.map */