/* ====================================================================
   专家模块样式 - expert.css
   ==================================================================== */

/* 专家头部 */
.expert-profile-header {
    background: linear-gradient(135deg, #845ADF 0%, #6366f1 100%);
    border-radius: 12px;
    padding: 32px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.expert-profile-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.expert-profile-header .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.expert-profile-header .name {
    font-size: 22px;
    font-weight: 700;
}
.expert-profile-header .meta {
    opacity: 0.85;
    font-size: 14px;
    margin-top: 4px;
}
.expert-profile-header .stats {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}
.expert-profile-header .stats .stat-item {
    text-align: center;
}
.expert-profile-header .stats .value {
    font-size: 24px;
    font-weight: 700;
}
.expert-profile-header .stats .label {
    font-size: 12px;
    opacity: 0.75;
}

/* 工作台标签栏 */
.dashboard-tabs {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
}
.dashboard-tabs .tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}
.dashboard-tabs .tab-btn:hover {
    color: #374151;
}
.dashboard-tabs .tab-btn.active {
    background: #fff;
    color: #845ADF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dashboard-tabs .tab-btn .badge {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 4px;
}

/* 设置表单 */
.settings-section {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 20px;
}
.settings-section .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

/* 等级进度 */
.level-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}
.level-progress .level-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}
.level-progress .level-dot.active {
    background: #845ADF;
}
.level-progress .level-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
}
.level-progress .level-line.completed {
    background: #845ADF;
}

/* 申请 */
.apply-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}
.apply-hero .icon  { font-size: 48px; color: #845ADF; margin-bottom: 12px; }
.apply-hero .title { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.apply-hero .desc  { color: #6b7280; font-size: 14px; }

/* 待审核 */
.pending-status {
    text-align: center;
    padding: 48px 20px;
}
.pending-status .icon  { font-size: 64px; color: #f59e0b; margin-bottom: 16px; }
.pending-status .title { font-size: 20px; font-weight: 600; color: #111827; margin-bottom: 8px; }
.pending-status .desc  { color: #6b7280; font-size: 14px; }

/* 响应式 */
@media (max-width: 768px) {
    .expert-profile-header { padding: 20px; }
    .expert-profile-header .stats { gap: 16px; flex-wrap: wrap; }
    .dashboard-tabs { overflow-x: auto; }
}
