 :root {
     --primary-red: #a71e1e;
     --dark-red: #7a1717;
     --light-bg: #f5f1e9;
     --paper-bg: #fffcf5;
     --border-color: #d4c9b8;
     --text-dark: #3c2f1e;
 }

 body {
     font-family: "Microsoft YaHei", "SimHei", "STKaiti", sans-serif;
     background-color: var(--light-bg);
     color: var(--text-dark);
     line-height: 1.6;
 }

 /* 头部样式 */
 .site-header {
     background: linear-gradient(to right, var(--dark-red), var(--primary-red));
     color: white;
     padding: 1.2rem 0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-bottom: 4px solid #e8b04d;
 }

 .site-title {
     font-size: 2rem;
     font-weight: bold;
     margin: 0;
 }

 .site-subtitle {
     font-size: 0.9rem;
     opacity: 0.9;
     margin: 0;
 }

 .nav-links a {
     color: rgba(255, 255, 255, 0.9);
     text-decoration: none;
     margin-left: 1.5rem;
     transition: color 0.3s;
 }

 .nav-links a:hover {
     color: #ffd166;
 }

 /* 主内容容器 */
 .main-container {
     max-width: 1200px;
     margin: 2rem auto;
     padding: 0 15px;
 }

 /* 头版黄历信息区块 */
 .huangli-headline {
     background-color: var(--paper-bg);
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     border: 1px solid var(--border-color);
     overflow: hidden;
     margin-bottom: 2rem;
     position: relative;
 }

 .huangli-headline::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(to right, #a71e1e, #e8b04d, #a71e1e);
 }

 .date-section {
     background-color: #f8f4e9;
     padding: 1.5rem;
     border-bottom: 2px dashed var(--border-color);
 }

 .gregorian-large {
     font-size: 2.2rem;
     font-weight: bold;
     color: var(--primary-red);
     margin-bottom: 0.5rem;
 }

 .lunar-date {
     font-size: 1.4rem;
     color: var(--text-dark);
     font-weight: bold;
 }

 .ganzhi-date {
     font-size: 1.2rem;
     color: #5a4a3a;
     margin-top: 0.5rem;
 }

 .huangli-details {
     padding: 1.5rem;
 }

 .detail-row {
     display: flex;
     margin-bottom: 1.2rem;
     align-items: center
         /* align-items: flex-start; */
 }

 .detail-label {
     width: 100px;
     font-weight: bold;
     color: var(--primary-red);
     flex-shrink: 0;
     display: inline-block;
 }

 .detail-content {
     flex: 1;
 }

 .yi-content,
 .ji-content {
     padding: 0.8rem;
     border-radius: 6px;
     margin-bottom: 0.5rem;
 }

 .yi-content {
     background-color: #f0f9f0;
     border-left: 4px solid #52c41a;
 }

 .ji-content {
     background-color: #fff2f0;
     border-left: 4px solid #ff4d4f;
 }

 .shensha-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .shensha-tag {
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.9rem;
 }

 .jishen-tag {
     background-color: #e6f7ff;
     color: #1890ff;
     border: 1px solid #91d5ff;
 }

 .xiongshen-tag {
     background-color: #fff7e6;
     color: #fa8c16;
     border: 1px solid #ffd591;
 }

 .misc-row {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
     margin-top: 1rem;
 }

 .misc-item {
     flex: 1;
     min-width: 150px;
 }

 .misc-label {
     font-weight: bold;
     color: #7a6a5a;
     margin-bottom: 0.3rem;
 }

 /* 时辰表格 */
 .hour-section {
     background-color: var(--paper-bg);
     border-radius: 10px;
     padding: 1.5rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--border-color);
     margin-bottom: 2rem;
 }

 .section-title {
     font-size: 1.5rem;
     color: var(--primary-red);
     border-left: 5px solid var(--primary-red);
     padding-left: 12px;
     margin-bottom: 1.5rem;
     font-weight: bold;
 }

 .hour-table {
     width: 100%;
     font-size: 0.9rem;
 }

 .hour-table th {
     background-color: #f5efe3;
     font-weight: bold;
     padding: 12px 8px;
     text-align: center;
     border-bottom: 2px solid var(--border-color);
 }

 .hour-table td {
     padding: 10px 8px;
     border-bottom: 1px solid #eee;
     vertical-align: top;
 }

 .hour-ji {
     background-color: rgba(82, 196, 26, 0.08);
 }

 .hour-xiong {
     background-color: rgba(255, 77, 79, 0.08);
 }

 .hour-tag {
     display: inline-block;
     padding: 3px 10px;
     border-radius: 4px;
     font-size: 0.85rem;
     font-weight: bold;
 }

 .tag-ji {
     background-color: #52c41a;
     color: white;
 }

 .tag-xiong {
     background-color: #ff4d4f;
     color: white;
 }

 /* 侧边栏 */
 .sidebar-card {
     background-color: var(--paper-bg);
     border-radius: 8px;
     padding: 1.5rem;
     margin-bottom: 1.5rem;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--border-color);
 }

 .sidebar-title {
     font-size: 1.2rem;
     color: var(--primary-red);
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 2px solid #f0e6d6;
 }

 .jieqi-item {
     display: flex;
     justify-content: space-between;
     padding: 8px 0;
     border-bottom: 1px dashed #eee;
 }

 .jieqi-item:last-child {
     border-bottom: none;
 }

 /* 知识内容 */
 .knowledge-section {
     background-color: var(--paper-bg);
     border-radius: 10px;
     padding: 2rem;
     margin-top: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--border-color);
 }

 .knowledge-title {
     font-size: 1.8rem;
     color: var(--primary-red);
     text-align: center;
     margin-bottom: 1.5rem;
     padding-bottom: 0.8rem;
     border-bottom: 2px solid #f0e6d6;
 }

 .knowledge-item {
     margin-bottom: 1.8rem;
 }

 .knowledge-item h4 {
     color: #5a4a3a;
     margin-bottom: 0.8rem;
     font-size: 1.3rem;
 }

 /* 底部样式 */
 .site-footer {
     background-color: #2c2118;
     color: #d9c7a7;
     padding: 2.5rem 0 1.5rem;
     margin-top: 3rem;
 }

 .footer-title {
     color: #e8b04d;
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: #d9c7a7;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #e8b04d;
 }

 .copyright {
     text-align: center;
     padding-top: 1.5rem;
     margin-top: 2rem;
     border-top: 1px solid #4a3f2e;
     color: #a09888;
     font-size: 0.9rem;
 }

 /* 响应式调整 */
 @media (max-width: 768px) {
     .gregorian-large {
         font-size: 1.8rem;
     }

     .detail-row {
         flex-direction: column;
         margin-bottom: 1.5rem;
     }

     .detail-label {
         width: 100%;
         margin-bottom: 0.3rem;
     }

     .nav-links {
         margin-top: 1rem;
         text-align: center;
     }

     .nav-links a {
         margin: 0 0.5rem;
     }

     .hour-table {
         font-size: 0.8rem;
     }

     .hour-table th,
     .hour-table td {
         padding: 8px 4px;
     }
 }

 /* 近一月黄道吉日板块样式 */
 .monthly-jiri-section {
     background-color: var(--paper-bg);
     border-radius: 10px;
     padding: 2rem;
     margin-bottom: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--border-color);
 }

 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .section-title {
     font-size: 1.5rem;
     color: var(--primary-red);
     margin: 0;
     font-weight: bold;
 }

 .section-title i {
     margin-right: 0.5rem;
     color: #e8b04d;
 }

 .month-navigation {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .btn-month-nav {
     background-color: #f8f4e9;
     border: 1px solid var(--border-color);
     color: var(--text-dark);
     padding: 0.4rem 0.8rem;
     border-radius: 4px;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-month-nav:hover {
     background-color: var(--primary-red);
     color: white;
     border-color: var(--primary-red);
 }

 .current-month {
     font-weight: bold;
     color: var(--primary-red);
     font-size: 1.1rem;
     min-width: 100px;
     text-align: center;
 }

 /* 筛选按钮 */
 .jiri-filter {
     background-color: #f9f6ef;
     border-radius: 6px;
     padding: 1rem;
     margin-bottom: 1.5rem;
     border: 1px solid #e8dfce;
 }

 .filter-title {
     font-weight: bold;
     margin-bottom: 0.8rem;
     color: #5a4a3a;
 }

 .filter-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
 }

 .filter-btn {
     background-color: white;
     border: 1px solid var(--border-color);
     color: var(--text-dark);
     padding: 0.4rem 1rem;
     border-radius: 20px;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .filter-btn:hover {
     background-color: #f0f0f0;
 }

 .filter-btn.active {
     background-color: var(--primary-red);
     color: white;
     border-color: var(--primary-red);
 }

 /* 吉日表格 */
 .jiri-table-container {
     overflow-x: auto;
     margin-bottom: 1.5rem;
 }

 .jiri-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.95rem;
 }

 .jiri-table th {
     background-color: #f5efe3;
     color: var(--text-dark);
     font-weight: bold;
     text-align: left;
     padding: 12px 15px;
     border-bottom: 2px solid var(--border-color);
 }

 .jiri-table td {
     padding: 12px 15px;
     border-bottom: 1px solid #eee;
     vertical-align: middle;
 }

 .jiri-table tbody tr {
     transition: background-color 0.2s;
 }

 .jiri-table tbody tr:hover {
     background-color: #fcf9f3;
 }

 /* 吉凶等级样式 */
 .jiri-level {
     display: inline-block;
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 0.85rem;
     font-weight: bold;
     text-align: center;
     min-width: 60px;
 }

 .level-daji {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .level-zhongji {
     background-color: #fff3cd;
     color: #856404;
     border: 1px solid #ffeaa7;
 }

 .level-xiaoji {
     background-color: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 .level-ping {
     background-color: #d1ecf1;
     color: #0c5460;
     border: 1px solid #bee5eb;
 }

 /* 操作按钮 */
 .jiri-action {
     background-color: var(--primary-red);
     color: white;
     border: none;
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 0.85rem;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .jiri-action:hover {
     background-color: var(--dark-red);
 }

 /* 统计信息 */
 .jiri-summary {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 1.5rem;
     background-color: #f9f6ef;
     border-radius: 8px;
     padding: 1.2rem;
     margin-bottom: 1.5rem;
     border: 1px solid #e8dfce;
 }

 .summary-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     min-width: 120px;
 }

 .summary-label {
     font-size: 0.9rem;
     color: #7a6a5a;
     margin-bottom: 0.3rem;
 }

 .summary-value {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-red);
 }

 .best-day {
     color: #d4af37;
     font-weight: bold;
 }

 /* 图例 */
 .jiri-legend {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     padding: 1rem;
     background-color: #f9f6ef;
     border-radius: 8px;
     border: 1px solid #e8dfce;
 }

 .legend-title {
     font-weight: bold;
     color: #5a4a3a;
 }

 .legend-items {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .legend-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .legend-color {
     width: 20px;
     height: 20px;
     border-radius: 4px;
     border: 1px solid #ccc;
 }

 .legend-text {
     font-size: 0.9rem;
     color: var(--text-dark);
 }

 /* 响应式调整 */
 @media (max-width: 768px) {
     .monthly-jiri-section {
         padding: 1.5rem;
     }

     .section-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .month-navigation {
         width: 100%;
         justify-content: space-between;
     }

     .jiri-summary {
         justify-content: center;
     }

     .summary-item {
         min-width: 45%;
     }

     .jiri-legend {
         flex-direction: column;
         align-items: flex-start;
     }

     .legend-items {
         width: 100%;
         justify-content: space-between;
     }
 }

 @media (max-width: 576px) {
     .filter-buttons {
         justify-content: center;
     }

     .jiri-table {
         font-size: 0.85rem;
     }

     .jiri-table th,
     .jiri-table td {
         padding: 8px 10px;
     }

     .jiri-level {
         min-width: 50px;
         font-size: 0.8rem;
         padding: 3px 6px;
     }
 }

 .hour-table {
     width: 100%;
     border-collapse: collapse;
 }

 .hour-table th,
 .hour-table td {
     padding: 8px;
     border: 1px solid #ddd;
     text-align: center;
 }

 .hour-daji {
     background-color: rgba(40, 167, 69, 0.1);
 }

 .hour-zhongji {
     background-color: rgba(255, 193, 7, 0.1);
 }

 .hour-xiaoji {
     background-color: rgba(253, 126, 20, 0.1);
 }

 .hour-xiong {
     background-color: rgba(220, 53, 69, 0.1);
 }

 .hour-level {
     padding: 3px 10px;
     border-radius: 12px;
     color: white;
     font-weight: bold;
 }

 .god-badge {
     display: inline-block;
     padding: 2px 6px;
     margin: 2px;
     border-radius: 3px;
     font-size: 12px;
 }

 .god-badge.auspicious {
     background-color: #d4edda;
     color: #155724;
 }

 .god-badge.evil {
     background-color: #f8d7da;
     color: #721c24;
 }


 /* 响应式样式 */
 .monthly-jiri-section {
     width: 100%;
     overflow-x: auto;
 }

 .jiri-table-container {
     position: relative;
     width: 100%;
 }

 /* 桌面版表格 */
 .jiri-table.desktop-view {
     width: 100%;
     border-collapse: collapse;
     background: white;
     display: table;
 }

 /* 移动版卡片列表 */
 .jiri-card-list.mobile-view {
     display: none;
     flex-direction: column;
     gap: 12px;
 }

 /* 移动版卡片 */
 .jiri-card {
     background: white;
     border: 1px solid #e8e8e8;
     border-radius: 8px;
     padding: 16px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .jiri-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     padding-bottom: 12px;
     border-bottom: 1px solid #f0f0f0;
 }

 .jiri-card-date {
     display: flex;
     align-items: baseline;
 }

 .jiri-card-gregorian {
     font-size: 18px;
     font-weight: 600;
     color: #333;
 }

 .jiri-card-week {
     font-size: 14px;
     color: #666;
     margin-left: 8px;
 }

 .jiri-card-lunar {
     font-size: 14px;
     color: #8c8c8c;
 }

 .jiri-card-level {
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 500;
 }

 .jiri-card-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     margin-bottom: 16px;
 }

 .jiri-card-item {
     display: flex;
     flex-direction: column;
 }

 .jiri-card-label {
     font-size: 12px;
     color: #8c8c8c;
     margin-bottom: 4px;
 }

 .jiri-card-value {
     font-size: 14px;
     line-height: 1.5;
     color: #333;
 }

 .jiri-card-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 12px;
     border-top: 1px solid #f0f0f0;
 }

 .jiri-card-action {
     background: #1890ff;
     color: white;
     border: none;
     padding: 8px 16px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
 }

 .jiri-card-action:hover {
     background: #40a9ff;
 }

 /* 响应式媒体查询 */
 @media screen and (max-width: 992px) {
     .jiri-table.desktop-view {
         display: none;
     }

     .jiri-card-list.mobile-view {
         display: flex;
     }

     .jiri-filter .filter-buttons {
         flex-wrap: wrap;
         justify-content: flex-start;
     }

     .filter-btn {
         margin-bottom: 8px;
     }

     .jiri-summary {
         flex-wrap: wrap;
     }

     .summary-item {
         flex: 1 0 50%;
         margin-bottom: 8px;
     }
 }

 @media screen and (max-width: 768px) {
     .section-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 16px;
     }

     .month-navigation {
         width: 100%;
         justify-content: space-between;
     }

     .jiri-card-content {
         grid-template-columns: 1fr;
         gap: 8px;
     }

     .summary-item {
         flex: 1 0 100%;
     }

     .legend-items {
         flex-wrap: wrap;
     }
 }

 @media screen and (max-width: 480px) {
     .jiri-card {
         padding: 12px;
     }

     .jiri-card-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 8px;
     }

     .jiri-card-level {
         align-self: flex-start;
     }

     .jiri-card-footer {
         flex-direction: column;
         gap: 12px;
         align-items: stretch;
     }

     .jiri-card-action {
         width: 100%;
     }
 }

 /* 等级说明样式 */
 .level-explanation {
     background-color: #f9f6ef;
     border-radius: 10px;
     padding: 1.5rem;
     margin-bottom: 2rem;
     border: 1px solid #e8dfce;
 }

 .level-explanation h4 {
     color: var(--primary-red);
     margin-bottom: 1.5rem;
     font-size: 1.3rem;
     border-bottom: 2px solid #f0e6d6;
     padding-bottom: 0.5rem;
 }

 .level-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.2rem;
     margin-bottom: 1.5rem;
 }

 .level-card {
     background-color: white;
     border-radius: 8px;
     padding: 1.2rem;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
     border: 1px solid #e8dfce;
 }

 .daji-card {
     border-top: 4px solid #28a745;
 }

 .zhongji-card {
     border-top: 4px solid #ffc107;
 }

 .xiaoji-card {
     border-top: 4px solid #fd7e14;
 }

 .ping-card {
     border-top: 4px solid #6c757d;
 }

 .level-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
     padding-bottom: 0.8rem;
     border-bottom: 1px solid #eee;
 }

 .level-badge {
     padding: 4px 12px;
     border-radius: 20px;
     font-weight: bold;
     font-size: 1rem;
 }

 .level-daji {
     background-color: #d4edda;
     color: #155724;
 }

 .level-zhongji {
     background-color: #fff3cd;
     color: #856404;
 }

 .level-xiaoji {
     background-color: #f8d7da;
     color: #721c24;
 }

 .level-ping {
     background-color: #d1ecf1;
     color: #0c5460;
 }

 .level-score {
     font-size: 0.9rem;
     color: #666;
     font-weight: bold;
 }

 .level-desc p {
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
     line-height: 1.4;
 }

 .level-details {
     background-color: white;
     border-radius: 8px;
     padding: 1.2rem;
     margin-top: 1.5rem;
 }

 .level-details h5 {
     color: #5a4a3a;
     margin-bottom: 0.8rem;
 }

 .level-details ul {
     padding-left: 1.5rem;
     margin-bottom: 1rem;
 }

 .level-details li {
     margin-bottom: 0.5rem;
     font-size: 0.95rem;
 }

 .note {
     font-size: 0.85rem;
     color: #6c757d;
     font-style: italic;
     padding: 0.5rem;
     background-color: #f8f9fa;
     border-radius: 4px;
     border-left: 3px solid #6c757d;
 }

 @media (max-width: 768px) {
     .level-cards {
         grid-template-columns: 1fr;
     }
 }

 :root {
     --primary-color: #a71e1e;
     --secondary-color: #f8f5f0;
     --accent-color: #d4a017;
     --text-dark: #3c2f1e;
     --text-light: #7a6a5a;
 }

 body {
     font-family: "Microsoft YaHei", "SimHei", sans-serif;
     background-color: #f9f7f2;
     color: var(--text-dark);
     line-height: 1.6;
     padding-bottom: 50px;
 }

 .container-main {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 /* 页面头部 */
 .page-header {
     background: linear-gradient(135deg, var(--primary-color), #7a1717);
     color: white;
     padding: 30px 0;
     margin-bottom: 30px;
     border-radius: 0 0 20px 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .page-title {
     font-size: 2.5rem;
     font-weight: bold;
     margin-bottom: 10px;
 }

 .page-subtitle {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 /* 板块通用样式 */
 .section-container {
     background: white;
     border-radius: 15px;
     padding: 25px;
     margin-bottom: 30px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
     border: 1px solid #e8dfce;
 }

 .section-title {
     font-size: 1.5rem;
     color: var(--primary-color);
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 2px solid #f0e6d6;
     display: flex;
     align-items: center;
 }

 .section-title i {
     margin-right: 10px;
     font-size: 1.3em;
 }

 /* 吉日分类板块 */
 .category-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
 }

 .category-card {
     background: linear-gradient(135deg, #fffcf5 0%, #f8f4e9 100%);
     border-radius: 12px;
     padding: 20px;
     border: 1px solid #e8dfce;
     transition: all 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     border-color: var(--accent-color);
 }

 .category-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     font-size: 1.8rem;
     color: white;
 }

 .category-name {
     font-size: 1.2rem;
     font-weight: bold;
     margin-bottom: 8px;
     color: var(--text-dark);
 }

 .category-desc {
     font-size: 0.9rem;
     color: var(--text-light);
     margin-bottom: 15px;
     flex-grow: 1;
 }

 .category-link {
     color: var(--primary-color);
     font-weight: bold;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: color 0.3s;
 }

 .category-link:hover {
     color: #7a1717;
 }

 .category-link i {
     margin-left: 5px;
     font-size: 0.9em;
 }

 /* 月份列表板块 */
 .month-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 15px;
 }

 .month-card {
     background: linear-gradient(135deg, #f9f6ef 0%, #f1ece1 100%);
     border-radius: 10px;
     padding: 18px 15px;
     border: 1px solid #e8dfce;
     transition: all 0.3s ease;
     text-align: center;
 }

 .month-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
     background: linear-gradient(135deg, #f5f1e6 0%, #e9e3d4 100%);
 }

 .month-year {
     font-size: 0.9rem;
     color: var(--text-light);
     margin-bottom: 5px;
 }

 .month-name {
     font-size: 1.3rem;
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 5px;
 }

 .month-info {
     font-size: 0.85rem;
     color: var(--text-light);
     margin-bottom: 10px;
 }

 .month-link {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 6px 15px;
     border-radius: 20px;
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s;
 }

 .month-link:hover {
     background-color: #7a1717;
     color: white;
     transform: scale(1.05);
 }

 /* 底部信息 */
 .page-footer {
     text-align: center;
     padding: 30px 0;
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .footer-links {
     margin-top: 15px;
 }

 .footer-links a {
     color: var(--primary-color);
     text-decoration: none;
     margin: 0 10px;
 }

 .footer-links a:hover {
     text-decoration: underline;
 }

 /* 响应式调整 */
 @media (max-width: 768px) {
     .page-title {
         font-size: 2rem;
     }

     .category-grid {
         grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     }

     .month-grid {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     }

     .section-container {
         padding: 20px;
     }
 }

 @media (max-width: 576px) {
     .page-title {
         font-size: 1.8rem;
     }

     .category-grid {
         grid-template-columns: 1fr;
     }

     .month-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .section-title {
         font-size: 1.3rem;
     }
 }