* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            width: 1000px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        /* 顶部logo区域 */
        .header {
            width: 1000px;
            height: 150px;
            background-color: #FECC49;
            position: relative;
        }
        
        .logo {
            width: 100%;
            height: 100%;
            background-color: #FECC49;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
        }
        
        /* 主体内容区域 */
        .main-content {
            display: flex;
        }
        
        /* 左侧导航区域 */
        .sidebar {
            width: 200px;
            background-color: #f8f8f8;
            padding: 10px 0;
        }
        
        .nav-menu {
            list-style: none;
        }
        
        .nav-menu li {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: #333;
            display: block;
            font-size: 16px;
        }
        
        .nav-menu li:hover {
            background-color: #FECC49;
        }
        
        .image-news-section {
            margin: 20px 10px;
        }
        
        .image-news-section h3 {
            font-size: 16px;
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 10px;
        }
        
        .image-news {
            background-color: white;
            border: 1px solid #e0e0e0;
            padding: 10px;
            margin-bottom: 15px;
        }
        
        .image-news img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            background-color: #f0f0f0;
        }
        
        .image-news h4 {
            font-size: 15px;
            margin: 8px 0;
        }
        
        .image-news p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

.image-news a{ color:#333333; }

        
        .friend-links {
            margin: 20px 10px;
        }
        
        .friend-links h3 {
            font-size: 16px;
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 10px;
        }
        
        .friend-links ul {
            list-style: none;
        }
        
        .friend-links li {
            padding: 5px 0;
            border-bottom: 1px dotted #e0e0e0;
        }
        
        .friend-links a { display:block;
            text-decoration: none;
            color: #333;
            font-size: 14px;padding: 5px 0;
            border-bottom: 1px dotted #e0e0e0;
        }
        
        .friend-links a:hover {
            color: #FECC49;
        }
        
        /* 右侧内容区域 */
        .content {
            width: 800px;
            padding: 15px;
        }
        
        /* 幻灯片区域 */
        .slideshow {
            width: 100%;
            height: 300px;
            background-color: #f0f0f0;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .slide {
            width: 20%;
            height: 100%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #666;
        }
        
        .slide:nth-child(1) { background-color: #e6f7ff; }
        .slide:nth-child(2) { background-color: #fff2e6; }
        .slide:nth-child(3) { background-color: #f6ffed; }
        .slide:nth-child(4) { background-color: #fff0f6; }
        .slide:nth-child(5) { background-color: #f9f0ff; }
        
        .slide-controls {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slide-control {
            width: 12px;
            height: 12px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slide-control.active {
            background-color: #FECC49;
        }
        
        /* 推荐新闻区域 */
        .recommended-news {
            margin-bottom: 10px;
        }
        
        .recommended-news h2 {
            font-size: 18px;
            padding: 8px 0;
            border-bottom: 2px solid #FECC49;
            margin-bottom: 15px;
            color: #333;
        }
        
        .recommended-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .recommended-item {
            width: 32%;
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            margin-bottom: 15px;
            padding: 10px;
        }
        
        .recommended-item h3 {
            font-size: 15px;
            margin-bottom: 8px;
        }
        
        .recommended-item p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }
        
        .recommended-item a {
            text-decoration: none;
            color: #333;
            display: block;
        }
        
        .recommended-item a:hover h3 {
            color: #FECC49;
        }
        
        /* 栏目区域 */
        .columns {
            margin-bottom: 20px;
        }
        
        .column {
            width: 100%;
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            background-color: #f9f9f9;
        }
        
        .column-header {
            background-color: #FECC49;
            padding: 8px 12px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }
        
        .column-header a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: normal;
        }
        
        .column-header a:hover {
            text-decoration: underline;
        }
        
        .column-content {
            padding: 10px;
        }
        
        .column-item {
            padding: 8px 0;
            border-bottom: 1px dotted #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .column-item:last-child {
            border-bottom: none;
        }
        
        .column-item a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            flex: 1;
        }
        
        .column-item a:hover {
            color: #FECC49;
        }
        
        .column-date {
            font-size: 12px;
            color: #999;
            margin-left: 10px;
        }
        
        /* 底部区域 */
        .footer {
            background-color: #FECC49;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            color: #333;
            line-height: 1.6;
        }


 /* ===== 文章列表页专用样式 ===== */
        /* 面包屑导航 */
        .breadcrumb {
            padding: 10px 0;
            margin-bottom: 15px;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .breadcrumb a {
            color: #333;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #FECC49;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        /* 文章列表 */
        .article-list {
            margin-bottom: 30px;
        }
        
        .article-list h2 {
            font-size: 18px;
            padding: 8px 0;
            border-bottom: 2px solid #FECC49;
            margin-bottom: 15px;
            color: #333;
        }
        
        .article-item {
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-title {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .article-title a {
            text-decoration: none;
            color: #333;
        }
        
        .article-title a:hover {
            color: #FECC49;
        }
        
        .article-meta {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .article-summary {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 分页 */
        .pagination {
            text-align: center;
            margin: 30px 0;
        }
        
        .pagination a, .pagination strong {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 3px;
            border: 1px solid #e0e0e0;
            text-decoration: none;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .pagination a:hover, .pagination a.active {
            background-color: #FECC49;
            border-color: #FECC49;
        }
        
        /* 栏目导航 */
        .category-nav {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            background-color: #f9f9f9;
        }
        
        .category-nav-header {
            background-color: #FECC49;
            padding: 8px 12px;
            font-size: 16px;
            font-weight: bold;
        }
        
        .category-nav-content {
            padding: 10px;
        }
        
        .category-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        
        .category-nav li {
            margin-right: 15px;
            margin-bottom: 8px;
        }
        
        .category-nav a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            padding: 3px 8px;
            border: 1px solid transparent;
        }
        
        .category-nav a:hover, .category-nav a.active {
            background-color: #FECC49;
            border-color: #FECC49;
        }

		/* 面包屑导航 */
        .breadcrumb {
            padding: 10px 0;
            margin-bottom: 15px;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .breadcrumb a {
            color: #333;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #FECC49;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        /* 文章内容区域 */
        .article-detail {
            margin-bottom: 30px;
        }
        
        .article-title {
            font-size: 24px;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #333;
            text-align: center;
        }
        
        .article-meta {
            text-align: center;
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-meta span {
            margin: 0 10px;
        }
        
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        
        .article-content p {
            margin-bottom: 15px;
            text-indent: 2em;
        }
        
        .article-content h2 {
            font-size: 20px;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-content h3 {
            font-size: 18px;
            margin: 20px 0 12px;
        }
        
        .article-content blockquote {
            background-color: #f9f9f9;
            border-left: 4px solid #FECC49;
            padding: 10px 15px;
            margin: 15px 0;
            font-style: italic;
        }
        
        .article-content ul, .article-content ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 8px;
        }
        
        .article-tags {
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-tags span {
            font-weight: bold;
            margin-right: 10px;
        }
        
        .article-tags a {
            display: inline-block;
            padding: 3px 8px;
            margin: 0 5px 5px 0;
            background-color: #f5f5f5;
            text-decoration: none;
            color: #333;
            font-size: 13px;
            border-radius: 3px;
        }
        
        .article-tags a:hover {
            background-color: #FECC49;
        }
        
        /* 文章导航 */
        .article-nav {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            padding: 15px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-nav a {
            text-decoration: none;
            color: #333;
            max-width: 45%;
        }
        
        .article-nav a:hover {
            color: #FECC49;
        }
        
        .article-nav-prev:before {
            content: "上一篇：";
            font-weight: bold;
        }
        
        .article-nav-next:after {
            content: "下一篇：";
            font-weight: bold;
        }
        
        .article-nav-next {
            text-align: right;
        }
        
        /* 相关文章 */
        .related-articles {
            margin-bottom: 30px;
        }
        
        .related-articles h3 {
            font-size: 18px;
            padding: 8px 0;
            border-bottom: 2px solid #FECC49;
            margin-bottom: 15px;
            color: #333;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-list li {
            padding: 8px 0;
            border-bottom: 1px dotted #e0e0e0;
        }
        
        .related-list li:last-child {
            border-bottom: none;
        }
        
        .related-list a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }
        
        .related-list a:hover {
            color: #FECC49;
        }
        
        .related-date {
            font-size: 12px;
            color: #999;
            margin-left: 10px;
        }