/**
 * User Payment 前端样式
 * 遵守全局样式规范
 */

/* 容器卡片 */
.vl-booking-container {
    width: 100%;
    max-width: none;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* 信息卡片 */
.vl-info-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 信息行 */
.vl-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vl-info-row:last-of-type {
    border-bottom: none;
}

/* 标签 */
.vl-info-label {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* 值 */
.vl-info-value {
    color: #0c0c0c;
    font-size: 15px;
    font-weight: 400;
}

/* 按钮 */
.vl-btn {
    padding: 14px 28px;
    background: #ae99ca !important;
    color: #ffffff !important;
    border: 2px solid #ae99ca !important;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
}

.vl-btn:hover:not(:disabled) {
    background: #8667b0 !important;
    border-color: #8667b0 !important;
    color: #ffffff !important;
}

.vl-btn:disabled {
    background: #ddd !important;
    border-color: #ddd !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 全宽按钮 */
.vl-btn-full {
    width: 100%;
    max-width: 400px;
    padding: 14px 28px;
    background: #ae99ca !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none !important;
    display: block;
    text-align: center;
}

.vl-btn-full:hover:not(:disabled) {
    background: #8667b0 !important;
}

/* 支付方式选项 */
.up-payment-option {
    background: #fff;
}

.up-payment-option:hover {
    border-color: #ae99ca !important;
    background: #f8f6fa;
}

.up-payment-option input[type="radio"]:checked + img + span {
    color: #ae99ca;
    font-weight: 600;
}

.up-payment-option:has(input[type="radio"]:checked) {
    border-color: #ae99ca !important;
    background: #f8f6fa;
}

