/* ========================================================
   assoc · 按设计稿的大气政务蓝协会站
   主色 #004a92
   ======================================================== */

:root {
  --as-blue: #004a92;
  --as-blue-dark: #003670;
  --as-blue-mid: #0a5fb0;
  --as-blue-light: #e8f1fa;
  --as-sky: #c5daf0;
  --as-bg: #f5f7fa;
  --as-white: #fff;
  --as-text: #333;
  --as-muted: #666;
  --as-border: #e0e6ed;
  --as-wrap: 1200px;
  --as-font: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
  --as-fs: 16px;
  --as-fs-sm: 14px;
  --as-fs-xs: 13px;
  --as-fs-lg: 18px;

  --gov-blue: var(--as-blue);
  --gov-blue-dark: var(--as-blue-dark);
  --gov-blue-deep: var(--as-blue-dark);
  --gov-blue-light: var(--as-blue-light);
  --gov-red: #c8161d;
  --gov-bg: var(--as-bg);
  --gov-white: var(--as-white);
  --gov-text: var(--as-text);
  --gov-muted: var(--as-muted);
  --gov-border: var(--as-border);
  --gov-wrap: var(--as-wrap);
  --gov-radius: 2px;
  --gov-font: var(--as-font);
  --pri: var(--as-blue);
  --accent: #c8161d;
  --bg: var(--as-bg);
  --border: var(--as-border);
  --text: var(--as-text);
  --text-muted: #999;
  --shadow-sm: 0 2px 8px rgba(0, 74, 146, 0.08);
  --shadow-md: 0 6px 20px rgba(0, 74, 146, 0.12);
  --radius: 2px;
  --wrap: var(--as-wrap);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gov-site {
  margin: 0;
  font-family: var(--as-font);
  font-size: var(--as-fs);
  line-height: 1.75;
  color: var(--as-text);
  background: var(--as-bg);
  min-width: 320px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.gov-site img { max-width: 100%; height: auto; display: block; }
body.gov-site a { color: var(--as-blue); text-decoration: none; transition: color .2s; }
body.gov-site a:hover { color: #c8161d; }
body.gov-site ul, body.gov-site ol { list-style: none; margin: 0; padding: 0; }

.as-wrap,
.gov-wrap {
  width: 100%;
  max-width: var(--as-wrap);
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== 顶部工具条 ===== */
.as-topbar {
  background: linear-gradient(90deg, #002a58 0%, #003670 45%, #004a92 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.as-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  padding: 6px 0;
}
.as-topbar-welcome {
  letter-spacing: .5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.as-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.as-topbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.as-topbar-links a {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 2px 10px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.as-topbar-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}
.as-topbar-date {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* ===== Header · 大气界面（背景满屏） ===== */
.as-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 74, 146, 0.1);
  box-shadow: 0 8px 24px rgba(0, 74, 146, 0.06);
  background-color: #f4f8fc;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 248, 252, 0.72) 48%, rgba(232, 240, 248, 0.5) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 200' preserveAspectRatio='none'%3E%3Cpath fill='%23c5daf0' d='M0 200V110l60-28 48 22 80-48 56 28 96-56 72 36 110-64 84 44 120-70 64 28 96-42 80 32 110-52 78 28V200z'/%3E%3Cpath fill='%23a8c8e8' opacity='.88' d='M0 200V132l52-20 64 14 78-40 54 20 92-46 70 28 106-52 66 24 100-40 76 30 112-46 60 20V200z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.as-header-glow,
.as-header::before {
  display: none;
}
.as-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 118px;
  padding: 18px 0;
}
.as-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit !important;
}
.as-logo img {
  max-height: 72px;
  width: auto;
  display: block;
}
.as-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.as-logo-text strong {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  color: var(--as-blue-dark);
  letter-spacing: 1px;
  line-height: 1.3;
}
.as-logo-text em {
  font-style: normal;
  font-size: 14px;
  color: #6a7f96;
  letter-spacing: .3px;
}
.as-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.as-hotline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 150px;
  padding: 10px 14px;
  text-align: right;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--as-border);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 74, 146, 0.06);
  color: inherit !important;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.as-hotline:hover {
  border-color: var(--as-blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 74, 146, 0.1);
}
.as-hotline em {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}
.as-hotline strong {
  display: block;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--as-blue);
  font-weight: 800;
  letter-spacing: .5px;
}
.as-search {
  position: relative;
}
.as-search-form,
.as-search form {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 260px;
  border: 1px solid var(--as-border);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 74, 146, 0.05);
  transition: border-color .2s, box-shadow .2s, min-width .25s ease;
}
.as-search-form:focus-within,
.as-search form:focus-within {
  min-width: 320px;
  border-color: var(--as-blue);
  box-shadow: 0 8px 22px rgba(0, 74, 146, 0.14);
}
.as-search-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004a92' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .75;
}
.as-search input[type="search"],
.as-search input[type="text"] {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 0;
  padding: 0 10px 0 10px;
  outline: none;
  font-size: 15px;
  color: var(--as-text);
  background: transparent;
}
.as-search input[type="search"]::placeholder,
.as-search input[type="text"]::placeholder {
  color: #9aa8b8;
}
.as-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.as-search input[type="submit"],
.as-search button[type="submit"] {
  flex-shrink: 0;
  height: 42px;
  padding: 0 20px;
  border: 0;
  background: linear-gradient(135deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: filter .2s;
}
.as-search input[type="submit"]:hover,
.as-search button[type="submit"]:hover { filter: brightness(1.06); }

/* 搜索结果页 */
.as-search-banner-tip {
  margin: 8px 0 0;
  font-size: 16px;
  opacity: .9;
}
.as-search-banner-tip strong { color: #fff; }
.as-search-panel {
  margin-bottom: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--as-border);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 74, 146, 0.08);
}
.as-search-panel .as-search-form {
  min-width: 0;
  width: 100%;
  max-width: 560px;
}
.as-search-panel .as-search-form:focus-within { min-width: 0; }
.as-search-empty {
  padding: 48px 20px;
  text-align: center;
  color: #777;
  background: #fff;
  border: 1px dashed var(--as-border);
  border-radius: 12px;
}
.as-search-empty strong { color: var(--as-blue); }

