/* ==================== 支付宝支付相关样式 ==================== */

/* 支付方式标签样式 */
.payment-tab-btn.active {
    border-bottom-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

/* 套餐卡片样式 */
.package-item {
    position: relative;
    padding: 20px 15px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.package-item.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.package-amount {
    font-size: 28px;
    font-weight: 700;
    color: #0b0b0d;
    margin-bottom: 6px;
}

.package-price {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.package-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
}

.package-item.selected .package-check {
    display: flex;
}

/* 二维码容器样式 */
#qrcodeContainer img {
    border-radius: 8px;
}

/* 响应式调整 */
@media (max-width: 600px) {
    #packageList {
        grid-template-columns: 1fr !important;
    }
}