﻿.payment-hero {
    background: linear-gradient(135deg, #0b2b6b 0%, #1a4a8a 100%);
    padding: 90px 0 50px;
    color: #fff;
}

    .payment-hero .hero-title {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 12px;
        text-align: center;
    }

    .payment-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.payment-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 40px;
    color: #0b305a;
}

.payment-card {
    background: #fff;
    border: 1px solid #e7eef6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .payment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .payment-card .card-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: #fff;
    }

    .payment-card.online .card-icon {
        background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    }

    .payment-card.offline .card-icon {
        background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    }

    .payment-card.paypal .card-icon {
        background: linear-gradient(135deg, #003087 0%, #009cde 100%);
    }

    .payment-card h3 {
        font-weight: 800;
        color: #0b305a;
        margin: 0 0 12px;
        text-align: center;
        font-size: 22px;
    }

    .payment-card p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
        margin: 0 0 20px;
        text-align: center;
    }

    .payment-card .el-button {
        width: 100%;
        margin-top: 10px;
    }

.bank-info {
    background: #fff;
    border: 1px solid #e7eef6;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

    .bank-info h4 {
        font-weight: 800;
        color: #0b305a;
        margin: 0;
        font-size: 20px;
    }

.bank-info-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

    .bank-info-row:last-child {
        border-bottom: none;
    }

    .bank-info-row:hover .copy-btn {
        opacity: 1;
    }

.bank-info-label {
    font-weight: 600;
    color: #4b5563;
    min-width: 140px;
    font-size: 14px;
}

.bank-info-value {
    color: #1f2d3d;
    font-size: 14px;
    flex: 1;
    line-height: 1.6;
    padding-right: 30px;
}

    .bank-info-value strong {
        color: #0b305a;
        font-weight: 700;
    }

.copy-btn {
    position: absolute;
    right: 0;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4b5563;
}

    .copy-btn:hover {
        background: #fa8c16;
        color: #fff;
    }

    .copy-btn i {
        font-size: 14px;
    }

.notice-box {
    background: #fff7e6;
    border: 1px solid #ffd591;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
}

    .notice-box p {
        color: #ad6800;
        font-size: 14px;
        line-height: 1.8;
        margin: 0;
    }

        .notice-box p i {
            margin-right: 8px;
            color: #fa8c16;
        }

.online-payment-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 120px;
}

    .payment-method-item i {
        font-size: 48px;
        color: #52c41a;
        margin-bottom: 10px;
    }

    .payment-method-item.alipay-item i {
        color: #1677FF;
    }

    .payment-method-item span {
        font-size: 14px;
        color: #4b5563;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .payment-hero .hero-title {
        font-size: 28px;
    }

    .payment-hero .hero-sub {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .bank-info-label {
        min-width: 100px;
        font-size: 13px;
    }

    .bank-info-value {
        font-size: 13px;
        padding-right: 35px;
    }

    .copy-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }

    .bank-info > div:first-child {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

        .bank-info > div:first-child .el-button {
            width: 100%;
        }

    .bank-info > div:last-child {
        margin-top: 15px;
    }

        .bank-info > div:last-child .el-button {
            width: 100%;
        }

    .online-payment-methods {
        flex-direction: column;
        align-items: center;
    }
}
