
        .cny-notice {
            max-width: 880px;
            margin: 0 auto;
            padding: 32px 28px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #222;
            line-height: 1.65;
            font-size: 16px;
        }

        /* 强制恢复加粗效果，防止被全局样式覆盖 */
        .cny-notice strong { 
            font-weight: 700 !important; 
        }

        .cny-notice h1 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            color: #d62828;
        }

        .notice-banner {
            background: #fff9db;
            border-left: 4px solid #fab005;
            padding: 16px;
            margin: 20px 0;
            text-align: center;
        }

        .highlight-date {
            font-weight: 700;
            color: #856404;
            margin: 0;
        }

        .discount-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        .discount-card {
            background: #fff;
            border: 1.5px solid #f8d7da;
            border-radius: 10px;
            padding: 18px 10px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(214, 40, 40, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-val {
            font-size: 20px;
            font-weight: 800;
            color: #e63946;
            line-height: 1.2;
        }

        .card-label {
            font-size: 13px;
            color: #666;
            margin-top: 4px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .extra-reward-bar {
            background: #fffafa;
            border: 1px dashed #f8d7da;
            border-radius: 8px;
            padding: 14px 20px;
            margin: 25px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            position: relative;
        }

        .reward-text {
            font-size: 16px;
            color: #444;
            margin: 0;
        }

        .reward-text-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .reward-desc {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        .coupon-pill {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid #e63946;
            border-radius: 4px;
            padding: 2px 2px 2px 10px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .code-text {
            font-family: monospace;
            font-weight: 700;
            font-size: 15px;
            color: #e63946;
            margin-right: 10px;
        }

        .copy-btn {
            background: #e63946;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 2px;
            text-transform: uppercase;
        }

        .copy-tip {
            position: absolute;
            bottom: -20px;
            font-size: 12px;
            color: #2a7a2a;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .copy-tip.show {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .cny-notice {
                padding: 20px 14px;
            }

            .extra-reward-bar {
                flex-direction: column;
                gap: 8px;
                padding: 15px;
                text-align: center;
            }
        }
    