/* banner */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
}

.banner-wrapper .banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    width: auto;
    height: 620px;
    object-fit: cover;
}

.banner-wrapper .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
}

.banner-wrapper .banner-sub-title {
    color: #845441;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.banner-wrapper .banner-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.2;
}

.banner-wrapper .banner-title span {
    display: inline-flex;
    background: linear-gradient(90deg, #EE8438 -7.55%, #813300 82.82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-wrapper .banner-desc {
    color: #8A5340;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}

.banner-wrapper .banner-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 27px;
}

.banner-wrapper .countdown-symbol {
    margin-top: 18px;
    color: #0A0A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    font-family: Poppins;
}

.banner-wrapper .countdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #0A0A0A;
}

.banner-wrapper .countdown-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 7px;
    width: 57px;
    height: 61px;
    font-size: 24px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 1.2;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
}

.banner-wrapper .countdown-text {
    color: #0A0A0A;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.banner-wrapper .banner-text {
    margin-bottom: 11px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #0A0A0A;
}

.banner-wrapper .banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    width: 260px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;

}

/* nav bar */

.nav-wrapper {
    background: #F7E1D0;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 10000;
    overflow: hidden;
}

.nav-wrapper .nav-content {
    margin: 0 auto;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-items: center;
    height: 56px;
}

.nav-wrapper .nav-item {
    position: relative;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #6D3823;
    height: 100%;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-wrapper .nav-item.active {
    font-size: 20px;
    font-weight: 600;
}

.nav-wrapper .nav-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #845441;
    content: " ";
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}



.nav-wrapper .nav-item.active::after {
    transform: scaleX(1);
}


.nav-wrapper .pc-text {
    display: block;
}

.nav-wrapper .mb-text {
    display: none;
}



/* common */
.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;

}

.section-title span {
    display: inline-flex;
    background: linear-gradient(270deg, #813300 35.39%, #EE8438 68.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #845441;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 12px;
}

.section-desc br {
    display: none;
}

.subscription-container {
    margin-top: 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #0A0A0A;
}

.subscription-container.center {
    justify-content: center;
}

.subscription-container .check-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D4D4D4;
    background: #fff;
    box-sizing: border-box;
    margin-right: 8px;
    cursor: pointer;
}

.subscription-container .check-wrap.active {
    border: 1px solid #FF7A3D;
    background: #FF7A3D;
}

.subscription-container .check-wrap img {
    width: 10px;
}

.subscription-container .text {
    margin-right: 16px;
}

.subscription-container .more-wrap {
    margin-right: 30px;
    cursor: pointer;
    text-decoration-line: underline;
}

.subscription-container .notice-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #404040;
}





/* lottery */

.lottery-wrapper {
    padding: 46px 0;
    background-color: #FFECDF;
}

.lottery-wrapper .lottery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lottery-wrapper .lottery-title {
    padding-top: 40px;
}

.lottery-wrapper .lottery-desc {
    margin-bottom: 42px;
}

.lottery-wrapper .lottery-container {
    display: flex;
    align-items: flex-end;
    gap: 50px;

}

.lottery-wrapper .lottery-left {
    width: 428px;
}

.lottery-wrapper .lottery-text {
    color: #0A0A0A;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.lottery-wrapper .radio-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.lottery-wrapper .radio-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    border-radius: 36px;
    border: 0.5px solid #E1E1E1;
    background: #FFF;
    cursor: pointer;
    height: 66px;
    box-sizing: border-box;
}



.lottery-wrapper .radio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #D4D4D4;
}

.lottery-wrapper .radio-item.active .radio-icon {
    border: 1px solid #FF7A3D;
    background: #FF7A3D;
}

.lottery-wrapper .radio-text {
    font-size: 18px;
    color: #404040;
}

.lottery-wrapper .radio-text span {
    color: #0A0A0A;
    font-weight: 600;
}

.lottery-wrapper .lottery-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
}

.lottery-wrapper .lottery-btn.disabled {
    background: #A3A3A3;
}

.lottery-wrapper .lottery-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    border-radius: 6px;
    border: 1px solid #E0A45F;
    background: radial-gradient(109.09% 115.29% at 49.78% 115.29%, #FFD6BE 12.37%, #FFEEE9 72.5%);
    box-shadow: 0 6.872px 21.379px 6.108px rgba(0, 0, 0, 0.03);
    padding: 0 7px;
    max-height: 295px;
    box-sizing: border-box;
    padding-top: 30px;
}


.lottery-wrapper .lottery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.lottery-wrapper .lottery-gift-title {
    margin: 57px 0 25px;
    font-size: 24px;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.4;
}

.lottery-wrapper .lottery-img {
    cursor: pointer;
}

.lottery-wrapper .lottery-gift {
    display: flex;
    justify-content: space-between;
    height: 232px;
}

