.container { max-width: 1200px; 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; }

.hero { background: linear-gradient(135deg, #ff69b4, #ffb6c1); color: #fff; padding: 40px 0; text-align: center; border-radius: 0 0 20px 20px; margin-bottom: 30px; }

.hero h1 { font-size: 32px; margin-bottom: 10px; }

.hero p { font-size: 16px; max-width: 800px; margin: 0 auto; line-height: 1.8; }

.main-content { display: flex; gap: 20px; margin-bottom: 40px; }

.article-list { flex: 1; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.section-title { font-size: 20px; border-left: 4px solid var(--primary-color); padding-left: 10px; margin-bottom: 20px; }

.article-item { border-bottom: 1px dashed #eee; padding: 15px 0; transition: transform 0.3s; }

.article-item:hover { transform: translateX(5px); }

.article-item:last-child { border-bottom: none; }

.article-title { font-size: 18px; font-weight: bold; margin-bottom: 8px; color: #222; }

.article-desc { font-size: 14px; color: var(--light-text); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.article-meta { font-size: 12px; color: #999; display: flex; justify-content: space-between; }

.sidebar { width: 320px; }

.widget { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 20px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }

.tag-list a { background: var(--bg-color); padding: 5px 12px; border-radius: 15px; font-size: 14px; color: var(--primary-color); transition: all 0.3s; }

.tag-list a:hover { background: var(--primary-color); color: #fff; }

.hot-list { list-style: none; }

.hot-list li { margin-bottom: 12px; border-bottom: 1px dashed #f0f0f0; padding-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; }

.hot-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hot-list li a { color: #444; transition: color 0.3s; }

.hot-list li a:hover { color: var(--primary-color); }

.hot-list li span { color: var(--primary-color); font-weight: bold; margin-right: 5px; }

@media (max-width: 768px) {
            .main-content { flex-direction: column; }
            .sidebar { width: 100%; }
        }