
        /* 全局样式 */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #f87171;
            --neutral-color: #f3f4f6;
            --text-color: #1f2937;
            --text-light: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9fafb;
        }

        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 卡片样式 */
        .card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .card-header {
            padding: 20px 24px;
            border-bottom: 1px solid #e5e7eb;
            background-color: #f8fafc;
        }

        .card-header h2 {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            border: none;
            padding: 0;
        }

        .card-body {
            padding: 24px;
        }
    
   
        /* 物流政策说明 */
        .shipping-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .shipping-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .shipping-card {
            display: flex;
            flex-direction: column;
            padding: 20px;
            border-radius: 10px;
            background-color: #f8fafc;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }

        .shipping-card:hover {
            background-color: #f1f5f9;
            transform: translateY(-2px);
        }

        .shipping-card i {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .shipping-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .shipping-card p {
            color: var(--text-light);
            margin: 0;
        }
    