* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            font-size: 14px;
        }
        
        a {
            text-decoration: none;
            color: #333;
        }
        
        a:hover {
            color: #2c7ee6;
        }
        
        .container {
            width: 1000px;
            margin: 0 auto;
            background-color: #fff;
        }
        
        /* 顶部区域 */
        .header {
            width: 1000px;
            height: 150px;
            background-color: #2c3e50;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: bold;
        }
        
        /* 主导航 */
        .main-nav {
            height: 50px;
            background: linear-gradient(to right, #2c3e50, #3498db);
            margin-bottom: 5px;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            height: 100%;
        }
        
        .main-nav li {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px; padding:0 10px;
            cursor: pointer;
            transition: all 0.3s;
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        
        .main-nav li:last-child {
            border-right: none;
        }
        
        .main-nav li a {
            color: #fff;
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        .main-nav li a:hover, .main-nav li a.active {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* 内容区域 */
        .content {
            display: flex;
            padding: 15px;
            margin-bottom: 10px;
        }
        
        /* 左侧内容 */
        .left-content {
            width: 700px;
            margin-right: 15px;
        }
        
        /* 右侧边栏 */
        .sidebar {
            width: 270px;
        }
        
        /* 幻灯片区域 */
        .slider-section {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .slider {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .slider-container {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .slide {
            width: 20%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 15px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        
        .slide-content {
            background: rgba(0,0,0,0.5);
            padding: 10px 15px;
            border-radius: 4px;
            max-width: 80%;
        }
        
        .slide-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

		.slide-title a{ color:#ffffff;  }
        
        .slide-desc {
            font-size: 13px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 15px;
            right: 15px;
            display: flex;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 3px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        /* 栏目区块 */
        .section {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .section-header {
            height: 40px;
            line-height: 40px;
            background: linear-gradient(to right, #2c3e50, #3498db);
            color: white;
            padding: 0 15px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }
        
        .section-header a {
            color: white;
            font-size: 13px;
            font-weight: normal;
        }
        
        .section-content {
            padding: 15px;
        }
        
        /* 文章网格布局 */
        .article-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -7.5px;
        }
        
        .article-item {
            width: 33.33%;
            padding: 0 7.5px;
            margin-bottom: 15px;
        }
        
        .article-inner {
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .article-inner:hover {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .article-thumb {
            height: 120px;
            overflow: hidden;
        }
        
        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .article-inner:hover .article-thumb img {
            transform: scale(1.05);
        }
        
        .article-info {
            padding: 10px;
        }
        
        .article-title {
            font-size: 14px;
            font-weight: bold;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            margin-bottom: 5px;
        }
        
        .article-meta {
            font-size: 12px;
            color: #999;
            display: flex;
            justify-content: space-between;
        }
        
        /* 文章列表 */
        .article-list {
            list-style: none;
        }
        
        .article-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .article-list li:last-child {
            border-bottom: none;
        }
        
        .article-list .article-index {
            width: 20px;
            height: 20px;
            background: #f5f5f5;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            margin-right: 10px;
            font-size: 12px;
        }
        
        .article-list li:nth-child(1) .article-index {
            background: #e74c3c;
            color: white;
        }
        
        .article-list li:nth-child(2) .article-index {
            background: #e67e22;
            color: white;
        }
        
        .article-list li:nth-child(3) .article-index {
            background: #f1c40f;
            color: white;
        }
        
        .article-list .article-title {
            flex: 1;
            height: auto;
            margin-bottom: 0;
        }
        
        .article-list .article-date {
            font-size: 12px;
            color: #999;
            margin-left: 10px;
        }
        
        /* 侧边栏模块 */
        .sidebar-module {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .module-header {
            height: 35px;
            line-height: 35px;
            background: #f5f5f5;
            color: #333;
            padding: 0 15px;
            font-size: 15px;
            font-weight: bold;
            border-bottom: 1px solid #eee;
        }
        
        .module-content {
            padding: 15px;
        }
        
        .hot-list {
            list-style: none;
        }
        
        .hot-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .hot-list li:last-child {
            border-bottom: none;
        }
        
        .hot-list .hot-index {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: #f5f5f5;
            color: #999;
            text-align: center;
            line-height: 18px;
            border-radius: 3px;
            margin-right: 8px;
            font-size: 12px;
        }
        
        .hot-list li:nth-child(1) .hot-index {
            background: #e74c3c;
            color: white;
        }
        
        .hot-list li:nth-child(2) .hot-index {
            background: #e67e22;
            color: white;
        }
        
        .hot-list li:nth-child(3) .hot-index {
            background: #f1c40f;
            color: white;
        }
        
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -5px;
        }
        
        .tag {
            background: #f5f5f5;
            padding: 5px 10px;
            border-radius: 3px;
            margin: 0 5px 8px;
            font-size: 12px;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background: #3498db;
            color: white;
        }
        
        /* 友情链接 */
        .friend-links {
            padding: 15px;
            margin-bottom: 10px;.main-nav li
            background: #fff;
            border: 1px solid #eee;
            border-radius: 5px;
        }
        
        .friend-links h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .friend-links ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        
        .friend-links li {
            margin-right: 15px;
            margin-bottom: 8px;
        }
        
        /* 底部区域 */
        .footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            line-height: 1.6;
        }


		/* ===== 列表页面专用样式 ===== */
        
        /* 内容区域 */
        .list-content {
            display: flex;
            padding: 15px;
        }
        
        /* 左侧内容 */
        .list-main {
            width: 700px;
            margin-right: 15px;
        }
        
        /* 右侧边栏 */
        .list-sidebar {
            width: 270px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 10px 15px;
            background-color: #f8f8f8;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }
        
        .breadcrumb a {
            color: #3498db;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 列表标题 */
        .list-title {
            font-size: 22px;
            font-weight: bold;
            color: #2c3e50;
            padding: 15px;
            border-bottom: 2px solid #3498db;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .list-title span {
            font-size: 14px;
            font-weight: normal;
            color: #666;
        }
        
        /* 文章列表项 */
        .list-article {
            margin-bottom: 20px;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .list-article:hover {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .list-article-header {
            display: flex;
            margin-bottom: 10px;
        }
        
        .list-article-thumb {
            width: 180px;
            height: 120px;
            overflow: hidden;
            border-radius: 3px;
            margin-right: 15px;
        }
        
        .list-article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .list-article:hover .list-article-thumb img {
            transform: scale(1.05);
        }
        
        .list-article-info {
            flex: 1;
        }
        
        .list-article-title {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        
        .list-article-title a {
            color: #2c3e50;
        }
        
        .list-article-title a:hover {
            color: #3498db;
        }
        
        .list-article-meta {
            font-size: 12px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .list-article-meta span {
            margin-right: 15px;
        }
        
        .list-article-summary {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 10px;
        }
        
        .list-article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .list-article-tags {
            display: flex;
        }
        
        .list-tag {
            background: #f5f5f5;
            padding: 3px 8px;
            border-radius: 3px;
            margin-right: 8px;
            font-size: 12px;
            color: #666;
        }
        
        .list-tag:hover {
            background: #3498db;
            color: white;
        }
        
        .list-article-more {
            color: #3498db;
            font-size: 14px;
        }
        
        /* 无缩略图文章样式 */
        .list-article.no-thumb {
            padding: 15px;
        }
        
        .list-article.no-thumb .list-article-header {
            margin-bottom: 10px;
        }
        
        .list-article.no-thumb .list-article-title {
            margin-bottom: 5px;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
        }
        
        .pagination a, .pagination span {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 3px;
            border: 1px solid #eee;
            border-radius: 3px;
            color: #666;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .pagination a:hover {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .pagination .current {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .pagination .prev, .pagination .next {
            padding: 8px 20px;
        }
        
        /* 侧边栏模块 */
        .list-module {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .list-module-header {
            height: 35px;
            line-height: 35px;
            background: #f5f5f5;
            color: #333;
            padding: 0 15px;
            font-size: 15px;
            font-weight: bold;
            border-bottom: 1px solid #eee;
        }
        
        .list-module-content {
            padding: 15px;
        }
        
        .list-hot {
            list-style: none;
        }
        
        .list-hot li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .list-hot li:last-child {
            border-bottom: none;
        }
        
        .list-hot .hot-index {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: #f5f5f5;
            color: #999;
            text-align: center;
            line-height: 18px;
            border-radius: 3px;
            margin-right: 8px;
            font-size: 12px;
        }
        
        .list-hot li:nth-child(1) .hot-index {
            background: #e74c3c;
            color: white;
        }
        
        .list-hot li:nth-child(2) .hot-index {
            background: #e67e22;
            color: white;
        }
        
        .list-hot li:nth-child(3) .hot-index {
            background: #f1c40f;
            color: white;
        }
        
        /* 推荐阅读 */
        .list-recommend {
            list-style: none;
        }
        
        .list-recommend li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .list-recommend li:last-child {
            border-bottom: none;
        }
        
        .list-recommend li a {
            display: flex;
            align-items: center;
        }
        
        .list-recommend-thumb {
            width: 60px;
            height: 40px;
            overflow: hidden;
            border-radius: 3px;
            margin-right: 10px;
        }
        
        .list-recommend-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .list-recommend-title {
            flex: 1;
            font-size: 13px;
            line-height: 1.4;
        }

		/* 内容区域 */
        .detail-content {
            display: flex;
            padding: 15px;
        }
        
        /* 左侧内容 */
        .detail-main {
            width: 700px;
            margin-right: 15px;
        }
        
        /* 右侧边栏 */
        .detail-sidebar {
            width: 270px;
        }
        
        /* 面包屑导航 */
        .detail-breadcrumb {
            padding: 10px 15px;
            background-color: #f8f8f8;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }
        
        .detail-breadcrumb a {
            color: #3498db;
        }
        
        .detail-breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 文章主体 */
        .article-detail {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        /* 文章标题区域 */
        .article-header {
            padding: 20px 25px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .article-title2 {
            font-size: 24px;
            font-weight: bold;
            line-height: 1.4;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .article-meta {
            display: flex;
            font-size: 13px;
            color: #999;
        }
        
        .article-meta-item {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .article-meta-item i {
            margin-right: 5px;
            font-style: normal;
        }
        
        /* 文章内容区域 */
        .article-body {
            padding: 25px;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .article-body p {
            margin-bottom: 15px;
            text-indent: 2em;
        }
        
        .article-body h2 {
            font-size: 20px;
            color: #2c3e50;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .article-body h3 {
            font-size: 18px;
            color: #2c3e50;
            margin: 20px 0 12px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 15px auto;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .article-body blockquote {
            background: #f9f9f9;
            border-left: 4px solid #3498db;
            margin: 20px 0;
            padding: 15px 20px;
            font-style: italic;
            color: #555;
        }
        
        .article-body ul, .article-body ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 8px;
        }
        
        /* 文章标签 */
        .article-tags {
            padding: 15px 25px;
            border-top: 1px solid #eee;
            background: #f9f9f9;
        }
        
        .article-tags span {
            font-weight: bold;
            margin-right: 10px;
            color: #666;
        }
        
        .detail-tag {
            display: inline-block;
            background: #eef4ff;
            color: #3498db;
            padding: 4px 10px;
            border-radius: 3px;
            margin-right: 8px;
            font-size: 13px;
        }
        
        .detail-tag:hover {
            background: #3498db;
            color: white;
        }
        
        /* 文章操作区域 */
        .article-actions {
            display: flex;
            justify-content: center;
            padding: 15px 0;
            border-top: 1px solid #eee;
        }
        
        .detail-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            margin: 0 10px;
            background: #f5f5f5;
            border-radius: 4px;
            color: #666;
            transition: all 0.3s;
        }
        
        .detail-btn:hover {
            background: #3498db;
            color: white;
        }
        
        .detail-btn i {
            margin-right: 5px;
            font-style: normal;
        }
        
        /* 上一篇下一篇 */
        .article-nav {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-top: 1px solid #eee;
            margin-top: 20px;
        }
        
        .article-prev, .article-next {
            flex: 1;
        }
        
        .article-next {
            text-align: right;
        }
        
        .article-nav a {
            display: block;
            padding: 10px 15px;
            background: #f9f9f9;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .article-nav a:hover {
            background: #eef4ff;
            color: #3498db;
        }
        
        .article-nav span {
            display: block;
            font-size: 13px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .article-nav strong {
            font-weight: normal;
            color: #333;
        }
        
        /* 相关文章 */
        .related-articles {
            margin-top: 30px;
        }
        
        .detail-section-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            margin-bottom: 15px;
        }
        
        .related-list {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -7.5px;
        }
        
        .related-item {
            width: 50%;
            padding: 0 7.5px;
            margin-bottom: 15px;
        }
        
        .related-inner {
            display: flex;
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .related-inner:hover {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .related-thumb {
            width: 100px;
            height: 70px;
            overflow: hidden;
        }
        
        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .related-inner:hover .related-thumb img {
            transform: scale(1.05);
        }
        
        .related-info {
            flex: 1;
            padding: 10px;
        }
        
        .related-title {
            font-size: 14px;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
        }
        
        /* 侧边栏模块 */
        .detail-module {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .detail-module-header {
            height: 35px;
            line-height: 35px;
            background: #f5f5f5;
            color: #333;
            padding: 0 15px;
            font-size: 15px;
            font-weight: bold;
            border-bottom: 1px solid #eee;
        }
        
        .detail-module-content {
            padding: 15px;
        }
        
        .detail-hot {
            list-style: none;
        }
        
        .detail-hot li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .detail-hot li:last-child {
            border-bottom: none;
        }
        
        .detail-hot .hot-index {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: #f5f5f5;
            color: #999;
            text-align: center;
            line-height: 18px;
            border-radius: 3px;
            margin-right: 8px;
            font-size: 12px;
        }
        
        .detail-hot li:nth-child(1) .hot-index {
            background: #e74c3c;
            color: white;
        }
        
        .detail-hot li:nth-child(2) .hot-index {
            background: #e67e22;
            color: white;
        }
        
        .detail-hot li:nth-child(3) .hot-index {
            background: #f1c40f;
            color: white;
        }
        
        /* 作者信息 */
        .author-info {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 5px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-detail {
            flex: 1;
        }
        
        .author-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .author-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }