<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== 鍩虹閲嶇疆 ===== */
:root {
  --primary-color: #1a73e8;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-gray: #e9ecef;
  --dark-gray: #495057;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f7fa;
  -webkit-font-smoothing: antialiased;
}

/* ===== 澶撮儴瀵艰埅 ===== */
.mnews-header {
  background: #fff;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 24px;
  gap: 20px;
}

.site-logo a {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-navigation a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--primary-color);
}

.main-navigation a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.main-navigation a:hover:after {
  width: 100%;
}

.header-search {
  position: relative;
  width: 240px;
}

.header-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.header-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* ===== 涓昏鍐呭鍖� ===== */
.mnews-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 24px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

/* ===== 鏂囩珷鍗＄墖 ===== */
.news-section {
  display: grid;
  gap: 20px;
}

.news-article {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.news-article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.article-thumbnail {
  height: 180px;
  overflow: hidden;
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-article:hover .article-thumbnail img {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
      background: white;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.article-content h3 a:hover {
  color: var(--primary-color);
}

.article-meta {
  display: flex;
  gap: 15px;
  color: var(--dark-gray);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.article-excerpt {
  color: #555;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== 渚ц竟鏍� ===== */
.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.widget {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--primary-color);
}

.widget ul {
  list-style: none;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.widget li:last-child {
  border-bottom: none;
}

.widget a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}

.widget a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.hot-posts li {
  display: flex;
  justify-content: space-between;
}

.view-count {
  color: var(--dark-gray);
  font-size: 0.8rem;
}

/* ===== 椤佃剼 ===== */
.mnews-footer {
  background: #2b2d42;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.widget-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.1);
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-menu a {
  color: #adb5bd !important;
}

.footer-menu a:hover {
  color: #fff !important;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #adb5bd;
  font-size: 0.9rem;
}

/* ===== 鍝嶅簲寮忚璁� ===== */
@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .header-container {
            height: 77px;
    gap: 15px;
  }
  
  .header-search {
    width: 100%;
    grid-column: 1;
  }
  
  .news-article {
    grid-template-columns: 1fr;
  }
  
  .article-thumbnail {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-menu {
    grid-template-columns: 1fr;
  }
}


/* ===== 鍐呭椤靛竷灞€ ===== */
.content-single {
    background: #fff;
    padding: 20px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 0 20px;
}

/* 鏂囩珷涓讳綋鍖哄煙 */
.main-article {
    border-right: 1px solid #f0f0f0;
    padding-right: 30px;
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.article-title {
    font-size: 1.4rem;
    line-height: 1.3;
    color: #222;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.article-meta span:not(:last-child) {
    padding-right: 15px;
    border-right: 1px solid #ddd;
}

/* 鏂囩珷鍐呭鏍峰紡 */
.article-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content h2 {
    font-size: 1.4rem;
    color: #1a73e8;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: #333;
}

/* 鏂囩珷搴曢儴 */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.article-tags {
    margin-bottom: 30px;
}

.tag-label {
    color: #666;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 3px 10px;
    background: #f5f7fa;
    color: #555;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-decoration: none;
}

.article-tags a:hover {
    background: #e3f2fd;
    color: #1a73e8;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 0.95rem;
}

.post-navigation a {
    color: #555;
    text-decoration: none;
    max-width: 45%;
}

.post-navigation a:hover {
    color: #1a73e8;
}

/* 璇勮鍖� */
.comments-section {
    margin-top: 50px;
}

.comments-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* 渚ц竟鏍忔牱寮� */
.article-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-widget {
    margin-bottom: 30px;    padding: 20px;
}

.widget-title {
    font-size: 1.1rem;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #1a73e8;
}

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

.post-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.post-list li:last-child {
    border-bottom: none;
}

.post-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.post-list a:hover {
    color: #1a73e8;
    padding-left: 5px;
}

.post-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 3px;
}

/* 鐚滀綘鍠滄 */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.related-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.related-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px;
    font-size: 0.85rem;
    text-align: center;
}

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

/* 鍝嶅簲寮忚璁� */
@media (max-width: 992px) {
    .content-container {
        grid-template-columns: 1fr;
    }
    
    .main-article {
        border-right: none;
        padding-right: 0;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .post-navigation a {
        max-width: 100%;
        margin-bottom: 10px;
    }
}

/* ===== 鏂扮増澶撮儴鏍峰紡 ===== */
.maoc-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}


.header-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo-container {
    flex-shrink: 0;
}

.site-logo a {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.nav-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(255,255,255,0.3);
}

/* 绉诲姩绔彍鍗曟寜閽� */
.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
    .header-top {
        padding: 10px 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: circle(0 at 90% -10%);
        transition: clip-path 0.5s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: circle(1000px at 90% -10%);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu li::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ===== 鏂扮増澶撮儴鏍峰紡 ===== */
.maoc-header {
    background: linear-gradient(135deg, #d8b5ff 0%, #a5bdfd 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo-container {
    flex-shrink: 0;
}

.site-logo a {
    color: #5a3d7a;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #5a3d7a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0 15px;
    transition: all 0.3s;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #3a1c6b;
    background: rgba(255,255,255,0.2);
}

/* 绉诲姩绔彍鍗曟寜閽� */
.mobile-menu-toggle {
    display: none;
    width: 24px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #5a3d7a;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #d8b5ff 0%, #a5bdfd 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        clip-path: circle(0 at 90% -10%);
        transition: clip-path 0.5s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: circle(1000px at 90% -10%);
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}



/* ===== 琛ㄦ牸缇庡寲鏍峰紡 ===== */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 600px;
}

.styled-table th {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
}

.styled-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.styled-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.styled-table tr:hover {
    background-color: #f1f5ff;
}

.styled-table caption {
    font-style: italic;
    text-align: left;
    margin-bottom: 10px;
    color: #666;
}

/* 鐢熻倴瀵规瘮涓撳尯 */
.zodiac-comparison {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #6a11cb;
}

.zodiac-comparison h3 {
    color: #5a3d7a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* 鍝嶅簲寮忚〃鏍� */
@media (max-width: 768px) {
    .table-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .styled-table {
        min-width: 100%;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}


/* ===== 鏆栬壊璋冨ご閮� ===== */





.nav-menu a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* ===== 鏆栬壊璋冮潰鍖呭睉瀵艰埅 ===== */
.warm-breadcrumbs {
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.crumb {
    margin: 0 5px;
        font-size: 13px;color: #999898;
}

.crumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.crumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.crumb.current {
    color: var(--text-color);
    font-weight: 600;
}

.crumb-arrow {
    margin: 0 5px;
}

/* ===== 鏆栬壊璋冨唴瀹瑰尯 ===== */
.content-single {
    background: var(--light-bg);
}

.article-header {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(255,107,107,0.1);
}

.article-title {
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

/* ===== 鏆栬壊璋冭〃鏍� ===== */
.styled-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.styled-table tr:hover {
    background-color: rgba(255,214,102,0.2);
}

/* ===== 鏆栬壊璋冧晶杈规爮 ===== */
.sidebar-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,107,107,0.1);
}

.widget-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* ===== 瑙嗚鍐插嚮鍏冪礌 ===== */
.zodiac-comparison {
    background: linear-gradient(to right, white 0%, rgba(255,214,102,0.1) 100%);
    border-left: 4px solid var(--accent-color);
}

.post-navigation a:hover {
    color: var(--primary-color);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255,107,107,0.2);
}</pre></body></html>