:root {
            --primary-color: #ff69b4;
            --bg-color: #fff0f5;
            --text-color: #333;
            --light-text: #666;
        }

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }

a { text-decoration: none; color: inherit; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 15px; }

header { background: #fff; box-shadow: 0 2px 10px rgba(255,105,180,0.1); position: sticky; top: 0; z-index: 100; margin-bottom: 30px; }

.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 60px; }

.logo { font-size: 24px; font-weight: bold; color: var(--primary-color); }

.nav-links a { margin-left: 20px; font-size: 16px; transition: color 0.3s; }

.nav-links a:hover { color: var(--primary-color); }

.list-wrap { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 40px; }

.breadcrumb { font-size: 14px; color: #999; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.breadcrumb a { color: var(--text-color); }

.breadcrumb a:hover { color: var(--primary-color); }

.article-item { padding: 20px 0; border-bottom: 1px dashed #eee; transition: all 0.3s; }

.article-item:hover { background-color: #fffafc; padding-left: 10px; border-radius: 5px; }

.article-title { font-size: 20px; font-weight: bold; margin-bottom: 10px; color: #222; }

.article-title:hover { color: var(--primary-color); }

.article-desc { font-size: 15px; color: var(--light-text); margin-bottom: 15px; }

.article-meta { font-size: 13px; color: #999; display: flex; gap: 20px; }

.article-meta span { background: var(--bg-color); padding: 2px 8px; border-radius: 10px; color: var(--primary-color); }

.pagination { display: flex; justify-content: center; margin-top: 30px; gap: 10px; }

.pagination a, .pagination span { padding: 8px 15px; background: #fff; border: 1px solid #eee; border-radius: 5px; color: var(--text-color); transition: all 0.3s; }

.pagination a:hover, .pagination .active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

footer { background: #fff; padding: 20px 0; text-align: center; color: var(--light-text); border-top: 1px solid #eee; }