@charset "utf-8";
/* 容器样式 */
.oak-vip-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* 主布局 */
.oak-vip-main-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

/* 左侧用户信息区域 */
.oak-vip-left-section {
    flex: 0 0 320px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.oak-vip-left-section-vipbg {
    flex: 0 0 320px;
    background: #FFFFFF;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-image: url(https://cdn.8i5.net/2025/10/vip-1.svg);
    background-size: 100%;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* 用户信息样式 */
.oak-vip-user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.oak-vip-user-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.oak-vip-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #F8FAFC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.oak-vip-user-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
}

.oak-vip-user-status {
    display: inline-block;
    font-size: 0.85rem;
    padding: 3px 10px;
    width: 100px;
    border-radius: 20px;
    margin-bottom: 0;
}

/* 角色状态样式 */
.oak-vip-user-status.administrator {
    background-color:#2655ff;
    color: #fff;
}

.oak-vip-user-status.editor {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366F1;
}

.oak-vip-user-status.author {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.oak-vip-user-status.contributor {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.oak-vip-user-status.subscriber {
    background-color: rgba(148, 163, 184, 0.1);
    color: #94A3B8;
}

.oak-vip-user-status.enterprise_user {
    background-color:#000;
    color: #fff;
}

.oak-vip-user-status.vip {
    background-color:#1e1e1e;
    color:#ebc874;
}

.oak-vip-user-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #94A3B8;
    white-space: nowrap;
}

/* 会员快捷功能区 */
.oak-vip-member-actions {
    margin-bottom: 30px;
}

.oak-vip-member-actions h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #1E293B;
}

.oak-vip-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 核心修改：积分服务容器 - 任何分辨率下保持一行两列 */
.oak-vip-points-buttons {
    display: flex;
    flex-direction: row; /* 横向排列 */
    flex-wrap: wrap; /* 超出时换行（但因按钮占50%，始终一行两个） */
    gap: 10px;
    width: 100%; /* 确保容器占满父级宽度 */
}

/* 核心修改：积分服务按钮 - 固定占比50%（减去间隙） */
.oak-vip-points-buttons .oak-vip-action-btn {
    flex: 0 0 calc(50% - 5px); /* 50%宽度 - 5px间隙（总间隙10px，平分给两个按钮） */
    justify-content: center;
    padding: 12px 5px;
    font-size: 0.9rem;
    box-sizing: border-box; /* 确保padding不影响宽度计算 */
}

.oak-vip-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    background-color: #F8FAFC;
    border-radius: 8px;
    text-decoration: none;
    color: #1E293B;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.oak-vip-action-btn:hover {
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
}

.oak-vip-action-btn i {
    width: 18px;
    text-align: center;
}

/* 右侧内容区域 */
.oak-vip-right-section {
    flex: 1;
}

/* 会员套餐容器 */
.oak-vip-pricing-plans {
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 会员套餐卡片 */
.oak-vip-plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.oak-vip-plan-card-enterprise{
    background-color: #1e1e1e;
    background-image: url(https://cdn.8i5.net/2025/11/vip-bg-heika.svg);
    background-size: 100%;
    color:#ebc874;
}
.oak-vip-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* 推荐套餐标识 */
.oak-vip-plan-card.oak-vip-recommended {
    border: 3px solid #ebc874;
}

.oak-vip-plan-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.oak-vip-plan-badge-best{
    background-color: #1e1e1e;
    color: #ebc874;
    border: 2px solid #ebc874;
}
.oak-vip-plan-badge-hot{
    background-color: #ff0000;
    color: #fff;
}
.oak-vip-plan-badge.enterprise {
    background-color: #000;
    color: #fff;
}

/* 套餐内容样式 */
.oak-vip-plan-header {
    text-align: center;
}

.oak-vip-plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1E293B;
}
.oak-vip-plan-name-enterprise{
    color:#ebc874;
}
.oak-vip-plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.oak-vip-plan-icon.enterprise {
    background-color: #000;
}

.oak-vip-plan-icon.creator {
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
}

.oak-vip-plan-icon.vip {
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
}
.oak-vip-plan-icon.vip-best {
    background-color:#1e1e1e;
    color:#ebc874;
    border: 2px solid #ebc874;
}
.oak-vip-plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1E293B;
}

