/* 自定义样式 */

/* 全局样式 */
body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 广告位样式 */
.banner-ad {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    overflow: hidden;
}

.small-ads {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.small-ad {
    width: 32%;
    height: auto;
    overflow: hidden;
}

/* 文章列表样式 */
.article-list {
    margin-bottom: 30px;
}

.article-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.article-summary {
    color: #666;
    margin-bottom: 10px;
}

/* 文章详情样式 */
.article-detail {
    margin-bottom: 30px;
}

.article-detail-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.article-detail-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.article-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

/* 分类标题样式 */
.category-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

/* 查看更多按钮样式 */
.view-more {
    text-align: right;
    margin-top: 10px;
}

/* 后台样式 */
.admin-login {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.admin-header {
    background-color: #343a40;
    color: white;
    padding: 15px;
    margin-bottom: 20px;
}

.admin-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    height: 100vh;
}

.admin-content {
    padding: 20px;
}

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

/* 表格样式 */
.table {
    margin-bottom: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .small-ads {
        flex-direction: column;
    }
    
    .small-ad {
        width: 100%;
        margin-bottom: 15px;
    }
}