
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
}

        
        
        /* 登录注册页面样式 */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 600px;
}

/* 左侧品牌区域 */
.brand-section {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-content {
    max-width: 400px;
    text-align: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-logo h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.brand-slogan {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: white;
}

.feature-text h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.feature-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* 右侧表单区域 */
.form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

/* 切换标签 */
.form-tabs {
    display: flex;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 30px;
}

.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.tab-item.active {
    background: white;
    color: #667eea;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tab-item:hover:not(.active) {
    color: #667eea;
}

/* 表单样式 */
.auth-form {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

/* 表单组 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: 15px;
    /*margin-bottom: 20px;*/
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

/* 输入框样式 */
.el-input__inner {
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    height: 44px;
    transition: all 0.3s ease;
}

.el-input__inner:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.el-input__prefix {
    color: #999;
    font-size: 16px;
}

/* 密码强度 */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
}

.strength-bar.weak::after {
    width: 30%;
    background: #ff4d4f;
}

.strength-bar.medium::after {
    width: 70%;
    background: #faad14;
}

.strength-bar.strong::after {
    width: 100%;
    background: #52c41a;
}

.strength-text {
    font-size: 12px;
    color: #999;
    display: block;
}

/* 表单选项 */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-link {
    color: #667eea;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    transition: all 0.3s ease;
    display: block; 
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* 分割线 */
.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
    color: #999;
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    height: 1px;
    background: #eee;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
}

/* 社交登录 */
.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    height: 44px;
    border: 2px solid #e1e5eb;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn.wechat {
    color: #07c160;
}

.social-btn.wechat:hover {
    border-color: #07c160;
    background: rgba(7, 193, 96, 0.05);
}

.social-btn.qq {
    color: #12b7f5;
}

.social-btn.qq:hover {
    border-color: #12b7f5;
    background: rgba(18, 183, 245, 0.05);
}

/* 协议 */
.form-agreement {
    margin: 20px 0;
}

.form-agreement a {
    color: #667eea;
    cursor: pointer;
}

.form-agreement a:hover {
    text-decoration: underline;
}

/* 注册提示 */
.register-tips {
    background: #f8f9fa;
    border-radius: 10px;
    /*padding: 15px;*/
    /*margin-top: 20px;*/
}

.register-tips p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-tips i {
    color: #52c41a;
    font-size: 14px;
}

/* 表单底部 */
.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.form-footer a {
    color: #667eea;
    cursor: pointer;
    font-weight: 500;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .auth-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .brand-section {
        padding: 30px 20px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .features {
        display: none; /* 在小屏幕上隐藏特色功能 */
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group.half {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 10px;
    }
    
    .auth-wrapper {
        border-radius: 15px;
    }
    
    .brand-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .brand-logo i {
        font-size: 36px;
    }
    
    .brand-logo h1 {
        font-size: 24px;
    }
    
    .social-login {
        flex-direction: column;
    }
}
        
        .app-container {
            min-height: 100vh;
        }
        
        /* 导航栏样式 */
        .navbar {
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            color: white;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-logo {
            display: flex;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
        }
        
        .navbar-logo i {
            margin-right: 10px;
            font-size: 26px;
        }
        
        .navbar-user {
            display: flex;
            align-items: center;
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #fff;
            color: #1e88e5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* 主内容区样式 */
        .main-container {
            display: flex;
            min-height: calc(100vh - 60px);
        }
        
        /* 侧边栏样式 */
        .sidebar {
            width: 200px;
            background-color: #fff;
            box-shadow: 2px 0 8px 0 rgba(29,35,41,.05);
            padding-top: 20px;
        }
        
        .menu-item {
            padding: 14px 20px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            color: #333;
            text-decoration: none;
        }
        
        .menu-item:hover {
            background-color: #f0f7ff;
            color: #1e88e5;
        }
        
        .menu-item.active {
            background-color: #ecf5ff;
            color: #1e88e5;
            border-right: 3px solid #1e88e5;
        }
        
        .menu-item i {
            margin-right: 10px;
            font-size: 18px;
            width: 24px;
        }
        
        /* 内容区样式 */
        .content {
            flex: 1;
            padding: 20px;
        }
        
        .content-header {
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .content-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .content-title i {
            margin-right: 10px;
            color: #1e88e5;
        }
        
        /* 卡片样式 */
        .card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .card-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .card-title i {
            margin-right: 8px;
            color: #1e88e5;
        }
        
        /* 表格样式 */
        .job-table {
            margin-top: 20px;
        }
        
        .status-tag {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .status-hot {
            background-color: #fef0f0;
            color: #f56c6c;
        }
        
        .status-urgent {
            background-color: #f0f9eb;
            color: #67c23a;
        }
        
        .status-normal {
            background-color: #ecf5ff;
            color: #1e88e5;
        }
        
        /* 意向程度标签 */
        .intention-degree-tag {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .degree-high {
            background-color: #fef0f0;
            color: #f56c6c;
        }
        
        .degree-medium {
            background-color: #fcf6ec;
            color: #e6a23c;
        }
        
        .degree-low {
            background-color: #f0f9eb;
            color: #67c23a;
        }
        
        /* 提醒类型标签 */
        .reminder-type-tag {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .reminder-deadline {
            background-color: #fef0f0;
            color: #f56c6c;
        }
        
        .reminder-newjob {
            background-color: #ecf5ff;
            color: #1e88e5;
        }
        
        .reminder-application {
            background-color: #f0f9eb;
            color: #67c23a;
        }
        
        .reminder-recommend {
            background-color: #fcf6ec;
            color: #e6a23c;
        }
        
        .reminder-system {
            background-color: #f9f0ff;
            color: #9c27b0;
        }
        
        /* 状态标签 */
        .read-status {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .unread {
            background-color: #fef0f0;
            color: #f56c6c;
        }
        
        .read {
            background-color: #f0f9eb;
            color: #67c23a;
        }
        
        /* 登录/注册页面样式 */
        .auth-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
        }
        
        .auth-card {
            width: 400px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
            padding: 30px;
        }
        
        .auth-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 24px;
        }
        
        .auth-switch {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }
        
        .auth-switch a {
            color: #1e88e5;
            cursor: pointer;
        }
        
        /* 提醒设置 */
        .reminder-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            border-bottom: 1px solid #ebeef5;
        }
        
        .reminder-item:last-child {
            border-bottom: none;
        }
        
        .reminder-info {
            flex: 1;
        }
        
        .reminder-title {
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .reminder-desc {
            color: #666;
            font-size: 14px;
        }
        
        /* 源代码下载区域 */
        .source-download {
            text-align: center;
            padding: 40px 20px;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            color: white;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(30, 136, 229, 0.4);
        }
        
        .download-btn i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .download-info {
            margin-top: 15px;
            color: #666;
            font-size: 14px;
        }
        
        /* 添加意向岗位对话框 - 居中显示 */
        .add-intention-dialog .el-dialog {
            display: flex;
            flex-direction: column;
            margin: 0 auto !important;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-height: calc(100% - 30px);
            max-width: calc(100% - 30px);
        }
        
        .add-intention-dialog .el-dialog__body {
            flex: 1;
            overflow: auto;
        }
        
        .intention-form {
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        /* 描述文本截断 */
        .description-text {
            max-width: 200px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            cursor: pointer;
        }
        
        .description-text:hover {
            color: #1e88e5;
        }
        
        /* 统计卡片 */
        .stats-container {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .stat-item {
            flex: 1;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            margin: 0 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #666;
            font-size: 14px;
        }
        
        /* 提醒信息卡片 */
        .reminder-card {
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .reminder-card:hover {
            background-color: #f5f7fa;
        }
        
        .reminder-card.unread-item {
            background-color: #f0f7ff;
        }
        
        /* 会员中心样式 */
        .vip-level-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .vip-bronze {
            background: linear-gradient(135deg, #cd7f32, #a0522d);
            color: white;
        }
        
        .vip-silver {
            background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
            color: white;
        }
        
        .vip-gold {
            background: linear-gradient(135deg, #ffd700, #daa520);
            color: white;
        }
        
        .vip-platinum {
            background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
            color: #333;
        }
        
        .vip-diamond {
            background: linear-gradient(135deg, #b9f2ff, #89cff0);
            color: white;
        }
        
        .level-progress {
            margin: 20px 0;
        }
        
        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .privilege-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .privilege-item:last-child {
            border-bottom: none;
        }
        
        .privilege-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
            color: white;
        }
        
        .privilege-info {
            flex: 1;
        }
        
        .privilege-title {
            font-weight: 500;
            margin-bottom: 3px;
        }
        
        .privilege-desc {
            color: #666;
            font-size: 13px;
        }
        
        .privilege-status {
            color: #67c23a;
            font-weight: 500;
        }
        
        .privilege-status.disabled {
            color: #c0c4cc;
        }
        
        .task-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .task-item:last-child {
            border-bottom: none;
        }
        
        .task-info {
            flex: 1;
        }
        
        .task-title {
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .task-desc {
            color: #666;
            font-size: 13px;
        }
        
        .task-reward {
            font-weight: 500;
            color: #e6a23c;
        }
        
        .upgrade-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .upgrade-card .upgrade-title {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .upgrade-card .upgrade-desc {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .level-card {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }
        
        .level-card .level-name {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .level-card .level-points {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .transaction-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .transaction-item:last-child {
            border-bottom: none;
        }
        
        .transaction-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
            color: white;
        }
        
        .transaction-income {
            background-color: #67c23a;
        }
        
        .transaction-expense {
            background-color: #f56c6c;
        }
        
        .transaction-info {
            flex: 1;
        }
        
        .transaction-title {
            font-weight: 500;
            margin-bottom: 3px;
        }
        
        .transaction-time {
            color: #999;
            font-size: 13px;
        }
        
        .transaction-amount {
            font-weight: bold;
        }
        
        .amount-income {
            color: #67c23a;
        }
        
        .amount-expense {
            color: #f56c6c;
        }
        
        /* 会员等级说明 */
        .level-explain {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }
        
        .level-item {
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            width: 18%;
        }
        
        .level-item.bronze {
            background-color: #f9f3e9;
            border: 2px solid #cd7f32;
        }
        
        .level-item.silver {
            background-color: #f5f5f5;
            border: 2px solid #c0c0c0;
        }
        
        .level-item.gold {
            background-color: #fff9e6;
            border: 2px solid #ffd700;
        }
        
        .level-item.platinum {
            background-color: #f0f0f0;
            border: 2px solid #e5e4e2;
        }
        
        .level-item.diamond {
            background-color: #e6f7ff;
            border: 2px solid #b9f2ff;
        }
        
        .level-item .level-icon {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .level-item.bronze .level-icon {
            color: #cd7f32;
        }
        
        .level-item.silver .level-icon {
            color: #c0c0c0;
        }
        
        .level-item.gold .level-icon {
            color: #ffd700;
        }
        
        .level-item.platinum .level-icon {
            color: #e5e4e2;
        }
        
        .level-item.diamond .level-icon {
            color: #b9f2ff;
        }
        
        .level-item .level-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .level-item .level-points {
            font-size: 12px;
            color: #666;
        }
        
        /* 积分扣除提示样式 */
        .points-deduction-info {
             
            background-color: #fff8e6;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .points-deduction-info h4 {
            color: #e6a23c;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .points-deduction-info h4 i {
            margin-right: 8px;
        }
        
        .points-deduction-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        /* 积分不足提示 */
        .insufficient-points {
            color: #f56c6c;
            font-weight: bold;
        }
        
        .points-balance {
            display: inline-flex;
            align-items: center;
            background-color: #ecf5ff;
            padding: 5px 10px;
            border-radius: 20px;
            margin-left: 10px;
            font-size: 14px;
        }
        
        .points-balance i {
            margin-right: 5px;
            color: #1e88e5;
        }
        
        /* 个人信息样式 */
        .profile-container {
            display: flex;
            gap: 20px;
        }
        
        .profile-left {
            flex: 1;
        }
        
        .profile-right {
            width: 300px;
        }
        
        .profile-avatar-section {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 48px;
            font-weight: bold;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }
        
        .profile-avatar:hover .avatar-overlay {
            opacity: 1;
        }
        
        .avatar-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .profile-info-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .profile-info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .profile-label {
            width: 120px;
            font-weight: 500;
            color: #666;
        }
        
        .profile-value {
            flex: 1;
            color: #333;
        }
        
        .profile-edit-btn {
            margin-top: 20px;
        }
        
        /* 个人信息统计卡片 */
        .profile-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .profile-stat-item {
            flex: 1;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            margin: 0 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .profile-stat-value {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .profile-stat-label {
            color: #666;
            font-size: 12px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .sidebar {
                width: 70px;
            }
            
            .menu-item span {
                display: none;
            }
            
            .menu-item i {
                margin-right: 0;
            }
            
            .auth-card {
                width: 90%;
                padding: 20px;
            }
            
            .content-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .el-table {
                font-size: 12px;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .stat-item {
                margin: 0;
            }
            
            .add-intention-dialog .el-dialog {
                width: 95% !important;
            }
            
            .level-explain {
                flex-direction: column;
                gap: 10px;
            }
            
            .level-item {
                width: 100%;
            }
            
            .profile-container {
                flex-direction: column;
            }
            
            .profile-right {
                width: 100%;
            }
            
            .profile-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .profile-stat-item {
                margin: 0;
            }
        }
    