﻿        * { margin: 0; padding: 0; box-sizing: border-box; }
        .article-page { background: linear-gradient(135deg, #f5f0e8, #e8dcc8); padding: 30px 0; min-height: 80vh; }
        .article-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

        /* 页面头部 */
        .page-header { text-align: center; margin-bottom: 30px; }
        .page-header h1 { 
            font-size: 28px; color: #8B4513; 
            border-bottom: 3px solid #FFD700; 
            display: inline-block; padding-bottom: 10px;
        }

        /* 分类导航 */
        .category-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .category-nav a {
            padding: 8px 20px;
            background: #fff;
            border: 2px solid #e0d5c8;
            border-radius: 25px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        .category-nav a:hover, .category-nav a.active {
            background: #ff8c00;
            border-color: #ff8c00;
            color: #fff;
        }

        /* 文章列表 */
        .article-list { display: grid; gap: 15px; }
        .article-item {
            background: #fff;
            padding: 20px 25px;
            border-radius: 10px;
            border-left: 4px solid #ff8c00;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            display: flex;
            gap: 20px;
        }
        .article-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .article-thumb {
            width: 150px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f5f5f5;
        }
        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .article-info { flex: 1; }
        .article-info h3 {
            margin: 0 0 10px 0;
            font-size: 18px;
        }
        .article-info h3 a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
        }
        .article-info h3 a:hover {
            color: #ff8c00;
        }
        .article-meta {
            color: #999;
            font-size: 13px;
            margin-bottom: 8px;
        }
        .article-meta i {
            color: #ff8c00;
            margin-right: 5px;
        }
        .article-meta span { margin-right: 15px; }
        .article-summary {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* 分页 */
        .pagination {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
        }
        .pagination .page-info {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 5px 10px 0;
            color: #8B4513;
            font-size: 14px;
            font-weight: bold;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 3px;
            border: 2px solid #e0d5c8;
            color: #8B4513;
            text-decoration: none;
            font-size: 14px;
            background: #fff;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .pagination a:hover {
            border-color: #ff8c00;
            background: #FFF8DC;
        }
        .pagination span.current {
            background: linear-gradient(135deg, #ff8c00, #FFA500);
            color: #fff;
            border-color: #ff8c00;
            font-weight: bold;
        }
        .pagination span.page-disabled {
            color: #ccc;
            border-color: #eee;
            background: #f9f9f9;
            cursor: not-allowed;
        }
        .no-article {
            text-align: center;
            padding: 60px;
            color: #999;
            font-size: 16px;
            background: #fff;
            border-radius: 10px;
        }

        /* 搜索框 */
        .search-box {
            margin-bottom: 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid #e0d5c8;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ff8c00;
        }
        .search-form button {
            padding: 10px 25px;
            background: #ff8c00;
            color: #fff;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
        }
        .search-form button:hover {
            background: #e67e00;
        }

        /* 三栏布局 */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 20px;
        }
        .article-sidebar-left { display: none; }
        .article-sidebar-left,
        .article-sidebar-right {
            align-self: start;
        }
        .sidebar-box {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .sidebar-box h3 {
            font-size: 16px;
            color: #8B4513;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #FFD700;
        }
        .category-list,
        .hot-list,
        .recommend-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .category-list li,
        .hot-list li,
        .recommend-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .category-list li:last-child,
        .hot-list li:last-child,
        .recommend-list li:last-child {
            border-bottom: none;
        }
        .category-list a,
        .hot-list a,
        .recommend-list a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .category-list a:hover,
        .hot-list a:hover,
        .recommend-list a:hover {
            color: #ff8c00;
        }
        .category-list a.active {
            color: #ff8c00;
            font-weight: bold;
        }
        .hot-views {
            color: #999;
            font-size: 12px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
            }
            .article-sidebar-right {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .article-item { flex-direction: column; }
            .article-thumb { width: 100%; height: 150px; }
        }