.oak-vip-plan-period {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.oak-vip-plan-period-enterprise{
    color:#ebc874;
}
.oak-vip-plan-price{
    color:#ebc874;
}
.oak-vip-plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.oak-vip-plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.oak-vip-plan-feature i {
    color: #10B981;
    margin-top: 4px;
}

.oak-vip-plan-feature.oak-vip-disabled {
    color: #94A3B8;
}

.oak-vip-plan-feature.oak-vip-disabled i {
    color: #94A3B8;
}

/* 按钮样式 */
.oak-vip-plan-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.oak-vip-btn-primary {
    background-color: #1e1e1e;
    color: #ebc874;
    border: 2px solid #ebc874;
}

.oak-vip-btn-secondary {
    background-color: #F8FAFC;
    color: #1E293B;
}

.oak-vip-btn-highlight {
  background-color: #ebc874;
  color: #1e1e1e;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s; 
}

.oak-vip-btn-highlight:hover {
  color: #ebc874;
  background-color: #fff;
  border-color: #ebc874;
}

.oak-vip-btn-enterprise {
    background-color: #000;
    color: #fff;
}
/* VIP内容列表样式 */
.oak-vip-vip-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.oak-vip-section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1E293B;
}

.oak-vip-section-title i {
    color: #165DFF;
}

.oak-vip-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.oak-vip-content-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.oak-vip-content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.oak-vip-content-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.oak-vip-content-info {
    padding: 15px;
}

.oak-vip-content-title {
    font-size: 1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oak-vip-content-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94A3B8;
}

/* 分页样式 */
.oak-vip-pagination {
    text-align: center;
    margin-top: 40px;
    padding: 10px 0;
}

.oak-vip-pagination a,
.oak-vip-pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    border-radius: 8px;
    color: #1E293B;
    text-decoration: none;
    background-color: #F8FAFC;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.oak-vip-pagination a:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
}

.oak-vip-pagination .current {
    background-color: #165DFF;
    color: white;
    font-weight: 600;
}

.oak-vip-pagination .prev,
.oak-vip-pagination .next {
    background-color: #FFFFFF;
    border-color: #E2E8F0;
}

.oak-vip-pagination .prev:hover,
.oak-vip-pagination .next:hover {
    background-color: #F1F5F9;
}

/* 常见问题区域 */
.oak-vip-faq-section {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.oak-vip-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.oak-vip-faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 15px;
}

.oak-vip-faq-item:last-child {
    border-bottom: none;
}

.oak-vip-faq-question {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.oak-vip-faq-question i {
    color: #165DFF;
}

.oak-vip-faq-answer {
    color: #94A3B8;
    padding-left: 24px;
}

/* 弹窗样式 */
#oak-vip-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#oak-vip-vip-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 85%;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

#oak-vip-vip-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 未登录提示 */
.oak-vip-login-prompt {
    text-align: center;
    padding: 30px 20px;
}

.oak-vip-login-prompt p {
    margin-bottom: 20px;
    color: #94A3B8;
}

.oak-vip-login-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #165DFF;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.oak-vip-login-btn:hover {
    background-color: #0E4CD1;
}

/* TAB切换样式 */
.oak-vip-tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 5px;
}

.oak-vip-tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #94A3B8;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.oak-vip-tab-btn.active {
    color: #165DFF;
    border-bottom: 2px solid #165DFF;
    font-weight: 600;
}

.oak-vip-tab-btn:hover:not(.active) {
    color: #1E293B;
    background-color: #F8FAFC;
}

