 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        /* 顶部Logo和导航 */
        header {
            background-color: #fff;
        }
        
        .logo {
            width: 1000px;
            height: 150px;
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        
        nav {
            background-color: #2d3748;
            padding: 0 15px;
        }
        
        nav ul {
            list-style: none;
            display: flex;
        }
        
        nav ul li {
            position: relative;
        }
        
        nav ul li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: #4a5568;
        }
        
        /* 主要内容区 */
        .main-content {
            display: flex;
            padding: 20px;
        }
        
        .left-column {
            flex: 7;
            padding-right: 20px;
        }
        
        .right-column {
            flex: 3;
        }
        
        /* 新闻区块样式 */
        .news-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 22px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #3182ce;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .news-card {
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .news-image {
            width: 100%;
            height: 180px;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }
        
        .news-image:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .news-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2d3748;
        }
		
		.news-title a{ color:#000000; }
		.news-title a:hover{ color:#FF0000; }
        
        .news-summary {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #718096;
        }
        
        .breaking-news {
            background-color: #e53e3e;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        /* 特色新闻 */
        .featured-news {
            margin-bottom: 20px;
        }
        
        .featured-card {
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .featured-image {
            width: 100%;
            height: 200px;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 14px;
            position: relative;
        }
        
        .featured-image:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .featured-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
        }
        
        .featured-content {
            padding: 15px;
        }
        
        /* 热门新闻列表 */
        .popular-news {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .popular-list {
            list-style: none;
        }
        
        .popular-list li {
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .popular-list li:last-child {
            border-bottom: none;
        }
        
        .popular-list a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .popular-list a:hover {
            color: #3182ce;
        }
        
        /* 文字新闻列表 */
        .text-news {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .text-news-list {
            list-style: none;
        }
        
        .text-news-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e2e8f0;
            position: relative;
            padding-left: 15px;
        }
        
        .text-news-list li:before {
            content: "";
            color: #3182ce;
            position: absolute;
            left: 0;
            top: 12px;
            font-size: 18px;
        }
        
        .text-news-list li:last-child {
            border-bottom: none;
        }
        
        .text-news-list a {
            color: #2d3748;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        
        .text-news-list a:hover {
            color: #3182ce;
        }
        
        .text-news-meta {
            font-size: 12px;
            color: #718096;
            margin-top: 5px;
            display: flex;
            justify-content: space-between;
        }
        
        .news-category {
            background-color: #e2e8f0;
            color: #4a5568;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 11px;
        }
        
        /* 左侧文字新闻区 */
        .left-text-news {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .left-text-news-list {
            list-style: none;
        }
        
        .left-text-news-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        .left-text-news-list li:last-child {
            border-bottom: none;
        }
        
        .left-text-news-list a {
            color: #2d3748;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        
        .left-text-news-list a:hover {
            color: #3182ce;
        }
        
        .left-text-news-meta {
            font-size: 12px;
            color: #718096;
            margin-top: 5px;
            display: flex;
            justify-content: space-between;
        }
        
        /* 友情链接区域 */
        .friend-links {
            background-color: #fff;
            padding: 20px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .friend-links-title {
            font-size: 18px;
            color: #2d3748;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .friend-links-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        .friend-link-item {
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .friend-links-container a {
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;margin-right: 20px;
        }
        
        .friend-links-container a:hover {
            color: #3182ce;
            text-decoration: underline;
        }
        
        /* 底部版权信息 */
        footer {
            background-color: #2d3748;
            color: #cbd5e0;
            padding: 30px 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            font-size: 14px;
            margin-top: 10px;
        }

		/* 面包屑导航 */
        .list-breadcrumb {
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .list-breadcrumb a {
            color: #4a5568;
            text-decoration: none;
        }
        
        .list-breadcrumb a:hover {
            color: #3182ce;
        }
        
        /* 主要内容区 */
        .list-main-content {
            display: flex;
            padding: 20px;
        }
        
        .list-left-column {
            flex: 7;
            padding-right: 20px;
        }
        
        .list-right-column {
            flex: 3;
        }
        
        /* 列表标题 */
        .list-title {
            font-size: 24px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .list-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #3182ce;
        }
        
        /* 新闻列表项 */
        .list-item {
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
        }
        
        .list-item:last-child {
            border-bottom: none;
        }
        
        .list-item-img {
            width: 180px;
            height: 120px;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 14px;
            flex-shrink: 0;
            margin-right: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .list-item-img:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .list-item-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
        }
        
        .list-item-content {
            flex: 1;
        }
        
        .list-item-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2d3748;
        }
        
        .list-item-title a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .list-item-title a:hover {
            color: #3182ce;
        }
        
        .list-item-summary {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .list-item-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #718096;
        }
        
        .list-item-category {
            background-color: #e2e8f0;
            color: #4a5568;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 11px;
            margin-right: 10px;
        }
        
        /* 分页样式 */
        .list-pagination {
            margin-top: 30px;
            text-align: center;
        }
        
        .list-pagination ul {
            list-style: none;
            display: inline-flex;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .list-pagination li {
            border-right: 1px solid #e2e8f0;
        }
        
        .list-pagination li:last-child {
            border-right: none;
        }
        
        .list-pagination a, .list-pagination strong {
            padding: 10px 15px;
            background-color: #fff;
            color: #4a5568;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s; float:left;
        }
        
        .list-pagination a:hover {
            background-color: #f7fafc;
        }
        
        .list-pagination .list-current {
            background-color: #3182ce;
            color: white;
        }
        
        /* 侧边栏样式 */
        .list-sidebar-section {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .list-sidebar-title {
            font-size: 18px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .list-sidebar-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 2px;
            background-color: #3182ce;
        }
        
        .list-sidebar-list {
            list-style: none;
        }
        
        .list-sidebar-list li {
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .list-sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .list-sidebar-list a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .list-sidebar-list a:hover {
            color: #3182ce;
        }
        
        /* 底部样式 - 与首页共用 */
        .list-footer {
            background-color: #2d3748;
            color: #cbd5e0;
            padding: 30px 20px;
            text-align: center;
        }
        
        .list-footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .list-footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .list-footer-links a:hover {
            color: white;
        }
        
        .list-copyright {
            font-size: 14px;
            margin-top: 10px;
        }
        
        /* 友情链接区域 */
        .list-friend-links {
            background-color: #fff;
            padding: 20px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .list-friend-links-title {
            font-size: 18px;
            color: #2d3748;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .list-friend-links-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        .list-friend-link-item {
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .list-friend-link-item a {
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .list-friend-link-item a:hover {
            color: #3182ce;
            text-decoration: underline;
        }

		
        
        /* 主要内容区 */
        .detail-main-content {
            display: flex;
            padding: 20px;
        }
        
        .detail-left-column {
            flex: 7;
            padding-right: 20px;
        }
        
        .detail-right-column {
            flex: 3;
        }
        
        /* 新闻详情区域 */
        .detail-article {
            background-color: #fff;
            border-radius: 5px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .detail-title {
            font-size: 28px;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .detail-meta {
            display: flex;
            justify-content: space-between;
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 14px;
            color: #718096;
        }
        
        .detail-meta-left {
            display: flex;
            align-items: center;
        }
        
        .detail-category {
            background-color: #3182ce;
            color: white;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 12px;
            margin-right: 15px;
        }
        
        .detail-source {
            margin-right: 15px;
        }
        
        .detail-author {
            margin-right: 15px;
        }
        
        .detail-content {
            font-size: 16px;
            line-height: 1.8;
            color: #2d3748;
        }
        
        .detail-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .detail-image {
            width: 100%;
            margin: 20px 0;
            text-align: center;
        }
        
        .detail-image img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        
        .detail-image-caption {
            font-size: 14px;
            color: #718096;
            margin-top: 10px;
            text-align: center;
        }
        
        .detail-tags {
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }
        
        .detail-tag {
            display: inline-block;
            background-color: #e2e8f0;
            color: #4a5568;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 12px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        /* 分享区域 */
        .detail-share {
            display: flex;
            align-items: center;
            margin-top: 30px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .detail-share-text {
            margin-right: 15px;
            font-size: 14px;
            color: #4a5568;
        }
        
        .detail-share-buttons {
            display: flex;
        }
        
        .detail-share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .detail-share-button:hover {
            transform: scale(1.1);
        }
        
        .detail-share-weibo {
            background-color: #e6162d;
        }
        
        .detail-share-wechat {
            background-color: #07c160;
        }
        
        .detail-share-qq {
            background-color: #12b7f5;
        }
        
        /* 上一篇下一篇导航 */
        .detail-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .detail-prev, .detail-next {
            flex: 1;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .detail-prev {
            margin-right: 10px;
            text-align: left;
        }
        
        .detail-next {
            margin-left: 10px;
            text-align: right;
        }
        
        .detail-prev:hover, .detail-next:hover {
            background-color: #f8f9fa;
        }
        
        .detail-nav-label {
            font-size: 14px;
            color: #718096;
            margin-bottom: 5px;
        }
        
        .detail-nav-title {
            font-size: 16px;
            color: #2d3748;
            font-weight: bold;
        }
        
        .detail-nav-title a {
            color: #2d3748;
            text-decoration: none;
        }
        
        .detail-nav-title a:hover {
            color: #3182ce;
        }
        
        /* 相关新闻 */
        .detail-related {
            margin-top: 30px;
        }
        
        .detail-related-title {
            font-size: 20px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .detail-related-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #3182ce;
        }
        
        .detail-related-list {
            list-style: none;
        }
        
        .detail-related-item {
            padding: 12px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        .detail-related-item:last-child {
            border-bottom: none;
        }
        
        .detail-related-item a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .detail-related-item a:hover {
            color: #3182ce;
        }
        
        /* 评论区域 */
        .detail-comments {
            margin-top: 30px;
        }
        
        .detail-comments-title {
            font-size: 20px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .detail-comments-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #3182ce;
        }
        
        .detail-comment-form {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        
        .detail-comment-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            margin-bottom: 15px;
            font-size: 14px;
            resize: vertical;
            min-height: 100px;
        }
        
        .detail-comment-submit {
            background-color: #3182ce;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .detail-comment-submit:hover {
            background-color: #2c5aa0;
        }
        
        .detail-comment-list {
            list-style: none;
        }
        
        .detail-comment-item {
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .detail-comment-item:last-child {
            border-bottom: none;
        }
        
        .detail-comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .detail-comment-author {
            font-weight: bold;
            color: #2d3748;
        }
        
        .detail-comment-time {
            font-size: 12px;
            color: #718096;
        }
        
        .detail-comment-content {
            color: #4a5568;
            line-height: 1.6;
        }
        
        /* 侧边栏样式 */
        .detail-sidebar-section {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .detail-sidebar-title {
            font-size: 18px;
            color: #2d3748;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        
        .detail-sidebar-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 2px;
            background-color: #3182ce;
        }
        
        .detail-sidebar-list {
            list-style: none;
        }
        
        .detail-sidebar-list li {
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .detail-sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .detail-sidebar-list a {
            color: #2d3748;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .detail-sidebar-list a:hover {
            color: #3182ce;
        }