.lottery-wrapper .gift-1 {
    flex: 0 0 341px;
}

.lottery-wrapper .gift-2 {
    flex: 0 0 313px;
}

.lottery-wrapper .gift-3 {
    flex: 0 0 250px;
}

.lottery-wrapper .gift-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 266px;
}



.product-wrapper {
    padding: 80px 0;
    background: #FFF7F2;
}

.product-wrapper .product-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-wrapper .product-title {
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: center;
}

.product-wrapper .product-desc {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.product-wrapper .product-category-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 33px;

}

.product-wrapper .product-category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 48px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #404040;
    border-radius: 99px;
    border: 1px solid #737373;
    cursor: pointer;

}

.product-wrapper .product-category-item.active {
    border: 1px solid #FF7A3D;
    font-size: 20px;
    font-weight: 600;
    color: #FF7A3D;
}

.product-category-content {
    margin-bottom: 37px;
}

.product-gift-card {
    border-radius: 8px;
    height: 168px;
    overflow: hidden;
}




.prize-dialog-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.prize-dialog-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.prize-dialog-close-s {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


.prize-dialog-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 716px;
    height: 440px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF7D2 0%, #FFF 100%), #FFF;
}

.prize-dialog-content.cart-dialog-content {
    height: 315px;
    border-radius: 6px;
    background: radial-gradient(128.73% 136.03% at 50% 136.03%, #FFE3D9 11.96%, #FFF 72.5%);
    box-shadow: 0 6.872px 21.379px 6.108px rgba(0, 0, 0, 0.03);
}

.prize-dialog-content.comment-dialog-content {
    width: 682px;
    height: 400px;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFEBE7 0%, #FFF6EB 100%);
    box-shadow: 0 6.872px 21.379px 6.108px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    padding: 55px 100px;
    justify-content: flex-start;
    overflow-y: auto;
}

.comment-dialog-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
}

