        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        a {
            text-decoration: none;
            color: #3390ec;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #1a6dc1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background-color: #3390ec;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo a {
            color: white;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 主要内容区域 */
        main {
            display: flex;
            margin: 20px 0;
        }
        
        .content {
            flex: 3;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-right: 20px;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .widget {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .widget-title {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            color: #3390ec;
            display: flex;
            align-items: center;
        }
        
        .widget-title i {
            margin-right: 8px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
            color: #777;
        }
        
        .breadcrumb a {
            color: #777;
        }
        
        .breadcrumb a:hover {
            color: #3390ec;
        }
        
        .breadcrumb i {
            margin: 0 8px;
        }
        
        /* 栏目头部 */
        .category-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .category-title {
            font-size: 24px;
            color: #3390ec;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 10px;
        }
        
        .category-desc {
            color: #666;
            line-height: 1.6;
        }
        
        /* 文章列表样式 */
        .article-list {
            margin-bottom: 20px;
        }
        
        .article-item {
            display: flex;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-img {
            flex: 0 0 200px;
            margin-right: 20px;
        }
        
        .article-img img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
        }
        
        .article-info {
            flex: 1;
        }
        
        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .article-meta {
            display: flex;
            margin-bottom: 10px;
            font-size: 13px;
            color: #888;
        }
        
        .article-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-desc {
            color: #555;
            line-height: 1.5;
        }
        
        /* 加载更多区域 */
        .load-more {
            text-align: center;
            margin: 20px 0;
        }
        
        .load-more-btn {
            background: #3390ec;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s;
        }
        
        .load-more-btn:hover {
            background: #1a6dc1;
        }
        
        .load-more-btn i {
            margin-right: 8px;
        }
        
        /* 自动加载提示 */
        .loading-indicator {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-text {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }
        
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3390ec;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 下载区域样式 */
        .download-section {
            background: linear-gradient(135deg, #3390ec, #1a6dc1);
            color: white;
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .download-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .download-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .download-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 15px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        
        .download-button:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .download-button i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        /* 侧边栏文章样式 */
        .sidebar-article {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .sidebar-article:last-child {
            border-bottom: none;
        }
        
        .sidebar-article a {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 5px;
            display: block;
        }
        
        .sidebar-meta {
            font-size: 12px;
            color: #888;
            display: flex;
            justify-content: space-between;
        }
        
        .sidebar-meta span {
            display: flex;
            align-items: center;
        }
        
        .sidebar-meta i {
            margin-right: 5px;
        }
        
        /* 底部样式 */
        footer {
            background: #333;
            color: #aaa;
            padding: 30px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .footer-section {
            flex: 1;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #aaa;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #3390ec;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #1a6dc1;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            main {
                flex-direction: column;
            }
            
            .content {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .article-item {
                flex-direction: column;
            }
            
            .article-img {
                flex: none;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .article-img img {
                height: 180px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
            
            .download-buttons {
                grid-template-columns: 1fr;
            }
        }