        /* 基礎樣式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        a {
            text-decoration: none;
            color: #0088cc;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #005580;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 頭部樣式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #0088cc;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: #666;
        }
        
        .breadcrumb a:hover {
            color: #0088cc;
        }
        
        /* 導航樣式 */
        nav {
            background-color: #0088cc;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-weight: 500;
        }
        
        .nav-menu a:hover {
            background-color: #006699;
        }
        
        /* 主要內容區樣式 */
        .main-content {
            display: flex;
            margin: 30px 0;
            gap: 30px;
        }
        
        .content {
            flex: 3;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .section {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: #0088cc;
        }
        
        /* 分類頁頭部 */
        .category-header {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .category-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-title i {
            margin-right: 15px;
            color: #0088cc;
        }
        
        .category-desc {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 文章列表樣式 */
        .article-list {
            margin-bottom: 30px;
        }
        
        .article-item {
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-img {
            flex: 0 0 250px;
            overflow: hidden;
        }
        
        .article-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .article-item:hover .article-img img {
            transform: scale(1.05);
        }
        
        .article-info {
            flex: 1;
            padding: 20px;
        }
        
        .article-title {
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .article-title a {
            color: #333;
        }
        
        .article-title a:hover {
            color: #0088cc;
        }
        
        .article-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #888;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-desc {
            color: #666;
            line-height: 1.6;
        }
        
        /* 載入更多按鈕 */
        .load-more {
            text-align: center;
            margin: 30px 0;
        }
        
        .load-more-btn {
            background-color: #0088cc;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
        }
        
        .load-more-btn i {
            margin-right: 8px;
        }
        
        .load-more-btn:hover {
            background-color: #006699;
        }
        
        /* 自動載入提示 */
        .loading-indicator {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-text {
            display: inline-flex;
            align-items: center;
            color: #666;
        }
        
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #0088cc;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 側邊欄樣式 */
        .widget {
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .widget-title i {
            margin-right: 10px;
            color: #0088cc;
        }
        
        .popular-list, .random-list {
            list-style: none;
        }
        
        .popular-list li, .random-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .popular-list li:last-child, .random-list li:last-child {
            border-bottom: none;
        }
        
        .popular-list i, .random-list i {
            margin-right: 10px;
            color: #0088cc;
        }
        
        .popular-list .meta, .random-list .meta {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
        }
        
        .random-articles {
            display: grid;
            gap: 15px;
        }
        
        .random-article-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .random-article-card:hover {
            transform: translateY(-3px);
        }
        
        .random-article-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        .random-article-content {
            padding: 15px;
        }
        
        .random-article-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .random-article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #888;
        }
        
        /* 底部樣式 */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #0088cc;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
        }
        
        .footer-links a:hover {
            color: #0088cc;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }
        
        /* 返回頂部按鈕 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #0088cc;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #006699;
        }
        
        /* 響應式設計 */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .article-item {
                flex-direction: column;
            }
            
            .article-img {
                flex: 0 0 auto;
            }
            
            .article-img img {
                height: 200px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
            }
            
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .logo {
                margin-bottom: 10px;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .category-title {
                font-size: 24px;
            }
        }