/* 支付套餐样式 */
.payment-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-package {
    background-color: #f8f9fb;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.payment-package:hover {
    border-color: #6b5dc6;
    box-shadow: 0 3px 10px rgba(107, 93, 198, 0.1);
}

.payment-package.selected {
    border-color: #6b5dc6;
    background-color: rgba(107, 93, 198, 0.05);
    box-shadow: 0 3px 10px rgba(107, 93, 198, 0.15);
}

.payment-package .package-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.payment-package .package-name {
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.payment-package .package-price {
    color: #f54c4c;
    font-weight: bold;
    font-size: 1.05rem;
}

.payment-package .package-points {
    color: #6b5dc6;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.payment-package .package-points i {
    color: #6366f1;
    margin-right: 4px;
}

.payment-package .package-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
}

.payment-package .package-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff5252;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #07c160;
}

.payment-method.selected {
    border-color: #6b5dc6;
    background-color: rgba(107, 93, 198, 0.05);
}

.payment-extra-options {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.payment-extra-options p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f8f9fb;
}

#payment-qrcode {
    margin: 10px 0;
}

.payment-hint {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0;
    text-align: center;
}

.payment-status {
    font-size: 0.9rem;
    color: #ff9800;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-status i {
    font-size: 1rem;
}

.payment-info {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 10px;
    text-align: center;
}

.payment-info p {
    margin: 5px 0;
    font-size: 1rem;
}

.payment-info span {
    font-weight: 600;
    color: #6b5dc6;
}

.payment-success {
    text-align: center;
    padding: 30px 20px;
}

.payment-success i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 15px;
    display: block;
}

.payment-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.payment-success p {
    margin: 5px 0;
    color: #666;
}

.payment-success p span {
    font-weight: 600;
    color: #6b5dc6;
}



@media (max-width: 768px) {
    .payment-packages {
        grid-template-columns: 1fr;
    }
}
