.page-img {
    width: 100%;
    height: auto;
}

.banner_text {
    background-color: #FFDDE3;
    padding: 10px 0 0 0;
}

a,
ins {
    text-decoration: none;
}

/* ========== 动画效果 ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowBorder {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(102, 0, 153, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(102, 0, 153, 0.5);
    }
}

/* 区块标题动画 */
.banner_text_title {
    animation: fadeInUp 0.8s ease-out both;
}

/* 标题装饰框动画 */
.t1-title-1-box {
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.t1-title-1-box img {
    transition: transform 0.4s ease;
}

.t1-title-1-box:hover img {
    transform: scale(1.05);
}

/* 产品卡片入场动画 */
.product-list-info {
    animation: fadeInUp 0.6s ease-out both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.product-list-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-list-info:nth-child(1) {
    animation-delay: 0.05s;
}

.product-list-info:nth-child(2) {
    animation-delay: 0.12s;
}

.product-list-info:nth-child(3) {
    animation-delay: 0.19s;
}

.product-list-info:nth-child(4) {
    animation-delay: 0.26s;
}

.product-list-info:nth-child(5) {
    animation-delay: 0.33s;
}

.product-list-info:nth-child(6) {
    animation-delay: 0.40s;
}

.product-list-info:nth-child(7) {
    animation-delay: 0.47s;
}

.product-list-info:nth-child(8) {
    animation-delay: 0.54s;
}

/* 产品图片悬停放大 */
.Middle-img img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Middle-img:hover img {
    transform: scale(1.06);
}

.Middle-img {
    overflow: hidden;
    border-radius: 4px;
}

.Middle-img a {
    display: block;
    overflow: hidden;
}

/* ADD TO CART 按钮动画 */
.saintsBtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.saintsBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(70, 97, 128, 0.5);
    letter-spacing: 1px;
}

.saintsBtn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.saintsBtn:hover::after {
    left: 100%;
}

/* 优惠码区域动画 */
.product-coupon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-coupon-box:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-coupon-box:active {
    transform: scale(0.98);
}

/* 价格数字动画 */
.discount-price {
    transition: color 0.3s ease;
}

.product-list-info:hover .discount-price {
    color: #CA2F40;
}

/* 导航项活跃指示器 */
.nav-box-a {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nav-box-a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.nav-box-a:hover::after,
.nav-box-a.nav-box-a-h::after {
    transform: translateX(-50%) scaleX(1);
}

/* See More 按钮动画 */
.see-more a {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.see-more a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 0, 153, 0.35);
}

/* Banner 区域动画 */
.maneuver-module-box>div:first-child img {
    animation: fadeIn 1.2s ease-out both;
}

/* 导航粘性阴影过渡 */
.maneuver-nav {
    transition: box-shadow 0.4s ease;
}

.maneuver-nav:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* 商品标题 hover */
.product-title {
    transition: color 0.3s ease;
}

/* Klarna 区域 hover */
.klarna-box {
    transition: opacity 0.3s ease;
}

.product-list-info:hover .klarna-box {
    opacity: 0.85;
}

.prime-day-page {
    margin-top: 64px;
    background: #9FB7D0;
}

.bodyWidthPd {
    background-color: #000005;
}

.body-container {
    width: 1400px;
    margin: 0 auto;
}

/* .content-paste-input{position: absolute;top: 0;left: 0;opacity: 0;z-index: -10;} */
.width100 {
    width: 100%;
    height: auto;
}

.titleh1 {
    font-size: 48px;
    font-weight: bold;
    color: #010101;
}


/* 标题 */
.banner_text_title {
    margin: 80px 0 60px 0;
    text-align: center;
}

.banner_text_title_text_1 {
    font-weight: bold;
    font-size: 40px;
    color: #333333;
}

.banner_text_title_text_2 a {
    font-size: 24px;
    color: #660099;
    text-decoration-line: underline;
}

/* 标题 */
.banner_text_title {
    margin: 60px 0 40px 0;
    text-align: center;
}

.banner_text_title_text_1 {
    font-weight: bold;
    font-size: 40px;
    color: #333333;
}

.banner_text_title_text_2 a {
    font-size: 24px;
    color: #660099;
    text-decoration-line: underline;
}

.t1-title-1-box {
    position: relative;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}


.t1-type-title {
    font-size: 30px;
    color: #333333;
    font-family: Impact;
    text-stroke: 1px #FFFFFF;
    -webkit-text-stroke: 1px #FFFFFF;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 43%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
}


.t1.title-1-box {
    margin: 60px 0 40px 0;
}

.t1.title-1-box img {
    margin: 0 auto;
}

.t1 {
    position: relative;
}

.t1 .type-con {
    position: absolute;
    width: 100%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.t1 .type-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.t1 .type-intro {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-top: -12px;
}


/* 导航栏样式 */
.maneuver-module-box {
    background: #466180;
    position: sticky;
    top: 64px;
    z-index: 99;
}

.maneuver-container-box {
    width: 1480px;
    margin: 0 auto;
}

.nav-box {
    display: flex;

    margin: 0 auto;
    justify-content: space-between;
    padding: 10px 0 10px 0;
}

.nav-box .nav-info {
    height: 50px;
    border-radius: 31px;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.nav-box .nav-info.active {
    height: 50px;
    background: #ffffff;
    border-radius: 31px;
    font-size: 20px;
    color: #466180;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.nav-box .nav-info:hover {
    background: #ffffff;
    color: #466180;
}

.nav-box .nav-info:hover a {
    color: #466180;
}

.nav-box .nav-info a {
    color: #ffffff;
}

.nav-box .nav-info.active a {
    color: #466180;
}

@media screen and (max-width: 1200px) {
    .nav-box {
        overflow-x: scroll;
        box-sizing: border-box;
    }

    .nav-box .nav-info {
        min-width: 260px;
    }
}

@media screen and (max-width: 1000px) {

    .nav-box .nav-info,
    .nav-box .nav-info.active {
        font-size: 16px;
        padding: 0 20px;
        height: 40px;
    }

    .nav-box .nav-info {
        min-width: 200px;
    }
}

@media screen and (max-width: 574px) {
    .nav-box {
        padding: 10px;
    }

    .nav-box .nav-info,
    .nav-box .nav-info.active {
        height: 40px;
        font-size: 16px;
    }
}

/* 主图1 */
.master1 {
    margin-top: 60px;
}

/* 分类 */
.category-box {
    padding-top: 40px;
}

.category-list {
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.category-list li {
    width: 15%;
    text-align: center;
}

.category-list img {
    margin: 0px auto;
}

.category-list li a {
    margin-top: 15px;
    font-size: 20px;
    color: #ffffff;
    display: block;
}

/* 优惠卷 */
.product-coupon-box {
    position: relative;
    background: #FCF5ED;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    width: auto;
    max-width: 305px;
    margin: 5px 0;
}

.product-coupon-box::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.product-coupon-box::after {
    content: '';
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.product-coupon-box-p1,
.product-coupon-box-p2 {
    height: 46px;
    line-height: 46px !important;
}

.product-coupon-box-p1 {
    color: #333333;
    font-size: 16px;
    width: 40%;
    box-sizing: border-box;
    text-align: center;
}

.maneuver-three .product-coupon-box {
    max-width: 400px;
}

.product-coupon-box-p2 {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #466180;
    padding-right: 6px;
}

.product-coupon-box-p2 span>span {
    font-size: 14px;
}

.product-coupon-box-p2 img {
    margin-left: 4px;
}

.copy-size {
    font-size: 16px;
    font-weight: bold;
    color: #011616;
}


.end_in {
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    margin-right: 15px;
}

#countdown span {
    border-radius: 3px 3px 3px 3px;
    background: #660099;
    display: block;
    padding: 7px 10px;
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
    width: 56px;
    height: 56px;
    box-sizing: border-box;
    text-align: center;
    align-content: center;
}

#countdown p {
    color: #333333;
    margin-left: 0px;
    font-size: 40px;
    width: 25px;
}

.productWidth {
    width: 1480px;
    margin: 0px auto;
    padding-bottom: 40px;
}

.product-box-1 {
    background-color: #ffffff;
    margin-bottom: 40px;
}

.productWidth .product-box-1:last-of-type {
    margin-bottom: 0px;
}

.product-box-2 {
    background-color: #A95BE0;
    margin-top: 40px;
}

.product-box-1,
.product-box-2 {
    border-radius: 8px;
    padding: 40px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.productS-price .discount-price {
    color: #FD1E1E !important;
    font-size: 24px !important;
}

.productS-price .original-cost {
    font-size: 16px !important;
}

.product-list .productS-content {
    padding: 10px 0 0;
}

.deals-btn {
    width: 80%;
    margin: 0px auto 20px auto;
    display: block;
}

.deals-btn a {
    background: #FD5601;
    display: block;
    color: #ffffff;
    border-radius: 8px 8px 8px 8px;
    font-size: 16px;
    padding: 10px;
}

.products-3-box {
    margin-top: 30px;
}

.product-list .productS-price {
    justify-content: space-between !important;
    margin-bottom: 10px;
}

.annive_item {
    margin-bottom: 12px;
    background: #FFFFFF;
    padding: 15px;
    box-sizing: border-box;
    width: 24%;
}

.annive_item.hide_item {
    opacity: 0;
    padding: 0;
    margin: 0;
}

#clearance_one .annive_item {
    width: 24%;
}

#clearance_two .annive_item {
    width: 24%;
}

@media screen and (min-width: 768px) {


    #clearance_one .annive_item:nth-child(-n+2) {
        width: 49.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #clearance_one .annive_item:nth-child(-n+2) .annive_item-left {
        width: 49.3%;
    }

    #clearance_one .annive_item:nth-child(-n+2) .annive_item-right {
        width: 49.3%;
    }

    /* 产品数量为2或6时，前2个横排布局 */
    .layout-highlight .annive_item:nth-child(-n+2) {
        width: 49.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .layout-highlight .annive_item:nth-child(-n+2) .annive_item-left {
        width: 49.3%;
    }

    .layout-highlight .annive_item:nth-child(-n+2) .annive_item-right {
        width: 49.3%;
    }

    /* 5个产品：第一排2个横排，第二排3个 */
    .layout-five .annive_item:nth-child(-n+2) {
        width: 49.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .layout-five .annive_item:nth-child(-n+2) .annive_item-left,
    .layout-five .annive_item:nth-child(-n+2) .annive_item-right {
        width: 49.3%;
    }

    .layout-five .annive_item:nth-child(n+3) {
        width: 32.6%;
    }

    /* 7个产品：第一排3个，第二排4个 */
    .layout-seven .annive_item:nth-child(-n+3) {
        width: 32.6%;
    }
}

.deals-bar-flex {
    margin: 7px 0;
}

.annive_item-grop {
    margin-top: 15px;
}

.annive_item-btn1,
.annive_item-btn2 {
    width: 46%;
    cursor: pointer;
    height: 41px;
    box-sizing: border-box;
}

.annive_item-btn1 {
    background-color: #ffffff;
    border: 1px solid #660099;
    border-radius: 8px;
    color: #660099;
}

.annive_item-btn2 {
    background: #660099;
    border: 1px solid #660099;
    border-radius: 8px;
    color: #ffffff;
}

.annive_item-btn1,
.annive_item-btn2 {
    font-size: 16px;
    padding: 7px 0px;
    display: block;
    text-align: center;
}

.annive_item-btn1:hover {
    background: #660099;
    border: 1px solid #660099;
    color: #ffffff;
    cursor: pointer;
}

.annive_item-btn2:hover {
    background: #ffffff;
    border: 1px solid #660099;
    border-radius: 8px;
    color: #660099;
}

.discount_text {
    color: #ffffff;
    background: #DA251D;
    border-radius: 0px 0px 16px 0px;
    font-size: 20px;
    font-weight: bold;
    padding: 2px 10px;
    position: absolute;
    left: 0;
    top: 0;
}

.annive_item-klarna {
    justify-content: left;
    align-items: center;
    box-sizing: border-box;
}

.annive_item-klarna img {
    margin-right: 10px;
}

/* 选择倒数前2个元素 */
/* .annive_item:nth-last-child(-n+2) {
    margin-bottom: 0px;
} */
/* .products-3-box{display: flex;flex-wrap: wrap;justify-content: space-between;margin-top: 35px;} */
.Middle-img {
    position: relative;
}

.dot_red {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #DA251D;
    border-radius: 0px 0px 16px 0px;
    font-size: 20px;
    color: #fff;
    padding: 5px 10px;
}

.deals-code {
    margin-bottom: 10px;
}

.deals-code,
.code_flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.order_list-ne {
    font-size: 16px;
    color: #95460B;
    font-weight: bold;
    margin: 0 5px;
}

.saintsBtn,
.saintsBtn2 {
    width: 46%;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 0px;
    display: block;
    text-align: center;
}

.saintsBtn {
    background-color: #466180;
    border: 1px solid #466180;
    color: #FFFFFF;
    width: 100%;
}

.saintsBtn2 {
    display: none;
    background: #3C5AD2;
    border: 1px solid #3C5AD2;
    border-radius: 8px;
    color: #ffffff;
}

.saintsBtn:hover {
    background: #466180;
    border: 1px solid #466180;
    color: #ffffff;
    cursor: pointer;
}

.saintsBtn2:hover {
    background: #1441f3;
    border: 1px solid #1441f3;
    border-radius: 8px;
    color: #fff;
}


.five_div {
    padding: 40px 0 100px 0;
}


.product-container {
    background-color: #fff;
    width: 19%;
    margin-bottom: 20px;
    display: block;
}

.product-container-in {
    padding: 10px;
    width: 100%;
}

.product-img,
.product-title {
    display: block;
}

.product-info {
    width: 100%;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin-top: 15px;
    text-align: center;
}

.product-title {
    color: #333;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 60px;
    -webkit-box-orient: vertical;
    font-weight: bold;
    margin-top: 7px;
}

.product-title:hover {
    color: #609;
    text-decoration: revert;
}

.price {
    margin: 10px 0 0;
}

.price del {
    color: #939393;
    font-size: 20px;
    margin-right: 7px;
}

.price ins {
    color: #FF3B3B !important;
    font-size: 20px;
}

.pro-de-btn {
    border: 1px solid lavender;
    padding: 10px 0;
    width: 100%;
    margin-top: 6px;
    border-radius: 3px;
    font-weight: 400;
    color: #333;
    background-color: lavender;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pro-de-btn:hover {
    color: #fff;
    background: #609;
    border: 1px solid #609;
    cursor: pointer;
}

.product-title {
    text-align: left;
}


.btn-group {
    display: flex;
    align-items: center;
}

.group_cart-btn {
    border: 1px solid #660099;
    border-radius: 3px 0px 0px 3px;
    width: 35%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.group_buybow-btn {
    background: linear-gradient(180deg, #CA2EDA 0%, #6C039D 100%);
    color: #ffffff;
    font-size: 14px;
    border-radius: 0px 3px 3px 0px;
    width: 65%;
    text-align: center;
    cursor: pointer;
}

#footer {
    margin-top: 0;
}

.m-img {
    display: none;
}


.product-gift-box {
    display: flex;
    align-items: center;
}

.product-gift-box-p1 {
    font-size: 14px;
    margin-left: 5px;
}

.product-gift-box-p1 span {
    font-weight: bold;
}

.product-gift-box-p1 a {
    text-decoration: underline;
    color: #333333;
}

.flex-center {
    text-align: center;
    border-top: 1px solid #660099;
    margin-top: 80px;
    padding: 50px 0;
}

.flex-center p:nth-child(1) {
    font-size: 28px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 25px;
}

.flex-center p {
    font-size: 20px;
    color: #333333;
}

.flex-center p:nth-child(4) {
    margin: 30px 0;
}

.flex-center img {
    margin: 0 auto;
}

.annive_item .pc-img {
    display: block !important;
}

.annive_item .m-img {
    display: none !important;
}

.product_wrap {
    padding-bottom: 0;
}

.swiper_container {
    overflow: hidden;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 1px solid #3C5AD2;
    background-color: #3C5AD2;
    box-shadow: 0 3px 16px 0 #FFFFFF;
}

.swiper_container .swiper-button-prev:after,
.swiper_container .swiper-button-next:after {
    font-size: 18px !important;
    color: #fff;
}

#cl_five {
    padding-bottom: 40px;
}

#cl_one .swiper-button-prev,
#cl_one .swiper-button-next,
#cl_four .swiper-button-prev,
#cl_four .swiper-button-next {
    display: none;
}

.column-banner-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.banner-item {
    width: calc(50% - 20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.banner-item>img {
    width: 100%;
}

.klarna_desc {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
    background: #e1bee7;
}

.klarna_desc p {
    margin-left: 10px;
    color: #333333;
    font-size: 18px;
}

.score_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0;
    background: #F7F1DF;
    color: #333333;
}

.score_box img {
    margin: 0 10px;
}

.coupon-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.codeHight {
    height: 46px;
    margin: 5px 0;
}

#cl_six {
    padding-bottom: 40px;
}

.annive_item-img {
    height: 310px;
}

@media screen and (max-width: 1800px) {
    .coupon-strip {
        display: flex;
        justify-content: space-between;
        width: 94%;
        margin: 40px auto 0 auto;
    }
}

@media screen and (max-width: 1600px) {

    .body-container,
    .productWidth,
    .copy-content {
        width: 94%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1500px) {
    .nav-box {
        width: 100%;
    }

    .maneuver-container-box {
        width: 96%;
    }
}

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

    .order_list-intro {
        font-size: 18px;
    }

    .order_list-btn .order_list-ne {
        font-size: 16px;
    }

    .order_list-li {
        margin-bottom: 15px;
    }

    .copy-content .t1.title-1-box {
        margin: 40px 0 30px 0;
    }

    .t1 .type-title {
        font-size: 32px;
    }

    .order_list-btn {
        padding: 0px 10px;
    }

    .category-list li a {
        font-size: 16px;
    }

    .category-list li {
        width: 16%;
    }

    .copy-max {
        padding: 30px 0 40px 0;
    }

    .nav-box {
        overflow-x: scroll;
        box-sizing: border-box;
    }

    .nav-box .nav-info:nth-child(2) {
        min-width: 300px;
    }

    .nav-box .nav-info {
        min-width: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .annive_item-img {
        height: 190px;
    }

    .order_list-btn {
        padding: 5px 10px;
    }

    .order_list-btn .order_list-ne {
        font-size: 14px;
    }

    .order_list-code {
        font-size: 12px;
    }

    .order_list-title {
        font-size: 24px;
    }

    .order_list-intro {
        font-size: 16px;
        margin-top: -5px;
    }



    .t1-type-title {
        font-size: 30px;
    }

    .coupon-strip figure:nth-child(-n+3) {
        width: 32%;
        margin-bottom: 20px;
    }

    .coupon-strip figure:nth-child(n+4) {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .prime-day-page {
        margin-top: 54px;
    }

    .category-list {
        width: 94%;
    }

    .category-list {
        flex-wrap: wrap;
    }

    .category-list li {
        width: 33%;
    }

    .nav-box .nav-info:nth-child(2) {
        min-width: 220px;
    }

    /* .product-box-1{padding-top: 40px;} */
    .productBox {
        padding-bottom: 40px;
    }

    /* .annive_item,#clearance_two .annive_item,#clearance_three .annive_item{
        width: 49%;
    } */
    .product-title {
        font-size: 20px;
        height: 65px;
    }

    .productS-price .discount-price {
        font-size: 20px !important;
    }

    .annive_item-content {
        margin-top: 10px;
    }

    .product-coupon-box-p2 {
        font-size: 14px;
        width: 60%;
    }

    .product-coupon-box-p1 {
        font-size: 14px;
    }

    .copy-size {
        font-size: 16px;
    }

    .nav-box .nav-info,
    .nav-box .nav-info.active {
        font-size: 16px;
        padding: 0 10px;
    }

    .nav-box .nav-info {
        min-width: 180px;
    }
}

@media screen and (max-width: 900px) {
    .pc-img {
        display: none;
    }

    .m-img {
        display: block;
    }

    .annive_item-grop {
        flex-wrap: wrap;
    }

    .coupon-strip figure {
        width: 24%;
        margin-bottom: 20px;
    }

    .saintsBtn,
    .saintsBtn2 {
        width: 100%;
    }

    .annive_item {
        margin-bottom: 10px;
    }

    #clearance_three .annive_item,
    #clearance_four .annive_item {
        display: block;
    }

    #clearance_three .annive_item-right,
    #clearance_four .annive_item-right,
    #clearance_three .annive_item-left,
    #clearance_four .annive_item-left {
        width: 100%;
    }

    .codeHight {
        height: 40px;
    }

    .product-coupon-box-p1,
    .product-coupon-box-p2 {
        height: 40px;
        line-height: 40px !important;
    }

}

@media screen and (max-width: 768px) {
    .maneuver-module-box {
        top: 100px;
    }

    .prime-day-page {
        margin-top: 0px;
    }

    .t1-title-1-box img {
        width: 94%;
        height: auto;
        margin: 0 auto;
    }

    .product-container {
        width: 49%;
        margin-bottom: 15px;
    }

    .price {
        margin: 8px 0 0;
    }

    .annive_item-grop {
        margin-top: 7px;
    }

    .price ins {
        font-size: 15px;
    }

    .price del {
        font-size: 12px;
    }

    .product-box-1,
    .product-box-2 {
        padding: 10px;
    }

    .category-list li {
        margin-bottom: 5px;
    }

    .category-list {
        flex-wrap: wrap;
    }

    .copy-max {
        margin-top: 0px;
    }

    .product-list {
        padding: 0px;
    }

    .banner_text_title_text_1 {
        font-size: 20px;
    }

    .banner_text_title_text_2 a {
        font-size: 16px;
    }

    .five_div {
        padding: 20px 0 50px 0;
    }

    .banner_text_title {
        margin: 40px 0 20px 0;
    }

    .product-list .productS-price {
        justify-content: center !important;
        margin-top: 0px !important;
    }

    .product-list .original-cost {
        font-size: 12px !important;
    }

    .copy-max {
        padding-top: 5px;
    }

    .master1 {
        margin-top: 40px;
    }

    .category-box {
        padding-top: 5px;
    }

    /* .prime-day-page{margin: 0 8px;} */
    .product-list .original-cost {
        font-size: 13px;
    }

    .saintsBtn,
    .saintsBtn2 {
        font-size: 13px;
    }

    .product-list .discount-price {
        margin-left: 0px !important;
    }

    .productBox {
        margin-bottom: 8px;
    }

    .copy-text {
        font-size: 12px;
    }

    .order_list-btn {
        flex-wrap: wrap;
    }

    .order_list-code {
        width: 100%;
    }

    .order_list-intro {
        margin-top: -2px;
    }

    .order_list-li {
        width: 45%;
    }

    .order_list {
        width: 90%;
        margin: 0 auto;
    }

    .product-container-in {
        padding: 10px 0;
    }

    .product-list .productS-content {
        padding: 10px 0 0 !important;
    }

    .product-box-1,
    .product-box-2 {
        padding: 0;
        background-color: revert;
    }

    #countdown span {
        font-size: 14px;
        width: 30px;
        height: 30px;
        padding: 0;
    }

    .end_in {
        font-size: 16px;
    }

    #countdown p {
        font-size: 20px;
        width: 15px;
    }

    .t1-type-title {
        font-size: 22px;
    }

    #clearance_one .annive_item,
    #clearance_two .annive_item,
    #clearance_five .annive_item {
        flex-wrap: wrap;
    }

    .product-coupon-box {
        width: 100%;
    }

    #clearance_one .annive_item,
    #clearance_five .annive_item {
        width: 100%;
    }

    /* 移动端 layout-highlight 恢复竖排 */
    .layout-highlight .annive_item:nth-child(-n+2) {
        width: 49%;
        display: block;
    }

    .layout-highlight .annive_item:nth-child(-n+2) .annive_item-left,
    .layout-highlight .annive_item:nth-child(-n+2) .annive_item-right {
        width: 100%;
    }

    .product-title {
        font-size: 16px;
        height: 45px;
    }

    #clearance_two .annive_item,
    #clearance_three .annive_item,
    #clearance_four .annive_item,
    #clearance_five .annive_item,
    #clearance_six .annive_item {
        width: 49%;
    }

    .annive_item {
        width: 49%;
    }

    #clearance_one .annive_item:first-child>div,
    #clearance_five .annive_item:first-child>div {
        width: 100%;
    }

    .product_wrap {
        padding: 10px;
    }


    .banner-item {
        width: calc(100% - 20px);
    }

}