.comment-dialog-title span {
    color: #0A0A0A;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.comment-dialog-title button {
    width: 70px;
    height: 30px;
    border-radius: 17px;
    border: 1px solid #834409;
    background: linear-gradient(272deg, #834409 -2.6%, #B76300 135.21%);
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
}

.comment-dialog-time {
    width: 100%;
    font-size: 16px;
    color: #737373;
    line-height: 1.4;
    margin-bottom: 16px;
}

.comment-dialog-desc {
    width: 100%;
    min-height: 150px;
    font-size: 18px;
    color: #404040;
    line-height: 1.4;
    word-break: break-all;
    overflow-y: auto;

}


.cart-dialog-title {
    color: #F18400;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cart-dialog-desc {
    color: #6B491F;
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.cart-dialog-desc br {
    display: none;
}


.cart-dialog-btn {
    margin-top: 10px;
    width: 170px;
    height: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #FF7A3D;
    border-radius: 4px;
}

.prize-dialog-content.small {
    width: 500px;
    height: 300px;
}

.prize-dialog-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.prize-dialog-title span {
    display: inline-flex;
    background: linear-gradient(270deg, #834309 35.39%, #E58613 68.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prize-dialog-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #6B491F;
    margin-bottom: 5px;
}

.prize-dialog-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
    color: #737373;
}

.prize-dialog-desc br {
    display: none;
}

.prize-dialog-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 363px;
    height: 206px;
    background-image: url(https://static.shokz.co.kr/resource/2026/04/17/gift_69e2060bab216.webp);
    background-size: cover;
}

.prize-dialog-bg img {
    width: 180px;
    height: 180px;
}

.prize-dialog-btn {
    margin-top: 30px;
    width: 180px;
    height: 40px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    font-size: 18px;
}

.lottery-gift-img {
    border-radius: 6px;
}







/* 产品卡 */
.product-card {
    position: relative;
    /* width: 384px; */
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px 0 rgba(17, 17, 26, 0.10), 0 8px 32px 0 rgba(17, 17, 26, 0.05);
    overflow: hidden;

}

.product-wrapper .swiper-container {
    display: none;
}

.product-wrapper .swiper-container.show {
    display: block;
}

.product-card .disscount {
    position: absolute;
    top: 0;
    left: 16px;
    width: 86px;
    height: 40px;
    padding-top: 6px;
    box-sizing: border-box;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    background-image: url(https://static.shokz.co.kr/resource/2026/02/04/10__off_6982f1d3df044.svg);
    background-repeat: no-repeat;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    z-index: 1;
}

.product-card .disscount.off-15 {
    background-image: url(https://static.shokz.co.kr/resource/2026/02/04/15__off_6982f1d3c7948.svg);
}

.product-card .product-pic {
    display: none;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.product-card .product-pic.show {
    display: flex;
}

.product-card .product-info {
    position: relative;
    padding: 24px;
}

.product-card .pic-wrapper {
    position: relative;
    cursor: pointer;
    height: 274px;
    overflow: hidden;
}

.product-card .product_gift_bg {
    position: absolute;
    bottom: 32px;
    left: 24px;
    right: 24px;
}

.product-card .product_gift_bg.bottom-12 {
    bottom: 28px;
}

.product-card .product_gift_box {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 336px;
    height: 40px;
    background-image: url(https://static.shokz.co.kr/resource/2025/11/05/bg_product_gift_690ab1fb66fc7.webp);
    background-size: cover;
    border-radius: 4px;
}

.product-card .product_gift_box_con {
    display: flex;
    align-items: center;
    height: 100%;
}

/* .product-card .product_tip_big {
    color: rgba(255, 122, 61, 1);
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
    margin: 0 10px 0 20px;
} */

/* .product-card .product_tip_desc {
    font-size: 12px;
    color: rgba(255, 122, 61, 1);
} */

.product_gift_box_text {
    font-size: 12px;
    color: #FF7A3D;
    padding-left: 12px
}

.product-card .product_gift_box_img {
    position: absolute;
    right: 10px;
    width: 80px;
    top: 50%;
    transform: translateY(-50%);

}

.product-card .product_gift_box_img.group {
    width: 82px;
    right: 0;
}

.product-card .product_gift_box_img.hat {
    width: 54px;
    top: 45%;
}

.product-card .product_gift_box_img.bag {
    width: 62px;
    top: 30%;
    right: 0;
}

.product-card .product-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 16px;
}

.product-card .product-key {
    margin-left: 16px;
    color: #FF9962;
    font-size: 14px;
    line-height: 1.3;
}

.product-card .product-colors {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}


.product-card .product-color {
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
}

.product-card .product-color span {
    display: block;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
}

.product-card .product-color.color-active {
    border: 1px solid #FF833D;
}



.product-card .product-type {
    display: flex;
    gap: 20px;
}

.product-card .product-type-item {
    flex: 1;
}

.product-card .type-item-title {
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 1.3;
    margin-bottom: 8px;
}


.product-card .type-lis {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-card .type-li {
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 1.3;
    padding: 4px 8px;
    border-radius: 4px;
    background: #F7F7F7;
    cursor: pointer;
}

.product-card .type-li.type-li-active {
    color: #FF7A3D;
    border: 1px solid #FFB688;
    background: #FFF8F5;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.product-card .product-price .new-price {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #FF4D0A;
}

.product-card .product-price .original-price {
    color: #0A0A0A;
    font-weight: 400;
    line-height: 1.2;
    font-size: 16px;
    opacity: 0.45;
    text-decoration-line: line-through;
}

.product-card .product-desc {
    color: #FF4D0A;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-card .product-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-card .product-btns .add-btn {
    flex: 1;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
}

.product-card .product-btns .skip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #FF9962;
    cursor: pointer;
    border-radius: 4px;
}


.swiper-product-title {
    padding-top: 64px;
    padding-bottom: 32px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.swiper-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.swiper-switch .swiper-pagination {
    position: relative;
    text-align: left;
}

.swiper-switch .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #404040;
    border-radius: 50%;
    margin-right: 16px;
    opacity: 0.4;

}

.swiper-switch .swiper-pagination-bullet-active {
    border-radius: 8px;
    width: 32px;
    height: 8px;
    background: #404040;
    opacity: 0.75;

}

.swiper-pagination-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-swiper-page .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 60%;
}

.swiper-pagination-btns .button-next {
    margin-right: 5px;
}

.swiper-button-disabled svg {
    opacity: 0.3;
}

.swiper-button-disabled {
    opacity: 0.6
}

.checkbox-hidden {
    display: none !important;
}

.pc-hidden {
    opacity: 0;
}


/* remind */
.remind-wrapper {
    padding: 70px 0;
    background: linear-gradient(0deg, #FFE9E0 0%, #FFE8C9 100%);
}

.remind-wrapper .remind-content {
    max-width: 1200px;
    margin: 0 auto;
}

.remind-wrapper .remind-desc {
    margin-bottom: 32px;
}

.remind-wrapper .remind-container {
    position: relative;
    width: 100%;
    height: 680px;
    background-image: url(https://static.shokz.co.kr/resource/2026/04/21/Frame-pc_69e73ffd94bbc.webp);
    background-size: cover;
}


.remind-wrapper .remind-footer {
    position: absolute;
    bottom: 22px;
    left: 36px;
    right: 30px;
    /* width: 100%; */
    display: flex;
    align-items: center;
    gap: 18px;
}

.remind-wrapper .remind-info {
    position: absolute;
    top: 77px;
    right: 76px;
    width: 432px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.remind-wrapper .remind-info-title {
    color: #70331C;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}


.remind-wrapper .remind-info-text {
    color: #FF4D0A;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
}

.remind-wrapper .remind-info-desc {
    color: #70331C;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.remind-wrapper .remind-info-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: #404040;
    margin: 20px 0 24px;
}

.remind-wrapper .remind-info-notice button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    border: 1px solid #FFF;
    background: #FFE6C5;
    box-sizing: border-box;
    width: 146px;
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    color: #404040;
}

.remind-wrapper .remind-btn {
    width: 274px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    font-size: 16px;
    font-weight: 600;
}

.remind-wrapper .remind-card {
    position: relative;
    height: 244px;
    border-radius: 8px;
}

.remind-wrapper .remind-left {
    width: 411px;
    background-image: url(https://static.shokz.co.kr/resource/2026/04/14/card-left_69ddb6ab89280.webp);
    background-size: cover;
}

.remind-wrapper .remind-right {
    flex: 1;
    background-image: url(https://static.shokz.co.kr/resource/2026/04/14/card-right_69ddb6aba96fa.webp);
    background-size: cover;
}

.remind-wrapper .remind-card-title {
    position: absolute;
    top: 6px;
    left: 12px;
    color: #845441;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.remind-wrapper .remind-left .remind-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 68px 12px 0;
}

.remind-wrapper .remind-left .remind-img {
    width: 145px;
}

.remind-wrapper .remind-left .remind-card-info-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
}

.remind-wrapper .remind-left .text {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.remind-wrapper .remind-left .round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    box-sizing: border-box;
    border-radius: 17px;
    border: 1px solid #834409;
    font-size: 12px;

}

.remind-wrapper .remind-left .round span {
    display: inline-flex;
    background: linear-gradient(275deg, #834309 39.41%, #E58613 111.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.remind-wrapper .remind-card-text {
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.remind-wrapper .remind-card-price {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
}

.remind-wrapper .amount {
    color: #C46A00;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.remind-wrapper .original {
    color: #C58649;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration-line: line-through;
}

.remind-wrapper .remind-card-desc {
    color: #404040;
    font-size: 12px;
}


.remind-wrapper .remind-right .remind-card-content {
    display: flex;
    align-items: center;
    padding: 60px 16px 0;
    gap: 32px;
}

.remind-wrapper .remind-right .remind-img-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remind-wrapper .remind-right img {
    width: 82px;
}

.remind-wrapper .remind-right .text {
    font-size: 16px;
    line-height: 1.3;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.remind-wrapper .remind-right .text-active {
    color: #C46A00;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.remind-wrapper .remind-right .text-active span {
    font-size: 24px;
}

/* comment */
.comment-wrapper {
    padding: 83px 0 86px;
    background: #FFF7F2;
}

.comment-wrapper .comment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comment-wrapper .comment-container {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 24px;

}

.comment-wrapper .comment-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 680px;
    height: 310px;
    box-sizing: border-box;
    border-radius: 6px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF6D2;
}

.comment-wrapper .comment-text {
    font-size: 22px;
    color: #834309;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.comment-wrapper .comment-text .tit {
    color: #F18400;
    font-size: 26px;
}

.comment-wrapper .comment-text br{
    display: none;
}

.comment-wrapper .comment-desc {
    font-size: 20px;
    color: #0A0A0A;
    margin-bottom: 6px;
}




.comment-wrapper .comment-desc span {
    color: #834309;
    font-weight: 600;
}

.comment-wrapper .comment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 274px;
    height: 48px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    margin: 32px 0 0px;
}

.comment-wrapper .comment-btn.disabled {
    background: #A3A3A3;
}

.comment-wrapper .comment-right {
    flex: 1;
}




.comment-area {
    margin-top: 24px;
    display: none;

}

.comment-area .comment-box {
    position: relative;
    background: #fff;
    padding: 28px 52px;
    border-radius: 6px;
}


.comment-area textarea {
    width: 100%;
    height: 146px;
    border: none;
    resize: none;
    font-size: 18px;
    box-sizing: border-box;
    outline: none;
}



.comment-area .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.comment-area button {
    width: 156px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    background: #FF7A3D;
    border-radius: 4px;
}


.comment-area .counter {
    font-size: 16px;
    color: #404040;
}

.comment-notice-text {
    font-size: 16px;
}

.bubble-content.comment::after {
    left: 15%;
}

.comment-wrapper .comment-swiper-wrap {
    margin-top: 46px;
}

.comment-wrapper .comment-swiper-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.comment-wrapper .comment-swiper-card {
    position: relative;
    height: 314px;
    border-radius: 12px;
    border: 1px solid #E8C191;
    background: linear-gradient(180deg, #FFEBE7 0%, #FFF6EB 100%);
    box-shadow: 3px 4px 4px 0 rgba(186, 170, 149, 0.15);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comment-wrapper .comment-swiper-dot {
    position: absolute;
    top: -11px;
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 50%;
    box-sizing: border-box;
    border: 3px solid #E8A991;
    background: #FCE6DE;

}

.comment-wrapper .comment-swiper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.comment-wrapper .comment-swiper-header .title {
    color: #0A0A0A;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.comment-wrapper .comment-swiper-header button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    height: 20px;
    font-size: 12px;
    color: #FFF;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 17px;
    border: 1px solid #834409;
    background: linear-gradient(272deg, #834409 -2.6%, #B76300 135.21%);

}

.comment-wrapper .comment-swiper-content {
    flex: 1;

}


.comment-wrapper .comment-swiper-text {
    color: #737373;
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-wrapper .comment-swiper-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #737373;
    font-size: 14px;
}

.comment-swiper {
    padding-top: 16px;
}

.comment-swiper .product-swiper-page {
    display: block;
}


.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    gap: 50px;
}

.page-numbers .page-item {
    cursor: pointer;
    padding: 0 8px;
    color: #a3a3a3;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 600;
}

.page-numbers .page-item.active {
    color: #000;

}

/* 左右圆圈按钮 */
.swiper-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-nav-btn.disabled {
    opacity: 0.6;
}

/* 优惠积分 */
.points-wrapper {
    padding: 45px 0;
    background: linear-gradient(180deg, #F4EDEC 0%, #FFE9E0 100%);
}

.points-wrapper .points-content {
    max-width: 1200px;
    margin: 0 auto;
}

.points-wrapper .points-container {
    display: flex;
    align-items: center;
    gap: 140px;
    margin-top: 28px;
}

.points-wrapper .points-gift-img {
    width: 583px;
}

.points-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.points-wrapper .points-item {
    position: relative;
    width: 384px;
}

.points-wrapper .points-item::before {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 82px;
    background: #EEEDED;
    content: " ";
}


.points-wrapper .points-item::after {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 82px;
    background: #EEEDED;
    content: " ";
}

.points-info-wrap {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.points-wrapper .points-info {
    display: flex;
    flex-direction: column;
}

.points-wrapper .points-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 10px;
}

.points-wrapper .points-info .img1 {
    width: 75px
}

.points-wrapper .points-info .img2 {
    width: 63px
}

.points-wrapper .points-btn {
    width: 102px;
    height: 40px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    font-size: 16px;
    font-weight: 600;
}

.points-wrapper .points-btn.grey {
    background: #A3A3A3
}

.points-wrapper .points-desc {
    text-align: right;
    margin-top: 14px;
    color: #404040;
    font-size: 12px;
}







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

    .banner-wrapper {
        height: 554px;
    }

    .banner-wrapper .banner-bg {
        height: 100%;
    }


    .banner-wrapper .banner-content {
        top: 20px;
        transform: translate(-50%, 0);
    }

    .banner-wrapper .banner-sub-title {
        text-align: center;
    }

    .banner-wrapper .banner-title {
        text-align: center;
    }

    .banner-wrapper .banner-desc {
        text-align: center;
    }

    .banner-wrapper .banner-countdown {
        justify-content: center;
        margin-bottom: 20px;
    }

    .banner-wrapper .banner-text {
        display: none;
    }

    .banner-wrapper .banner-btn {
        margin: 0 auto;
    }

    .product-wrapper .product-content {
        padding: 0 16px;
    }

    .comment-swiper .product-swiper-page {
        display: none;
    }



}



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



    .banner-wrapper .banner-content {
        top: 70px;
        transform: translate(-50%, 0);
    }

    .banner-wrapper .banner-sub-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .banner-wrapper .banner-title {
        font-size: 32px;
        margin-bottom: 20px;
    }


    .banner-wrapper .banner-desc {
        font-size: 16px;
        text-align: center;
        margin-bottom: 12px;
    }

    .banner-wrapper .banner-countdown {
        justify-content: center;
        margin-bottom: 20px;
    }

    .banner-wrapper .banner-btn {
        width: 190px;
        height: 40px;
        font-size: 12px;
        margin: 0 auto;
    }

    /* nav */
    .nav-wrapper .nav-content {
        padding: 0 16px;
    }

    .nav-wrapper .nav-item {
        font-size: 16px;
    }

    .nav-wrapper .nav-item.active {
        font-size: 18px;
    }

    .nav-wrapper .pc-text {
        display: none;
    }

    .nav-wrapper .mb-text {
        display: block;
    }

    /* common */
    .section-title {
        font-size: 20px;
    }

    .section-desc {
        margin-top: 4px;
        font-size: 16px;
    }

    .section-desc br {
        display: block;
    }

    .subscription-container {
        font-size: 12px;
    }

    .notice-wrap img {
        width: 12px;
    }

    /* lottery */
    .lottery-wrapper {
        padding: 0 0 35px 0;
    }

    .lottery-wrapper .lottery-content {
        padding: 0 16px;
    }

    .lottery-wrapper .lottery-title {
        padding-top: 34px;
    }


    .lottery-wrapper .lottery-gift {
        flex-direction: column;
        height: auto;
    }

    .lottery-wrapper .lottery-text {
        font-size: 16px;
        text-align: center;
    }

    .lottery-wrapper .lottery-desc {
        margin-bottom: 24px;
    }

    .lottery-wrapper .lottery-container {
        flex-direction: column;
        gap: 24px;
    }

    .lottery-wrapper .lottery-left {
        width: 100%;
    }

    .lottery-wrapper .radio-container {
        margin: 16px 0;
        gap: 8px;
    }

    .lottery-wrapper .radio-text {
        font-size: 14px;
    }

    .lottery-wrapper .radio-icon {
        width: 20px;
        height: 20px;
    }

    .lottery-wrapper .radio-icon img {
        width: 12px;
    }

    .lottery-wrapper .lottery-btn {
        height: 40px;
    }

    .lottery-wrapper .lottery-right {
        gap: 10px;
    }

    .lottery-wrapper .lottery-num {
        width: 25px;
        height: 25px;
        margin-bottom: 16px;
    }

    .lottery-wrapper .lottery-gift {
        gap: 8px;
    }

    .lottery-wrapper .lottery-gift-title {
        margin: 24px 0 16px;
        text-align: center;
        font-size: 18px;
    }

    .lottery-wrapper .lottery-gift-item {
        flex: 1 !important;
    }

    .lottery-wrapper .gift-4 {
        flex-direction: row;
        gap: 10px;
    }




    .remind-wrapper .remind-content {
        padding: 0 12px;
    }

    .remind-wrapper .remind-container {
        height: 883px;
        border-radius: 8px;
        background-image: url(https://static.shokz.co.kr/resource/2026/04/21/Frame-mo_69e73ffd524ab.webp);
    }

    .remind-wrapper .remind-info {
        top: 233px;
        right: 0;
        width: 100%;
    }

    .remind-wrapper .remind-info-title {
        font-size: 20px;
        margin-bottom: 6px;
    }



    .remind-wrapper .remind-info-text {
        font-size: 20px;
        color: #FF4D0A;
        opacity: 0.7;
        margin-bottom: 12px;
    }

    .remind-wrapper .remind-info-desc {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .remind-wrapper .remind-info-notice {
        font-size: 14px;
        margin: 12px 0 14px;
        gap: 8px;
    }

    .remind-wrapper .remind-info-notice button {
        width: 124px;
        font-size: 12px;
        height: 26px;
    }

    .remind-wrapper .remind-btn {
        width: 250px;
        height: 40px;
    }


    .remind-wrapper .remind-footer {
        width: auto;
        flex-direction: column;
        left: 16px;
        right: 16px;
        bottom: 32px;
        gap: 16px;
    }

    .remind-wrapper .remind-card {
        width: 100% !important;
        height: 186px !important;
        background-image: url(https://static.shokz.co.kr/resource/2026/04/14/card-m_69ddd9b5b30ea.webp) !important;
    }

    .remind-wrapper .remind-left .remind-card-info-title {
        margin-bottom: 16px;
    }

    .remind-wrapper .remind-card-title {
        font-size: 16px;
    }

    .remind-wrapper .remind-left .remind-img {
        width: 120px;
    }

    .remind-wrapper .remind-left .remind-card-content {
        padding: 50px 0px 0;
        gap: 5px;
    }

    .remind-wrapper .remind-left .text {
        font-size: 18px;
    }

    .remind-wrapper .remind-left .round {
        padding: 2px 6px;
    }

    .remind-wrapper .remind-card-price {
        margin-bottom: 16px;
    }

    .remind-wrapper .remind-right img {
        width: 58px;
    }

    .remind-wrapper .remind-right .remind-card-content {
        flex-direction: column;
        padding: 30px 0 0;
        gap: 0;
        height: 186px;
    }

    .remind-wrapper .remind-right .remind-img-item:last-child {
        margin-top: -20px;
    }



    .remind-wrapper .remind-right .text {
        font-size: 13px;
        text-align: center;
        margin-bottom: 4px;
    }

    .remind-wrapper .remind-right .text-active {
        font-size: 13px;
        text-align: center;
    }

    .remind-wrapper .remind-right .text-active span {
        font-size: 16px;
    }

    .remind-wrapper .remind-right {
        height: 186px;
    }


    .product-card .pic-wrapper {
        height: auto;
         aspect-ratio: 1 / 1;
    }

    .product-card .product-pic {
        width: auto;
        height: auto;
    }

    .product-card .product_gift_box {
        width: 300px;
    }

    .pc-hidden {
        opacity: 1;
    }

    .product-wrapper .product-category-item {
        font-size: 14px;
        padding: 0 10px;
        height: 36px;
    }

    .product-wrapper .product-category-item.active {
        font-size: 16px;
    }

    .product-wrapper .product-category-container {
        justify-content: space-between;
        gap: 8px;
        margin: 0 -8px 24px;
    }

    .product-wrapper {
        padding: 44px 0 54px;
    }

    .product-wrapper .product-title {
        margin-bottom: 8px;
    }

    .product-wrapper .product-desc {
        margin-bottom: 20px;
    }


    .product-category-content {
        margin-bottom: 24px;
    }

    /* 评论 */
    .comment-wrapper {
        padding: 54px 16px;
    }


    .comment-wrapper .comment-container {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 30px;
        gap: 24px;

    }

    .comment-wrapper .comment-left {
        height: 240px;
        width: 100%;
    }

    .comment-wrapper .comment-text {
        font-size: 16px;
        text-align: center;
    }

    .comment-wrapper .comment-text br{
        display: block;
    }

    .comment-wrapper .comment-text .mb-hide{
        display: none;
    }

    .comment-wrapper .comment-text .tit {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .comment-wrapper .comment-desc {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .comment-wrapper .comment-btn {
        width: 300px;
        height: 40px;
        margin: 20px 0 0px;
    }

    .comment-wrapper .comment-right {
        flex: 1;
    }

    .comment-area{
        margin-top: 0;
        width: 100%;
    }

    .comment-area textarea {
        font-size: 14px;
    }

    .comment-area .comment-box {
        padding: 16px;
    }

    .comment-notice-text {
        font-size: 14px;
    }

    .comment-area .counter {
        font-size: 14px;
    }


    .comment-wrapper .comment-swiper-wrap {
        margin-top: 32px;
    }

    .comment-wrapper .comment-swiper-title {
        font-size: 16px;
    }

    .comment-wrapper .comment-swiper-header .title {
        font-size: 16px;
    }

    .comment-wrapper .comment-swiper-text {
        font-size: 12px;
    }

    .comment-wrapper .comment-swiper-card {
        height: 270px;
        padding: 24px 12px;
    }

    /* 积分 */
    .points-wrapper .points-container {
        flex-direction: column-reverse;
    }

    .points-wrapper .points-container {
        gap: 24px;
        padding: 0 16px;
    }

    .points-wrapper .points-item {
        width: 100%;
    }

    .points-wrapper .points-right {
        gap: 16px;
    }

    .points-wrapper .points-text {
        margin-bottom: 18px;
    }



    .prize-dialog-content {
        max-width: 375px;
        width: 90%;
        height: 480px;
    }

    .prize-dialog-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .prize-dialog-text {
        font-size: 16px;
        margin-bottom: 20px;
        width: 80%;
        text-align: center;
    }

    .prize-dialog-desc {
        margin-top: 28px;
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .prize-dialog-desc br {
        display: block;
    }

    .cart-dialog-title {
        font-size: 20px;
    }

    .cart-dialog-desc {
        font-size: 20px;
    }

    .prize-dialog-content.cart-dialog-content {
        height: 482px;
    }

    .cart-dialog-desc br {
        display: block;
    }


    .swiper-button-disabled svg {
        opacity: 1;
    }

    .swiper-button-disabled {
        opacity: 1
    }

    .gift-1,
    .gift-2,
    .gift-3 {
        aspect-ratio: 1083 / 294;
    }

    .gift-4 div {
        aspect-ratio: 528 / 378;
    }

    .lottery-item div{
        aspect-ratio: 416 / 416;
    }

    .product-gift-card {
        height: auto;
    }

    .product-gift-card img {
        aspect-ratio: 1083 / 312;
    }

    .remind-img-wrap img {
        aspect-ratio: 246 / 243;
    }

    .custom-pagination {
        display: none;
    }

    .prize-dialog-content.comment-dialog-content {
        padding: 70px 24px;
        min-height: 482px;
    }

    .comment-dialog-time {
        font-size: 14px;
    }

    .comment-dialog-desc {
        font-size: 16px;
    }

    .lottery-wrapper .radio-item {
        height: 56px;
    }

    .product-card .product_gift_bg {
        position: absolute;
        left: 16px;
        right: 16px;
    }



    .comment-desc-text {
        margin: 4px -5px 0;
    }

    .comment-dialog-desc {
        max-height: 300px;
        overflow-y: auto;
    }

    .prize-dialog-content.comment-dialog-content {
        width: 90%;
    }

    .product-card .product_gift_bg {
        bottom: 16px;
    }

    .product-card .product_gift_bg.bottom-12 {
        bottom: 12px;
    }

    .product-card .product-type{
        gap: 0;
    }

    .product-card .product-info{
        padding: 16px;
    }

}

@media screen and (max-width: 520px) {
    .product-swiper {
        width: 100%;
    }

    .product-card {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .subscription-container .more-wrap {
        margin-right: 15px;
    }

    .product-wrapper .product-category-item {
        font-size: 12px;
        padding: 0 10px;
        height: 36px;
    }

    .product-wrapper .product-category-item.active {
        font-size: 14px;
    }
}


@media screen and (max-width: 360px) {
    .lottery-wrapper .radio-item {
        padding: 0 25px;
    }

    .remind-wrapper .remind-card-desc {
        font-size: 11px;
    }

    .comment-desc-text {
        margin: 4px -10px 0;
    }

    .comment-wrapper .comment-desc {
        font-size: 13px;
    }

    .subscription-container .check-wrap {
        margin-right: 4px;
    }

    .subscription-container .more-wrap {
        margin-right: 10px;
    }

    .subscription-container .text {
        margin-right: 10px;
    }

    .product-card .type-li{
        font-size: 12px;
    }

}









/* 气泡 */

/* --- 基础容器 --- */
.bubble-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* 遮罩层：默认隐藏 */
.bubble-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
}

/* 气泡内容主体：默认形态 (PC气泡) */
.bubble-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 262px;
    /* 匹配你代码中的宽度 */
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #737373;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: none;
    /* 默认隐藏 */
}

.bubble-content.w250 {
    width: 256px;
    text-align: center;
}

.as-modal .bubble-content {
    padding: 24px 18px;
    max-width: 485px;
}

.bubble-text {
    color: #0A0A0A;
    font-size: 14px;
    line-height: 1.3;
}

.bubble-text br {
    display: none;
}

.bubble-desc {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.bubble-desc a {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration-line: underline;
}

.pos-bottom .bubble-content.footer {
    top: calc(100% + (-5px));
}

.pos-bottom .bubble-content.max-width {
    max-width: 413px;
}


/* 列表样式适配 */
.bubble-content .dot {
    position: relative;
    text-align: justify;
    word-break: break-all;
    font-size: 14px;
    /* 稍微调小一点适配屏幕 */
    color: #737373;
    line-height: 1.4;
    padding-left: 15px;
    list-style: none;
}

.bubble-content .dot::before {
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    top: 8px;
    border-radius: 50%;
    background: #737373;
    content: " ";
}

/* 尖角逻辑 */
.bubble-content::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
}

/* 关闭按钮：PC默认不显示 */
.close-btn {
    display: none;
}

/* --- PC端 专属逻辑 (隔离 hover) --- */
@media (min-width: 769px) {

    /* 仅在宽屏下允许悬浮触发 */
    .bubble-wrapper.hover-trigger:hover .bubble-content {
        display: block;
    }
}

/* --- 通用激活逻辑 (用于点击) --- */
.bubble-wrapper.is-active .bubble-content {
    display: block;
}

/* 方向控制 */
.pos-top .bubble-content {
    bottom: calc(100% + 10px);
}

.pos-top .bubble-content::after {
    top: 100%;
    border-color: #fff transparent transparent transparent;
}

.pos-bottom .bubble-content {
    top: calc(100% + 10px);
}

.pos-bottom .bubble-content::after {
    bottom: 100%;
    border-color: transparent transparent #fff transparent;
}

/* --- 移动端核心：强制变弹窗 --- */
@media (max-width: 768px) {

    /* 强制重置定位 */
    .bubble-wrapper.as-modal.is-active .bubble-content {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;

        display: block !important;
        width: 90% !important;
        max-width: 340px !important;

        /* 针对长列表的处理 */
        max-height: 75vh !important;
        overflow-y: auto !important;

        z-index: 2000 !important;
        padding: 40px 18px 24px !important;
        /* 顶部留出位置给关闭按钮 */
    }

    /* 显示遮罩 */
    .bubble-wrapper.as-modal.is-active .bubble-overlay {
        display: block !important;
    }

    /* 隐藏小尖角 */
    .bubble-wrapper.as-modal.is-active .bubble-content::after {
        display: none !important;
    }

    /* 弹出关闭按钮 */
    .bubble-wrapper.as-modal.is-active .close-btn {
        display: block !important;
        position: absolute !important;
        top: 10px;
        right: 15px;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        line-height: 1;
    }

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

    .bubble-text.center {
        text-align: center;
    }

    .bubble-text br {
        display: block;
    }

    .mo-left {
        transform: translateX(-10%);
    }

    .bubble-content.mo-left::after {
        left: 10%;
    }

    .bubble-text.font14 {
        font-size: 14px;
    }

    .bubble-desc {
        font-size: 12px;
        margin-top: 5px;
    }

    .bubble-content.m-r {
        left: 0;
    }

    .bubble-content.m-r::after {
        left: 60%;
    }


}