@font-face {
    font-family: 'Poppins b';
    src: url(../fonts/Poppins_SemiBold.otf);
}

@font-face {
    font-family: 'Poppins m';
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
    font-size: 62.5%;
}

*, *::after, *::before {
    box-sizing: border-box;
}

img {
    object-fit: cover;
    vertical-align: middle;
}

img:not(.none) {
    max-width: 100%;
    max-height: 100%;
}

textarea {
    resize: none;
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.bezier .swiper-wrapper, .div_bezier {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1) !important;
}

table {
    border-collapse: collapse;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
}

[data-lenis-prevent] {
    padding: 0 20px 0 0;
}

[data-lenis-prevent]::-webkit-scrollbar {
    width: 4px;
    display: block;
}

[data-lenis-prevent]::-webkit-scrollbar-thumb {
    background: #666;
}

[data-lenis-prevent]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

._scroll_y {
    position: fixed;
    top: 0;
    right: 3px;
    width: 6px;
    height: 100vh;
    z-index: 9999;
    border-radius: 10px;
}

._scroll_y div {
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: black;
    opacity: 0;
    position: relative;
    transition: opacity 0.3s ease;
    cursor: grab;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.4rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

[data-wheel]::-webkit-scrollbar {
    width: 7px;
}

[data-wheel]::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.4rem;
}

[data-wheel]::-webkit-scrollbar-track {
    background-color: transparent;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

section {
    overflow: hidden;
}

section.unset {
    overflow: unset;
}

.common_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .6s ease;
    background: rgba(255,255,255,0.5);
}

.header .header_l {
    display: flex;
    align-items: center;
}

.header .header_l .logo {
    display: block;
    width: 150px;
    margin-right: 49px;
}

.header .header_l .nav {
    display: flex;
    align-items: center;
}

.header .header_l .nav li {
    margin: 0 20px;
}

.header .header_l .nav li a {
    font-family: 'Poppins b';
    font-weight: 500;
    font-size: 18px;
    color: #111111;
    position: relative;
}

.header .header_l .nav li a:after {
    content: "";
    width: 25px;
    height: 2px;
    background: #111111;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%) scaleX(0);
    transition: 0.6s;
}

.header .header_l .nav li a:hover:after, .header .header_l .nav li a.on:after {
    transform: translateX(-50%) scaleX(1);
}

.header .header_r {
    display: flex;
    align-items: center;
}

.header .header_r form {
    display: flex;
    align-items: center;
    width: 400px;
    height: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    margin-right: 65px;
    transition: 0.6s;
}
.header .header_r .use_box .item img {
    filter: invert(1);
}
.header .header_r form input {
    width: 380px;
    border: none;
    background: unset;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    transition: 0.6s;
}

.header .header_r form input::placeholder {
    color: #111111;
}

.header .header_r form button {
    display: block;
    width: 19px;
    cursor: pointer;
    background: unset;
}

.header .header_r form button img {
    transition: 0.6s;
    filter: invert(1);
}

.header .header_r .avatar {
    margin-right: 45px;
    position: relative;
}

