
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "SimSun", sans-serif;
        }

        body {
            background-color: #F5EFE0;
            color: #333333;
            line-height: 1.6;
        }

        header {
            background-color: #8E2434; /* 传统绛红色 */
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #F5EFE0;
            text-decoration: underline;
        }

        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .page-title {
            text-align: center;
            font-size: 2rem;
            color: #8E2434;
            margin-bottom: 2rem;
            font-weight: normal;
            letter-spacing: 3px;
        }

        /* 节气卡片网格布局 */
        .solar-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        /* 节气卡片样式 */
        .solar-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #E8DCCA;
        }

        .solar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .card-title {
            font-size: 1.3rem;
            color: #8E2434;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: bold;
        }

        .card-info {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .card-info p {
            margin-bottom: 0.5rem;
            color: #555;
        }

        .countdown {
            font-size: 1.1rem;
            font-weight: bold;
            color: #D4A017; 
            text-align: center;
            padding: 0.5rem;
            background-color: #FFF9E6;
            border-radius: 5px;
        }

        .article-section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.5rem;
            color: #8E2434;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #E8DCCA;
        }

        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1rem;
        }

        .article-item {
            background-color: white;
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid #E8DCCA;
            transition: background-color 0.3s ease;
        }

        .article-item:hover {
            background-color: #FFF9E6;
        }

        .article-item a {
            color: #333;
            text-decoration: none;
            font-size: 1rem;
        }

        .article-item a:hover {
            color: #8E2434;
            text-decoration: underline;
        }

        .article-list-section {
            max-width: 1000px;
            margin: 0 auto;
        }

        .article-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #E8DCCA;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .article-card h2 {
            font-size: 1.5rem;
            color: #8E2434;
            margin-bottom: 0.8rem;
        }

        .article-card h2 a {
            color: #8E2434;
            text-decoration: none;
        }

        .article-card h2 a:hover {
            text-decoration: underline;
        }

        .article-meta-list {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1rem;
        }

        .article-excerpt {
            color: #555;
            line-height: 1.8;
        }

        .container2 {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .article-detail {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #E8DCCA;
        }

        .article-title {
            font-size: 2rem;
            color: #8E2434;
            margin-bottom: 1rem;
            text-align: center;
            line-height: 1.4;
        }

        .article-meta {
            text-align: center;
            font-size: 1rem;
            color: #888;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #E8DCCA;
        }

        .article-content {
            font-size: 1.1rem;
            line-height: 2;
            color: #333;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            text-indent: 2em; /* 首行缩进 */
        }

        .back-link {
            display: inline-block;
            margin-top: 2rem;
            color: #8E2434;
            text-decoration: none;
            font-weight: bold;
        }

        .back-link:hover {
            text-decoration: underline;
        }

.link-section {
    margin-bottom: 3rem;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #E8DCCA;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.link-item {
    padding: 0.5rem 1rem;
    background-color: #FFF9E6;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.link-item a {
    color: #8E2434;
    text-decoration: none;
    font-size: 0.95rem;
}

.link-item:hover {
    background-color: #F5EFE0;
}

.link-item a:hover {
    text-decoration: underline;
}

.text-center {text-align: center;}
		
A.logo:link , A.logo:visited, A.logo:hover   {FONT-SIZE: 50px; COLOR: #fff; TEXT-DECORATION: none;}
A.listt:link , A.listt:visited, A.listt:hover   {COLOR: #8E2434; TEXT-DECORATION: none;}
A.bai:link , A.bai:visited, A.bai:hover   { COLOR: #fff; TEXT-DECORATION: none;}
A.n1:link , A.n1:visited, A.n1:hover   { COLOR: #8e2434; TEXT-DECORATION: none;}
		
a.ff:link, a.ff:visited { color: #8E2434; text-decoration: none; font-size: 0.8rem; }
a.ff:hover { text-decoration: underline; }

.detail { text-align: left;}
.detail img{max-width: 90%;height: auto;width: auto\9;}
.detail a{  text-decoration: none;}

/* 响应式适配（补充到原有媒体查询内） */
@media (max-width: 600px) {
    .link-list {
        padding: 1rem;
        gap: 0.8rem;
    }
    .link-item {
        padding: 0.4rem 0.8rem;
    }
}
		
		
        /* 底部版权样式 */
        footer {
            background-color: #333333;
            color: white;
            text-align: center;
            padding: 1.5rem 0;
            margin-top: 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .solar-card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .solar-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .article-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            nav ul {
                gap: 1rem;
            }
            .solar-card-grid {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 1.5rem;
            }
        }