/* 极简风格 - 浆果红色调 */
:root {
    --primary-color: #9E0B41;
    --secondary-color: #D81B60;
    --light-color: #F8F1F5;
    --dark-color: #2A2A2A;
    --text-color: #333;
    --border-radius: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.2s;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 极简头部 */
header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 300;
    font-size: 16px;
}

/* 主要内容区 */
.main-content {
    margin-bottom: 50px;
}

.section-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* 极简文章列表 */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-item {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.article-info {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-meta {
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: space-between;
}

/* 文章详情页 */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-detail-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-detail-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.article-content {
    line-height: 1.8;
    font-weight: 300;
}

.article-content p {
    margin-bottom: 20px;
}

/* 极简分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.pagination a:hover {
    border-color: var(--primary-color);
}

/* 极简友情链接 */
.friend-links {
    margin: 50px 0;
}

.friend-links h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.friend-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.friend-links-container a {
    padding: 5px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 13px;
}

.friend-links-container a:hover {
    border-color: var(--primary-color);
}

/* 极简页脚 */
footer {
    background-color: white;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 0;
        margin-right: 20px;
    }
    
    .article-list {
        grid-template-columns: 1fr;
    }
    
    .article-detail {
        padding: 20px;
    }
    
    .article-detail-title {
        font-size: 24px;
    }
}