@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;
}

.header .header_l {
    display: flex;
    align-items: center;
}

.header .header_l .logo {
    display: block;
    width: 111px;
    margin-right: 49px;
    filter: grayscale(1) brightness(10);
}

.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 m';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    position: relative;
}

.header .header_l .nav li a:after {
    content: "";
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    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(255, 255, 255, 0.25);
    margin-right: 65px;
    transition: 0.6s;
}

.header .header_r form input {
    width: 380px;
    border: none;
    background: unset;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    transition: 0.6s;
}

.header .header_r form input::placeholder {
    color: #FFFFFF;
}

.header .header_r form button {
    display: block;
    width: 19px;
    cursor: pointer;
    background: unset;
}

.header .header_r form button img {
    transition: 0.6s;
}

.header .header_r .avatar {
    margin-right: 45px;
}

.header .header_r .avatar a {
    display: flex;
    align-items: center;
    position: relative;
}

.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: #FFFFFF;
    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: #FFFFFF;
    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: #FFFFFF;
    border-radius: 50%;
    font-weight: 400;
    font-size: 10px;
    color: #111111;
    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 .footer_bottom .wrap {
    border-top: 1px solid #DBDFE1;
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
}

.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: 999999;
}

.aside .item {
    width: 50px;
    height: 50px;
    background: #FAFAFA;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
}

.aside .item .icon {
    max-width: 40%;
    transition: 0.6s;
}

.aside .item .icon img {
    object-fit: contain;
}

.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;
}

.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;
    pointer-events: auto;
}

.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 {
    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: 111px;
}

.header_supplier .logo img {
    height: auto;
    object-fit: contain;
}

.header_supplier.header_on .wrap {
    width: 1460px;
    margin: 0 auto;
}

.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;
}

.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%);
}
.section .sign_box .box .form_box form .layui-row-password,.section .sign_box .box .form_box form .layui-row-password .layui-input-wrap {
    width: 100%;
}
.section .sign_box .box .form_box form .layui-row-password input {
    width: 100% !important;
}
.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);
}

body {
    position: relative;
}

.section .sign_box .box .form_box p {
    font-size: 20px;
    margin: 30px 0 0;
    color: #B9B9B9;
}
.section .sign_box .box .form_box p a {
    color: #1C69D4;
}


.layui-form-checkbox[lay-skin=none] {
    display: flex;
    flex-direction: row-reverse;
    gap: 0px;
    align-items: center;
    width: fit-content;
}
.layui-form-checkbox[lay-skin=none] > i {
    width: 18px;
    height: 18px;

    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: unset;
    border: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
    font-size: 14px;
    transition: 0.6s;
}
.layui-form-checkbox[lay-skin=none] {
    margin: 15px 0 0 !important;
    height: fit-content !important;
}
.layui-form-checkbox[lay-skin=none]:hover > i,.layui-form-checkbox[lay-skin=none].layui-form-checked > i {
    border: 1px solid #1C69D4;
}
.layui-form-checkbox[lay-skin=none]:hover > i {
    color: transparent;
}
.layui-form-checkbox[lay-skin=none].layui-form-checked > i {
    color: #1C69D4;
}
.layui-input-wrap {
    width: 100%;
}
@media screen and (max-width: 1600px) {
    .section .sign_box .box .form_box p{
        font-size: 1.0416666667vw;
        margin: 1.5vw 0px 0px;
    }
}
@media screen and (max-width: 768px) {
    .section .sign_box .box .form_box p{
        font-size: 16px;
        margin: 20px 0px 0px;
    }
}
/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 1400px) {
    [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: 5.78125vw;
        margin-right: 2.5520833333vw;
    }

    .header .header_l .nav li {
        margin: 0px 1.0416666667vw;
    }

    .header .header_l .nav li a {
        font-size: 0.7291666667vw;
    }

    .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 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_bottom .wrap {
        width: 62.5vw;
        padding: 1.09375vw 0px;
    }

    .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: 2.6041666667vw;
        height: 2.6041666667vw;
        border-radius: 1.5625vw;
        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 .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: 5.78125vw;
    }

    .header_supplier.header_on .wrap {
        width: 76.0416666666vw;
    }

    .layui-form-input .layui-form-placeholder {
        padding: 0px 0.8854166667vw;
        font-size: 0.8333333333vw;
    }

    .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;
    }
}
@media screen and (max-width: 1024px) {
    .header_supplier {
        height: 60px;
        padding: 0 5vw;
    }
    .header_supplier .logo {
        width: 120px;
    }
    .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.header_on .wrap {
        margin: 0;
    }
    .footer .footer_bottom .wrap {
        width: 90%;
        padding: 15px 0;
        display: block;
    }
    .footer .footer_bottom .wrap p {
        font-size: 14px;
        text-align: center;
    }
    .footer .footer_bottom .wrap a {
        font-size: 14px;
        text-align: center;

    }
    .footer .footer_bottom .wrap>a {
        display: block;
        margin: 0 auto !important;
    }
    .header_supplier .header_r {
        display: flex !important;
        align-items: center;
        gap: 0 5px;
    }
    .header_supplier .header_r h5 {
        font-family: 'Poppins b';
        font-weight: 600;
        font-size: 16px;
        color: #111111;
    }
    .header_supplier .quit {
        display: block !important;
        font-weight: 400;
        font-size: 14px;
        color: #111111;
        line-height: 20px;
        position: relative;
        width: fit-content;
        cursor: pointer;
        transition: 0.6s;
        text-decoration: underline;
    }
    .header_supplier.header_on {
        background: #FFFFFF;
    }
    .header_supplier.header_on .wrap {
        width: 100%;
    }
    .header_supplier .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer {
        padding: 0 0 80px;
    }
}
