/* VIP页面样式 */

/* 全屏Banner */
.vip-banner-full {
    width: 100%;
    /* background: linear-gradient(135deg, #0083ff 0%, #0051ff 100%); */
    padding: 60px 0;
    background-image: url(../images/news/vip.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-left {
    flex: 1;
}

.vip-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vip-title i {
    font-size: 40px;
    color: #ffd700;
}

.vip-title span {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-open-vip {
    /* background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%); */
    background: #ff9500;
    color: #fff;
    border: none;
    padding: 14px 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-open-vip a {
    color: #fff;
}

.btn-open-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.banner-right {
    flex-shrink: 0;
}

.vip-illustration {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-icon i {
    font-size: 60px;
    color: #fff;
}

/* 页面容器 */
.vip-page {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0 50px 0;
}

/* 会员权益 */
.vip-privileges {
    margin-bottom: 50px;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.privilege-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.privilege-card:hover {
    box-shadow: 0 4px 15px rgba(0, 131, 255, 0.15);
    border-color: #0083ff;
}

/* .privilege-card.highlight {
    background: linear-gradient(135deg, #0083ff 0%, #0051ff 100%);
}

.privilege-card.highlight h3,
.privilege-card.highlight p {
    color: #fff;
}

.privilege-card.highlight .privilege-icon {
    background: rgba(255, 255, 255, 0.2);
}

.privilege-card.highlight .privilege-icon i {
    color: #fff;
} */

.privilege-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0083ff 0%, #0051ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.privilege-icon.blue {
    background: linear-gradient(135deg, #0083ff 0%, #0051ff 100%);
}

.privilege-icon i {
    font-size: 22px;
    color: #fff;
}

.privilege-card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.privilege-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 权益对比 */
.comparison-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.col-feature {
    width: 180px;
}

.col-normal {
    width: 150px;
    text-align: center;
}

.col-vip {
    text-align: center;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.feature-name {
    color: #333;
    font-weight: 500;
}

.normal-cell {
    text-align: center;
    color: #999;
}

.vip-cell {
    color: #333;
}

.vip-cell i {
    color: #0083ff;
    margin-right: 5px;
}

.vip-cell .highlight-text {
    color: #0083ff;
    font-weight: 500;
}

.normal-cell.disabled {
    color: #ccc;
    text-align: center;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 1200px) {
    .banner-inner {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .vip-page {
        width: 100%;
        padding: 40px 20px 50px 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .privileges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-title span {
        font-size: 32px;
    }

    .vip-title i {
        font-size: 28px;
    }
}