/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.容器 {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* 头部样式 */
.头部 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
}

.头部顶部 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.头部标题 {
    flex: 1;
    text-align: left;
}

.头部 h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.副标题 {
    font-size: 1.1em;
    opacity: 0.9;
}

/* 用户操作区样式 */
.用户操作区 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.用户信息显示 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.用户基本信息区 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.用户统计信息 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 6px;
    padding-top: 8px;
    width: 100%;
}

.用户统计信息 .统计项 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.用户统计信息 .统计项:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.用户统计信息 .统计图标 {
    font-size: 1.1em;
}

.用户统计信息 .统计数值 {
    font-weight: 600;
    color: #fff;
}

.用户操作按钮区 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.当前用户昵称 {
    font-weight: 600;
    font-size: 1.1em;
}

.当前用户状态 {
    font-size: 0.9em;
    opacity: 0.9;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.登出按钮 {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.登出按钮:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.登录按钮 {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.登录按钮:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 导航标签样式 */
.导航标签 {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 0;
}

.标签按钮 {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1em;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.标签按钮:hover {
    background: #e9ecef;
    color: #667eea;
}

.标签按钮.激活 {
    color: #667eea;
    border-bottom-color: #667eea;
    background: white;
}

/* 内容区域切换 */
.内容区域 {
    display: none;
    padding: 30px;
}

.内容区域.激活 {
    display: block;
}

/* 主要内容区域 */
.主要内容 {
    min-height: 600px;
}

/* 两列布局（分享页面） */
.两列布局 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .两列布局 {
        grid-template-columns: 1fr;
    }
}

/* 输入区域样式 */
.输入区域 {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.输入区域 h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.表单组 {
    margin-bottom: 20px;
}

.表单组 label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.表单组 input,
.表单组 textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.表单组 input:focus,
.表单组 textarea:focus {
    outline: none;
    border-color: #667eea;
}

.表单组 input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #666;
}

.表单组 input[readonly]:focus {
    border-color: #ddd;
    background-color: #f5f5f5;
}

.表单组 textarea {
    resize: vertical;
    min-height: 120px;
}

.发送按钮 {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.发送按钮:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.发送按钮:active {
    transform: translateY(0);
}

.发送按钮:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.状态提示 {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.状态提示.成功 {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.状态提示.错误 {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* 点子列表区域样式 */
.点子列表区域 {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    max-height: 800px;
    overflow-y: auto;
}

.点子列表区域 h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5em;
    position: sticky;
    top: 0;
    background: #f8f9fa;
    padding-bottom: 10px;
    z-index: 10;
}

.点子列表 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.空状态 {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

/* 点子卡片样式 */
.点子卡片 {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: 滑入 0.3s ease-out;
    transition: transform 0.2s, box-shadow 0.2s;
}

.点子卡片:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.点子内容 {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.点子元信息 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    gap: 15px;
}

.元信息左侧 {
    display: flex;
    gap: 15px;
    flex: 1;
}

.操作按钮组 {
    display: flex;
    gap: 10px;
}

.查新按钮 {
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.查新按钮:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.查新按钮:active {
    transform: translateY(0);
}

/* 点赞按钮样式 */
.点赞按钮 {
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.点赞按钮:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.点赞按钮:active {
    transform: scale(0.95);
}

.点赞数显示 {
    font-weight: 600;
}

/* 榜单点赞按钮样式 */
.榜单点赞按钮 {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s;
}

.榜单点赞按钮:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.榜单点赞按钮:active {
    transform: scale(0.95);
}

.点赞信息 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.作者 {
    font-weight: 600;
    color: #667eea;
}

.时间 {
    color: #999;
}

/* 底部样式 */
.底部 {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* 滚动条样式 */
.点子列表区域::-webkit-scrollbar {
    width: 8px;
}

.点子列表区域::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.点子列表区域::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.点子列表区域::-webkit-scrollbar-thumb:hover {
    background: #5568d3;
}

/* 查询界面样式 */
.查询界面 {
    max-width: 1000px;
    margin: 0 auto;
}

.查询界面 h2 {
    color: #667eea;
    margin-bottom: 25px;
    font-size: 1.8em;
    text-align: center;
}

.查询表单 {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
}

.查询行 {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .查询行 {
        grid-template-columns: 1fr;
    }
}

.查询组 {
    display: flex;
    flex-direction: column;
}

.查询组 label {
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.95em;
}

.查询组 input,
.查询组 select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.查询组 input:focus,
.查询组 select:focus {
    outline: none;
    border-color: #667eea;
}

.查询按钮 {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.查询按钮:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.查询结果区域 {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    min-height: 400px;
    max-height: 800px;
    overflow-y: auto;
}

.结果标题 {
    font-size: 1.2em;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.加载中 {
    text-align: center;
    padding: 40px;
    color: #667eea;
    font-size: 1.1em;
}

/* 对比界面样式 */
.对比界面 {
    max-width: 1400px;
    margin: 0 auto;
}

.对比界面 h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-align: center;
}

.对比说明 {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.对比操作区 {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.操作按钮 {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: #e9ecef;
    color: #333;
}

.操作按钮:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.操作按钮.主要 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.操作按钮.主要:hover {
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.操作按钮.Cursor按钮 {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-weight: 600;
}

.操作按钮.Cursor按钮:hover:not(:disabled) {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.操作按钮:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.对比两列 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 1024px) {
    .对比两列 {
        grid-template-columns: 1fr;
    }
}

.可选点子列表,
.对比结果区域 {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    min-height: 500px;
    max-height: 800px;
    overflow-y: auto;
}

.可选点子列表 h3,
.对比结果区域 h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3em;
    position: sticky;
    top: 0;
    background: #f8f9fa;
    padding-bottom: 10px;
    z-index: 10;
}

/* 可选择的点子卡片 */
.点子卡片.可选择 {
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.点子卡片.可选择:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.点子卡片.可选择.已选中 {
    border-left-color: #28a745;
    background: #d4edda;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.点子卡片.可选择.已选中::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

/* 对比表格样式 */
.对比表格 {
    width: 100%;
    border-collapse: collapse;
}

.对比行 {
    display: grid;
    grid-template-columns: 150px repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: #e9ecef;
    margin-bottom: 1px;
}

.对比行.表头 {
    background: #667eea;
    color: white;
    font-weight: bold;
}

.对比列 {
    background: white;
    padding: 15px;
    word-wrap: break-word;
}

.对比列.属性列 {
    background: #f8f9fa;
    font-weight: 600;
    color: #667eea;
}

.对比行.表头 .对比列 {
    background: #667eea;
    color: white;
    font-weight: bold;
}

.对比行.表头 .对比列.属性列 {
    background: #5568d3;
}

/* 查新模态框样式 */
.查新模态框 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.查新模态框内容 {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: 滑入 0.3s ease-out;
}

.查新模态框头部 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.查新模态框头部 h2 {
    margin: 0;
    font-size: 1.5em;
}

.关闭按钮 {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2em;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
    padding: 0;
}

.关闭按钮:hover {
    background: rgba(255, 255, 255, 0.3);
}

.查新模态框主体 {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.查新关键词 {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #667eea;
    border-left: 4px solid #667eea;
}

.查新结果区域 {
    margin-bottom: 30px;
}

.查新结果区域 h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3em;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.查新结果表格 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.查新结果项 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.2s, box-shadow 0.2s;
}

.查新结果项:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.结果标题 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.结果标题 a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.结果标题 a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.结果详情 {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.结果详情 span {
    padding: 4px 8px;
    background: white;
    border-radius: 4px;
}

.结果摘要 {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
}

.无结果,
.错误信息 {
    text-align: center;
    padding: 30px;
    color: #999;
    font-style: italic;
}

.错误信息 {
    color: #dc3545;
    background: #f8d7da;
    border-radius: 8px;
    padding: 15px;
}

/* 榜单区域样式 */
.榜单界面 {
    max-width: 1200px;
    margin: 0 auto;
}

.榜单界面 h2 {
    color: #667eea;
    text-align: center;
    margin-bottom: 20px;
}

.榜单双列 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 1024px) {
    .榜单双列 {
        grid-template-columns: 1fr;
    }
}

.注册卡片,
.榜单卡片 {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
}

.表单组列 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.榜单标题栏 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.榜单列表 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.榜单卡片行 {
    background: white;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.榜单头 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #eef2ff;
    border-bottom: 1px solid #e9ecef;
}

.名次 {
    font-weight: 700;
    color: #28a745;
}

.标题 {
    font-size: 1.05em;
    font-weight: 600;
    color: #333;
}

.奖励 {
    color: #ff9800;
    font-weight: 600;
}

.榜单体 {
    padding: 12px 16px 16px;
}

.方案 {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.信息行 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95em;
    color: #666;
}

.提交卡片 {
    margin-top: 16px;
    background: #fff;
    border: 1px dashed #667eea;
    border-radius: 10px;
    padding: 12px;
}

.提交卡片 h4 {
    margin-bottom: 10px;
    color: #667eea;
}

/* 完成提交样式 */
.完成界面 {
    max-width: 1200px;
    margin: 0 auto;
}

.完成界面 h2 {
    color: #28a745;
    text-align: center;
    margin-bottom: 20px;
}

.完成双列 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .完成双列 {
        grid-template-columns: 1fr;
    }
}

.提交表单卡片,
.完成列表卡片 {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
}

.完成标题栏 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.完成列表 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.完成卡片行 {
    background: white;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.完成卡片头 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #e9f7ef;
    border-bottom: 1px solid #e9ecef;
    gap: 10px;
}

.完成卡片体 {
    padding: 12px 16px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.完成字段 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #555;
}

.完成字段 strong {
    color: #333;
}

.完成链接 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.完成链接 a {
    color: #667eea;
    text-decoration: none;
    word-break: break-all;
}

.完成链接 a:hover {
    text-decoration: underline;
}

/* 分析结果模态框样式 */
.分析模型信息 {
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.分析结果卡片 {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.分析结果卡片:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.分析结果头部 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.分析结果头部 h3 {
    color: #667eea;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.分析结果元信息 {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
}

.分析结果原始内容 {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.分析结果原始内容 h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.分析结果原始内容 p {
    color: #555;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.分析结果解读内容 {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.分析结果解读内容 h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.解读内容文本 {
    color: #333;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.解读内容文本 h1,
.解读内容文本 h2,
.解读内容文本 h3 {
    color: #667eea;
    margin-top: 15px;
    margin-bottom: 10px;
}

.解读内容文本 h1 {
    font-size: 1.5em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}

.解读内容文本 h2 {
    font-size: 1.3em;
}

.解读内容文本 h3 {
    font-size: 1.1em;
}

.解读内容文本 strong {
    color: #764ba2;
    font-weight: 600;
}

.解读内容文本 ul,
.解读内容文本 ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.解读内容文本 li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.解读内容文本 p {
    margin-bottom: 10px;
}

.分析结果统计 {
    padding: 15px;
    background: #eef2ff;
    border-radius: 8px;
    border: 1px solid #667eea;
}

.分析结果统计 h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.分析结果统计 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.分析结果统计 li {
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95em;
}

/* 用户审核管理样式 */
.审核管理区域 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.审核管理区域 h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.待审核用户列表 {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
}

.待审核用户卡片 {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.待审核用户卡片:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.用户信息 {
    flex: 1;
}

.用户昵称 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.用户联系方式 {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.注册时间 {
    color: #999;
    font-size: 0.9em;
}

.审核操作 {
    display: flex;
    gap: 10px;
}

.审核按钮 {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.审核按钮.通过 {
    background: #28a745;
    color: white;
}

.审核按钮.通过:hover {
    background: #218838;
    transform: scale(1.05);
}

.审核按钮.拒绝 {
    background: #dc3545;
    color: white;
}

.审核按钮.拒绝:hover {
    background: #c82333;
    transform: scale(1.05);
}

.审核按钮.重置密码 {
    background: #ffc107;
    color: #333;
}

.审核按钮.重置密码:hover {
    background: #e0a800;
    transform: scale(1.05);
}

.审核按钮:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 用户管理模态框样式 */
.用户管理模态框 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.用户管理模态框内容 {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.用户管理模态框头部 {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.用户管理模态框头部 h2 {
    margin: 0;
    font-size: 1.5em;
}

.用户管理模态框主体 {
    padding: 20px 30px;
    overflow-y: auto;
    flex: 1;
}

/* 积分排名榜界面样式（主页面） */
.积分排名榜界面 {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.积分排名榜界面 h2 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.排名类型选择区域 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.排名类型选择器 {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 180px;
}

.排名类型选择器:focus {
    outline: none;
    border-color: #ff9800;
}

.积分排名榜统计信息 {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border: 2px solid #ff9800;
}

.排名统计项 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.排名统计项标签 {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

.排名统计项数值 {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff9800;
}

.积分排名榜列表 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.排名卡片 {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.排名卡片:hover {
    border-color: #ff9800;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.2);
    transform: translateY(-2px);
}

.排名卡片.前三名 {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe0b2 100%);
    border-color: #ff9800;
    border-width: 3px;
}

.排名卡片.第一名 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ff9800;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.排名卡片.第二名 {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 100%);
    border-color: #9e9e9e;
    box-shadow: 0 6px 20px rgba(158, 158, 158, 0.3);
}

.排名卡片.第三名 {
    background: linear-gradient(135deg, #ffccbc 0%, #ffab91 100%);
    border-color: #ff7043;
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.3);
}

.排名序号 {
    font-size: 2em;
    font-weight: bold;
    color: #ff9800;
    min-width: 60px;
    text-align: center;
}

.排名卡片.第一名 .排名序号 {
    color: #ff6f00;
    font-size: 2.5em;
}

.排名卡片.第二名 .排名序号 {
    color: #616161;
    font-size: 2.2em;
}

.排名卡片.第三名 .排名序号 {
    color: #d84315;
    font-size: 2.2em;
}

.排名用户信息 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.排名用户昵称 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
}

.排名用户联系方式 {
    font-size: 0.9em;
    color: #666;
}

.排名注册时间 {
    font-size: 0.85em;
    color: #999;
}

.排名积分信息 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.排名积分值 {
    font-size: 2em;
    font-weight: bold;
    color: #ff9800;
}

.排名积分标签 {
    font-size: 0.9em;
    color: #666;
}

.排名徽章 {
    font-size: 2em;
    min-width: 50px;
    text-align: center;
}

/* 榜单管理界面样式 */
.榜单管理界面 {
    padding: 30px;
}

/* 统计信息区域 */
.榜单统计区域 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.统计卡片 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    transition: transform 0.3s ease;
}

.统计卡片:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.统计标题 {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 10px;
}

.统计数值 {
    font-size: 2em;
    font-weight: bold;
}

.统计数值.成功 {
    color: #4caf50;
}

.统计数值.警告 {
    color: #ff9800;
}

.统计数值.错误 {
    color: #f44336;
}

.榜单管理操作区 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.操作按钮组 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.筛选区域 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.筛选选择 {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 150px;
}

.筛选选择:focus {
    outline: none;
    border-color: #667eea;
}

.榜单记录列表容器 {
    display: grid;
    gap: 20px;
}

.榜单管理卡片 {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.榜单管理卡片:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.榜单基本信息 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.榜单主信息 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.榜单标题 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.榜单贡献人 {
    font-size: 0.95em;
    color: #666;
}

.榜单内容 {
    margin-top: 10px;
}

.榜单方案 {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    max-height: 100px;
    overflow-y: auto;
}

.榜单状态信息 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.支付信息,
.奖励信息,
.点赞信息 {
    font-size: 0.9em;
    color: #666;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 4px;
}

.榜单时间 {
    font-size: 0.85em;
    color: #999;
}

.榜单操作区 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* 状态标签样式增强 */
.状态标签.已支付 {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.状态标签.待确认 {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.状态标签.未支付 {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 用户管理页面样式 */
.用户管理界面 {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.用户管理操作区 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.搜索区域 {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.搜索输入 {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.搜索输入:focus {
    outline: none;
    border-color: #667eea;
}

.用户列表容器 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.用户管理卡片 {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.用户管理卡片:hover {
    border-color: #667eea;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.用户基本信息 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.用户主信息 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.用户昵称 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.用户联系方式 {
    font-size: 0.95em;
    color: #666;
}

.用户状态信息 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.状态标签 {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
    white-space: nowrap;
}

.状态标签.已通过 {
    background: #d4edda;
    color: #155724;
}

.状态标签.待审核 {
    background: #fff3cd;
    color: #856404;
}

.状态标签.已拒绝 {
    background: #f8d7da;
    color: #721c24;
}

.状态标签.管理员 {
    background: #cfe2ff;
    color: #084298;
}

/* 用户级别标签样式 */
.状态标签.超级管理员 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
    font-weight: 600;
    border: 1px solid #ffd700;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.状态标签.管理员 {
    background: #cfe2ff;
    color: #084298;
}

.状态标签.会员 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0277bd;
    font-weight: 500;
}

.状态标签.非会员 {
    background: #f5f5f5;
    color: #757575;
}

.积分标签 {
    padding: 4px 12px;
    border-radius: 6px;
    background: #fff3cd;
    color: #856404;
    font-size: 0.85em;
    font-weight: 500;
}

/* 设置用户级别按钮样式 */
.设置用户级别区域 {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.设置用户级别区域 .操作按钮 {
    margin: 3px;
    padding: 6px 12px;
    font-size: 0.85em;
}

.设置级别按钮 {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.2s ease;
}

.设置级别按钮:hover {
    background: #e9ecef;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.设置级别按钮[data-目标级别="超级管理员"] {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    border-color: #ffd700;
    color: #856404;
}

.设置级别按钮[data-目标级别="超级管理员"]:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

.设置级别按钮[data-目标级别="管理员"] {
    background: #e3f2fd;
    border-color: #90caf9;
    color: #0277bd;
}

.设置级别按钮[data-目标级别="管理员"]:hover {
    background: #bbdefb;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

.设置级别按钮[data-目标级别="会员"] {
    background: #f3e5f5;
    border-color: #ce93d8;
    color: #7b1fa2;
}

.设置级别按钮[data-目标级别="会员"]:hover {
    background: #e1bee7;
    box-shadow: 0 2px 6px rgba(156, 39, 176, 0.3);
}

.设置级别按钮[data-目标级别="非会员"] {
    background: #fafafa;
    border-color: #bdbdbd;
    color: #616161;
}

.设置级别按钮[data-目标级别="非会员"]:hover {
    background: #eeeeee;
    box-shadow: 0 2px 6px rgba(158, 158, 158, 0.3);
}

.注册时间 {
    font-size: 0.9em;
    color: #999;
}

.用户操作区 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.用户操作区 .操作按钮 {
    padding: 8px 16px;
    font-size: 0.9em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.重置密码按钮 {
    background: #ffc107;
    color: #333;
}

.重置密码按钮:hover {
    background: #e0a800;
    transform: scale(1.05);
}

.设为管理员按钮 {
    background: #28a745;
    color: white;
}

.设为管理员按钮:hover {
    background: #218838;
    transform: scale(1.05);
}

.取消管理员按钮 {
    background: #dc3545;
    color: white;
}

.取消管理员按钮:hover {
    background: #c82333;
    transform: scale(1.05);
}

.设置积分按钮 {
    background: #17a2b8;
    color: white;
}

.设置积分按钮:hover {
    background: #138496;
    transform: scale(1.05);
}

.管理员标签 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.管理员标签:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8f 100%);
}

/* 留言和回复样式 */
.留言区域 {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

.留言表单区域 {
    margin-bottom: 15px;
}

.留言输入区域 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.留言输入 {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
}

.留言输入:focus {
    outline: none;
    border-color: #667eea;
}

.发送留言按钮,
.发送回复按钮 {
    padding: 10px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.发送留言按钮:hover,
.发送回复按钮:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.留言列表 {
    margin-top: 15px;
}

.留言项 {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.留言头部 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.留言作者 {
    font-weight: 600;
    color: #667eea;
}

.留言时间 {
    color: #999;
    font-size: 0.85em;
}

.留言内容 {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.回复区域 {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.回复项 {
    background: white;
    border-left: 3px solid #667eea;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.回复项 .回复作者 {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9em;
    margin-right: 10px;
}

.回复项 .回复时间 {
    color: #999;
    font-size: 0.85em;
}

.回复项 .回复内容 {
    color: #555;
    margin-top: 5px;
    font-size: 0.95em;
    line-height: 1.5;
}

.回复输入区域 {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.回复输入 {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
}

.回复输入:focus {
    outline: none;
    border-color: #667eea;
}

.留言按钮 {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.留言按钮:hover {
    background: #218838;
    transform: scale(1.05);
}

/* 用户管理按钮样式 */
.用户管理按钮 {
    background: #9c27b0;
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9em;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block !important; /* 确保默认显示 */
    font-weight: 500;
    visibility: visible !important; /* 确保可见 */
    opacity: 1 !important; /* 确保不透明 */
}

.用户管理按钮:hover {
    background: #7b1fa2;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
    text-decoration: none;
    color: white !important;
}

/* 榜单管理按钮样式 */
.榜单管理按钮 {
    background: #ff9800;
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9em;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block !important; /* 确保默认显示 */
    font-weight: 500;
    visibility: visible !important; /* 确保可见 */
    opacity: 1 !important; /* 确保不透明 */
}

.榜单管理按钮:hover {
    background: #f57c00;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

/* 修改密码按钮样式 */
.修改密码按钮 {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9em;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.修改密码按钮:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.修改密码按钮:active {
    transform: scale(0.95);
}

/* 删除按钮样式 */
.删除按钮 {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.删除按钮:hover {
    background: #c82333;
    transform: scale(1.05);
}

.删除按钮:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 滑出动画 */
@keyframes 滑出 {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* 用户状态提示样式 */
.用户状态提示 {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.用户状态提示.已通过 {
    background: rgba(40, 167, 69, 0.15);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.用户状态提示.待审核 {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.用户状态提示.未通过 {
    background: rgba(220, 53, 69, 0.15);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* 限制提示样式 */
.限制提示 {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    color: #856404;
    font-size: 0.95em;
    line-height: 1.6;
}

.限制提示 strong {
    font-weight: 600;
    color: #856404;
}

.限制提示 a {
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
}

.限制提示 a:hover {
    color: #764ba2;
}

/* 结果标题样式增强 */
.结果标题 {
    font-size: 1.1em;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* 登录注册模态框样式 */
.登录注册模态框 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: 淡入 0.3s ease-out;
}

@keyframes 淡入 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.模态框内容 {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: 滑入模态框 0.3s ease-out;
}

@keyframes 滑入模态框 {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.模态框头部 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.模态框头部 h2 {
    margin: 0;
    font-size: 1.8em;
}

.模态框头部 .关闭按钮 {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.模态框头部 .关闭按钮:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.模态框标签 {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    background: #f8f9fa;
}

.标签页按钮 {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 1.1em;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.标签页按钮:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.标签页按钮.激活 {
    color: #667eea;
    border-bottom-color: #667eea;
    background: white;
}

.模态框主体 {
    padding: 30px;
}

.表单区域 {
    display: none;
}

.表单区域.激活 {
    display: block;
    animation: 淡入 0.3s ease-out;
}

.登录注册表单 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.登录注册表单 .表单组 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.登录注册表单 label {
    font-weight: 600;
    color: #333;
    font-size: 1em;
}

.登录注册表单 input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.登录注册表单 input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.提示文本 {
    font-size: 0.85em;
    color: #666;
    margin-top: -5px;
}

.登录注册表单 .发送按钮 {
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.登录注册表单 .发送按钮:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.登录注册表单 .发送按钮:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .头部顶部 {
        flex-direction: column;
        text-align: center;
    }
    
    .头部标题 {
        text-align: center;
    }
    
    .头部 h1 {
        font-size: 2em;
    }
    
    .模态框内容 {
        width: 95%;
        margin: 20px;
    }
    
    .模态框头部 {
        padding: 20px;
    }
    
    .模态框主体 {
        padding: 20px;
    }
    
    .用户信息显示 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    
    .用户基本信息区 {
        flex-direction: column;
        gap: 8px;
    }
    
    .用户统计信息 {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .用户操作按钮区 {
        flex-direction: column;
        width: 100%;
    }
}