.oak-vip-tab-content-wrap {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.oak-vip-tab-content {
    display: none;
}

.oak-vip-tab-content.active {
    display: block;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .oak-vip-main-layout {
        flex-direction: column;
    }
    
    .oak-vip-left-section {
        width: 100%;
        flex: none;
    }
    
    .oak-vip-pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .oak-vip-plan-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .oak-vip-page-header h1 {
        font-size: 1.8rem;
    }
    
    .oak-vip-section-title {
        font-size: 1.3rem;
    }
    
    .oak-vip-content-grid {
        grid-template-columns: 1fr;
    }
    
    /* 保持积分服务按钮样式一致（与默认样式呼应，避免冲突） */
    .oak-vip-points-buttons .oak-vip-action-btn {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    .oak-vip-pagination a,
    .oak-vip-pagination span {
        padding: 6px 12px;
        margin: 0 2px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .oak-vip-container {
        padding: 20px 15px;
    }
    
    .oak-vip-plan-price {
        font-size: 1.7rem;
    }
    
    .oak-vip-left-section, .oak-vip-vip-content, .oak-vip-faq-section {
        padding: 20px 15px;
    }
    
    /* 小屏幕仅调整字体和间隙，保持一行两列布局 */
    .oak-vip-points-buttons .oak-vip-action-btn {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .oak-vip-user-name {
        font-size: 1rem;
    }
    .oak-vip-user-meta {
        font-size: 0.8rem;
    }
    .oak-vip-user-header {
        gap: 8px;
    }
    
    .oak-vip-tab-nav {
        flex-wrap: wrap;
    }
    .oak-vip-tab-btn {
        padding: 8px 8px;
        font-size: 0.9rem;
    }
    .oak-vip-tab-content-wrap {
        padding: 20px 15px;
    }
}

/*vip积分提示*/

.oak-vip-alert {
    padding: 12px 20px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}
.oak-vip-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.oak-vip-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/*VIP会员页面视频列表*/
/* 播放列表网格布局 */
.vip-video-playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* 播放列表卡片样式 */
.vip-video-playlist-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.vip-video-playlist-card:hover {
    transform: translateY(-5px);
}

/* 缩略图容器 */
.vip-video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9比例 */
    overflow: hidden;
}

.vip-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.vip-video-playlist-card:hover .vip-video-thumbnail img {
    transform: scale(1.05);
}

/* 播放图标 */
.vip-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.vip-video-playlist-card:hover .vip-video-play-icon {
    opacity: 1;
}

/* 播放列表信息 */
.vip-video-info {
    padding: 15px;
}

.vip-video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vip-video-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

/* 元数据信息 */
.vip-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.vip-video-meta i {
    margin-right: 3px;
}

/* 无结果提示 */
.vip-video-no-results {
    text-align: center;
    padding: 40px 0;
    color: #666;
}

.vip-video-no-results i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ddd;
}

/* VIP提示 */
.vip-video-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.vip-video-alert img {
    margin-bottom: 10px;
}

/* 链接样式 */
.vip-video-link {
    text-decoration: none;
    display: block;
    position: relative;
}

/* 兑换弹窗样式 */
.oak-vip-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.oak-vip-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    top: 50px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    position: relative;
    animation: oakVipModalSlideIn 0.3s ease-out;
}

@keyframes oakVipModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oak-vip-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.oak-vip-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.oak-vip-modal-close {
    color: #94a3b8;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.oak-vip-modal-close:hover {
    color: #1e293b;
}

.oak-vip-modal-body {
    margin-bottom: 20px;
}

.oak-vip-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}
.oak-vip-btn-btduihuan{
    background-color: #1e1e1e;
    color: #fff;
}