@media screen and (max-width: 574px) {
    .annive_item-img {
        height: 167px;
    }

    #cl_five {
        padding-bottom: 25px;
    }

    .product-coupon-box-p1 {
        width: 40%;
    }

    .product-coupon-box-p2 {
        width: 60%;
    }

    .product-list {
        padding: 0px !important;
    }

    .product_wrap {
        padding: 3px;
    }

    .annive_item {
        flex-wrap: wrap;
        width: 49%;
        padding: 8px;
    }

    .annive_item-left,
    .annive_item-right {
        width: 100%;
    }

    .banner_text_title {
        margin: 40px 0 20px 0;
    }

    .deals-bar-flex {
        margin: 0px 0 5px 0;
    }

    #clearance_three .annive_item-right,
    #clearance_four .annive_item-right {
        margin: 0 auto;
    }

    .annive_item-content {
        margin-top: 0;
    }

    .product-title {
        margin-top: 5px;
    }

    .product-list .productS-price {
        margin-bottom: 5px;
    }


    .t1-type-title {
        font-size: 22px;
    }

    .annive_item-klarna {
        padding: 5px;
    }

    .annive_item-klarna p {
        font-size: 12px;
    }

    .annive_item-klarna img {
        width: 20%;
        margin-right: 5px;
        height: auto;
    }

    #clearance_two .annive_item,
    #clearance_three .annive_item,
    #clearance_four .annive_item {
        padding: 5px;
    }

    .nav-box .nav-info,
    .nav-box .nav-info.active {
        font-size: 16px;
    }

    .dot_red,
    .product-title {
        font-size: 14px;
    }

    .copy-size,
    .product-coupon-box-p1,
    .product-coupon-box-p2 {
        font-size: 12px;
    }

    .codeHight {
        height: 34px;
    }

    .product-coupon-box-p1,
    .product-coupon-box-p2 {
        height: 34px;
        line-height: 34px !important;
    }

    .product-list .productS-price {
        align-items: baseline;
    }

    .flex-center {
        text-align: center;
        border-top: 1px solid #660099;
        margin-top: 80px;
        padding: 50px 0 0 0;
    }

    .flex-center img {
        width: 70%;
        height: auto;
    }
}

