
        /* 基础重置：隔离容器，避免全局污染 */
        .refund-policy-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
            line-height: 1.8;
        }

        /* 页面容器 */
        .refund-policy-container {
            max-width: 1100px;
            width: 100%;
            margin: 40px auto;
            padding: 0 20px;
            color: #333;
            font-size: 17px; /* ✅ 统一正文基准 */
        }

        /* 内容区 */
        .refund-policy-content {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        /* 欢迎语 */
        .refund-welcome-text {
            margin-bottom: 35px;
            font-size: 17px; /* ✅ 从 18 → 17 */
            color: #555;
        }
        .refund-welcome-text strong {
            font-weight: 600; /* ✅ 只用字重强调，不放大字号 */
            color: #333;
        }

        /* 政策条款容器 */
        .refund-policy-section {
            margin-bottom: 24px;
            padding: 24px;
            background-color: #f9f9f9;
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .refund-policy-section:hover {
            background-color: #f5f5f5;
            border-left-color: #8B4513;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        /* 条款标题 */
        .refund-section-title {
            font-size: 24px;   /* ✅ 从 26 → 24，更偏政策页 */
            font-weight: 700;
            color: #222;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        /* 条款序号 */
        .refund-section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #8B4513;
            color: white;
            border-radius: 50%;
            line-height: 1;
            font-size: 16px;   /* ✅ 略降，避免抢标题 */
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 2px 6px rgba(139, 69, 19, 0.2);
        }

        /* 条款内容 */
        .refund-section-content {
            padding-left: 51px;
            font-size: 17px;  /* ✅ 从 18 → 17 */
            color: #444;
        }

        /* 列表 */
        .refund-section-content ul {
            margin: 12px 0;
            padding-left: 30px;
            list-style-type: disc;
        }
        .refund-section-content li {
            margin-bottom: 8px;
        }

        /* 高亮 */
        .refund-highlight {
            background-color: #f8f0e9;
            color: #8B4513;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* 邮箱 */
        .refund-contact-email {
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
        }
        .refund-contact-email:hover {
            text-decoration: underline;
        }

        /* 联系信息强调区 */
        .refund-contact-info {
            margin-top: 40px;
            padding: 25px;
            background-color: #f9f9f9;
            border-radius: 10px;
            text-align: center;
            font-size: 17px; /* ✅ 统一正文 */
        }

        /* 移动端 */
        @media (max-width: 768px) {
            .refund-policy-content {
                padding: 25px;
            }
            .refund-section-title {
                font-size: 22px;
            }
            .refund-section-content {
                padding-left: 0;
                font-size: 16px;
            }
            .refund-section-number {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }
            .refund-policy-section {
                padding: 18px;
            }
            .refund-contact-info {
                padding: 20px;
                font-size: 16px;
            }
        }
    