/*VIP等级*/
 /* 容器样式 */
        .oak-vip-level-container {
    max-width: 100%;
    margin-bottom: 10px;
        }

        /* 卡片样式 */
        .oak-vip-level-card {
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 25px;
        }

        /* 头部信息 */
        .oak-vip-level-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        .oak-vip-level-title {
            margin: 0;
            color: #333;
            font-size: 18px;
            font-weight: 600;
        }
        .oak-vip-level-current {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .oak-vip-level-badge {
             background: #1e1e1e;
             color: #ebc874;
             font-weight: bold;
             padding: 0px 10px;
             border-radius: 20px;
             box-shadow: 0 2px 8px rgb(30 30 30 / 39%);
        }
        .oak-vip-level-points {
            color: #666;
            font-size: 14px;
        }

        /* 进度条区域 */
        .oak-vip-level-progress-wrap {
            margin: 25px 0 30px;
        }
        .oak-vip-level-progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
            color: #555;
        }
        .oak-vip-level-progress-bar {
            height: 8px;
            background: #f5f5f5;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 8px;
        }
        .oak-vip-level-progress-fill {
            height: 100%;
            background: #ebc874;
            border-radius: 4px;
            transition: width 0.6s ease; /* 平滑过渡动画 */
        }
        .oak-vip-level-progress-range {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }

        /* 滚动容器（居中调整） */
        .oak-vip-level-scroll-wrapper {
            overflow-x: auto;
            padding: 10px 0;
            -webkit-overflow-scrolling: touch;
            /* 让滚动容器内的内容居中 */
            display: flex;
            justify-content: center; /* 水平居中 */
        }
        .oak-vip-level-scroll-wrapper::-webkit-scrollbar {
            height: 6px;
        }
        .oak-vip-level-scroll-wrapper::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px;
        }

        /* 等级节点导航（居中核心） */
        .oak-vip-level-nodes {
            display: flex;
            gap: 25px;
            position: relative;
            padding: 10px 0;
            min-width: max-content;
            margin: 0 auto;
        }
        /* 节点连接线（居中后与节点对齐） */
        .oak-vip-level-nodes::before {
         content: '';
         position: absolute;
         top: 41px;
         left: 40px;
         right: 40px;
         border-top: 2px dashed #9f9f9f; 
        }

        /* 单个节点样式 */
        .oak-vip-level-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            width: 80px;
        }
        .oak-vip-level-node-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }
        .oak-vip-level-icon-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        .oak-vip-level-node-text {
            text-align: center;
        }
        .oak-vip-level-node-text span {
            display: block;
            font-size: 13px;
        }
        .oak-vip-level-node-threshold {
            font-size: 11px;
            color: #999;
            margin-top: 3px;
        }

        /* 节点状态样式 */
        .oak-vip-level-node-done .oak-vip-level-icon-img {
            filter: none;
        }
        .oak-vip-level-node-done .oak-vip-level-node-text span:first-child {
            color: #4cd964;
        }

        .oak-vip-level-node-active .oak-vip-level-icon-img {
            filter: none;
            transform: scale(1.1);
        }
        .oak-vip-level-node-active .oak-vip-level-node-text span:first-child {
            color: #ff7d00;
            font-weight: 600;
        }

        .oak-vip-level-node-lock .oak-vip-level-icon-img {
            filter: grayscale(100%) opacity(60%);
        }
        .oak-vip-level-node-lock .oak-vip-level-node-text span:first-child {
            color: #999;
        }

        /* 未登录提示 */
        .oak-vip-level-msg {
            text-align: center;
            padding: 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            color: #666;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .oak-vip-level-card {
                padding: 15px;
            }
            .oak-vip-level-node {
                width: 70px;
            }
            .oak-vip-level-node-icon {
                width: 50px;
                height: 50px;
            }
            .oak-vip-level-nodes {
                gap: 15px;
            }
        }
        
        
/*vip头部CSS*/
.oak-vip-toubu-main-wrap {
                    width: 100%;
                    background-image: url("https://cdn.8i5.net/2025/12/5d4b2a4.png");
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: center center;
                    padding: 15px 20px;
                    border-radius: 6px;
                    box-sizing: border-box;
                    margin: 0 0 20px 0;
                }
                .oak-vip-toubu-user-box {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                }
                .oak-vip-toubu-avatar-wrap {
                    flex-shrink: 0;
                }
                .oak-vip-toubu-avatar-img {
                    width: 60px !important;
                    height: 60px !important;
                    background-color: #fff;
                    border-radius: 50%;
                    border: 2px solid #ffffff;
                    object-fit: cover;
                }
                .oak-vip-toubu-right-content, .oak-vip-toubu-login-content {
                    display: flex;
                    flex-direction: column;
                    gap: 6px;
                }
                .oak-vip-toubu-user-info-wrap {
                    color: #ffffff;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin: 0;
                }
                .oak-vip-toubu-username {
                    font-size: 16px;
                    font-weight: 600;
                    margin: 0;
                    line-height: 1;
                }
                .oak-vip-toubu-role {
                    font-size: 14px;
                    opacity: 0.9;
                    margin: 0;
                    line-height: 1;
                    padding: 2px 8px;
                    background-color: rgba(255,255,255,0.2);
                    border-radius: 12px;
                }
                .oak-vip-toubu-login-link {
                    color: #999999;
                    font-size: 14px;
                    text-decoration: none;
                }
                .oak-vip-toubu-login-link:hover {
                    color: #cccccc;
                    text-decoration: underline;
                }
                .oak-vip-toubu-vip-tip {
                    color: #ebc874;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 1.4;
                    margin: 0;
                }