.listbanner{
	height: 414px;
	background: url(listbanner.jpg) top center no-repeat;
}
.detailbanner{
	height: 414px;
	background: url(detailbanner.jpg) top center no-repeat;
}
.container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
        /* 左侧栏目导航 */
        .category-nav {
            width: 220px;
            /* background: #FDE5E2; */
            color: #3D3D3D;
            padding: 0px;
			margin-top: -71px;
        }

        .category-nav h3 {
            padding: 20px 0px;
			height: 30px;
			line-height: 30px;
			background-color: #FF4936;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 20px;
			color: #ffffff;
			text-align: center;
            font-weight: 600;
			border-radius: 10px 10px 0px 0px;
        }

        .category-nav ul {
            list-style: none;
			background: #FDE5E2;
			padding-bottom: 15px;
			padding-top: 1px;
        }

        .category-nav li {
            padding: 12px 25px;
            transition: all 0.3s;
			margin-top: 10px;
            border-left: 4px solid transparent;
        }

        .category-nav li:hover {
            background: #FBCAC6;
        }

        .category-nav a {
            text-decoration: none;
            color: #3D3D3D;
            display: block;
            font-size: 16px;
        }

        .category-nav li.active {
            background: #FBCAC6;
            border-left: 4px solid #FF9900;
        }

        .category-nav li.active a,.category-nav li:hover a {
            color: #3D3D3D;
            font-weight: 600;
        }

        /* 右侧内容区域 */
        .content-area {
            flex: 1;
            padding: 30px;
            min-height: 400px;
        }

        .page-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }

        /* 新闻列表 */
        .news-list {
            width: 100%;
        }

        .news-item {
            display: flex;
            height: 170px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .news-item a{
            display: flex;
            width: 100%;
        }

        .news-image {
            width: 233px;
            height: 139px;
            overflow: hidden;
            border-radius: 6px;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .news-content {
            flex: 1;
            padding: 5px 0;
        }

        .news-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #2c3e50;
        }

        .news-title a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s;
        }

        .news-title a:hover {
            color: #3498db;
        }

        .news-desc {
            color: #7f8c8d;
            line-height: 1.7;
            margin-bottom: 15px;
            height: 68px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .news-date {
            color: #95a5a6;
            font-size: 13px;
            display: flex;
            align-items: center;
        }

        .news-date::before {
            content: "";
                display: inline-block;
                width: 16px; /* 设置你想要的宽度 */
                height: 16px; /* 设置你想要的高度 */
                background: url(clock.png) no-repeat center center;
                background-size: contain; /* 或 cover，根据需求调整 */
                margin-right: 6px;
        }

        .news-item:hover .news-image img {
            transform: scale(1.05);
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
			margin-bottom: 20px;
            list-style: none;
        }

        .pagination li {
            margin: 0 4px;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            text-decoration: none;
            color: #7f8c8d;
            font-weight: 500;
            transition: all 0.3s;
        }

        .pagination a:hover {
            background: #f8f9fa;
            color: #F75446;
        }

        .pagination li.active a {
            background: #F75446;
            color: white;
            border-color: #F75446;
        }

        .pagination li.disabled a {
            color: #d5dbdb;
            cursor: not-allowed;
        }

        .pagination .page-prev,
        .pagination .page-next {
            width: auto;
            padding: 0 15px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }

            .category-nav {
                width: 100%;
                margin-bottom: 20px;
            }

            .news-item {
                height: auto;
                flex-direction: column;
            }

            .news-image {
                width: 100%;
                height: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
/* 详情页 */
/* 面包屑导航 */
        .breadcrumb {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
            color: #7f8c8d;
        }

        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 8px;
            color: #bdc3c7;
        }

        /* 文章头部 */
        .article-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .article-title {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
            font-weight: 600;
			text-align: center;
        }

        .article-meta {
            display: flex;
			justify-content: center;
            align-items: center;
			flex-wrap: wrap;
			gap: 25px;
            color: #7f8c8d;
            font-size: 14px;
			margin-top: 25px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }

        .meta-item i {
            margin-right: 6px;
            font-size: 16px;
        }

        /* 文章内容 */
        .article-content {
            margin-bottom: 30px;
			padding: 0px 10px;
        }

        .article-image {
            width: 100%;
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            display: block;
        }

        .article-image .caption {
            text-align: center;
            color: #7f8c8d;
            font-size: 14px;
            margin-top: 8px;
        }

        .article-body {
            font-size: 16px;
            line-height: 30px;
            color: #34495e;
        }

        .article-body img{
            max-width: 100%;
            height: auto;
            margin: 10px auto;
            display: block;
        }

        .article-body p {
            margin-bottom: 20px;
            line-height: 30px;
        }

        .article-body h3 {
            font-size: 20px;
            color: #2c3e50;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        .article-body blockquote {
            border-left: 4px solid #3498db;
            padding-left: 20px;
            margin: 25px 0;
            color: #7f8c8d;
            font-style: italic;
        }

        /* 标签区域 */
        .article-tags {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .article-tags span {
            margin-right: 10px;
            color: #7f8c8d;
        }

        .tag {
            display: inline-block;
            padding: 5px 12px;
            background: #f0f7ff;
            color: #3498db;
            border-radius: 20px;
            margin-right: 8px;
            font-size: 13px;
            text-decoration: none;
        }

        /* 相关文章 */
        .related-articles {
            margin-top: 40px;
        }

        .related-title {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }

        .related-list {
            list-style: none;
        }

        .related-list li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }

        .related-list li::before {
            content: "•";
            color: #3498db;
            position: absolute;
            left: 0;
        }

        .related-list a {
            color: #34495e;
            text-decoration: none;
            transition: color 0.3s;
        }

        .related-list a:hover {
            color: #3498db;
        }

        /* 操作按钮 */
        .article-actions {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 25px;
            margin: 0 10px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #fff;
            color: #7f8c8d;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }

        .action-btn i {
            margin-right: 8px;
        }

        .action-btn:hover {
            background: #f8f9fa;
            color: #3498db;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }

            .category-nav {
                width: 100%;
                margin-bottom: 20px;
            }

            .article-meta {
                flex-wrap: wrap;
            }

            .meta-item {
                margin-bottom: 8px;
            }
        }
.disabled {
    color: #999;
    cursor: not-allowed;
}
