 /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        /* 顶部区域 */
        .header {
            width: 1000px;
            height: 150px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .logo {
            font-size: 42px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            z-index: 1;
        }
        
        .logo span {
            color: #ffd166;
        }
        
        .header-date {
            color: white;
            font-size: 16px;
            z-index: 1;
        }
        
        /* 导航栏 */
        .nav {
            background-color: #8AA4B4;
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 40px;
            border-bottom: 2px solid #6a8a9b;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 25px;
            position: relative;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            padding: 5px 10px;
            border-radius: 3px;
            transition: all 0.3s;
            display: block;
        }
        
        .nav-menu a:hover, .nav-menu a.active {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 30px 40px;
        }
        
        /* 幻灯片区域 */
        .slideshow-section {
            margin-bottom: 40px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            height: 280px;
        }
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide:nth-child(1) {
            background: linear-gradient(135deg, #8AA4B4 0%, #6a8a9b 100%);
        }
        
        .slide:nth-child(2) {
            background: linear-gradient(135deg, #8AA4B4 0%, #a8c0c0 100%);
        }
        
        .slide:nth-child(3) {
            background: linear-gradient(135deg, #6a8a9b 0%, #8AA4B4 100%);
        }
        
        .slide:nth-child(4) {
            background: linear-gradient(135deg, #a8c0c0 0%, #8AA4B4 100%);
        }
        
        .slide:nth-child(5) {
            background: linear-gradient(135deg, #8AA4B4 0%, #6a8a9b 100%);
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 25px;
            color: white;
        }
        
        .slide-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #ffd166;
        }

		.slide-title a{ color:#ffffff; }
        
        .slide-desc {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: #ffd166;
        }
        
        /* 新闻区域 */
        .news-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 22px;
            color: #8AA4B4;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8AA4B4;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 22px;
            background-color: #ffd166;
            margin-right: 10px;
        }
        
        /* 带图片新闻 */
        .featured-news {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .news-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid #eaeaea;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #8AA4B4;
        }
        
        .news-image {
            height: 160px;
            background-color: #eaeaea;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .news-title a:hover {
            color: #8AA4B4;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 纯文字新闻列表 */
        .text-news {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }
        
        .text-news-list {
            list-style: none;
        }
        
        .text-news-item {
            padding: 15px 0;
            border-bottom: 1px dashed #eaeaea;
            display: flex;
            align-items: center;
        }
        
        .text-news-item:last-child {
            border-bottom: none;
        }
        
        .text-news-item::before {
            content: "";
            color: #8AA4B4;
            margin-right: 10px;
            font-size: 18px;
        }
        
        .text-news-title {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            flex-grow: 1;
        }
        
        .text-news-title:hover {
            color: #8AA4B4;
        }
        
        .text-news-meta {
            font-size: 12px;
            color: #8a8a8a;
            min-width: 100px;
            text-align: right;
        }
        
        /* 栏目区域 */
        .category-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .category-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }
        
        .category-title {
            font-size: 20px;
            color: #8AA4B4;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
            display: flex;
            align-items: center;
        }
        
        .category-title a {
            color: #8AA4B4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .category-title a:hover {
            color: #6a8a9b;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-item {
            padding: 12px 0;
            border-bottom: 1px dashed #eaeaea;
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-item-title {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            display: block;
            margin-bottom: 5px;
        }
        
        .category-item-title:hover {
            color: #8AA4B4;
        }
        
        .category-item-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 友情链接 */
        .links-section {
            background-color: #f8f9fa;
            padding: 25px;
            margin: 0 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }
        
        .links-title {
            font-size: 18px;
            color: #8AA4B4;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .links-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 18px;
            background-color: #ffd166;
            margin-right: 10px;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .links-container a {
            background-color: #eaeaea;
            padding: 8px 15px;
            border-radius: 5px;
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        
        .links-container a:hover {
            background-color: #8AA4B4;
            color: white;
        }
        
        /* 底部区域 */
        .footer {
            background-color: #8AA4B4;
            color: white;
            text-align: center;
            padding: 25px;
            margin-top: 30px;
            border-top: 2px solid #6a8a9b;
        }
        
        .footer p {
            margin-bottom: 10px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }

/* 主要内容区域 */
        .main-content {
            padding: 30px 40px;
        }
        
        /* 列表页标题和筛选 */
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #8AA4B4;
        }
        
        .list-title {
            font-size: 24px;
            color: #8AA4B4;
            display: flex;
            align-items: center;
        }
        
        .list-title::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 24px;
            background-color: #ffd166;
            margin-right: 10px;
        }
        
        .list-filter {
            display: flex;
            gap: 10px;
        }

		.list-filter a{ color:#000000; }
        
        .filter-btn {
            background-color: #fff;
            border: 1px solid #eaeaea;
            padding: 5px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #666;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: #8AA4B4;
            color: white;
            border-color: #8AA4B4;
        }
        
        /* 文章列表 */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .article-item {
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid #eaeaea;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #8AA4B4;
        }
        
        .article-image {
            width: 220px;
            height: 160px;
            background-color: #eaeaea;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .article-content {
            padding: 20px;
            flex-grow: 1;
        }
        
        .article-category {
            display: inline-block;
            background-color: #8AA4B4;
            color: white;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 3px;
            margin-bottom: 10px;
        }
        
        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .article-title a:hover {
            color: #8AA4B4;
        }
        
        .article-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #8a8a8a;
        }
        

        
        .category-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }
        
        .category-title {
            font-size: 18px;
            color: #8AA4B4;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
            display: flex;
            align-items: center;
        }
        
        .category-title a {
            color: #8AA4B4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .category-title a:hover {
            color: #6a8a9b;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-item {
            padding: 10px 0;
            border-bottom: 1px dashed #eaeaea;
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-item-title {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: block;
            margin-bottom: 5px;
        }
        
        .category-item-title:hover {
            color: #8AA4B4;
        }
        
        .category-item-meta {
            font-size: 12px;
            color: #8a8a8a;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 5px;
        }
        
        .pagination a, strong {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #eaeaea;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #666;
        }
        
        .pagination a:hover {
            background-color: #eaeaea;
        }
        
        .pagination a.active {
            background-color: #8AA4B4;
            color: white;
            border-color: #8AA4B4;
        }

		/* 文章详情区域 */
        .article-detail {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
            margin-bottom: 40px;
        }
        
        .detail-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
        }
        
        .detail-category {
            display: inline-block;
            background-color: #8AA4B4;
            color: white;
            font-size: 14px;
            padding: 5px 12px;
            border-radius: 3px;
            margin-bottom: 15px;
        }
        
        .detail-title {
            font-size: 28px;
            color: #333;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        
        .detail-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 14px;
            color: #8a8a8a;
        }
        
        .detail-content {
            line-height: 1.8;
            font-size: 16px;
        }
        
        .detail-content p {
            margin-bottom: 20px;
            text-indent: 2em;
        }
        
        .detail-content h2 {
            font-size: 22px;
            color: #8AA4B4;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-content h3 {
            font-size: 18px;
            color: #6a8a9b;
            margin: 25px 0 15px;
        }
        
        .detail-content blockquote {
            background-color: #f8f9fa;
            border-left: 4px solid #8AA4B4;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            border-radius: 0 5px 5px 0;
        }
        
        .detail-content ul, .detail-content ol {
            margin: 15px 0;
            padding-left: 40px;
        }
        
        .detail-content li {
            margin-bottom: 8px;
        }
        
        .detail-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .detail-tags {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        .detail-tag {
            background-color: #f0f0f0;
            color: #666;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 14px;
        }
        
        .detail-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        .detail-btn {
            background-color: #fff;
            border: 1px solid #8AA4B4;
            padding: 8px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            color: #8AA4B4;
        }
        
		.detail-btn a{ color:#333333; }

        .detail-btn:hover {
            background-color: #8AA4B4;
            color: white;
        }
        
        /* 栏目区域 */
        .detail-category-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .detail-category-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eaeaea;
        }
        
        .detail-category-title {
            font-size: 18px;
            color: #8AA4B4;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
            display: flex;
            align-items: center;
        }
        
        .detail-category-title a {
            color: #8AA4B4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .detail-category-title a:hover {
            color: #6a8a9b;
        }
        
        .detail-category-list {
            list-style: none;
        }
        
        .detail-category-item {
            padding: 10px 0;
            border-bottom: 1px dashed #eaeaea;
        }
        
        .detail-category-item:last-child {
            border-bottom: none;
        }
        
        .detail-category-item-title {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: block;
            margin-bottom: 5px;
        }
        
        .detail-category-item-title:hover {
            color: #8AA4B4;
        }
        
        .detail-category-item-meta {
            font-size: 12px;
            color: #8a8a8a;
        }