﻿:root { --primary: rgb(101,163,13); --primary-hover: rgb(85,138,11); --primary-light: rgba(101,163,13,0.08); --text-main: #1f2937; --text-sub: #4b5563; --text-light: #9ca3af; --bg-main: #ffffff; --bg-gray: #f9fafb; --border-color: #e5e7eb; --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05); --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); --radius: 8px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-gray); }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }


.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
.logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
.site-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { font-weight: 500; font-size: 16px; color: var(--text-main); }
.desktop-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; background: var(--primary); color: #fff !important; font-weight: 600; border-radius: var(--radius); transition: all 0.3s; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 200; }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 210; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 8px rgba(0,0,0,0.1); }
.mobile-drawer.active { left: 0; }
.drawer-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
.drawer-close { background: none; border: none; font-size: 28px; color: var(--text-main); cursor: pointer; }
.drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
.drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.drawer-nav .drawer-btn { background: var(--primary); color: #fff; text-align: center; border-radius: var(--radius); padding: 12px; border: none; margin-top: 10px; }


.page-header { background: var(--bg-main); border-bottom: 1px solid var(--border-color); padding: 40px 0; margin-bottom: 40px; }
.breadcrumb { font-size: 14px; color: var(--text-sub); margin-bottom: 15px; }
.breadcrumb a { color: var(--text-main); }
.breadcrumb a:hover { color: var(--primary); }
.page-title { font-size: 28px; color: var(--text-main); }


.list-container { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; margin-bottom: 60px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow 0.3s; }
.news-card:hover { box-shadow: var(--shadow-md); }
.news-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.news-title { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-title a:hover { color: var(--primary); }
.news-desc { font-size: 14px; color: var(--text-sub); flex: 1; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-tags { margin-bottom: 15px; font-size: 12px; }
.news-tags a { display: inline-block; padding: 2px 8px; background: var(--bg-gray); color: var(--text-sub); border-radius: 4px; margin-right: 5px; }
.news-tags a:hover { background: var(--primary-light); color: var(--primary); }
.news-link { font-size: 14px; font-weight: 600; color: var(--primary); }


.sidebar-widget { background: #fff; padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.sidebar-title { font-size: 18px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-light); color: var(--text-main); }
.sidebar-links li { margin-bottom: 12px; border-bottom: 1px dashed var(--border-color); padding-bottom: 12px; }
.sidebar-links li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-links a { color: var(--text-sub); font-size: 14px; }
.sidebar-links a:hover { color: var(--primary); }


.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border-color); color: var(--text-main); font-weight: 500; transition: all 0.3s; }
.pagination a:hover, .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }


.site-footer { background: #111827; color: #d1d5db; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo span { color: #fff; }
.footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #9ca3af; max-width: 300px; }
.link-group h4 { color: #fff; font-size: 16px; margin-bottom: 20px; font-weight: 600; }
.link-group ul { display: flex; flex-direction: column; gap: 10px; }
.link-group a { font-size: 14px; color: #9ca3af; }
.link-group a:hover { color: var(--primary); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 14px; color: #6b7280; background: #0b0f19; }

@media (max-width: 992px) {
  .list-container { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-desc { margin: 20px auto; }
}
@media (max-width: 768px) {
  .desktop-nav, .header-actions .btn-primary { display: none; }
  .menu-toggle { display: block; width: 24px; height: 24px; }
  .news-grid { grid-template-columns: 1fr; }
}