.header .header_r .avatar .logOut {
    position: absolute;
    top: 0;
    padding: 50px 0 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.header .header_r .avatar:hover .logOut {
    opacity: 1;
    pointer-events: auto;
}

.header .header_r .avatar .logOut .logOut_box {
    display: block;
    padding: 10px 40px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.header .header_r .avatar > a {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header .header_r .avatar > a .icon {
    width: 18px;
}

.header .header_r .avatar > a .icon img {
    transition: 0.6s;
}

.header .header_r .avatar > a p {
    width: 120px;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.6s;
}

.header .header_r .login {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin-right: 29px;
    transition: 0.6s;
}

.header .header_r .use_box {
    display: flex;
    align-items: center;
}

.header .header_r .use_box .item {
    width: 22px;
    position: relative;
    margin-left: 28px;
}

.header .header_r .use_box .item img {
    transition: 0.6s;
}

.header .header_r .use_box .item .num_super {
    width: 16px;
    height: 16px;
    background: #1C69D4;
    border-radius: 50%;
    font-weight: 400;
    font-size: 10px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -9px;
    top: -6px;
    transition: 0.6s;
}

.header .header_r .use_box .item.have_message:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF4444;
    position: absolute;
    right: -3px;
    top: 0px;
}

.header.on, .header.header_on {
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.on .header_l .logo, .header.header_on .header_l .logo {
    filter: grayscale(0) brightness(1);
}

.header.on .header_l .nav li a, .header.header_on .header_l .nav li a {
    color: #111111;
}

.header.on .header_l .nav li a:after, .header.header_on .header_l .nav li a:after {
    background: #111111;
}

.header.on .header_r form, .header.header_on .header_r form {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.header.on .header_r form input, .header.header_on .header_r form input {
    color: #111111;
}

.header.on .header_r form input::placeholder, .header.header_on .header_r form input::placeholder {
    color: #333333;
}

.header.on .header_r form button img, .header.header_on .header_r form button img {
    filter: invert(1);
}

.header.on .header_r .avatar a .icon img, .header.header_on .header_r .avatar a .icon img {
    filter: invert(1);
}

.header.on .header_r .avatar a p, .header.header_on .header_r .avatar a p {
    color: #111111;
}

.header.on .header_r .login, .header.header_on .header_r .login {
    color: #111;
}

.header.on .header_r .use_box .item img, .header.header_on .header_r .use_box .item img {
    filter: invert(1);
}

.header.on .header_r .use_box .item .num_super, .header.header_on .header_r .use_box .item .num_super {
    background: #1C69D4;
    color: #fff;
}

.header.on .header_r .use_box .item.have_message:after, .header.header_on .header_r .use_box .item.have_message:after {
    background: #EF4444;
}

.header.on .underLine:after, .header.header_on .underLine:after {
    background: #111111;
}

.header.header_on1 .header_l .logo {
    filter: grayscale(0) brightness(1);
}

.header.header_on1 .header_l .nav li a {
    color: #111111;
}

.header.header_on1 .header_l .nav li a:after {
    background: #111111;
}

.header.header_on1 .header_r form {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.header.header_on1 .header_r form input {
    color: #111111;
}

.header.header_on1 .header_r form input::placeholder {
    color: #333333;
}

.header.header_on1 .header_r form button img {
    filter: invert(1);
}

.header.header_on1 .header_r .avatar a .icon img {
    filter: invert(1);
}

.header.header_on1 .header_r .avatar a p {
    color: #111111;
}

.header.header_on1 .header_r .login {
    color: #111;
}

.header.header_on1 .header_r .use_box .item img {
    filter: invert(1);
}

.header.header_on1 .header_r .use_box .item .num_super {
    background: #1C69D4;
    color: #fff;
}

.header.header_on1 .header_r .use_box .item.have_message:after {
    background: #EF4444;
}

.header.header_on {
    border-bottom: 1px solid #DBDFE1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.underLine {
    position: relative;
}

.underLine:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    left: 0%;
    bottom: -4px;
    transform: scaleX(0);
    transition: 0.6s;
}

.underLine:hover:after {
    transform: scaleX(1);
}

.footer {
    background: #FAFAFA;
}

.footer .footer_top {
    padding: 77px 0 51px;
}

.footer .footer_top .wrap {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer .footer_top .wrap .footer_top_l .footer_top_contact_box {
    margin: 0 0 50px;
}

.footer .footer_top .wrap .footer_top_l .footer_top_contact_box h5 {
    font-family: 'Poppins b';
    font-size: 20px;
    color: #111111;
    margin: 0 0 17px;
}

.footer .footer_top .wrap .footer_top_l .footer_top_contact_box p {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 30px;
}

.footer .footer_top .wrap .footer_top_l .footer_top_share_box h5 {
    font-weight: 400;
    font-size: 20px;
    color: #111111;
    margin: 0 0 22px;
}

.footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex {
    display: flex;
    align-items: center;
}

.footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    width: 18px;
    height: 18px;
    filter: brightness(0);
    transition: 0.6s;
}

.footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex a:hover {
    filter: brightness(1);
}

.footer .footer_top .wrap .footer_top_r {
    display: flex;
}

.footer .footer_top .wrap .footer_top_r .second_link {
    margin-left: 150px;
    margin-top: -10px;
}

.footer .footer_top .wrap .footer_top_r .second_link a {
    display: block;
    font-family: 'Poppins m';
    font-weight: 500;
    font-size: 20px;
    color: #111111;
    line-height: 50px;
    transition: 0.6s;
}

.footer .footer_top .wrap .footer_top_r .second_link a:hover {
    color: #1C69D4;
}

.footer .footer_top .wrap .footer_top_r .thrid_link {
    display: flex;
}

.footer .footer_top .wrap .footer_top_r .thrid_link ul {
    margin-left: 100px;
}

.footer .footer_top .wrap .footer_top_r .thrid_link ul li a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 30px;
}

.footer .footer_top .wrap .footer_top_r .thrid_link ul li a:hover {
    color: #1C69D4;
}

.footer .footer_top .wrap .footer_top_r .thrid_link ul li:nth-child(1) {
    margin-bottom: 10px;
}

.footer .footer_top .wrap .footer_top_r .thrid_link ul li:nth-child(1) a {
    font-size: 20px;
}

.footer .footer_bottom {
    border-top: 1px solid #DBDFE1;
    padding: 37px 0 35px;
}

.footer .footer_bottom .wrap {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footer_bottom .wrap p {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.footer .footer_bottom .wrap a {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    transition: 0.6s;
    text-transform: uppercase;
}

.footer .footer_bottom .wrap a:hover {
    color: #1C69D4;
}

.footer.footer1 {
    background: unset;
}

.footer.footer1 .footer_top {
    display: none !important;
}

.footer.footer1 .footer_bottom {
    padding: 20px 0;
    width: 1440px;
    margin: 0 auto;
}

.banner {
    width: 100%;
}

.banner .img {
    width: 100%;
}

.banner .img img {
    display: block;
    width: 100%;
}

.pro_content {
    display: flex;
    flex-wrap: wrap;
}

.pro_content .pro_item {
    width: 340px;
    margin-bottom: 39px;
}

.pro_content .pro_item .img_box {
    width: 100%;
    height: 223px;
    overflow: hidden;
    position: relative;
    margin: 0 0 11px;
}

.pro_content .pro_item .img_box .stock {
    width: 75px;
    height: 23px;
    background: #FEE2E2;
    border-radius: 4px 4px 4px 4px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #EF4444;
    position: absolute;
    top: 24px;
    left: 22px;
}

.pro_content .pro_item .img_box .function_box {
    position: absolute;
    top: 12px;
    right: 12px;
}

.pro_content .pro_item .img_box .function_box .function_box_item {
    cursor: pointer;
}

.pro_content .pro_item .img_box .function_box .function_box_item img {
    display: block;
    width: 17px;
    transition: 0.6s;
    filter: brightness(0);
}

.pro_content .pro_item .img_box .function_box .function_box_item:hover img {
    filter: brightness(1);
}

.pro_content .pro_item .img_box .function_box .function_box_item.sc {
    width: 26px;
    height: 30px;
    background: #FFFFFF;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0% 100%);
    padding: 3px 0 0;
    margin: 0 2px 92px auto;
}

.pro_content .pro_item .img_box .function_box .function_box_item.sc img {
    display: block;
    width: 17px;
    margin: 0 auto;
}

.pro_content .pro_item .img_box .function_box .function_box_item.sc.on {
    background: #1C69D4;
}

.pro_content .pro_item .img_box .function_box .function_box_item.sc.on img {
    filter: brightness(0) invert(1) !important;
}

.pro_content .pro_item .img_box .function_box .function_box_item.car {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 5px auto;
}

.pro_content .pro_item .img_box .function_box .function_box_item.vs {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 5px;
    position: relative;
    transition: 0.6s;
}

.pro_content .pro_item .img_box .function_box .function_box_item.vs p {
    font-weight: 400;
    font-size: 14px;
    color: #1C69D4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    transition: 0.6s;
}

.pro_content .pro_item .img_box .function_box .function_box_item.vs:hover {
    width: 100px;
}

.pro_content .pro_item .img_box .function_box .function_box_item.vs:hover img {
    opacity: 0;
}

.pro_content .pro_item .img_box .function_box .function_box_item.vs:hover p {
    opacity: 1;
    transition-delay: 0.2s;
}

.pro_content .pro_item .img_box .img {
    display: block;
    width: 100%;
    height: 100%;
}

.pro_content .pro_item .img_box .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.pro_content .pro_item .img_box .img:hover img {
    transform: scale(1.1);
}

.pro_content .pro_item .item_title {
    font-family: 'Poppins b';
    font-weight: 600;
    font-size: 18px;
    color: #111111;
    line-height: 30px;
    transition: 0.6s;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: block;
    margin-bottom: 7px;
}

.pro_content .pro_item .item_title:hover {
    color: #1C69D4;
}

.pro_content .pro_item .item_text {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 20px;
}

.pro_content .pro_item .item_price {
    display: flex;
    align-items: center;
}

.pro_content .pro_item .item_price .now_price {
    font-family: 'Poppins m';
    font-weight: 500;
    font-size: 24px;
    color: #EF4444;
}

.pro_content .pro_item .item_price .old_price {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-left: 11px;
    text-decoration: line-through;
}

.pro_content .pro_item:not(:nth-child(4n)) {
    margin-right: 26px;
}

.aside {
    position: fixed;
    bottom: 30vh;
    right: 15px;
    z-index: 999;
}

.aside .item {
    width: 60px;
    height: 60px;
    background: #FAFAFA;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
}

.aside .item:nth-child(1) .icon {
    width: 20%;
}

.aside .item:nth-child(1) .icon img {
    width: 100%;
}

.aside .item:nth-child(2) .icon {
    width: 45%;
}

.aside .item:nth-child(2) .icon img {
    width: 100%;
}

.aside .item .icon {
    max-width: 50%;
    max-height: 70%;
    transition: 0.6s;
}

.aside .item .icon img {
    object-fit: contain;
    filter: brightness(0);
}

.aside .item .zhibo {
    position: absolute;
    right: 0;
    bottom: 2px;
    padding: 0 40px 0 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.aside .item .zhibo .zhibo_box {
    width: 160px;
}

.aside .item .zhibo .close {
    font-size: 16px;
    color: #FFFFFF;
    position: absolute;
    top: 7px;
    right: 54px;
}

.aside .item .zhibo .close:hover {
    color: #1C69D4;
}

.aside .item .zhibo.on {
    opacity: 1;
    pointer-events: auto;
}

.aside .item:hover {
    background: #1C69D4;
}

.aside .item:hover .icon {
    filter: invert(1);
}

.common_bottom {
    padding: 60px 0;
}

.common_bottom .wrap {
    width: 1440px;
    margin: 0 auto;
}

.common_bottom .wrap .flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 110px;
    background: #FAFAFA;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 60px;
}

.common_bottom .wrap .flex .title {
    width: 431px;
    height: 100%;
    background: rgba(28, 105, 212, 0.6);
    display: flex;
    align-items: center;
    padding: 0 0 0 35px;
    clip-path: polygon(0 0, 100% 0, 390px 100%, 0 100%);
    position: relative;
    margin: 0 28px 0 0;
}

.common_bottom .wrap .flex .title:after {
    content: "";
    width: 413px;
    height: 100%;
    background: #1C69D4;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 372px 100%, 0 100%);
}

.common_bottom .wrap .flex .title p {
    font-family: 'Poppins b';
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
    position: relative;
    z-index: 3;
}

.common_bottom .wrap .flex .item {
    display: flex;
    align-items: center;
}

.common_bottom .wrap .flex .item:not(:nth-last-child(1)) {
    margin-right: 60px;
}

.common_bottom .wrap .flex .item .icon {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
}

.common_bottom .wrap .flex .item .icon img {
    object-fit: contain;
}

.common_bottom .wrap .flex .item .item_text h5 {
    font-family: 'Poppins b';
    font-weight: 600;
    font-size: 16px;
    color: #111111;
    line-height: 24px;
}

.common_bottom .wrap .flex .item .item_text p {
    font-weight: 300;
    font-size: 12px;
    color: #999999;
    line-height: 28px;
}

.common_bottom .wrap .form h5 {
    font-family: 'Poppins b';
    font-weight: 600;
    font-size: 24px;
    color: #111111;
    text-align: center;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.common_bottom .wrap .form .search {
    width: 504px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 44px;
    border: 1px solid #DEDEDE;
    padding: 4px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common_bottom .wrap .form .search input {
    height: 62px;
    width: 346px;
    border: none;
    background: unset;
    font-weight: 400;
    font-size: 18px;
    color: #111111;
    padding: 0 18px;
}

.common_bottom .wrap .form .search button {
    width: 150px;
    height: 62px;
    background: #1C69D4;
    border-radius: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.common_bottom .wrap .form .search button p {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.common_bottom .wrap .form .search button:hover {
    opacity: 0.6;
}

.pro_pk {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    transition: 0.6s;
}

.pro_pk .pro_pk_shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.pro_pk .pro_pk_box {
    width: 420px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.16);
    padding: 31px 32px 0 28px;
    transform: translateX(100%);
    transition: 0.6s;
    pointer-events: auto;
    position: relative;
}

.pro_pk .pro_pk_box .close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.pro_pk .pro_pk_box .title {
    margin: 0 0 28px;
}

.pro_pk .pro_pk_box .title h5 {
    font-family: 'Poppins b';
    font-weight: normal;
    font-size: 24px;
    color: #111111;
}

.pro_pk .pro_pk_box .title h5 span {
    font-style: italic;
    color: #008BFF;
}

.pro_pk .pro_pk_box .title h5 span i {
    color: #FF7111;
}

.pro_pk .pro_pk_box .title p {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item {
    display: flex;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item:not(:nth-last-child(1)) {
    margin: 0 0 30px;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_img {
    display: block;
    width: 98px;
    height: 64px;
    overflow: hidden;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_img:hover img {
    transform: scale(1.1);
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text {
    width: 233px;
    margin: 0 0 0 12px;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 18px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 3px;
    transition: 0.6s;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text a:hover {
    color: #1C69D4;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price {
    display: flex;
    align-items: center;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .now_price {
    font-family: 'Poppins m';
    font-weight: 500;
    font-size: 16px;
    color: #EF4444;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .old_price {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    margin-left: 11px;
    text-decoration: line-through;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_del {
    font-size: 10px;
    color: #828CA0;
    padding: 16px 8px;
    transition: 0.6s;
    cursor: pointer;
}

.pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_del:hover {
    color: #1C69D4;
}

.pro_pk .pro_pk_select {
    margin: 30px 0 39px;
}

.pro_pk .pro_pk_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #1C69D4;
    border-radius: 4px;
    text-align: center;
    justify-content: center;
}

.pro_pk .pro_pk_btn p {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.pro_pk .pro_pk_all_del {
    width: fit-content;
    display: flex;
    align-items: center;
    margin: 14px auto 0;
    cursor: pointer;
}

.pro_pk .pro_pk_all_del .icon {
    margin-right: 5px;
}

.pro_pk .pro_pk_all_del .icon img {
    display: block;
    width: 14px;
    filter: grayscale(1);
    transition: 0.6s;
}

.pro_pk .pro_pk_all_del p {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    transition: 0.6s;
}

.pro_pk .pro_pk_all_del:hover .icon img {
    filter: grayscale(0);
}

.pro_pk .pro_pk_all_del:hover p {
    color: #1C69D4;
}

.pro_pk.show {
    opacity: 1;
}

.pro_pk.show .pro_pk_box {
    transform: translateX(0%);
}

.crumb_link {
    display: flex;
    align-items: center;
}

.crumb_link a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    transition: 0.6s;
}

.crumb_link a:hover, .crumb_link a.on {
    color: #111111;
}

.crumb_link span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page div, .page a {
    display: flex;
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    margin: 0 13px;
    cursor: pointer;
}

.page div.on, .page a.on {
    font-weight: bold;
    color: #1C69D4;
}

.page div:hover, .page a:hover {
    color: #1C69D4;
}

.page div:nth-child(1), .page div:nth-last-child(1), .page a:nth-child(1), .page a:nth-last-child(1) {
    width: 40px;
    height: 40px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #111111;
    transition: 0.6s;
}

.page div:nth-child(1):hover, .page div:nth-last-child(1):hover, .page a:nth-child(1):hover, .page a:nth-last-child(1):hover {
    background: #1C69D4;
    color: #fff;
}

.page div:nth-last-child(1), .page a:nth-last-child(1) {
    transform: rotate(180deg);
}

.common_banner {
    width: 100vw;
}

.common_banner .img {
    width: 100%;
    height: 100%;
}

.common_banner .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.crumbs {
    display: flex;
    align-items: center;
}

.crumbs a, .crumbs span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    transition: 0.6s;
    text-transform: capitalize;
}

.crumbs a:hover, .crumbs a.on {
    color: #1C69D4;
}

.crumbs span {
    margin: 0 5px;
}

.gradation_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.gradation_bg .gradation_bg_fix {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.gradation_bg .gradation_bg_fix img {
    width: 100%;
}

.page2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #FAFAFA;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #E6E6E6;
    margin: 0 6px;
    transition: 0.6s;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

.page2 a img {
    width: 13px;
    height: auto;
    object-fit: contain;
    transition: 0.6s;
}

.page2 a:nth-child(1) {
    width: 47px;
}

.page2 a:nth-last-child(1) {
    width: 68px;
}

.page2 a:nth-last-child(1) p {
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    margin-right: 9px;
    transition: 0.6s;
}

.page2 a:nth-last-child(1) img {
    transform: rotate(180deg);
}

.page2 a:hover {
    background: #1C69D4;
    color: #FFFFFF;
    border: 1px solid #1C69D4;
}

.page2 a:hover p {
    color: #FFFFFF;
}

.page2 a:hover img {
    filter: brightness(0) invert(1);
}

.page2 a.on, .page2 a.page_more {
    background: unset;
    color: #1C69D4;
    border: none;
}

.page2 a.page_more {
    color: #B8C2CC;
}

.header_supplier {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.header_supplier .logo {
    display: block;
    width: 150px;
}

.header_supplier .logo img {
    height: auto;
    object-fit: contain;
}

.agreement_fixed {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.agreement_fixed .agreement_shadow {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.agreement_fixed .agreement_box {
    width: 1680px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 0 0 auto;
    padding: 150px 240px 106px 80px;
    position: relative;
    z-index: 3;
    transform: translateX(100%);
    transition: 1s;
}

.agreement_fixed .agreement_box h5 {
    font-family: 'Poppins m';
    font-weight: 400;
    font-size: 36px;
    color: #111111;
    margin-bottom: 20px;
}

.agreement_fixed .agreement_box .content {
    overflow-y: scroll;
    height: calc(100vh - 425px);
}

.agreement_fixed .agreement_box .content p {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 26px;
}

.agreement_fixed .agreement_box .bottom {
    margin: 23px 0 0;
    border-top: 1px solid #D1D1D1;
    padding: 30px 0 0;
}

.agreement_fixed .agreement_box .bottom form {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
}

.agreement_fixed .agreement_box .bottom form button {
    width: 160px;
    height: 50px;
    background: #1C69D4;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.agreement_fixed .agreement_box .bottom .layui-form-item {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
}

.agreement_fixed .agreement_box .bottom .layui-form-item input {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
}

.agreement_fixed.on {
    opacity: 1;
    pointer-events: auto;
}

.agreement_fixed.on .agreement_box {
    transform: translateX(0);
}

.layui-form-input {
    position: relative;
}

.layui-form-input .layui-form-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 17px;
    pointer-events: none;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
}

.layui-form-input .layui-form-placeholder span {
    color: #EF0000;
}

body {
    position: relative;
}

.fixed {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
}

.fixed .fixed_shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000;
    opacity: 0.4;
}

.fixed .fixed_box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.fixed .fixed_box .fixed_address_box {
    background: linear-gradient(170deg, rgba(28, 105, 212, 0.16) 0%, rgba(28, 105, 212, 0) 100%);
    background: #FFFFFF;
    padding: 34px 52px 39px 40px;
}

.fixed .fixed_box .fixed_address_box .fixed_box_title {
    font-weight: bold;
    font-size: 18px;
    color: #111111;
    margin-bottom: 28px;
}

.fixed .fixed_box .fixed_address_box .layui-form-item {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.fixed .fixed_box .fixed_address_box .layui-form-item h5 {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    white-space: nowrap;
    width: 184px;
    text-align: right;
    padding: 0 4px 0 0;
}

.fixed .fixed_box .fixed_address_box .layui-form-item h5 span {
    color: #EC2323;
}

.fixed .fixed_box .fixed_address_box .layui-form-item .layui-input-block {
    margin-left: 0;
    min-height: 0;
}

.fixed .fixed_box .fixed_address_box .layui-form-item .layui-input-block .layui-form-radio {
    margin-top: 0;
}

.fixed .fixed_box .fixed_address_box .layui-form-item input {
    width: 364px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #EEEEEE;
    font-weight: 400;
    font-size: 14px;
    color: #111;
}

.fixed .fixed_box .fixed_address_box .layui-form-item textarea {
    width: 364px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #EEEEEE;
    font-weight: 400;
    font-size: 14px;
    color: #111;
}

.fixed .fixed_box .fixed_address_box .layui-form-item input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.fixed .fixed_box .fixed_address_box .layui-form-item textarea::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.fixed .fixed_box .fixed_address_box .layui-form-item .select_box {
    width: 364px;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.fixed .fixed_box .fixed_address_box .layui-form-item .select_box input {
    width: 116px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #EEEEEE;
    font-weight: 400;
    font-size: 14px;
    color: #111;
}

.fixed .fixed_box .fixed_address_box .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

.fixed .fixed_box .fixed_address_box .btns .cancel {
    width: 100px;
    height: 38px;
    background: #FBFBFB;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #1C69D4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    cursor: pointer;
    margin-right: 10px;
}

.fixed .fixed_box .fixed_address_box .btns .cancel p {
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    transition: 0.6s;
}

.fixed .fixed_box .fixed_address_box .btns .cancel:hover {
    background: #1C69D4;
}

.fixed .fixed_box .fixed_address_box .btns .cancel:hover p {
    color: #FFFFFF;
}

.fixed .fixed_box .fixed_address_box .btns button {
    width: 100px;
    height: 38px;
    border-radius: 4px 4px 4px 4px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.fixed .fixed_box .fixed_close {
    width: 35px;
    height: 35px;
    background: #FDFDFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.6s;
}

.fixed .fixed_box .fixed_close i {
    font-size: 22px;
    transition: 0.6s;
}

.fixed .fixed_box .fixed_close:hover {
    background: #1C69D4;
}

.fixed .fixed_box .fixed_close:hover i {
    color: #FFFFFF;
}

.fixed.show {
    opacity: 1;
    pointer-events: auto;
}

/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1919px) {
    [data-lenis-prevent] {
        padding: 0px 1.0416666667vw 0px 0px;
    }

    [data-lenis-prevent]::-webkit-scrollbar {
        width: 0.2083333333vw;
    }

    ._scroll_y {
        right: 0.15625vw;
        width: 0.3125vw;
        border-radius: 0.5208333333vw;
    }

    ._scroll_y div {
        border-radius: 0.5208333333vw;
    }

    [data-wheel]::-webkit-scrollbar {
        width: 0.3645833333vw;
    }

    .header {
        height: 4.6875vw;
        padding: 0px 3.125vw;
    }

    .header .header_l .logo {
        width: 7.8125vw;
        margin-right: 2.5520833333vw;
    }

    .header .header_l .nav li {
        margin: 0px 1.0416666667vw;
    }

    .header .header_l .nav li a {
        font-size: 0.9375vw;
    }

    .header .header_l .nav li a::after {
        width: 1.3020833333vw;
        height: 0.1041666667vw;
        border-radius: 0.1041666667vw;
        bottom: -0.4166666667vw;
    }

    .header .header_r form {
        width: 20.8333333333vw;
        height: 1.875vw;
        margin-right: 3.3854166667vw;
    }

    .header .header_r form input {
        width: 19.7916666667vw;
        font-size: 0.7291666667vw;
    }

    .header .header_r form button {
        width: 0.9895833333vw;
    }

    .header .header_r .avatar {
        margin-right: 2.34375vw;
    }

    .header .header_r .avatar .logOut {
        padding: 2.6041666667vw 0px 0px;
    }

    .header .header_r .avatar .logOut .logOut_box {
        padding: 0.5208333333vw 2.0833333333vw;
        border-radius: 0.3125vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
    }

    .header .header_r .avatar > a .icon {
        width: 0.9375vw;
    }

    .header .header_r .avatar > a p {
        width: 6.25vw;
        font-size: 0.7291666667vw;
        margin-left: 0.5208333333vw;
    }

    .header .header_r .login {
        font-size: 0.7291666667vw;
        margin-right: 1.5104166667vw;
    }

    .header .header_r .use_box .item {
        width: 1.1458333333vw;
        margin-left: 1.4583333333vw;
    }

    .header .header_r .use_box .item .num_super {
        width: 0.8333333333vw;
        height: 0.8333333333vw;
        font-size: 0.5208333333vw;
        right: -0.46875vw;
        top: -0.3125vw;
    }

    .header .header_r .use_box .item.have_message::after {
        width: 0.5208333333vw;
        height: 0.5208333333vw;
        right: -0.15625vw;
    }

    .header.on, .header.header_on {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
    }

    .header.header_on {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0.5208333333vw;
    }

    .underLine::after {
        bottom: -0.2083333333vw;
    }

    .footer .footer_top {
        padding: 4.0104166667vw 0px 2.65625vw;
    }

    .footer .footer_top .wrap {
        width: 75vw;
    }

    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box {
        margin: 0px 0px 2.6041666667vw;
    }

    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box h5 {
        font-size: 1.0416666667vw;
        margin: 0px 0px 0.8854166667vw;
    }

    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box p {
        font-size: 0.7291666667vw;
        line-height: 1.5625vw;
    }

    .footer .footer_top .wrap .footer_top_l .footer_top_share_box h5 {
        font-size: 1.0416666667vw;
        margin: 0px 0px 1.1458333333vw;
    }

    .footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex a {
        margin-right: 1.25vw;
        width: 0.9375vw;
        height: 0.9375vw;
    }

    .footer .footer_top .wrap .footer_top_r .second_link {
        margin-left: 7.8125vw;
        margin-top: -0.520833333333vw;
    }

    .footer .footer_top .wrap .footer_top_r .second_link a {
        font-size: 1.0416666667vw;
        line-height: 2.6041666667vw;
    }

    .footer .footer_top .wrap .footer_top_r .thrid_link ul {
        margin-left: 5.208333333vw;
    }

    .footer .footer_top .wrap .footer_top_r .thrid_link ul li a {
        font-size: 0.7291666667vw;
        line-height: 1.5625vw;
    }

    .footer .footer_top .wrap .footer_top_r .thrid_link ul li:nth-child(1) {
        margin-bottom: 0.5208333333vw;
    }

    .footer .footer_top .wrap .footer_top_r .thrid_link ul li:nth-child(1) a {
        font-size: 1.0416666667vw;
    }

    .footer .footer_bottom {
        padding: 1.9270833333vw 0px 1.8229166667vw;
    }

    .footer .footer_bottom .wrap {
        width: 75vw;
    }

    .footer .footer_bottom .wrap p {
        font-size: 0.7291666667vw;
    }

    .footer .footer_bottom .wrap a {
        font-size: 0.7291666667vw;
    }

    .footer.footer1 .footer_bottom {
        padding: 1.0416666667vw 0px;
        width: 75vw;
    }

    .pro_content .pro_item {
        width: 17.7083333333vw;
        margin-bottom: 2.03125vw;
    }

    .pro_content .pro_item .img_box {
        height: 11.6145833333vw;
        margin: 0px 0px 0.5729166667vw;
    }

    .pro_content .pro_item .img_box .stock {
        width: 3.90625vw;
        height: 1.1979166667vw;
        border-radius: 0.2083333333vw;
        font-size: 0.7291666667vw;
        top: 1.25vw;
        left: 1.1458333333vw;
    }

    .pro_content .pro_item .img_box .function_box {
        top: 0.625vw;
        right: 0.625vw;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item img {
        width: 0.8854166667vw;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.sc {
        width: 1.3541666667vw;
        height: 1.5625vw;
        padding: 0.15625vw 0px 0px;
        margin: 0px 0.1041666667vw 4.7916666667vw auto;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.sc img {
        width: 0.8854166667vw;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.car {
        width: 1.875vw;
        height: 1.875vw;
        border-radius: 0.9375vw;
        margin: 0px 0px 0.2604166667vw auto;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.vs {
        width: 1.875vw;
        height: 1.875vw;
        border-radius: 0.9375vw;
        margin: 0px 0px 0.2604166667vw;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.vs p {
        font-size: 0.7291666667vw;
    }

    .pro_content .pro_item .img_box .function_box .function_box_item.vs:hover {
        width: 5.2083333333vw;
    }

    .pro_content .pro_item .item_title {
        font-size: 0.9375vw;
        line-height: 1.5625vw;
        margin-bottom: 0.3645833333vw;
    }

    .pro_content .pro_item .item_text {
        font-size: 0.7291666667vw;
        margin: 0px 0px 1.0416666667vw;
    }

    .pro_content .pro_item .item_price .now_price {
        font-size: 1.25vw;
    }

    .pro_content .pro_item .item_price .old_price {
        font-size: 0.8333333333vw;
        margin-left: 0.5729166667vw;
    }

    .pro_content .pro_item:not(:nth-child(4n)) {
        margin-right: 1.3541666667vw;
    }

    .aside {
        right: 0.78125vw;
    }

    .aside .item {
        width: 3.125vw;
        height: 3.125vw;
        border-radius: 2.0833333333vw;
        margin-top: 0.5208333333vw;
    }

    .aside .item .zhibo {
        bottom: 0.1041666667vw;
        padding: 0px 2.0833333333vw 0px 0px;
    }

    .aside .item .zhibo .zhibo_box {
        width: 8.3333333333vw;
    }

    .aside .item .zhibo .close {
        font-size: 0.8333333333vw;
        top: 0.3645833333vw;
        right: 2.8125vw;
    }

    .common_bottom {
        padding: 3.125vw 0px;
    }

    .common_bottom .wrap {
        width: 75vw;
    }

    .common_bottom .wrap .flex {
        height: 5.7291666667vw;
        border-radius: 0.5208333333vw;
        margin: 0px 0px 3.125vw;
    }

    .common_bottom .wrap .flex .title {
        width: 22.4479166667vw;
        padding: 0px 0px 0px 1.8229166667vw;
        clip-path: polygon(0px 0px, 100% 0px, 20.3125vw 100%, 0px 100%);
        margin: 0px 1.4583333333vw 0px 0px;
    }

    .common_bottom .wrap .flex .title::after {
        width: 21.5104166667vw;
        clip-path: polygon(0px 0px, 100% 0px, 19.375vw 100%, 0px 100%);
    }

    .common_bottom .wrap .flex .title p {
        font-size: 0.9375vw;
        line-height: 1.4583333333vw;
    }

    .common_bottom .wrap .flex .item:not(:nth-last-child(1)) {
        margin-right: 3.125vw;
    }

    .common_bottom .wrap .flex .item .icon {
        width: 1.875vw;
        height: 1.6666666667vw;
        margin: 0px 0.5208333333vw 0px 0px;
    }

    .common_bottom .wrap .flex .item .item_text h5 {
        font-size: 0.8333333333vw;
        line-height: 1.25vw;
    }

    .common_bottom .wrap .flex .item .item_text p {
        font-size: 0.625vw;
        line-height: 1.4583333333vw;
    }

    .common_bottom .wrap .form h5 {
        font-size: 1.25vw;
        margin: 0px 0px 1.0416666667vw;
    }

    .common_bottom .wrap .form .search {
        width: 26.25vw;
        height: 3.6458333333vw;
        border-radius: 2.2916666667vw;
        padding: 0.2083333333vw;
    }

    .common_bottom .wrap .form .search input {
        height: 3.2291666667vw;
        width: 18.0208333333vw;
        font-size: 0.9375vw;
        padding: 0px 0.9375vw;
    }

    .common_bottom .wrap .form .search button {
        width: 7.8125vw;
        height: 3.2291666667vw;
        border-radius: 2.03125vw;
    }

    .common_bottom .wrap .form .search button p {
        font-size: 0.9375vw;
    }

    .pro_pk .pro_pk_box {
        width: 21.875vw;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 1.0416666667vw 1px;
        padding: 1.6145833333vw 1.6666666667vw 0px 1.4583333333vw;
    }

    .pro_pk .pro_pk_box .close {
        top: 1.5625vw;
        right: 1.5625vw;
    }

    .pro_pk .pro_pk_box .title {
        margin: 0px 0px 1.4583333333vw;
    }

    .pro_pk .pro_pk_box .title h5 {
        font-size: 1.25vw;
    }

    .pro_pk .pro_pk_box .title p {
        font-size: 0.7291666667vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item:not(:nth-last-child(1)) {
        margin: 0px 0px 1.5625vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_img {
        width: 5.1041666667vw;
        height: 3.3333333333vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text {
        width: 12.1354166667vw;
        margin: 0px 0px 0px 0.625vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text a {
        font-size: 0.7291666667vw;
        line-height: 0.9375vw;
        margin: 0px 0px 0.15625vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .now_price {
        font-size: 0.8333333333vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .old_price {
        font-size: 0.7291666667vw;
        margin-left: 0.5729166667vw;
    }

    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_del {
        font-size: 0.5208333333vw;
        padding: 0.8333333333vw 0.4166666667vw;
    }

    .pro_pk .pro_pk_select {
        margin: 1.5625vw 0px 2.03125vw;
    }

    .pro_pk .pro_pk_btn {
        height: 2.6041666667vw;
        border-radius: 0.2083333333vw;
    }

    .pro_pk .pro_pk_btn p {
        font-size: 0.9375vw;
    }

    .pro_pk .pro_pk_all_del {
        margin: 0.7291666667vw auto 0px;
    }

    .pro_pk .pro_pk_all_del .icon {
        margin-right: 0.2604166667vw;
    }

    .pro_pk .pro_pk_all_del .icon img {
        width: 0.7291666667vw;
    }

    .pro_pk .pro_pk_all_del p {
        font-size: 0.7291666667vw;
    }

    .crumb_link a {
        font-size: 0.7291666667vw;
    }

    .crumb_link span {
        font-size: 0.7291666667vw;
    }

    .page div, .page a {
        font-size: 0.8333333333vw;
        margin: 0px 0.6770833333vw;
    }

    .page div:nth-child(1), .page div:nth-last-child(1), .page a:nth-child(1), .page a:nth-last-child(1) {
        width: 2.0833333333vw;
        height: 2.0833333333vw;
        font-size: 0.5208333333vw;
    }

    .crumbs a, .crumbs span {
        font-size: 0.7291666667vw;
    }

    .crumbs span {
        margin: 0px 0.2604166667vw;
    }

    .page2 a {
        width: 1.5625vw;
        height: 1.5625vw;
        border-radius: 0.1041666667vw;
        margin: 0px 0.3125vw;
        font-size: 0.7291666667vw;
    }

    .page2 a img {
        width: 0.6770833333vw;
    }

    .page2 a:nth-child(1) {
        width: 2.4479166667vw;
    }

    .page2 a:nth-last-child(1) {
        width: 3.5416666667vw;
    }

    .page2 a:nth-last-child(1) p {
        font-size: 0.7291666667vw;
        margin-right: 0.46875vw;
    }

    .header_supplier {
        height: 4.6875vw;
        padding: 0px 3.125vw;
    }

    .header_supplier .logo {
        width: 7.8125vw;
    }

    .agreement_fixed .agreement_box {
        width: 87.5vw;
        padding: 7.8125vw 12.5vw 5.5208333333vw 4.1666666667vw;
    }

    .agreement_fixed .agreement_box h5 {
        font-size: 1.875vw;
        margin-bottom: 1.0416666667vw;
    }

    .agreement_fixed .agreement_box .content {
        height: calc(-22.1354166667vw + 100vh);
    }

    .agreement_fixed .agreement_box .content p {
        font-size: 0.7291666667vw;
        line-height: 1.3541666667vw;
    }

    .agreement_fixed .agreement_box .bottom {
        margin: 1.1979166667vw 0px 0px;
        padding: 1.5625vw 0px 0px;
    }

    .agreement_fixed .agreement_box .bottom form {
        height: 2.6041666667vw;
    }

    .agreement_fixed .agreement_box .bottom form button {
        width: 8.3333333333vw;
        height: 2.6041666667vw;
        border-radius: 0.3125vw;
        font-size: 0.8333333333vw;
    }

    .agreement_fixed .agreement_box .bottom .layui-form-item {
        font-size: 0.7291666667vw;
    }

    .agreement_fixed .agreement_box .bottom .layui-form-item input {
        font-size: 0.7291666667vw;
    }

    .layui-form-input .layui-form-placeholder {
        padding: 0px 0.8854166667vw;
        font-size: 0.8333333333vw;
    }

    .fixed .fixed_box .fixed_address_box {
        padding: 1.7708333333vw 2.7083333333vw 2.03125vw 2.0833333333vw;
    }

    .fixed .fixed_box .fixed_address_box .fixed_box_title {
        font-size: 0.9375vw;
        margin-bottom: 1.4583333333vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item {
        margin-bottom: 0.8854166667vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item h5 {
        font-size: 0.7291666667vw;
        width: 9.5833333333vw;
        padding: 0px 0.2083333333vw 0px 0px;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item input {
        width: 18.9583333333vw;
        height: 1.7708333333vw;
        border-radius: 0.2083333333vw;
        font-size: 0.7291666667vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item textarea {
        width: 18.9583333333vw;
        height: 1.7708333333vw;
        border-radius: 0.2083333333vw;
        font-size: 0.7291666667vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item input::placeholder {
        font-size: 0.7291666667vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item textarea::placeholder {
        font-size: 0.7291666667vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item .select_box {
        width: 18.9583333333vw;
    }

    .fixed .fixed_box .fixed_address_box .layui-form-item .select_box input {
        width: 6.0416666667vw;
        height: 1.7708333333vw;
        border-radius: 0.2083333333vw;
        font-size: 0.7291666667vw;
    }

    .fixed .fixed_box .fixed_address_box .btns {
        margin: 1.5625vw 0px 0px;
    }

    .fixed .fixed_box .fixed_address_box .btns .cancel {
        width: 5.2083333333vw;
        height: 1.9791666667vw;
        border-radius: 0.2083333333vw;
        margin-right: 0.5208333333vw;
    }

    .fixed .fixed_box .fixed_address_box .btns .cancel p {
        font-size: 0.8333333333vw;
    }

    .fixed .fixed_box .fixed_address_box .btns button {
        width: 5.2083333333vw;
        height: 1.9791666667vw;
        border-radius: 0.2083333333vw;
        font-size: 0.8333333333vw;
    }

    .fixed .fixed_box .fixed_close {
        width: 1.8229166667vw;
        height: 1.8229166667vw;
        margin-left: 0.5208333333vw;
    }

    .fixed .fixed_box .fixed_close i {
        font-size: 1.1458333333vw;
    }
}
@media screen and (max-width: 768px) {
    .banner .img img {
        height: 50vh;
    }
    .header {
        height: 60px;
        padding: 0 5vw;
        background: #ffffff;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .header .header_l .logo {
        width: 120px;
        filter: unset !important;
    }
    .header .header_l .nav {
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: -1;
        background: #ffffff;
        top: 0;
        left: 0;
        display: block;
        padding: 100px 5vw 0;
        clip-path: inset(0 0 100% 0);
        transition: 1s;
    }
    .header .header_l .nav.on {
        clip-path: inset(0 0 0% 0);
    }
    .header .header_l .nav li {
        margin: 0;
        line-height: 60px;
        border-bottom: 1px solid #ccc;
    }
    .header .header_l .nav li a {
        display: block;
        color: #111;
        font-size: 16px;
    }
    .header .header_r form {
        display: none;
    }
    .header .header_r .login {
        display: none;
    }
    .header .header_r .login_ph {
        display: block !important;
        filter: invert(1);
    }
    .header .header_r .use_box .item {
        width: 16px;
        margin-left: 20px;
    }
    .header .header_r .use_box .item img {
        filter: invert(1) !important;
    }
    .header .header_r .search_ph_header {
        display: block !important;
        margin-right: 20px;
        filter: invert(1);
        width: 16px;
    }

    .header .menu {
        display: block !important;
        position: relative;
    }

    .header .menu {
        margin: 0 0 0 20px;
        cursor: pointer;

    }

    .header .menu .show {
        width: 25px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .header .menu .show span {
        width: 100%;
        height: 1px;
        background: #000;
        transition: .3s ease;
        transform-origin: left;
    }

    .header .menu .show span:first-child {
        transition-delay: .6s;
    }

    .header .menu .show span:nth-child(2) {
        transition-delay: .5s;
    }

    .header .menu .show span:nth-child(3) {
        transition-delay: .4s;
    }

    .header .menu .hide {
        position: absolute;
        width: 27px;
        height: 27px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .header .menu .hide:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        transform: scaleX(0);
        transition: .3s ease;
        transform-origin: left;
    }

    .header .menu .hide:before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        transform: scaleY(0);
        transition: .3s ease;
        transform-origin: top;
    }

    .header .menu.on .show span {
        transform: scaleX(0);
    }

    .header .menu.on .show span:nth-child(1) {
        transition-delay: 0s;
    }

    .header .menu.on .show span:nth-child(2) {
        transition-delay: .1s;
    }

    .header .menu.on .show span:nth-child(3) {
        transition-delay: .2s;
    }

    .header .menu.on .hide:after {
        transform: scaleX(1);
        transition-delay: .4s;
    }

    .header .menu.on .hide:before {
        transform: scaleY(1);
        transition-delay: .3s;
    }
    .pro_content .pro_item {
        width: 100%;
        margin: 0 0 30px !important;
        border-bottom: 1px solid #e6e6e6;
        padding: 0 0 15px;
    }
    .pro_content .pro_item .img_box {
        height: 55vw;
        margin: 0 0 25px;
    }
    .pro_content .pro_item .item_title {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .pro_content .pro_item .item_price .now_price {
        font-size: 15px;
    }
    .pro_content .pro_item .item_price .old_price {
        font-size: 14px;
    }
    .pro_content .pro_item .img_box .function_box {
        top: 15px;
        right: 10px;
    }
    .pro_content .pro_item .img_box .function_box .function_box_item.sc {
        width: 26px;
        height: 30px;
        padding: 3px 0 0;
        margin: 0 auto calc(55vw - 137px);
    }
    .pro_content .pro_item .img_box .function_box .function_box_item img {
        width: 17px;
        opacity: 1 !important;
    }
    .pro_content .pro_item .img_box .function_box .function_box_item.sc img {
        width: 17px;
    }
    .pro_content .pro_item .img_box .function_box .function_box_item.car {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        margin: 0 0 5px 0;
    }
    .pro_content .pro_item .img_box .function_box .function_box_item.vs {
        width: 36px !important;
        height: 36px !important;
        border-radius: 18px;
    }
    .pro_content .pro_item .img_box .function_box .function_box_item.vs p {
        display: none;
    }
    .common_bottom {
        padding: 40px 0;
    }
    .common_bottom .wrap .form h5 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .common_bottom .wrap .form .search {
        width: 100%;
        height: 60px;
        border-radius: 30px;
        padding: 5px;
    }
    .common_bottom .wrap .form .search input {
        width: calc(100% - 130px);
        height: 100%;
        font-size: 15px;
        padding: 0 0 0 15px;
    }
    .common_bottom .wrap .form .search button {
        height: 100%;
        width: 120px;
        border-radius: 25px;
    }
    .common_bottom .wrap .form .search button p {
        font-size: 15px;
    }
    .common_bottom .wrap {
        width: 90%;
    }
    .header .header_l .nav li a::after {
        display: none;
    }
    .common_banner {
        height: 60vh;
    }
    .common_banner .img {
        height: 100%;
    }
    .common_banner .img img {
        height: 100%;
    }
    .sec1 {
        padding: 50px 0;
    }
    .crumbs a, .crumbs span {
        font-size: 14px;
    }
    .crumbs span {
        margin: 0 4px;
    }
    .crumbs a:nth-last-child(1) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header_supplier {
        height: 60px;
        padding: 0 5vw;
    }
    .header_supplier .logo {
        width: 150px;
    }
    .agreement_fixed .agreement_box {
        padding: 40px 20px;
    }
    .agreement_fixed .agreement_box h5 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .agreement_fixed .agreement_box .content {
        height: 60vh;
    }
    .agreement_fixed .agreement_box .content p {
        font-size: 14px;
        line-height: 2;
    }
    .agreement_fixed .agreement_box .bottom {
        margin: 40px 0 0;
        padding: 15px 0 0;
    }
    .agreement_fixed .agreement_box .bottom form {
        height: unset;
    }
    .agreement_fixed .agreement_box .bottom form button {
        width: 110px;
        height: 40px;
        border-radius: 2px;
        font-size: 15px;
    }
    .agreement_fixed .agreement_box .bottom form button {
        top: 60px;
    }
    .header_supplier {
        background: #FFFFFF;
    }
    .header .header_r .avatar > a p {
        display: none;
    }
    .header .header_r .avatar > a .icon {
        width: 16px;
    }
    .header .header_r .avatar {
        margin-right: 0;
    }
    .header .header_r .avatar > a .icon img {
        filter: invert(1) !important;
    }
    .header .header_r .use_box .item .num_super {
        width: 16px;
        height: 16px;
        font-size: 10px;
        right: -9px;
        top: -6px;
        background: #1C69D4;
        color: #fff;
    }
    .footer.footer1 {
        padding: 15px 0 100px;
    }
    .footer.footer1 .footer_bottom {
        width: 90%;
        padding: 15px 0;
    }
    .footer .footer_bottom .wrap {
        width: 100%;
        display: block;
    }
    .footer .footer_bottom .wrap p,.footer .footer_bottom .wrap a {
        font-size: 14px;
        text-align: center;
    }
    .footer .footer_bottom .wrap a {
        margin: 0 auto;
        display: block;
    }
    .fixed .fixed_box .fixed_address_box {
        padding: 30px 20px;
        width: 90vw;
        border-radius: 4px;
    }
    .fixed .fixed_box .fixed_address_box .fixed_box_title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item {
        display: block;
        margin-bottom: 15px;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item h5 {
        width: 100%;
        text-align: left;
        font-size: 15px;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item textarea {
        width: 100%;
        height: 100px;
        padding: 10px;
        font-size: 14px;
        border-radius: 4px;
        margin: 8px 0 0;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item textarea::placeholder {
        font-size: 14px;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item input {
        margin: 8px 0 0;
    }
    .fixed .fixed_box .fixed_address_box .layui-form-item input,.fixed .fixed_box .fixed_address_box .layui-form-item input::placeholder {
        width: 100%;
        height: 50px;
        font-size: 14px;
        padding: 0 10px;
        border-radius: 4px;
    }
    .fixed .fixed_box .fixed_address_box .btns {
        margin: 30px 0 0;
    }
    .fixed .fixed_box .fixed_address_box .btns .cancel {
        width: 100px;
        height: 38px;
        border-radius: 4px;
        margin-right: 15px;
    }
    .fixed .fixed_box .fixed_address_box .btns button {
        width: 100px;
        height: 38px;
        border-radius: 4px;
        font-size: 15px;
    }
    .fixed .fixed_box .fixed_address_box .btns .cancel p {
        font-size: 15px;
    }
    .fixed .fixed_box .fixed_close {
        width: 35px;
        height: 35px;
        position: absolute;
        top: -50px;
        right: 0;
        margin: 0;
        border-radius: 4px;
    }
    .fixed .fixed_box .fixed_close i {
        font-size: 15px;
    }
    .footer .footer_top .wrap {
        width: 90%;
    }
    .footer .footer_top .wrap .footer_top_r {
        display: none;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer .footer_top .wrap .footer_top_l {
        width: 100%;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_share_box h5 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }
    .footer .footer_bottom {
        padding: 20px 0;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex {
        justify-content: center;
        gap: 15px;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_share_box .flex a {
        width: 18px;
        height: 18px;
        margin: 0;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box {
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
    }
    .footer .footer_top .wrap .footer_top_l .footer_top_contact_box p {
        font-size: 15px;
        line-height: 2;
    }
    .footer .footer_top {
        padding: 40px 0 30px;
    }
    .crumb_link {
        gap: 5px;
    }
    .crumb_link a {
        font-size: 14px;
        white-space: nowrap;
    }
    .crumb_link span {
        font-size: 14px;
    }
    .crumb_link a:nth-last-child(1) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .aside .item {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-top: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .pro_pk .pro_pk_box {
        width: 80vw;
        padding: 30px;
    }
    .pro_pk .pro_pk_box .title h5 {
        font-size: 20px;
    }
    .pro_pk .pro_pk_box .close {
        top: 34px;
        right: 18px;
    }
    .pro_pk .pro_pk_box .title p {
        font-size: 14px;
        margin: 10px 0;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_img {
        width: 98px;
        height: 64px;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text {
        width: calc(100% - 108px);
        margin: 0 0 0 10px;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text a {
        font-size: 15px;
        line-height: 1.4;
        margin: 0px 0px 5px;
        -webkit-line-clamp: 1;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item {
        position: relative;
        padding: 0 0 50px;
        border-bottom: 1px solid #CCCCCC;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item:not(:nth-last-child(1)) {
        margin-bottom: 15px;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_del {
        font-size: 14px;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price {
        position: absolute;
        bottom: 10px;
        width: 100%;
        right: 0;
        justify-content: flex-end;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .old_price {
        font-size: 15px;
    }
    .pro_pk .pro_pk_box .pro_pk_list .pro_pk_list_item .pro_pk_list_item_text .item_price .now_price {
        font-size: 18px;
    }
    .pro_pk .pro_pk_btn p {
        font-size: 14px;
    }
    .pro_pk .pro_pk_btn {
        height: 40px;
        border-radius: 4px;
    }
    .pro_pk .pro_pk_all_del p {
        font-size: 14px;
    }
    .pro_pk .pro_pk_all_del .icon {
        margin-right: 6px;
    }
    .pro_pk .pro_pk_all_del .icon img {
        width: 12px;
    }
    .pro_pk .pro_pk_all_del {
        margin: 10px auto 0;
    }
    .pro_pk .pro_pk_select {
        margin: 10px 0;
    }

    .header .header_r .avatar .logOut .logOut_box {
        white-space: nowrap;
        padding: 5px 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .header .header_r .avatar .logOut {
        padding: 31px 0px 0px;
    }
}