@media screen and (max-width: 475px) {

    .copy-size,
    .product-coupon-box-p1,
    .product-coupon-box-p2 {
        font-size: 12px;
    }

    .category-list img {
        width: 60%;
    }

    .t1 .type-title {
        font-size: 18px;
    }

    .category-list li a {
        font-size: 13px;
    }

    .products-3-box {
        margin-top: 15px;
    }

    .deals-btn a {
        font-size: 12px;
    }

    .deals-btn,
    .copy-content {
        width: 96%;
    }

    .copy-content {
        margin: 0px auto;
    }

    .order_list-title {
        font-size: 16px;
    }

    .order_list-intro,
    .order_list-btn .order_list-ne {
        font-size: 12px;
    }

    .order_list-btn {
        padding: 2px;
    }

    .order_list-btn img {
        width: 12px;
        height: 13px;
    }

    .order_list-li {
        margin-bottom: 10px;
    }

    .order_list-btn .order_list-ne {
        margin: 0 2px;
    }

    .copy-text {
        font-size: 12px;
    }

    .order_list-code {
        font-size: 10px;
    }

    .order_list {
        gap: 1%;
    }

    .five_div {
        padding: 0px 0 50px 0;
    }

    .group_buybow-btn {
        font-size: 12px;
    }

    .copy-content .t1.title-1-box,
    .t1.title-1-box {
        margin: 30px 0 20px 0;
    }

    .body-container,
    .productWidth,
    .copy-content {
        width: 98%;
    }
}