body {
    margin: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    background: #fafbfc;
    color: #222;
}

.tg-dark body {
    background: #181818;
    color: #f7f7f7;
}

/* 顶部吸顶区 */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 12px;
    background: transparent;
}

/* 搜索栏：边框颜色=按钮背景色 */
.search-bar {
    --primary: #1677ff;
    /* ✅ 主题色：边框/按钮统一 */
    display: flex;
    align-items: center;
    gap: 8px;

    border: 2px solid var(--primary);
    /* ✅ 边框=按钮色 */
    border-radius: 999px;
    padding: 6px;
    background: rgba(240, 245, 255, 1);
    /* 接近你截图的浅色底（可改） */
}

/* 输入框：不再单独画边框，让外层边框更干净 */
.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    color: #1f2a44;
}

/* 按钮：背景=主题色 */
.search-btn {
    border: none;
    background: var(--primary);
    /* ✅ 与边框同色 */
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* 聚焦增强（可选） */
.search-bar:focus-within {
    box-shadow: 0 0 0 3px rgba(22, 119, 255, .18);
}

/* 欢迎页全屏遮罩：全透明+模糊毛玻璃 */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /* 确保最小高度为视窗高度 */
    background: rgba(255, 255, 255, 0.65);
    /* 改为半透明白色，毛玻璃效果更明显 */
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 9999;
    /* 确保在最高层 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* 防止滚动 */
}

/* 卡片内容，始终悬浮页面中心 */
.welcome-content {
    position: fixed;
    /* 改为 fixed 定位 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 真正的居中定位 */
    background: #d0ebd3;
    border-radius: 24px;
    box-shadow: 0 8px 40px 0 rgba(40, 80, 160, 0.18);
    padding: 32px 24px 24px 24px;
    max-width: 360px;
    width: 90vw;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.22s cubic-bezier(.47, 1.64, .41, .8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* 高于遮罩层 */
}

/* 欢迎页标题和描述 */
.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
}

.welcome-desc {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    text-align: center;
}

/* 单列福利区 - 确保居中 */
.welcome-banners {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.welcome-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
}

.welcome-banner img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    /* 改为 cover 保持图片比例 */
    background: #f3f6fb;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(51, 65, 85, 0.1);
}

.banner-caption {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #232b45;
    font-weight: 600;
    margin-bottom: 2px;
}

.badge {
    font-style: normal;
    font-size: 12px;
    padding: 2px 9px;
    background: #fa4f33;
    color: #fff;
    border-radius: 12px;
    margin-left: 2px;
    font-weight: 700;
    box-shadow: 0 1px 4px #fa4f3340;
}

.main-btn,
.sub-btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 999px;
    font-size: 16px;
    padding: 12px 0;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px #1677ff15;
}

.main-btn {
    background: #1677ff;
    color: #fff;
    margin-bottom: 8px;
}

.sub-btn {
    background: #f6f8fb;
    color: #1677ff;
}

.welcome-close {
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 22px;
    color: #b2b7c6;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

.welcome-note {
    margin-top: 14px;
    font-size: 11px;
    color: #b3bdd1;
    text-align: center;
}

@media (max-width: 520px) {
    .welcome-content {
        padding: 14px 2vw 10px 2vw;
        max-width: 99vw;
        border-radius: 10px;
    }

    .welcome-banner {
        max-width: 99vw;
    }

    .welcome-banner img {
        max-height: 30vw;
    }
}

/* ===== 首页轮播 Banner ===== */
.banner-slider {
    width: 100%;
    margin: 10px 0 12px;
    min-height: 90px;
    cursor: pointer;
}

.banner-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f4f8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    /* 可选：更像卡片 */
}

.banner-track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform .35s ease;
    will-change: transform;
}

.banner-slide {
    flex: 0 0 100%;
    position: relative;
}

/* 固定一个“看得见”的高度：用比例盒子（3:1） */
.banner-slide::before {
    content: "";
    display: block;
    padding-top: 33.3333%;
}

.banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
}

.banner-dot.is-active {
    background: rgba(255, 255, 255, .95);
}

/* 容器：一行放得下就一行，放不下自动换行 业务入口*/
.biz-entrance-iframe-grid {
    width: 100%;
}

.biz-iframe-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
}

/* 业务入口：可点击卡片（默认只显示图片+标题） */
.biz-entry {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 86px;
    /* 你原来就是 86px，保留 */
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
}

/* 卡片主视觉（图片占满） */
.biz-card {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .12s ease, box-shadow .12s ease;
}

/* 图片就是主视觉：铺满卡片 */
.biz-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 真实图片风格：填充裁切 */
    display: block;
}

