        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            padding: 30px 35px;
        }

        /* 顶部标签 */
        .badge {
            display: inline-block;
            background: #e53935;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 4px;
            margin-right: 10px;
        }

        .title-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 0;
            margin-bottom: 12px;
        }

        .title-row h1 {
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .title-row .time-tag {
            font-size: 14px;
            color: #999;
            margin-left: 12px;
        }

        .title-row .deadline {
            display: inline-block;
            background: #fff3e0;
            color: #e65100;
            font-size: 14px;
            font-weight: 600;
            padding: 2px 14px;
            border-radius: 20px;
            margin-left: 10px;
        }

        .sub-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 18px 0 10px 0;
        }

        .desc-text {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 12px;
        }

        /* 礼包列表 */
        .gift-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px 20px;
            background: #f9fafc;
            border-radius: 10px;
            padding: 18px 22px;
            margin: 14px 0 18px 0;
            border: 1px solid #e8ecf0;
        }

        .gift-item {
            font-size: 14px;
            line-height: 1.7;
            color: #333;
        }

        .gift-item strong {
            color: #1a1a1a;
        }

        .highlight-box {
            background: #f0f7ff;
            border-left: 4px solid #1a73e8;
            padding: 14px 20px;
            border-radius: 6px;
            font-size: 15px;
            line-height: 1.8;
            margin: 16px 0 20px 0;
            color: #1a1a1a;
        }

        .highlight-box .phone {
            font-weight: 700;
            color: #1a73e8;
            font-size: 18px;
        }

        .address {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
            padding: 10px 0 6px 0;
            border-bottom: 1px dashed #e0e0e0;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 28px 0 14px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #1a73e8;
            display: inline-block;
        }

        .table-wrap {
            overflow-x: auto;
            margin: 16px 0 20px 0;
            border-radius: 10px;
            border: 1px solid #e8ecf0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            min-width: 700px;
        }

        table th {
            background: #f2f4f8;
            color: #1a1a1a;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 2px solid #d0d5dd;
        }

        table td {
            padding: 14px 16px;
            border-bottom: 1px solid #e8ecf0;
            vertical-align: middle;
        }

        table tr:last-child td {
            border-bottom: none;
        }

        table .model-name {
            font-weight: 500;
            color: #1a1a1a;
        }

        table .model-name a {
            color: #1a1a1a;
            text-decoration: none;
        }

        table .model-name a:hover {
            color: #1a73e8;
            text-decoration: underline;
        }

        .price {
            font-weight: 600;
            color: #e53935;
        }

        .price-original {
            color: #999;
            text-decoration: line-through;
            font-weight: 400;
        }

        .btn-link {
            display: inline-block;
            background: #1a73e8;
            color: #fff;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .btn-link:hover {
            background: #1557b0;
        }

        .note {
            font-size: 14px;
            color: #999;
            margin-top: 6px;
            padding: 6px 0 4px 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 16px 30px;
            background: #f9fafc;
            border-radius: 10px;
            padding: 20px 24px;
            margin: 18px 0 10px 0;
            border: 1px solid #e8ecf0;
        }

        .info-item {
            font-size: 15px;
            line-height: 1.7;
        }

        .info-item strong {
            color: #1a1a1a;
        }

        .footer-text {
            font-size: 15px;
            color: #555;
            margin-top: 24px;
            padding-top: 18px;
            border-top: 1px solid #e8ecf0;
            line-height: 1.8;
        }

        .footer-text .phone-link {
            color: #1a73e8;
            font-weight: 600;
            text-decoration: none;
        }

        .footer-text .phone-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .container {
                padding: 16px 14px;
            }

            .title-row h1 {
                font-size: 20px;
            }

            .gift-grid {
                grid-template-columns: 1fr;
                padding: 14px 16px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                padding: 16px 18px;
            }

            table {
                font-size: 14px;
                min-width: 600px;
            }

            table th,
            table td {
                padding: 10px 12px;
            }
        }