.as-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--as-border);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.as-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--as-blue);
  transition: .3s;
}
.as-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.as-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.as-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav + 下拉 */
.as-nav {
  background: linear-gradient(135deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0, 54, 112, .28);
}
.as-nav-list {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: visible;
  list-style: none;
  scrollbar-width: none;
}
.as-nav-list::-webkit-scrollbar { display: none; }
.as-nav-list > li {
  flex: 1 1 auto;
  position: relative;
  text-align: center;
}
.as-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0 14px;
  height: 50px;
  line-height: 1;
  color: #fff !important;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: background .2s, border-color .2s;
}
.as-nav-list > li > a:hover,
.as-nav-list > li.active > a,
.as-nav-list > li.has-sub:hover > a {
  background: rgba(0, 0, 0, .14);
  border-bottom-color: #fff;
  color: #fff !important;
}
.as-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.9);
  transition: transform .2s;
}
.as-nav-list > li.has-sub:hover > a .as-caret {
  transform: rotate(180deg);
}
.as-subnav {
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  min-width: 220px;
  z-index: 220;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.as-subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.as-nav-list > li:hover > .as-subnav,
.as-nav-list > li:focus-within > .as-subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.as-subnav-inner {
  background: #fff;
  border: 1px solid var(--as-border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 54, 112, 0.18);
  overflow: hidden;
  padding: 8px;
}
.as-subnav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: var(--as-blue-dark) !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s, color .2s, padding-left .2s;
}
.as-subnav a span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.as-subnav a em {
  font-style: normal;
  font-size: 13px;
  color: #99a8b8;
  font-weight: 500;
  flex-shrink: 0;
}
.as-subnav a:hover {
  background: var(--as-blue-light);
  color: var(--as-blue) !important;
  padding-left: 16px;
}
.as-subnav a:hover em { color: var(--as-blue); }

/* ===== 内页共用（兼容 gov-*）· 大气界面 ===== */
.gov-banner,
.as-contact-banner {
  position: relative;
  min-height: clamp(200px, 28vw, 300px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 40px 0 64px;
  background: linear-gradient(120deg, #003670 0%, #004a92 55%, #0a5fb0 100%);
}
.gov-banner::before,
.as-contact-banner-bg {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 54, 112, 0.92) 0%, rgba(0, 74, 146, 0.78) 48%, rgba(10, 95, 176, 0.7) 100%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(197, 218, 240, 0.35), transparent 55%);
  pointer-events: none;
}
.gov-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M0 80 L40 70 L80 85 L120 60 L160 75 L200 50 L240 72 L280 55 L320 80 L360 48 L400 70 L440 58 L480 82 L520 45 L560 68 L600 52 L640 78 L680 40 L720 65 L760 55 L800 80 L840 50 L880 72 L920 48 L960 70 L1000 58 L1040 78 L1080 45 L1120 68 L1160 55 L1200 80 L1200 120 L0 120 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.gov-banner-content,
.as-contact-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.gov-banner-brand {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.gov-banner h1 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  opacity: .92;
  letter-spacing: 3px;
}
.gov-banner-desc { margin: 0 0 10px; opacity: .85; font-size: 16px; }
.gov-crumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 15px; opacity: .9; margin: 0; padding: 0; list-style: none; }
.gov-crumb a { color: #fff !important; }
.gov-crumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: .6; }

