﻿:root {
      --primary-color: rgb(26,115,232);
      --primary-hover: #1557b0;
      --accent-coral: #FF6B4A;
      --dark-graphite: #111827;
      --bg-light: #f8fafc;
      --text-main: #334155;
      --text-dark: #0f172a;
      --border-color: rgba(15,23,42,0.08);
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    
    
    .site-header{
      position:sticky;
      top:0;
      z-index:900;
      width:100%;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      min-width:0;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:160px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#111827;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      min-width:0;
      flex:1;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .desktop-nav::-webkit-scrollbar{ display:none; }
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      color:#334155;
      text-decoration:none;
      white-space:nowrap;
      flex-shrink:0;
    }
    .desktop-nav a:hover {
      background: rgba(26,115,232,0.08);
      color: var(--primary-color);
    }
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex-shrink:0;
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:999px;
      background:#111827;
    }
    
    
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:998;
      background:rgba(15,23,42,.54);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:999;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      background:#ffffff;
      color:#111827;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(15,23,42,.22);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:18px 18px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      flex-shrink:0;
    }
    .drawer-logo img{ height:36px; max-width:130px; }
    .drawer-logo span{ max-width:150px; font-size:17px; }
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      color:#111827;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex-shrink:0;
    }
    .drawer-body{ flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch; padding:14px; }
    .drawer-nav{ display:flex; flex-direction:column; gap:8px; }
    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(15,23,42,.04);
      color:#111827;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .drawer-nav a:hover{ background:rgba(26,115,232,.12); color:var(--primary-color); }
    body.drawer-open{ overflow:hidden; touch-action:none; }
    body.drawer-open .mobile-nav-mask{ opacity:1; visibility:visible; pointer-events:auto; }
    body.drawer-open .mobile-drawer{ transform:translateX(0); }

    
    .breadcrumb-nav {
      background: #fff;
      border-bottom: 1px solid var(--border-color);
      padding: 14px 0;
    }
    .breadcrumb-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      font-size: 14px;
      display: flex;
      gap: 8px;
      color: #64748b;
    }
    .breadcrumb-inner a:hover {
      color: var(--primary-color);
    }

    
    .list-wrapper {
      width: min(1200px, calc(100% - 32px));
      margin: 40px auto 80px;
      display: grid;
      grid-template-columns: 2.8fr 1.2fr;
      gap: 30px;
    }
    .list-main {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .list-sidebar {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    
    .news-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      transition: var(--transition);
    }
    .news-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .news-img {
      aspect-ratio: 4 / 3;
      background-color: #e2e8f0;
      overflow: hidden;
    }
    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-meta {
      display: flex;
      justify-content: space-between;
      color: #64748b;
      font-size: 13px;
      margin-bottom: 10px;
    }
    .news-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .news-summary {
      font-size: 14px;
      color: var(--text-main);
      margin-bottom: 15px;
      line-height: 1.6;
    }
    .news-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .news-tags span {
      background: var(--bg-light);
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 12px;
      color: #64748b;
    }

    
    .widget {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .widget-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 16px;
      border-left: 4px solid var(--primary-color);
      padding-left: 10px;
    }
    .widget-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .widget-list a {
      font-size: 14px;
      color: var(--text-main);
      line-height: 1.4;
    }
    .widget-list a:hover {
      color: var(--primary-color);
    }

    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .pagination a, .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      font-weight: bold;
      font-size: 14px;
    }
    .pagination .active {
      background: var(--primary-color);
      color: #fff;
      border-color: var(--primary-color);
    }

    
    .site-footer{
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      overflow:hidden;
    }
    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:54px 0 34px;
      display:grid;
      grid-template-columns:minmax(240px,1.4fr) repeat(3, minmax(150px, .8fr));
      gap:28px;
      align-items:start;
    }
    .footer-logo span{ color:#ffffff; }
    .footer-brand p{
      margin:18px 0 0;
      color:rgba(226,232,240,.78);
      line-height:1.8;
      font-size:14px;
      max-width:420px;
    }
    .footer-column h3{ margin:0 0 14px; color:#ffffff; font-size:15px; font-weight:800; }
    .footer-column ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column li,
    .footer-column a{
      color:rgba(226,232,240,.78);
      font-size:14px;
      line-height:1.55;
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{ color:#ffffff; }
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:18px 0 24px;
      border-top:1px solid rgba(226,232,240,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:rgba(226,232,240,.68);
      font-size:13px;
      line-height:1.6;
    }

    @media (max-width: 900px){
      .header-inner{ width:min(100% - 24px, 1200px); min-height:64px; gap:12px; }
      .desktop-nav{ display:none !important; }
      .mobile-menu-btn{ display:inline-flex !important; }
      .logo img{ height:34px; max-width:120px; }
      .logo span{ font-size:16px; max-width:150px; }
      
      .list-wrapper { grid-template-columns: 1fr; margin: 20px auto 40px; }
      .news-card { grid-template-columns: 1fr; }

      .footer-inner{
        width:min(100% - 24px, 1200px);
        grid-template-columns:1fr 1fr;
        gap:24px 18px;
        padding:42px 0 28px;
      }
      .footer-brand{ grid-column:1 / -1; }
      .footer-bottom{ width:min(100% - 24px, 1200px); flex-direction:column; align-items:flex-start; }
    }
    @media (max-width: 520px){
      .mobile-drawer{ width:88vw; }
      .logo span{ max-width:120px; }
      .drawer-logo span{ max-width:120px; }
      .footer-inner{ grid-template-columns:1fr; }
    }