/* 标题在最下方 */
.biz-label {
    width: 72px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #212c4b;
    margin: 6px 0 0 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* iframe 默认不显示、不加载（点开才进入业务页，所以首页不嵌入） */
.biz-iframe {
    display: none !important;
    width: 0;
    height: 0;
    border: 0;
}

/* 交互：轻微浮起 */
.biz-entry:hover .biz-card {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.biz-entry:active .biz-card {
    transform: translateY(0px) scale(0.98);
}

/* 业务分类整体区块 */
.category-section {
    margin: 20px 0 12px 0;
    width: 100%;
}

/* 分类标题 */
.cat-title {
    font-size: 17px;
    font-weight: 800;
    margin-left: 10px;
    margin-bottom: 8px;
}

.cat-title.red {
    color: #e23b37;
}

/* 自适应栅格布局 */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 6px;
    justify-items: center;
    width: 100%;
    padding: 0 6px;
}

/* 超小屏自动 2/3 列，桌面 6~8 列 */
@media (max-width: 400px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 500px) and (max-width: 700px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* 分类卡片 */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 68px;
    min-height: 88px;
    padding: 6px 2px 0 2px;
    border-radius: 18px;
    transition: background .12s;
    user-select: none;
}

.cat-card:active {
    background: #f1f6fe;
}

.cat-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f5f7fa;
    overflow: hidden;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px #d2e0f640;
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #f8fafc;
    /* 支持 svg、png、jpg 均自适应不变形 */
}

.cat-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #222c35;
    margin-top: 3px;
    line-height: 1.12;
    text-align: center;
    word-break: keep-all;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 可选：鼠标悬停、触摸高亮 */
.cat-card:hover,
.cat-card:focus {
    background: #eaf4ff;
}

/* 小功能行 */
.func-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 9px 14px;
    border-radius: 15px;
    margin: 12px 6px 18px 6px;
    box-shadow: 0 1px 6px #eee;
}

.func-stats {
    font-size: 14px;
    color: #1b1c1f;
}

.func-signin {
    display: flex;
    align-items: center;
}

.signin-btn {
    background: #1976ed;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 7px 17px;
    border-radius: 13px;
    cursor: pointer;
    font-size: 15px;
}

#signinMsg {
    color: #19884d;
    font-size: 13px;
    margin-left: 8px;
}

/* 优惠券提示信息样式 */
.coupon-tip {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background-color: #ff9800;
    color: white;
    font-size: 12px;
    margin-left: 5px;
    cursor: help;
    position: relative;
    vertical-align: middle;
}

.coupon-tip:hover {
    background-color: #e68900;
}

.coupon-tip:hover::after {
    content: "今日已发放优惠券数量，签到可获得更多优惠券！";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    padding: 8px 10px;
    background-color: #333;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    z-index: 1000;
    white-space: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    text-align: center;
    pointer-events: none;
}

.coupon-tip:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    margin-bottom: 2px;
    pointer-events: none;
}

/* 热门推荐 */
.hot-recommend {
    margin: 18px 0;
}

.hot-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 12px 12px;
}

.hot-cards {
    display: flex;
    gap: 13px;
    padding-left: 6px;
}

.hot-card {
    background: #fff;
    padding: 10px 10px 6px 10px;
    border-radius: 15px;
    box-shadow: 0 1px 6px #ececec;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 112px;
    max-width: 160px;
}

.hot-card img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
}

.hot-desc {
    font-size: 14px;
    color: #222;
    margin-bottom: 6px;
    text-align: center;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 40px;
    /* 建议加上，防止极端字体/行高撑开 */
}

.hot-btn {
    background: #1976ed;
    color: #fff;
    border: none;
    padding: 5px 18px;
    border-radius: 9px;
    font-size: 13px;
    cursor: pointer;
}

/* 商家推荐区 */
.store-section {
    margin: 16px 0;
}

.store-title {
    font-size: 15px;
    font-weight: 800;
    margin-left: 12px;
}

.store-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    margin: 11px 10px 0 10px;
}

