﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
		

a {
  color: #339af0;
  text-decoration: none;
}

a:visited {
  color: #339af0;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #2a5298;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}
		
        
        /* 主容器 */
        .container {
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        

        
        /* 顶部栏 */
        .header {
            height: 100px;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: relative;
            flex-shrink: 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 36px;
            margin-right: 15px;
            color: #4dabf7;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
        }
		.logo-text a {color: #FFF;text-decoration: none;}
		.logo-text a:visited {color: #FFF;text-decoration: none;}
        
        .logo-subtext {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 5px;
        }
        
        .search-box {
            display: flex;
            width: 300px;
        }
        
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 16px;
            background-color: rgba(255, 255, 255, 0.9);
            outline: none;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            background-color: white;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        
        .search-box button {
            background-color: #4dabf7;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 10px 25px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .search-box button:hover {
            background-color: #339af0;
        }

		
        /* 主内容区 */
        .main-content {
            display: flex;
            flex: 1;
            padding: 30px;
        }
        
        /* 右侧边栏 */
        .sidebar {
            width: 245px;
            flex-shrink: 0;
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar h3 {
            font-size: 18px;
            color: #1e3c72;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .widget {
            margin-bottom: 30px;
        }
        
        .widget ul {
            list-style: none;
        }
        
        .widget li {
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s;
        }
        
        .widget li a {
            font-size: 14px;
        }
        
        .widget li i {
            margin-right: 10px;
            color: #4dabf7;
        }
        
        .widget:last-child {
            margin-bottom: 0;
        }
        
        /* 左侧内容区 */
        .content {
            flex: 1;
            width: 940px;
            margin-right: 15px;
            padding: 25px 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        /* 文章内容样式 */
        .article-title {
            font-size: 28px;
            color: #1e3c72;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #f1f3f5;
        }
        
        .article-meta {
            display: flex;
            margin-bottom: 25px;
            color: #6c757d;
            font-size: 14px;
        }
        
        .meta-item {
            margin-right: 20px;
        }
        
        .meta-item i {
            margin-right: 5px;
            color: #4dabf7;
        }
        
        /* 内容标题样式 */
        .content h2 {
            font-size: 24px;
            color: #2a5298;
            margin: 22px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .content h3 {
            font-size: 18px;
            color: #339af0;
            margin: 25px 0 12px 0;
        }
        
        .content h4 {
            font-size: 16px;
            color: #4dabf7;
            margin: 20px 0 10px 0;
        }
        
        .content p {
            margin-bottom: 18px;
            font-size: 16px;
            line-height: 1.7;
        }
        
        .content blockquote {
            background-color: #f8f9fa;
            border-left: 4px solid #4dabf7;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 5px 5px 0;
        }
        
        .content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
		
        /* 文章列表 */
        .article-list {
            padding: 1px;
        }
        
        .article-item {
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s;
        }
		.article-item h2 {
            font-size: 18px;
            color: #339af0;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-title {
            font-size: 22px;
            color: #2a5298;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        
        .article-meta {
            display: flex;
            margin-bottom: 15px;
            color: #6c757d;
            font-size: 14px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            margin-right: 20px;
            margin-bottom: 5px;
        }
        
        .meta-item i {
            margin-right: 5px;
            color: #4dabf7;
        }
        
        .article-excerpt {
            color: #495057;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
        }
        
        .tag {
            background-color: #e7f5ff;
            color: #339af0;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 13px;
            margin-right: 8px;
            margin-bottom: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: #339af0;
            color: white;
        }
        
        .read-more {
            color: #2a5298;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .read-more:hover {
            color: #4dabf7;
            text-decoration: underline;
        }
        
        .read-more i {
            margin-left: 5px;
            font-size: 12px;
        }
        
        /* 分页 */
        .pagination {
            padding: 30px;
            display: flex;
            justify-content: center;
            border-top: 1px solid #e9ecef;
        }
        
        .pagination-list {
            display: flex;
			flex-wrap: wrap;
            list-style: none;
        }
        
        .pagination-item {
            margin: 0 5px;
        }
        
        .pagination-link {
            display: block;
            padding: 10px 16px;
            background-color: #f8f9fa;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .pagination-link:hover {
            background-color: #e9ecef;
            color: #2a5298;
        }
        
        .pagination-link.active {
            background-color: #4dabf7;
            color: white;
        }
        
        .pagination-link.disabled {
            color: #adb5bd;
            cursor: not-allowed;
            background-color: #f8f9fa;
        }
        
        .pagination-link.disabled:hover {
            background-color: #f8f9fa;
            color: #adb5bd;
        }
		
        /* 页脚 */
        .footer {
            background-color: #1a1a2e;
            color: #aaa;
            text-align: center;
            padding: 25px 30px;
            margin-top: 30px;
            flex-shrink: 0;
        }
        
        .footer p {
            font-size: 15px;
            line-height: 1.6;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #4dabf7;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 1240px) {
            .container {
                width: 100%;
                margin: 0;
            }
            
            .header {
                padding: 0 20px;
            }
            
            .main-content {
                padding: 20px;
            }
        }
        
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .content {
                width: 100%;
            }
            
            .search-box {
                width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }
            
            .logo {
                margin-bottom: 20px;
                justify-content: center;
                text-align: center;
                flex-direction: column;
            }
            
            .logo-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .search-box {
                width: 100%;
                max-width: 500px;
            }
            
            .article-title {
                font-size: 26px;
            }
            
            .content h2 {
                font-size: 22px;
            }
            
            .content h3 {
                font-size: 20px;
            }
            
            .content h4 {
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .main-content {
                padding: 15px;
            }
            
            .content, .sidebar {
                padding: 20px;
            }
            
            .article-meta {
                flex-direction: column;
            }
            
            .meta-item {
                margin-bottom: 8px;
            }
        }