/* VIP会员开通弹框样式 */
.vip-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vip-modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.vip-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.vip-modal-close:hover {
    color: #333;
}

.vip-modal-id {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
}

.vip-modal-content {
    display: flex;
    padding: 0;
    min-height: 450px;
}

.vip-left-section {
    flex: 0.8;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-right: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vip-benefits-header {
    margin-bottom: 20px;
}

.vip-left-section h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.vip-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vip-benefits li {
    padding: 12px 0;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eaeaea;
}

.vip-benefits li:last-child {
    border-bottom: none;
}

.vip-benefits li::before {
    content: "✓";
    color: #07C160;
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

.vip-right-section {
    flex: 1.2;
    padding: 20px 30px 20px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 30px;
}

.vip-plans {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.vip-plan-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.vip-plan-card:hover {
    border-color: #07C160;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.2);
}

.vip-plan-card.recommended {
    border-color: #e0e0e0;
    background: white;
    color: #333;
}

.vip-plan-card.recommended.selected {
    border-color: #07C160;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.2);
}

.vip-plan-card.recommended .vip-plan-badge {
    background: #f0f0f0;
    color: #333;
}

.vip-plan-card.selected {
    border-color: #07C160;
    box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.2);
    transform: scale(1.02);
}

.vip-plan-badge {
    background: #f0f0f0;
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.vip-plan-discount {
    background: #07C160;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    position: absolute;
    top: -5px;
    right: 10px;
}

.vip-plan-price {
    margin: 10px 0;
}

.vip-price-main {
    font-size: 24px;
    font-weight: bold;
}

.vip-price-original {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.vip-price-period {
    font-size: 14px;
    color: #666;
}

.vip-plan-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.vip-plan-card.recommended .vip-plan-desc {
    color: #666;
}

/* 已删除vip-plan-note相关样式 */

.vip-purchase-notes {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
}

.vip-purchase-notes h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.vip-purchase-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-purchase-notes li {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .vip-modal {
        margin: 10px;
        max-width: none;
    }
    
    .vip-modal-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .vip-left-section {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        height: auto;
        padding: 20px;
    }
    
    .vip-right-section {
        padding: 20px;
        height: auto;
        margin-top: 0;
    }
    
    .vip-plans {
        grid-template-columns: 1fr;
    }
    
    .vip-purchase-notes {
        margin-top: 20px;
    }
}

/* 按钮样式调整 */
.btn.btn-vip {
    background: none;
    border: 1px solid #07C160;
    color: #07C160;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn.btn-vip:hover {
    background: #07C160;
    color: white;
} 