.as-inner-body .gov-main {
  padding-top: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}
.gov-main { padding: 28px 0 48px; }
.gov-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: start;
}
.gov-layout--full { grid-template-columns: 1fr; }
.gov-content {
  background: #fff;
  border: 1px solid var(--as-border);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 18px 48px rgba(0, 74, 146, 0.12);
}
.gov-content-head {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8eef5;
}
.gov-content-head h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--as-blue-dark);
  padding-left: 12px;
  border-left: 4px solid var(--as-blue);
  font-weight: 700;
}
.gov-sidebar { display: flex; flex-direction: column; gap: 14px; }
.gov-widget {
  background: #fff;
  border: 1px solid var(--as-border);
  box-shadow: 0 8px 24px rgba(0, 74, 146, 0.08);
  overflow: hidden;
  border-radius: 10px;
}
.gov-widget-title {
  margin: 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
}
.gov-widget-body { padding: 12px 14px; }
.gov-widget-body form { display: flex; }
.gov-widget-body input[type="search"] {
  flex: 1; height: 34px; border: 1px solid var(--as-border); padding: 0 8px;
}
.gov-widget-body input[type="submit"] {
  height: 34px; border: 0; background: var(--as-blue); color: #fff; padding: 0 12px; cursor: pointer;
}
.gov-cat-list a { display: block; padding: 9px 4px; color: var(--as-text); border-bottom: 1px dashed #eee; }
.gov-cat-list li.active a,
.gov-cat-list a:hover { color: var(--as-blue); font-weight: 600; }
.gov-hot-list li {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 8px 0; border-bottom: 1px dashed #eee; font-size: 15px;
}
.gov-hot-list a { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--as-text); }
.gov-hot-list span { color: #999; flex-shrink: 0; }

.gov-list-item { border-bottom: 1px solid #f0f0f0; }
.gov-list-item > a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 2px;
  color: inherit;
}
.gov-list-item > a:hover { background: var(--as-blue-light); }
.gov-list-icon {
  width: 40px; height: 40px; background: var(--as-blue-light); color: var(--as-blue);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.gov-list-body h3 { margin: 0 0 4px; font-size: 17px; color: var(--as-text); }
.gov-list-body p { margin: 0; font-size: 14px; color: #888; }
.gov-list-meta { text-align: right; font-size: 14px; color: #999; min-width: 88px; }
.gov-list-date { display: block; color: var(--as-blue); margin-bottom: 4px; }

.gov-img-grid, .gov-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gov-product-grid { grid-template-columns: repeat(4, 1fr); }
.gov-img-card, .gov-product-card {
  display: block; background: #fafafa; border: 1px solid var(--as-border); color: inherit;
}
.gov-img-card .thumb, .gov-product-img { aspect-ratio: 16/10; overflow: hidden; }
.gov-img-card img, .gov-product-img img { width: 100%; height: 100%; object-fit: cover; }
.gov-img-card h4, .gov-product-card h4 { margin: 0; padding: 10px; font-size: 16px; text-align: center; }

.gov-dl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid #f0f0f0;
}
.gov-dl-item a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px; border-bottom: 1px solid #f0f0f0; color: var(--as-text);
}
.gov-dl-body h3 { margin: 0 0 4px; font-size: 17px; }
.gov-dl-body h3 a { color: var(--as-text); }
.gov-dl-body h3 a:hover { color: var(--as-blue); }
.gov-dl-date { font-size: 14px; color: #999; }
.gov-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--as-blue);
  color: #fff !important;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.gov-dl-btn:hover { background: var(--as-blue-dark); color: #fff !important; }
.gov-dl-box {
  margin: 24px 0;
  padding: 18px 20px;
  background: var(--as-blue-light);
  border-left: 4px solid var(--as-blue);
}
.gov-dl-box h3 { margin: 0 0 12px; font-size: 18px; color: var(--as-blue-dark); }
.gov-dl-box ul { margin: 0; padding: 0; list-style: none; }
.gov-dl-box li { margin-bottom: 8px; }

.gov-article-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.6vw, 28px);
  text-align: center;
  color: var(--as-blue-dark);
  font-weight: 700;
  line-height: 1.4;
}
.gov-article-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #e8eef5;
  font-size: 15px; color: #888;
}
.gov-article-meta a { color: var(--as-blue); }
.gov-article-body, .gov-single-body { font-size: 18px; line-height: 1.9; color: #444; }
.as-article-copyright {
  margin: 28px 0 8px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
  border: 1px solid var(--as-border);
  border-left: 4px solid var(--as-blue);
  border-radius: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.as-article-copyright p {
  margin: 0 0 6px;
}
.as-article-copyright p:last-child { margin-bottom: 0; }
.as-article-copyright strong {
  color: var(--as-blue-dark);
  font-weight: 700;
}
.as-article-copyright a {
  color: var(--as-blue);
  word-break: break-all;
}
.as-article-copyright a:hover { color: #c8161d; }
.gov-back { display: inline-block; margin-bottom: 12px; color: #888; font-size: 15px; }
.gov-post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 28px; padding-top: 16px; border-top: 1px solid #e8eef5;
}
.gov-post-nav a {
  display: block; padding: 12px; background: var(--as-blue-light); color: var(--as-text); font-size: 15px;
}
.gov-post-nav .label { display: block; font-size: 14px; color: #888; margin-bottom: 4px; }
.gov-post-nav .next { text-align: right; }
.gov-pager { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.gov-pager a, .gov-pager span {
  min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--as-border); background: #fff; color: var(--as-text); font-size: 15px; padding: 0 8px;
}
.gov-pager .current, .gov-pager a:hover { background: var(--as-blue); border-color: var(--as-blue); color: #fff; }

.gov-form-title { text-align: center; color: var(--as-blue); font-size: 20px; margin: 0 0 12px; }
.gov-form-info {
  background: var(--as-blue-light); border-left: 4px solid var(--as-blue);
  padding: 12px 14px; margin-bottom: 20px; font-size: 15px; color: #555;
}
.gov-form-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.gov-form-table td { border: 1px solid var(--as-border); padding: 8px; }
.gov-form-table .td-label { background: #f7f9fc; font-weight: 600; white-space: nowrap; }
.gov-form-table input, .gov-form-table select, .gov-form-table textarea {
  width: 100%; height: 34px; border: 1px solid var(--as-border); padding: 0 8px; font-family: inherit;
}
.gov-form-table textarea { height: 90px; padding: 8px; }
.gov-form-submit { text-align: center; margin-top: 20px; }
.gov-form-submit button {
  min-width: 140px; height: 42px; border: 0; background: var(--as-blue); color: #fff;
  font-size: 17px; font-weight: 700; cursor: pointer;
}
.gov-radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.gov-radio-item { display: inline-flex; align-items: center; gap: 4px; font-weight: 400; }
.gov-radio-item input { width: auto; height: auto; }
.gov-form-hint { margin: 4px 0 0; font-size: 14px; color: #999; font-weight: 400; }
.gov-form-table .td-label { white-space: normal; vertical-align: top; width: 220px; }
.gov-form-table input[type="file"] {
  height: auto;
  padding: 8px;
  background: #fff;
}
.gov-form-table select { background: #fff; }
.gov-form-submit button:hover { background: var(--as-blue-dark); }

/* ===== 项目备案申请 ===== */
.as-gb-body .gov-main.as-gb-main {
  padding-top: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.as-gb-stage {
  background: #fff;
  border: 1px solid var(--as-border);
  box-shadow: 0 18px 48px rgba(0, 74, 146, 0.14);
  padding: clamp(22px, 3.2vw, 36px);
  margin-bottom: 40px;
}
.as-gb-intro {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8eef5;
}
.as-gb-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--as-blue-dark);
  font-weight: 700;
}
.as-gb-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}
.as-gb-meta p {
  margin: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.as-gb-meta em {
  font-style: normal;
  font-weight: 700;
  color: var(--as-blue);
}
.as-gb-table td { padding: 14px 16px; }
.as-gb-table .td-label strong {
  display: block;
  color: var(--as-blue-dark);
  font-size: 16px;
}
.as-gb-table input,
.as-gb-table select {
  height: 42px;
  padding: 0 12px;
  font-size: 16px;
}
.as-gb-table input:focus,
.as-gb-table select:focus {
  outline: none;
  border-color: var(--as-blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 146, 0.12);
}
.as-gb-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.as-gb-submit button {
  min-width: 160px;
  height: 46px;
  transition: background .2s, transform .2s;
}
.as-gb-submit button:hover { transform: translateY(-1px); }
.as-gb-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 46px;
  padding: 0 20px;
  border: 1px solid var(--as-blue);
  color: var(--as-blue) !important;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
}
.as-gb-back:hover {
  background: var(--as-blue-light);
  color: var(--as-blue-dark) !important;
}
.as-gb-jump { text-align: center; padding-top: clamp(36px, 5vw, 56px); padding-bottom: clamp(36px, 5vw, 56px); }
.as-gb-jump h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 28px);
  color: var(--as-blue-dark);
  font-weight: 700;
}
.as-gb-jump > p {
  margin: 0 auto 28px;
  max-width: 480px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}
.as-gb-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 46px;
  padding: 0 24px;
  background: var(--as-blue);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.as-gb-go:hover {
  background: var(--as-blue-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
@media (max-width: 991px) {
  .as-gb-body .gov-main.as-gb-main { margin-top: -32px; }
  .as-gb-meta { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .as-gb-table .td-label { width: 100%; }
}

/* Footer · 大气界面（浅底深字） */
.as-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(0, 74, 146, 0.08), transparent 55%),
    linear-gradient(180deg, #eef4fa 0%, #e6eef7 100%);
  color: var(--as-text, #333);
  padding: 48px 0 36px;
  border-top: 1px solid var(--as-border, #d6e3f0);
}
.as-footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='rgba(0,74,146,0.05)' d='M0 80 L40 70 L80 85 L120 60 L160 75 L200 50 L240 72 L280 55 L320 80 L360 48 L400 70 L440 58 L480 82 L520 45 L560 68 L600 52 L640 78 L680 40 L720 65 L760 55 L800 80 L840 50 L880 72 L920 48 L960 70 L1000 58 L1040 78 L1080 45 L1120 68 L1160 55 L1200 80 L1200 0 L0 0 Z'/%3E%3C/svg%3E") top / 100% 72px no-repeat;
}
.as-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 36px 48px;
  align-items: start;
}
.as-foot-brand {
  padding-right: 12px;
}
.as-foot-name {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--as-blue-dark, #003670);
  line-height: 1.35;
}
.as-foot-desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.as-foot-hotline {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--as-border, #d6e3f0);
  border-radius: 10px;
  color: var(--as-blue, #004a92) !important;
  box-shadow: 0 8px 20px rgba(0, 74, 146, 0.08);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.as-foot-hotline:hover {
  border-color: var(--as-blue, #004a92);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 74, 146, 0.12);
}
.as-foot-hotline em {
  font-style: normal;
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}
.as-foot-hotline span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.2;
  color: var(--as-blue, #004a92);
}
.as-foot-cols {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr 0.85fr;
  gap: 24px;
}
.as-foot-col h4 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--as-blue-dark, #003670);
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--as-border, #d6e3f0);
  position: relative;
}
.as-foot-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  background: var(--as-blue, #004a92);
  border-radius: 2px;
}
.as-foot-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}
.as-foot-nav a {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  padding: 2px 0;
  transition: color .2s, padding-left .2s;
}
.as-foot-nav a:hover {
  color: var(--as-blue, #004a92);
  padding-left: 4px;
}
.as-foot-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.as-foot-contact li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 15px;
  line-height: 1.7;
}
.as-foot-contact em {
  font-style: normal;
  color: #888;
  font-size: 14px;
  padding-top: 2px;
}
.as-foot-contact a,
.as-foot-contact span {
  color: #333;
  word-break: break-all;
}
.as-foot-contact a:hover { color: var(--as-blue, #004a92); }
.as-foot-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--as-blue, #004a92) !important;
}
.as-foot-more:hover { color: var(--as-blue-dark, #003670) !important; }
.as-foot-social {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--as-border, #d6e3f0);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 74, 146, 0.06);
}
.as-foot-social img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}
.as-foot-social span {
  font-size: 14px;
  color: #666;
}
.as-foot-social--empty {
  min-height: 120px;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.as-copyright {
  background: #e2ebf5;
  border-top: 1px solid #d0deec;
  padding: 14px 0;
  font-size: 14px;
  color: #666;
}
.as-copyright-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.as-copyright p { margin: 0; }
.as-copyright a {
  color: #555;
}
.as-copyright a:hover { color: var(--as-blue, #004a92); }

/* 右侧悬浮栏 */
.as-floatbar {
  position: fixed;
  right: 12px;
  top: 42%;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.as-floatbar a {
  width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  color: #fff !important;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 54, 112, 0.28);
  transition: transform .2s, box-shadow .2s;
}
.as-floatbar a strong {
  font-weight: 700;
  font-size: 14px;
}
.as-floatbar a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 54, 112, 0.36);
}
.as-floatbar .as-float-top { font-size: 20px; font-weight: 700; }

.gov-scroll-top { display: none !important; }

.gov-site .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.gov-site .reveal.in-view { opacity: 1; transform: none; }

/* ===== 资质查询 · 大气界面（含查询服务） ===== */
.as-query-body .gov-main.as-query-main {
  padding-top: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.as-query-stage {
  background: #fff;
  border: 1px solid var(--as-border);
  box-shadow: 0 18px 48px rgba(0, 74, 146, 0.14);
  padding: clamp(22px, 3.2vw, 36px);
  margin-bottom: 28px;
}
.as-query-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8eef5;
}
.as-query-intro-text h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 28px);
  color: var(--as-blue-dark);
  font-weight: 700;
}
.as-query-intro-text p {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  max-width: 560px;
}
.as-query-intro-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.as-query-intro-meta > div {
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--as-blue-light) 0%, #fff 100%);
  border: 1px solid var(--as-border);
  border-left: 3px solid var(--as-blue);
}
.as-query-intro-meta em {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--as-blue);
  margin-bottom: 4px;
  font-weight: 700;
}
.as-query-intro-meta strong {
  display: block;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--as-blue-dark);
  margin-bottom: 2px;
  line-height: 1.3;
  word-break: break-all;
}
.as-query-intro-meta span {
  font-size: 14px;
  color: #888;
}
.as-query-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
.as-query-card {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
  border: 1px solid var(--as-border);
  color: inherit !important;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  overflow: hidden;
}
.as-query-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--as-blue);
  transition: width .25s;
}
.as-query-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 74, 146, 0.04);
  pointer-events: none;
}
.as-query-card:hover {
  border-color: var(--as-blue);
  box-shadow: 0 14px 32px rgba(0, 74, 146, 0.16);
  transform: translateY(-4px);
  color: inherit !important;
}
.as-query-card:hover::before { width: 6px; }
.as-query-card--apply {
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
}
.as-query-card--apply::before { background: #c8161d; }
.as-query-card--apply::after { background: rgba(200, 22, 29, 0.05); }
.as-query-card--apply:hover {
  border-color: #c8161d;
  box-shadow: 0 14px 32px rgba(200, 22, 29, 0.14);
}
.as-query-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--as-blue);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
  opacity: .85;
}
.as-query-card--apply .as-query-num { color: #c8161d; }
.as-query-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--as-blue-dark);
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.as-query-card p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #777;
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}
.as-query-go {
  font-size: 15px;
  font-weight: 600;
  color: var(--as-blue);
  position: relative;
  z-index: 1;
}
.as-query-card--apply .as-query-go { color: #c8161d; }
.as-query-card:hover .as-query-go { letter-spacing: .5px; }

.as-query-panel {
  margin: 24px 0 0;
  border: 1px solid var(--as-border);
  background: #f7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.as-query-panel[hidden] { display: none !important; }
.as-query-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  color: #fff;
}
.as-query-panel-tag {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: .75;
  margin-bottom: 4px;
}
.as-query-panel-hd h3 { margin: 0; font-size: 20px; color: #fff; font-weight: 700; }
.as-query-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.as-query-close:hover { background: rgba(255, 255, 255, 0.18); }
.as-query-form { padding: 24px 22px 18px; }
.as-query-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 6px;
}
.as-query-row { margin-bottom: 14px; }
.as-query-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 15px;
  color: #444;
}
.as-query-row input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--as-border);
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.as-query-row input:focus {
  outline: none;
  border-color: var(--as-blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 146, 0.12);
}
.as-query-actions { display: flex; gap: 12px; margin: 8px 0 14px; }
.as-query-submit,
.as-query-reset {
  height: 44px;
  padding: 0 26px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.as-query-submit { background: var(--as-blue); color: #fff; }
.as-query-submit:hover { background: var(--as-blue-dark); transform: translateY(-1px); }
.as-query-reset {
  background: #fff;
  color: var(--as-blue);
  border: 1px solid var(--as-blue);
}
.as-query-reset:hover { background: var(--as-blue-light); }
.as-query-note { margin: 0; font-size: 14px; color: #888; line-height: 1.6; }
.as-query-result { padding: 0 22px 22px; }
.as-query-result-box {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--as-border);
  border-left: 4px solid var(--as-blue);
  font-size: 16px;
  color: #444;
  box-shadow: var(--shadow-sm);
}
.as-query-result-box p { margin: 0 0 8px; }
.as-query-result-tip { color: #888 !important; margin-top: 10px !important; }
.as-query-extra { margin-top: 0; font-size: 16px; line-height: 1.8; color: #555; }
.as-query-strip { margin-bottom: 28px; }

@media (max-width: 991px) {
  .as-query-body .gov-main.as-query-main { margin-top: -32px; }
  .as-query-intro { grid-template-columns: 1fr; }
  .as-query-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .as-query-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .as-query-grid { grid-template-columns: 1fr; }
  .as-query-intro-meta { grid-template-columns: 1fr; }
}

/* ===== 联系我们 · 大气界面 ===== */
.as-contact-body .gov-main.as-contact-main {
  padding-top: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.as-contact-banner {
  position: relative;
  min-height: clamp(240px, 32vw, 340px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 48px 0 72px;
}
.as-contact-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 54, 112, 0.92) 0%, rgba(0, 74, 146, 0.78) 48%, rgba(10, 95, 176, 0.7) 100%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(197, 218, 240, 0.35), transparent 55%),
    linear-gradient(180deg, #003670 0%, #004a92 100%);
}
.as-contact-banner-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M0 80 L40 70 L80 85 L120 60 L160 75 L200 50 L240 72 L280 55 L320 80 L360 48 L400 70 L440 58 L480 82 L520 45 L560 68 L600 52 L640 78 L680 40 L720 65 L760 55 L800 80 L840 50 L880 72 L920 48 L960 70 L1000 58 L1040 78 L1080 45 L1120 68 L1160 55 L1200 80 L1200 120 L0 120 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.as-contact-banner-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}
.as-contact-brand {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.as-contact-banner h1 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  opacity: .92;
  letter-spacing: 4px;
}
.as-contact-lead {
  margin: 0 0 14px;
  font-size: 16px;
  opacity: .82;
  max-width: 520px;
}
.as-contact-crumb {
  margin: 0;
  opacity: .85;
}
.as-contact-crumb a { color: #fff !important; }
.as-contact-crumb a:hover { opacity: .9; }

.as-contact-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--as-border);
  box-shadow: 0 18px 48px rgba(0, 74, 146, 0.14);
  overflow: hidden;
  margin-bottom: 28px;
}
.as-contact-panel {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.as-contact-panel-hd {
  margin-bottom: 22px;
}
.as-contact-eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--as-blue);
  font-weight: 700;
  margin-bottom: 6px;
}
.as-contact-panel-hd h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 28px);
  color: var(--as-blue-dark);
  font-weight: 700;
}
.as-contact-phone {
  display: block;
  padding: 22px 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--as-blue) 0%, var(--as-blue-dark) 100%);
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.as-contact-phone::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.as-contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 74, 146, 0.28);
  color: #fff !important;
}
.as-contact-phone-label {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: .8;
  margin-bottom: 6px;
}
.as-contact-phone strong {
  display: block;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  position: relative;
}
.as-contact-list {
  margin: 0 0 26px;
  padding: 0;
}
.as-contact-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e8eef5;
}
.as-contact-list li:last-child { border-bottom: 0; }
.as-contact-k {
  font-size: 15px;
  font-weight: 700;
  color: var(--as-blue);
  padding-top: 2px;
}
.as-contact-v {
  font-size: 17px;
  color: #333 !important;
  line-height: 1.65;
  word-break: break-word;
}
a.as-contact-v:hover { color: var(--as-blue) !important; }
.as-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.as-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 44px;
  padding: 0 22px;
  background: var(--as-blue);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.as-contact-btn:hover {
  background: var(--as-blue-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.as-contact-btn--ghost {
  background: #fff;
  color: var(--as-blue) !important;
  border: 1px solid var(--as-blue);
}
.as-contact-btn--ghost:hover {
  background: var(--as-blue-light);
  color: var(--as-blue-dark) !important;
}

.as-contact-aside {
  display: flex;
  flex-direction: column;
  background: var(--as-blue-dark);
  color: #fff;
  min-height: 100%;
}
.as-contact-aside-visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 95, 176, 0.55), rgba(0, 54, 112, 0.2)),
    radial-gradient(circle at 30% 40%, rgba(197, 218, 240, 0.25), transparent 50%);
}
.as-contact-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 90' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.12)' d='M0 90 V55 H30 V35 H50 V55 H70 V20 H95 V55 H115 V40 H140 V55 H160 V28 H190 V55 H210 V45 H235 V18 H270 V55 H290 V38 H320 V55 H340 V25 H375 V55 H400 V42 H430 V55 H450 V30 H480 V55 H505 V48 H530 V22 H560 V55 H580 V40 H600 V90 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}
.as-contact-aside-body {
  flex: 1;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.as-contact-aside-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.as-contact-aside-body > p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  opacity: .82;
}
.as-contact-aside .as-contact-qr {
  margin-top: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.as-contact-aside .as-contact-qr img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  margin: 0 auto 10px;
  display: block;
}
.as-contact-aside .as-contact-qr span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.as-contact-hours {
  margin-top: auto;
  display: grid;
  gap: 14px;
}
.as-contact-hours > div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(197, 218, 240, 0.7);
}
.as-contact-hours em {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: .7;
  margin-bottom: 4px;
}
.as-contact-hours strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}
.as-contact-hours span {
  font-size: 15px;
  opacity: .8;
}

