/* 更多页面专用样式 */

.more-container {
    height: calc(100vh - 100px);
    overflow-y: auto;
    background-color: #f5f5f5;
}

.more-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* 卡片网格布局 */
.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

/* 宽卡片 */
.card-wide {
    grid-column: 1 / -1;
}

/* 信息卡片 */
.info-card {
    background-color: white;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* 卡片头部 */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.card-icon {
    font-size: 20px;
}

.card-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* 卡片内容 */
.card-body {
    padding: 20px;
}

/* 信息行 */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-row span {
    font-size: 14px;
    color: #333;
}

.highlight-value {
    color: #1890ff !important;
    font-weight: 600;
    font-size: 16px !important;
}

.status-online {
    color: #52c41a !important;
    font-weight: 500;
}

/* 功能列表 */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 16px;
}

.feature-item span:last-child {
    font-size: 14px;
    color: #333;
}

/* 统计网格 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1890ff;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* 关于我们 */
.about-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.about-content p {
    margin: 12px 0;
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.contact-info p {
    margin: 8px 0;
    color: #333;
}

.contact-info strong {
    color: #1890ff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .more-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .more-content {
        padding: 15px;
    }
    
    .more-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* 滚动条 */
.more-container::-webkit-scrollbar {
    width: 8px;
}

.more-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.more-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.more-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

