﻿:root {
    --bg: #ffffff;
    --border: #e5e7eb;
    --border-strong: #d1d5db;
    --text-main: #1f2937;
    --text-secondary: #6b7280;
    --primary: #d4a373;
    --radius: 14px;
}

body {
    background: var(--bg);
    font-family: "Segoe UI", sans-serif;
    color: var(--text-main);
}

/* 布局 */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.article-wrap {
    max-width: 760px;
}

/* 标题区 */
.article-header {
    padding: 30px 0 15px;
    border-bottom: 1px solid var(--border);
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.article-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 封面 */
.article-cover {
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

    .article-cover img {
        width: 100%;
    }

/* 内容（不污染） */
.article-content {
    padding: 10px 0 30px;
}

/* 推荐栏 */
.recommend-wrap {
    padding-top: 40px;
}

.recommend-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.recommend-item a{
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    cursor: pointer;
}

.recommend-img {
    width: 70px;
}
