
    .payment-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
        color: #1d1d1f;
    }

    .payment-section h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 16px;
        text-align: center;
    }

    .payment-section h3 {
        font-size: 22px;
        font-weight: 500;
        margin: 40px 0 16px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 4px;
    }

    .payment-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .method {
        background: #f9f9f9;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        min-width: 280px;
        max-width: 360px;
        flex: 1 1 280px;
        transition: transform 0.2s ease;
    }

    .method:hover {
        transform: translateY(-2px);
    }

    .method img {
        height: 32px;
        width: auto;
        margin-right: 16px;
        object-fit: contain;
    }

    .method span {
        font-size: 16px;
    }

    /* 强制重置移动端样式 */
    @media (max-width: 767px) {
        .payment-section {
            padding: 12px 10px !important;
            /* 强制缩小容器间距 */
        }

        .payment-section h3 {
            margin: 16px 0 8px !important;
            font-size: 16px !important;
            padding-bottom: 2px !important;
            border-bottom-width: 0.5px !important;
        }

        .payment-grid {
            flex-direction: column !important;
            gap: 6px !important;
            /* 行间距减少62% */
            margin-bottom: 8px !important;
        }

        .method {
            padding: 8px 10px !important;
            /* 内边距减少33% */
            min-width: 100% !important;
            max-width: 100% !important;
            border-radius: 10px !important;
            /* 圆角缩小 */
            flex: 0 0 auto !important;
            /* 禁用弹性伸缩 */
        }

        .method img {
            height: 22px !important;
            /* 图片高度减少31% */
            margin-right: 10px !important;
            min-width: 36px !important;
            /* 固定图片容器宽度 */
        }

        .method span {
            font-size: 13px !important;
            line-height: 1.2 !important;
            /* 紧凑行高 */
            letter-spacing: -0.1px !important;
            /* 紧凑字距 */
        }
    }