.store-card {
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 2px 7px #f2f2f2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.store-img img {
    width: 100%;
    height: 56px;
    object-fit: cover;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

.store-info {
    padding: 6px 10px;
}

.store-name {
    font-weight: 700;
    font-size: 14px;
    color: #1e1e1e;
}

.store-desc {
    font-size: 12px;
    color: #868686;
    margin: 2px 0 5px;
}

.store-btn {
    background: #1976ed;
    color: #fff;
    padding: 4px 0;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 12px;
}

.store-more-btn {
    display: block;
    margin: 16px auto 0 auto;
    background: #fff;
    color: #1976ed;
    font-weight: 700;
    border: 1px solid #1976ed;
    border-radius: 14px;
    padding: 6px 38px;
    box-shadow: 0 2px 7px #f2f2f2;
}

/* 福利公告 */
.announcement-bar {
    background: #fff;
    margin: 16px 7px 0 7px;
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 1px 4px #f3f3f3;
}

.announcement-title {
    font-size: 14px;
    font-weight: 700;
}

.announcement-content {
    font-size: 13px;
    color: #2d3748;
    line-height: 1.7;
}

/* 商家入口折叠区 */
.merchant-entry {
    margin: 20px 7px;
}

.entry-header {
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
}

.see-more {
    color: #1976ed;
    font-size: 13px;
}

.entry-content {
    display: none;
}

.entry-card {
    background: #f6f8fa;
    border-radius: 10px;
    padding: 13px 13px;
    margin: 8px 0;
    box-shadow: 0 1px 6px #f0f0f0;
}

.entry-title {
    font-weight: 700;
    font-size: 14px;
}

.entry-desc {
    font-size: 13px;
    color: #888;
}

.entry-btn {
    margin-top: 7px;
    background: #1976ed;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 5px 20px;
    font-size: 12px;
}

.entry-collapse {
    margin: 6px 0 0 0;
    width: 100%;
    background: #fff;
    color: #1976ed;
    border: 1px solid #1976ed;
    border-radius: 8px;
    padding: 3px 0;
    font-size: 13px;
}

/* 底部胶囊悬浮栏 */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 8px 0;
    background: rgba(38, 42, 49, 0.91);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    backdrop-filter: blur(12px);
}

.nav-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 7px 18px;
    border-radius: 16px;
    font-weight: 700;
    opacity: 0.82;
}

.nav-btn.active {
    background: #1976ed;
    color: #fff;
    opacity: 1;
}

@media (max-width:700px) {
    .welcome-content {
        max-width: 97vw;
    }

    .biz-iframe-row,
    .biz-label-row {
        gap: 4px;
    }

    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hot-cards {
        gap: 5px;
    }

    .store-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1000px) {
    .biz-iframe {
        width: 82px;
        height: 82px;
    }

    .biz-label {
        width: 82px;
    }
}

/* ===================== 签到优惠券模块样式 ===================== */

/* 统计数字更新动画 */
.stat-updated {
    animation: statPulse 0.5s ease-in-out;
}

@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* 优惠券获得动画 */
.coupon-reward {
    animation: couponPulse 0.5s ease-in-out 3;
}

@keyframes couponPulse {

    0%,
    100% {
        color: #e23b37;
        transform: scale(1);
    }

    50% {
        color: #ff9800;
        transform: scale(1.1);
    }
}

/* 奖励提示动画 */
.reward-tip {
    position: absolute;
    background: #ff9800;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 100;
    animation: rewardFloat 1s ease-out forwards;
    white-space: nowrap;
}

@keyframes rewardFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1);
    }
}

/* 优惠券提示图标 */
.coupon-tip {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background-color: #ff9800;
    color: white;
    font-size: 12px;
    margin-left: 5px;
    cursor: help;
    position: relative;
    vertical-align: middle;
    transition: background-color 0.2s, transform 0.1s;
}

.coupon-tip:hover {
    background-color: #e68900;
}

.coupon-tip:active {
    transform: scale(0.95);
}

/* 提示信息气泡 */
.coupon-tip:hover::after {
    content: "今日已发放优惠券数量，签到可获得更多优惠券！";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    padding: 8px 10px;
    background-color: #333;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    z-index: 1000;
    white-space: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    text-align: center;
    pointer-events: none;
}

.coupon-tip:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    margin-bottom: 2px;
    pointer-events: none;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .coupon-tip:hover::after {
        width: 140px;
        font-size: 11px;
        left: 50%;
        transform: translateX(-50%);
    }

    .reward-tip {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* ===================== 签到模块专用样式 ===================== */

/* 签到按钮加载动画 */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 签到成功动画 */
.signin-success-animation {
    animation: pulse-success 0.6s ease-in-out;
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0.2);
}

@keyframes pulse-success {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* 优惠券跳动动画 */
.coupon-bounce {
    animation: bounce 0.6s ease-in-out;
    display: inline-block;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* 签到消息样式 */
.signin-processing {
    color: #17a2b8;
    font-weight: bold;
}

.signin-success {
    color: #28a745;
    text-align: center;
}

.signin-error {
    color: #dc3545;
}

.success-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 8px;
    font-weight: bold;
}

.checked-icon {
    display: inline-block;
    margin-right: 5px;
    font-weight: bold;
}

/* 已签到按钮样式 */
.signin-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed !important;
}

/* 全局Toast提示 */
.global-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(150%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.global-toast.show {
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left: 4px solid #1e7e34;
}

.toast-error {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    border-left: 4px solid #bd2130;
}

.toast-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-left: 4px solid #d39e00;
}

.toast-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    border-left: 4px solid #138496;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* 优惠券动画效果 */
.flash {
    animation: flash 0.5s ease-in-out;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.share-bonus {
    animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* 已签到图标 */
.checked-icon {
    display: inline-block;
    margin-right: 5px;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .global-toast {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
    }
}