 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #fff5e6;
            color: #333;
        }
        
        .container {
            width: 1300px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        /* 顶部Logo区域 */
        .header {
            width: 1300px;
            height: 150px;
            background-color: #ff8c00;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 36px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        /* 导航栏 */
        .nav {
            background-color: #ff6a00;
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 20px;
        }
        
        .nav ul {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-right: 30px;
        }
        
        .nav a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* 主要内容区域 */
        .main-content {
            display: flex;
            padding: 20px;
        }
        
        /* 图片板块 */
        .image-section {
            flex: 7;
            margin-right: 20px;
        }
        
        .section-title {
            font-size: 22px;
            color: #ff6a00;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffcc99;
        }
        
        .featured-articles {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .article-card {
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
        }
        
        .article-img {
            height: 180px;
            background-color: #ffcc99;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 16px;
        }
        
        .article-info {
            padding: 15px;
        }
        
        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

		.article-title a{ color:#000000; text-decoration:none; }
		.article-title a:hover{ text-decoration:underline; color:#FF0000; }
        
        .article-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* 文章列表区域 */
        .article-list {
            flex: 3;
        }
        
        .article-item {
            padding: 15px 0;
            border-bottom: 1px dashed #ffcc99;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-item-title {
            font-size: 16px;
            margin-bottom: 8px;
            color: #333;
        }

		.article-item-title a{ color:#000000; text-decoration:none; }
		.article-item-title a:hover{ text-decoration:underline; color:#FF0000; }
        
        .article-item-meta {
            font-size: 12px;
            color: #999;
        }
        
        /* 友情链接区域 */
        .links-section {
            background-color: #fff8f0;
            padding: 20px;
            margin: 20px;
            border-radius: 5px;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .links-container a {
            background-color: #ffcc99;
            padding: 5px 15px;
            border-radius: 3px;
            color: #666;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .links-container a:hover {
            background-color: #ffb366;
            color: #333;
        }
        
        /* 底部区域 */
        .footer {
            background-color: #ff8c00;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        
        .footer p {
            margin-bottom: 10px;
        }
	
/* ===== 文章列表页特定样式 ===== */
        .list-main {
            padding: 20px;
        }
        
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc99;
        }
        
        .list-title {
            font-size: 24px;
            color: #ff6a00;
        }
        
        .list-filter {
            display: flex;
            gap: 10px;
        }
		
		.list-filter a{ color:#000000; text-decoration:none; }
        
        .filter-btn {
            background-color: #ffcc99;
            border: none;
            padding: 5px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: #ff8c00;
            color: white;
        }
        
        .article-list-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        .list-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .list-item {
            display: flex;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .list-item:hover {
            transform: translateY(-3px);
        }
        
        .list-item-img {
            width: 200px;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .list-item-content {
            padding: 15px;
            flex-grow: 1;
        }
        
        .list-item-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
		
		.list-item-title a{ color:#000000; text-decoration:none; }
        
        .list-item-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .list-item-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }
        
        .list-sidebar {
            background-color: #fff8f0;
            border-radius: 5px;
            padding: 15px;
        }
        
        .sidebar-title {
            font-size: 18px;
            color: #ff6a00;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #ffcc99;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-item {
            padding: 10px 0;
            border-bottom: 1px dashed #ffcc99;
        }
        
        .sidebar-item:last-child {
            border-bottom: none;
        }
        
        .sidebar-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .sidebar-item a:hover {
            color: #ff6a00;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 5px;
        }
        
        .pagination a {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #ffcc99;
            border-radius: 3px;
            cursor: pointer; text-decoration:none; color:#000000;
            transition: all 0.3s;
        }

		.pagination strong {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #ffcc99;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .pagination a:hover {
            background-color: #ffcc99;
        }
        
        .pagination a.active {
            background-color: #ff8c00;
            color: white;
            border-color: #ff8c00;
        }
.detail-main {
            padding: 20px;
        }
        
        .detail-header {
            text-align: center;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        
        .detail-title {
            font-size: 28px;
            color: #ff6a00;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .detail-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #999;
            font-size: 14px;
        }
        
        .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: #ff6a00;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #ffcc99;
        }
        
        .detail-content h3 {
            font-size: 18px;
            color: #ff8c00;
            margin: 25px 0 15px;
        }
        
        .detail-content blockquote {
            background-color: #fff8f0;
            border-left: 4px solid #ffcc99;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
        }
        
        .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;
        }
        
        .detail-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ffcc99;
        }
        
        .action-btn {
            background-color: #ffcc99;
            border: none;
            padding: 8px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: background-color 0.3s;
            color: #666;
        }
		
		.action-btn a{ color:#000000; text-decoration:none; }
        
        .action-btn:hover {
            background-color: #ff8c00;
            color: white;
        }
        
        .detail-sidebar {
            margin-top: 40px;
            background-color: #fff8f0;
            border-radius: 5px;
            padding: 20px;
        }
        
        .sidebar-title {
            font-size: 18px;
            color: #ff6a00;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #ffcc99;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-item {
            padding: 10px 0;
            border-bottom: 1px dashed #ffcc99;
        }
        
        .sidebar-item:last-child {
            border-bottom: none;
        }
        
        .sidebar-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .sidebar-item a:hover {
            color: #ff6a00;
        }