.as-contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--as-border);
  border: 1px solid var(--as-border);
  margin-bottom: 28px;
  overflow: hidden;
}
.as-contact-strip-item {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
  transition: background .2s;
}
.as-contact-strip-item:hover { background: var(--as-blue-light); }
.as-contact-strip-item strong {
  display: block;
  font-size: 20px;
  color: var(--as-blue);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.as-contact-strip-item span {
  font-size: 15px;
  color: #555;
}

.as-contact-extra-box {
  background: #fff;
  border: 1px solid var(--as-border);
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .as-contact-stage { grid-template-columns: 1fr; }
  .as-contact-body .gov-main.as-contact-main { margin-top: -32px; }
  .as-contact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .as-contact-banner { min-height: 220px; padding: 36px 0 56px; }
  .as-contact-list li { grid-template-columns: 56px 1fr; }
  .as-contact-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .as-contact-strip { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .gov-layout { grid-template-columns: 1fr; }
  .gov-sidebar { grid-template-columns: 1fr 1fr; display: grid; }
  .gov-product-grid { grid-template-columns: repeat(3, 1fr); }
  .gov-img-grid { grid-template-columns: repeat(2, 1fr); }
  .as-logo-text strong { font-size: 18px; }
  .as-inner-body .gov-main { margin-top: -28px; }
  .gov-banner { min-height: 180px; padding: 32px 0 48px; }
  .as-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .as-foot-cols { grid-template-columns: 1fr 1fr; }
  .as-foot-qr { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .as-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: auto;
    padding: 8px 0;
  }
  .as-topbar-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
  .as-topbar-date {
    padding-left: 0;
    border-left: 0;
    font-size: 13px;
  }
  .as-header-inner { flex-wrap: wrap; min-height: auto; }
  .as-header-right { width: 100%; justify-content: space-between; }
  .as-logo-text em { display: none; }
  .as-hotline { display: none; }
  .as-search-form,
  .as-search form { min-width: 0; flex: 1; }
  .as-search-form:focus-within,
  .as-search form:focus-within { min-width: 0; }
  .as-nav-toggle { display: flex; }
  .as-nav-list {
    display: none;
    flex-direction: column;
    background: var(--as-blue-dark);
    overflow: hidden;
  }
  .as-nav.is-open .as-nav-list { display: flex; }
  .as-nav-list > li { text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); flex: none; }
  .as-nav-list > li > a {
    justify-content: space-between;
    border-bottom: 0;
    height: 48px;
  }
  .as-subnav {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    padding: 0 10px 10px;
    transition: none;
  }
  .as-subnav::before { display: none; }
  .as-nav-list > li:hover > .as-subnav,
  .as-nav-list > li:focus-within > .as-subnav { display: none; transform: none; }
  .as-nav-list > li.is-expanded > .as-subnav { display: block; }
  .as-nav-list > li.is-expanded > a .as-caret { transform: rotate(180deg); }
  .as-subnav-inner {
    border-radius: 8px;
    box-shadow: none;
  }
  .gov-sidebar { grid-template-columns: 1fr; }
  .gov-list-item > a { grid-template-columns: 36px 1fr; }
  .gov-list-meta { grid-column: 2; text-align: left; display: flex; gap: 10px; }
  .gov-list-arrow { display: none; }
  .gov-product-grid, .gov-img-grid { grid-template-columns: 1fr 1fr; }
  .gov-post-nav { grid-template-columns: 1fr; }
  .gov-post-nav .next { text-align: left; }
  .as-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .as-foot-cols { grid-template-columns: 1fr; }
  .as-foot-qr { grid-column: auto; }
  .as-foot-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .as-floatbar { display: none; }
  .gov-form-table, .gov-form-table tbody, .gov-form-table tr, .gov-form-table td { display: block; width: 100%; }
}
@media (max-width: 480px) {
  .gov-product-grid, .gov-img-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .gov-site .reveal { opacity: 1; transform: none; }
}
