﻿@charset "utf-8";

:root {
  --color-primary: #003277;
  --color-primary-2: #031B3D;
  --color-primary-3: #2A3E59;
  --color-primary-soft: #eaf1ff;
  --color-accent: #e57d00;
  --color-text: #1f2633;
  --color-text-secondary: #556072;
  --color-border: #dbe3ef;
  --color-bg: #f4f7fc;
  --color-bg-card: #ffffff;
  --color-footer: #0f2f72;
  --media-focus-box-fill-start: #d0e4ff;
  --media-focus-box-fill-end: #ffffff;
  --media-focus-box-stroke-start: #aaceff;
  --media-focus-box-stroke-end: #ffffff;
  --media-focus-box-border-width: 1px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 14px rgba(15, 47, 114, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 47, 114, 0.12);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;
  --container-width: 1420px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font: 15px/1.7 "PingFang SC";
  color: var(--color-text);
  background: var(--color-bg);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.menu-link:focus-visible,
.sub-link:focus-visible {
  outline: 2px solid var(--color-primary-2);
  outline-offset: 2px;
}
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6 { margin: 0; }

.wrapper { width: 100%; }
.inner {
  width: var(--container-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}
.mod { position: relative; }
.clearfix::after { content: ""; display: block; clear: both; }

.container { width: var(--container-width); max-width: calc(100% - 48px); margin: 0 auto; }
/* 未使用： grid utility classes
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-4);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
*/

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
/* 未使用： utility
.flex-wrap { flex-wrap: wrap; }
*/

/* 未使用： spacing/text utility classes
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.py-5 { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.text-center { text-align: center; }
.text-right { text-align: right; }
*/
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 未使用： utility
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
*/
.hidden { display: none !important; }

#headtop { background: #12367f; }
.top-left { float: left; }
.top-right { float: right; }
.site-rale ul li,
.site-lang ul li { float: left; }
.site-rale ul li a,
.site-lang ul li a {
  display: block;
  padding: 0 10px;
  line-height: 34px;
  font-size: 13px;
  color: #d6e2ff;
}
.site-rale ul li a:hover,
.site-lang ul li a:hover,
.site-rale ul li.current a,
.site-lang ul li.current a { color: #ffffff; }

#header {
  background: linear-gradient(120deg, #0c326f 0%, #1f56b3 62%, #2a6dd4 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 59, 133, 0.18);
}
#header .inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.head-left,
.head-right {
  display: flex;
  align-items: center;
}
.head-right { gap: var(--space-4); }
.sitelogo a { display: inline-flex; align-items: center; gap: 12px; color: #ffffff; }
.sitelogo img { max-height: 68px; width: auto; }
.sitetitle {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.searchbox { min-width: 280px; }
.wp-search {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.wp-search .search-input { margin-right: 48px; }
.wp-search .search-title {
  width: 100%;
  height: 42px;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: #ffffff;
  outline: none;
}
.wp-search .search-title::placeholder { color: rgba(255, 255, 255, 0.8); }
.wp-search .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 42px;
}
.wp-search .search-submit {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#nav {
  position: relative;
  z-index: 8;
  background: var(--color-primary);
}
.wp-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wp-menu > li { position: relative; }
.wp-menu > li > a {
  display: block;
  padding: 0 26px;
  line-height: 52px;
  color: #ffffff;
  font-size: 16px;
}
.wp-menu > li > a:hover,
.wp-menu > li.current > a,
.wp-menu > li.selected > a { background: rgba(255, 255, 255, 0.16); }
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 188px;
  padding: 6px 0;
  background: #ffffff;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
}
.menu-item:hover > .sub-menu { display: block; }
.sub-menu .sub-link {
  display: block;
  padding: 8px 14px;
  color: var(--color-text);
  line-height: 1.5;
}
.sub-menu .sub-link:hover { background: var(--color-primary-soft); color: var(--color-primary); }

.page-banner {
  position: relative;
  min-height: 320px;
  padding: 80px 0;
  color: #ffffff;
  background: linear-gradient(145deg, #133b86, #225fbf);
}
.page-banner .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.page-banner .desc {
  margin-top: 12px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

/* 未使用： placeholder block
.page-placeholder { padding: 76px 0; min-height: 420px; }
.placeholder-box {
  border: 1px dashed #8aa4d8;
  border-radius: var(--radius-lg);
  padding: 70px 24px;
  text-align: center;
  color: #3a5687;
  background: var(--color-primary-soft);
  font-size: 18px;
}
*/

.section {
  padding: 50px 0;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title {
  position: relative;
  padding-left: 14px;
  font-size: 30px;
  line-height: 1.3;
  color: #1d2f52;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-2));
}
.section-more {
  font-size: 14px;
  color: var(--color-primary);
}

/* 未使用： old home module styles
.home-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-4);
}
.home-module {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.home-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.home-module-title {
  font-size: 22px;
  line-height: 1.3;
  color: #1b2d53;
}
.home-module-more {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--color-primary);
}

.home-highlight .home-main-title {
  font-size: 24px;
  line-height: 1.4;
  color: #1a2c50;
}
.home-highlight .home-main-summary {
  margin-top: 10px;
  color: #556072;
}
.home-highlight .home-main-meta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.home-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #f8fbff;
  text-align: center;
  color: #1f355f;
}
.home-link-item:hover {
  border-color: #bdd0ef;
  background: #eff5ff;
}

.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.home-topic-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f3f7ff;
}
.home-topic-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
*/

/* 未使用： card utility
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body { padding: 18px; }
*/

.news-list > li {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}
.news-list > li:last-child { border-bottom: 0; }
.news-list .title {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
}
.news-list .time {
  flex: 0 0 auto;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.media-list > li {
  display: flex;
  gap: var(--space-3);
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.media-list > li:first-child { padding-top: 0; }
.media-list > li:last-child { border-bottom: 0; }
.media-list .thumb {
  flex: 0 0 220px;
  max-width: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.media-list .thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.media-list .info {
  flex: 1;
  min-width: 0;
}
.media-list .title {
  font-size: 20px;
  line-height: 1.4;
  color: #1a2a4d;
}
.media-list .meta {
  margin-top: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.media-list .summary {
  margin-top: 10px;
  color: #4f5969;
}

.path,
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.path a,
.breadcrumb a { color: var(--color-text-secondary); }
.path a:hover,
.breadcrumb a:hover { color: var(--color-primary); }

/* .article-entry,
.entry {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 34px;
} */
.entry-title {
  font-size: 34px;
  line-height: 1.35;
  text-align: center;
  color: #1c2c4d;
}
.entry-metas,
.metas {
  margin-top: 14px;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.entry-content,
.entry-main {
  margin-top: 26px;
  color: #2d3542;
}
.entry-content p,
.entry-main p { margin: 0 0 1em; }
.entry-content img,
.entry-main img { max-width: 100% !important; height: auto !important; }
.entry-content table,
.entry-main table {
  width: 100% !important;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.entry-content table td,
.entry-content table th,
.entry-main table td,
.entry-main table th {
  border: 1px solid var(--color-border);
  padding: 8px;
}
.entry-content::after,
.entry-main::after { content: ""; display: block; clear: both; }

.pagination,
.page-nav {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pagination a,
.pagination span,
.page-nav a,
.page-nav span {
  min-width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
}
.pagination .current,
.page-nav .current {
  color: #ffffff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.wp_paging {
  display: block;
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
  float: none;
  list-style: none;
  color: var(--color-primary-3);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.wp_paging::after {
  content: "";
  display: block;
  clear: both;
}

.wp_paging li {
  display: inline-block;
  height: auto;
  margin-top: 0;
  float: none;
  line-height: 1;
}

.wp_paging li span,
.wp_paging li a {
  float: none;
  margin-left: 0;
}

.wp_paging li em {
  font-style: normal;
}

.wp_paging input {
  font-size: 16px;
}

.wp_paging.is-paging-enhanced > li {
  display: none;
}

.wp-paging-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  min-height: 32px;
}

.wp-paging-pages,
.wp-paging-tools,
.wp-paging-jump {
  display: flex;
  align-items: center;
}

.wp-paging-pages {
  gap: 6px;
}

.wp-paging-tools {
  gap: 20px;
}

.wp-paging-jump {
  gap: 10px;
}

.wp-page-number,
.wp-page-arrow,
.wp-page-ellipsis,
.wp-paging-jump-label,
.wp-paging-jump-unit,
.wp-paging-per-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  color: var(--color-primary-3);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wp-page-number {
  min-width: 32px;
  padding: 0 4px;
}

.wp-page-number:hover,
.wp-page-arrow:hover {
  color: var(--color-primary);
}

.wp-page-number.is-active {
  min-width: 32px;
  padding: 0 10px;
  background: var(--color-primary);
  color: #ffffff;
}

.wp-page-arrow {
  width: 32px;
  padding: 0;
}

.wp-page-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.wp-page-arrow--prev::before {
  transform: rotate(-135deg);
}

.wp-page-arrow--next::before {
  transform: rotate(45deg);
}

.wp-page-arrow.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.wp-page-ellipsis {
  min-width: 32px;
  letter-spacing: 2px;
}

.wp-paging-per {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 140px;
  height: 32px;
  padding: 0 36px 0 16px;
  border: 1px solid #c7c7c7;
  background: #ffffff;
  color: var(--color-primary-3);
  cursor: pointer;
}

.wp-paging-per::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #c2c8d1;
  border-bottom: 2px solid #c2c8d1;
  transform: rotate(45deg);
}

.wp-paging-per.is-open::after {
  transform: rotate(225deg);
  top: 13px;
}

.wp-paging-per-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  z-index: 20;
  min-width: calc(100% + 2px);
  padding: 4px 0;
  border: 1px solid #c7c7c7;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.wp-paging-per-menu[hidden] {
  display: none !important;
}

.wp-paging-per-option {
  display: flex;
  align-items: center;
  width: 100%;
  height: 32px;
  padding: 0 16px;
  border: 0;
  background: #ffffff;
  color: var(--color-primary-3);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.wp-paging-per-option:hover,
.wp-paging-per-option.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

.wp-paging-jump-label,
.wp-paging-jump-unit {
  padding: 0 2px;
}

.wp-paging-input-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 32px;
  border: 1px solid #c7c7c7;
  background: #ffffff;
}

.wp-paging-input-wrap .pageNum {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--color-primary-3);
  font-size: 16px;
  line-height: 32px;
  text-align: center;
}

.wp-paging-input-wrap .pageNum:focus {
  outline: none;
}

/* 未使用： button utility
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
}
.btn:hover { background: var(--color-primary-2); color: #ffffff; }
.btn-outline {
  border-color: var(--color-primary);
  background: #ffffff;
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
*/

#footer {
  background: var(--color-footer);
  color: #d7e3ff;
}
#footer .inner { padding: 26px 0; }
.foot-left { float: left; }
.foot-right { float: right; }
#footer p { line-height: 1.9; font-size: 13px; }
#footer a { color: #d7e3ff; }
#footer a:hover { color: #ffffff; }
.shares ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shares li a {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.shares li span,
.shares li .con { display: none; }

.wp-navi-aside,
.navi-aside-toggle,
.column-switch,
.menu-switch-arrow { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


