

:root {

  --color-primary: #123E91;
  --color-nav-dark: #0A2B66;
  --color-page-bg: #F8F9FA;
  --color-card: #FFFFFF;
  --color-section-blue: #F4F5F6;
  --color-title: #101828;
  --color-body: #172033;
  --color-muted: #667085;
  --color-divider: #D9E3F1;

  --color-accent: #C59B27;
  --color-accent-on-dark: #E5C76F;
  --color-accent-ink: #96711A;
  --color-urgent: var(--color-accent);
  --color-event: var(--color-accent);


  --font-family-base: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
  --font-family-display: var(--font-family-base);
  --container-width: 1280px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --shadow-card-hover: 0 8px 24px rgba(10, 43, 102, 0.08);
}


body {
  margin: 0;
  color: var(--color-body);
  background: #fff;
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-nav-dark);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-title);
  font-weight: 700;
  margin-top: 0;
}


.container-site {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1100;
  padding: 8px 16px;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  left: 8px;
  outline: 2px solid #fff;
}


.btn-primary {
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-nav-dark);
  --bs-btn-hover-border-color: var(--color-nav-dark);
  --bs-btn-active-bg: var(--color-nav-dark);
  --bs-btn-active-border-color: var(--color-nav-dark);
  border-radius: var(--radius-sm);
  font-weight: 500;
  padding: 8px 20px;
}


.topbar {
  padding: 7px 0;
  background: #fff;
  border-bottom: 1px solid rgba(217, 227, 241, .7);
  font-size: 12px;
}

.topbar-links a {
  color: var(--color-muted);
  font-weight: 400;
  margin-left: 0;
}

.topbar-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}


.brandbar {
  background-color: var(--color-card);
  padding: 12px 0;
  border-bottom: 0;
}

.action-link {
  color: var(--color-body);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}


.site-nav {
  background-color: var(--color-nav-dark) !important;
  padding: 0 !important;
  box-shadow: 0 10px 28px rgba(10, 43, 102, .08);
  z-index: 100;
}

.site-nav .navbar-nav {
  width: 100%;
  display: flex;
}

.site-nav .nav-item {
  position: relative;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  font-weight: 800;
  padding: 18px 15px !important;
  text-align: center;
  letter-spacing: .015em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav .nav-submenu-toggle {
  display: none;
}

.site-nav .nav-item.dropdown > .nav-link span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: .8;
}

.site-nav .nav-item:hover > .nav-link,
.site-nav .nav-link:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .08);
}

.site-nav .nav-item.active > .nav-link {
  position: relative;
  color: #ffffff !important;
  background: transparent;
}

.site-nav .nav-item.active > .nav-link::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--color-accent);
}


.site-nav .dropdown-menu {
  --dropdown-accent: var(--color-accent);
  background-color: var(--color-card);
  border: 1px solid var(--color-divider);
  border-top: 3px solid var(--dropdown-accent);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(10, 43, 102, .16);
  margin-top: 0;
  padding: 9px;
  min-width: 210px;
  max-height: none;
  overflow: visible;
}

.site-nav .dropdown-item {
  position: relative;
  color: var(--color-body);
  font-size: 13px;
  line-height: 1.4;
  padding: 7px 14px 7px 28px;
  border-left: 2px solid transparent;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.site-nav .dropdown-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: .45;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.site-nav .dropdown-menu--wide {
  width: 440px;
  min-width: 440px;
  padding: 12px;
  columns: 2;
  column-gap: 24px;
  column-rule: 1px solid #E4E9F1;
}

.site-nav .dropdown-menu--wide > li {
  break-inside: avoid;
}

@media (min-width: 992px) {
  .site-nav .dropdown:hover > .dropdown-menu,
  .site-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
    animation: fadeInMenu .2s ease-out;
  }
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  border-left-color: var(--dropdown-accent);
  background-color: #F3F6FB;
  color: var(--color-primary);
  text-decoration: none;
}

.site-nav .dropdown-item:hover::before,
.site-nav .dropdown-item:focus::before {
  opacity: 1;
  border-color: var(--color-primary);
  transform: translate(2px, -50%) rotate(45deg);
}


.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-nav-dark);
}

.hero-swiper {
  width: 100%;
  height: auto;
}

.hero-slide {
  position: relative;
  display: block;
  height: auto;
  background: var(--color-nav-dark);
}

.notice-title:hover {
  color: var(--color-urgent);
}

.notice-more {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
  white-space: nowrap;
}

.notice-more:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.more-link:hover {
  text-decoration: none;
  color: var(--color-nav-dark);
}

.news-featured-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-nav-dark);
}

.news-featured-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-featured-title a {
  color: var(--color-title);
}

.news-featured-title a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.news-featured-summary {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-meta {
  font-size: 13px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-divider);
  padding-top: 12px;
}

.news-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  min-width: 0;
}

.news-list-title:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.news-new-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  border: 1px solid var(--color-accent);
  background: #FBF8EF;
  color: var(--color-accent-ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  vertical-align: super;
  transform: translateY(-3px);
}

.news-new-badge.is-no {
  display: none;
}

.news-list-title-wrap .news-new-badge {
  margin-left: -5px;
}

.news-list-date {
  font-size: 14px;
  color: var(--color-muted);
  white-space: nowrap;
}

.text-primary {
  color: var(--color-primary) !important;
}

.btn {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 6px;
  font-weight: 600;
}

.topbar-identity {
  color: var(--color-muted);
  letter-spacing: .08em;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-login {
  color: var(--color-primary) !important;
  font-weight: 600 !important;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
  border-left: 0;
  color: var(--color-title);
}

.brand-logo:hover {
  color: var(--color-title);
  text-decoration: none;
}

.brand-menu-toggle {
  display: none;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--color-title);
  font-size: 24px;
  font-weight: 700;

}

.brand-wordmark span {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
}

.header-actions {
  gap: 26px !important;
  color: var(--color-muted);
}

.section-news,
.section-public,
.section-global {
  border: 0 !important;
}


body * {
  border-radius: 0 !important;
}

.btn,
.form-control,
.dropdown-menu,
.offcanvas {
  box-shadow: none !important;
}

h1,
h2 {
  font-family: var(--font-family-display);
  font-weight: 600;
  letter-spacing: .03em;
}

.brand-logo .brand-logo-image {
  display: block;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.action-link + .action-link {
  position: relative;
  padding-left: 24px;
}

.action-link + .action-link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  border-left: 1px solid var(--color-divider);
}

.header-search {
  width: 320px;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(172, 187, 210, .78);
  background: #F8FAFD;
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--color-body);
  font-size: 13px;
  transition: background-color .18s ease;
}

.header-search input:focus {
  background: #FFFFFF;
  outline: none;
  box-shadow: none;
}

.header-search input::placeholder {
  color: #9AA7BA;
}

.header-search button,
.header-search .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 72px;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid rgba(172, 187, 210, .72);
  background: transparent;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}

.header-search .search-submit-icon {
  font-size: 15px;
}

.header-search button:hover,
.header-search button:focus-visible,
.header-search .btn-primary:hover,
.header-search .btn-primary:focus-visible {
  background: #EFF4FB;
  color: var(--color-nav-dark);
}

.site-nav .nav-item--feature > .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 18px;
  padding-inline: 29px !important;
  color: var(--color-accent-on-dark) !important;
  font-weight: 650;
}

.site-nav .nav-item--feature > .nav-submenu-toggle {
  right: 7px;
  color: var(--color-accent-on-dark);
}

.site-nav .nav-item--feature > .nav-link::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  border-left: 1px solid rgba(229, 199, 111, .48);
}

.site-nav .nav-item--feature > .nav-link::after {
  content: "";
  position: absolute;
  right: 29px;
  bottom: 0;
  left: 29px;
  height: 2px;
  background: var(--color-accent);
  opacity: .76;
}

.site-nav .nav-item--feature:hover > .nav-link,
.site-nav .nav-item--feature > .nav-link:focus-visible {
  background: rgba(197, 155, 39, .1);
  color: var(--color-accent-on-dark) !important;
}

.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
  padding-inline: 18px !important;
  color: var(--color-accent-on-dark) !important;
  font-weight: 650;
}

.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"] span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"] span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-nav .navbar-nav > .nav-item:has(> .nav-link[href*="globe/main"]) > .nav-submenu-toggle {
  right: 7px;
  color: var(--color-accent-on-dark);
}

.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"]::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  border-left: 1px solid rgba(229, 199, 111, .48);
}

.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"]::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--color-accent);
  opacity: .76;
}

.site-nav .navbar-nav > .nav-item:hover > .nav-link[href*="globe/main"],
.site-nav .navbar-nav > .nav-item > .nav-link[href*="globe/main"]:focus-visible {
  background: rgba(197, 155, 39, .1);
  color: var(--color-accent-on-dark) !important;
}

.hero-banner-link,
.hero-slide picture {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-banner-link:hover {
  text-decoration: none;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}

.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(10, 43, 102, .58);
  backdrop-filter: blur(5px);
  transform: translateX(-50%);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  top: 50%;
  bottom: auto;
  display: flex;
  width: 48px;
  height: 64px;
  margin: -32px 0 0;
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(10, 43, 102, .48);
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.hero-swiper .swiper-button-prev {
  right: auto;
  left: max(calc((100vw - var(--container-width)) / 2 + 24px), 24px);
}

.hero-swiper .swiper-button-next {
  right: max(calc((100vw - var(--container-width)) / 2 + 24px), 24px);
  left: auto;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 17px;
  font-weight: 400;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  border-color: rgba(229, 199, 111, .7);
  color: var(--color-accent-on-dark);
  background: rgba(10, 43, 102, .72);
}

.hero-controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  width: auto !important;
  padding: 0;
  transform: none;
}

.hero-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 6px !important;
  background: rgba(255, 255, 255, .9);
  opacity: 1;
  transition: width .18s ease, background-color .18s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 22px;
  height: 3px;
  background: var(--color-accent);
}

.service-section {
  position: relative;
  z-index: 4;
  margin-top: 0;
  background: #fff;
}

.service-panel {
  position: relative;
  padding: 57px 0 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.service-panel-label {
  position: static;
  display: block;
  margin: 0 0 29px;
  padding: 0;
  color: var(--color-title);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: .06em;
}

.card-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  align-items: flex-start;
  text-align: center;
  min-height: 120px;
  padding: 25px 25px 23px;
  border: 1px solid var(--color-divider);
  border-right: 0;
  background: #fff;
  color: var(--color-title);
  transition: border-color .2s ease, background .2s ease;
}

.service-panel .col-xl-2:nth-child(1) .card-service {
  background: linear-gradient(145deg, #fff 12%, #f7f8f9 52%, #edf0f2 100%);
}

.service-panel .col-xl-2:nth-child(2) .card-service {
  background: linear-gradient(145deg, #fff 12%, #f8fcfc 52%, #e8f4f3 100%);
}

.service-panel .col-xl-2:nth-child(3) .card-service {
  background: linear-gradient(145deg, #fff 12%, #fafbfc 52%, #edf0f5 100%);
}

.service-panel .col-xl-2:nth-child(4) .card-service {
  background: linear-gradient(145deg, #fff 12%, #fbfaff 52%, #eeeef9 100%);
}

.service-panel .col-xl-2:nth-child(5) .card-service {
  background: linear-gradient(145deg, #fff 12%, #f7f8fa 52%, #ebeef2 100%);
}

.service-panel .col-xl-2:nth-child(6) .card-service {
  background: linear-gradient(145deg, #fff 12%, #fcfbfa 52%, #f3f0ec 100%);
}

.service-panel .col-xl-2:last-child .card-service {
  border-right: 1px solid var(--color-divider);
}

.service-meta,
.card-public-meta,
.global-topic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-meta {
  margin-bottom: 17px;
}

.service-index {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: .22em;
}

.card-service .service-title {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.card-service:hover,
.card-service:focus-visible {
  background: var(--color-page-bg);
  color: var(--color-title);
  border-color: var(--color-primary);
  box-shadow: none;
  text-decoration: none;
}

.card-service:focus-within:not(:focus-visible) {
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  text-decoration: none;
}

.service-panel .col-xl-2:nth-child(1) .card-service:hover,
.service-panel .col-xl-2:nth-child(1) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #f2f3f4 44%, #e0e4e8 100%);
}

.service-panel .col-xl-2:nth-child(2) .card-service:hover,
.service-panel .col-xl-2:nth-child(2) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #eff9f8 44%, #d8ebea 100%);
}

.service-panel .col-xl-2:nth-child(3) .card-service:hover,
.service-panel .col-xl-2:nth-child(3) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #f5f7fa 44%, #e1e7f0 100%);
}

.service-panel .col-xl-2:nth-child(4) .card-service:hover,
.service-panel .col-xl-2:nth-child(4) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #f5f4fc 44%, #dfdff2 100%);
}

.service-panel .col-xl-2:nth-child(5) .card-service:hover,
.service-panel .col-xl-2:nth-child(5) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #f2f3f5 44%, #dee2e8 100%);
}

.service-panel .col-xl-2:nth-child(6) .card-service:hover,
.service-panel .col-xl-2:nth-child(6) .card-service:focus-visible {
  background: linear-gradient(145deg, #fff 0%, #faf8f5 44%, #ebe5dd 100%);
}

.notice-urgent {
  margin: 47px 0 0;
  background: #fff;
}

.notice-row {
  padding: 20px 0;
  border-top: 1px solid var(--color-title);
  border-bottom: 1px solid var(--color-divider);
  background: #fff;
}

.notice-main {
  flex: 1 1 auto;
  min-width: 0;
}

.notice-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-urgent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.notice-title {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 24px;
  color: var(--color-title);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-ticker {
  flex: 1 1 auto;
  min-width: 0;
  height: 24px;
  overflow: hidden;
}

.notice-ticker-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.notice-ticker-item {
  flex: 0 0 24px;
}

.notice-ticker.is-moving .notice-ticker-track {
  transition: transform 450ms ease;
}

.section-news {
  background-color: var(--color-card);
  padding: 86px 0 !important;
}

.section-news + .section-news {
  padding-top: 0 !important;
}

.section-title-bar {
  margin-bottom: 37px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--color-divider) !important;
}

.section-title-bar h2 {
  position: relative;
  margin: 0;
  color: var(--color-title);
  font-size: 38px;
  font-weight: 650;
  letter-spacing: .06em;
}

.section-title-bar h2::after {
  display: none;
}

.more-link {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: flex-end;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.news-featured-card,
.news-panel {
  overflow: hidden;
  border: 0;
  background: #fff;
}

.news-featured-card {
  height: 100%;
}

.news-featured-content {
  padding: 26px 0 0;
}

.news-tag-featured {
  display: inline-block;

  padding: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
}

.news-featured-title {
  margin: 13px 0 13px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
}

.news-panel {
  padding: 0;
}

@media (min-width: 992px) {
  .news-columns,
  .editorial-row {
    --bs-gutter-x: 3.5rem;
  }
}

.news-panel .section-title-bar {
  margin-bottom: 9px !important;
}

.news-panel .section-title-bar h3 {
  color: var(--color-title) !important;
  font-family: var(--font-family-display);
  font-size: 27px !important;
  font-weight: 500 !important;
}

.news-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 19px 0;
  border-bottom: 1px solid var(--color-divider);
}

.news-badge {
  min-width: 42px;
  padding: 0;
  background: transparent !important;
  color: var(--color-muted) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}

.news-badge.badge-urgent {
  color: var(--color-urgent) !important;
}

.news-list-title {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.item-emphasis {
  font-weight: 500;
}

.split-section .section-title-bar h2 {
  font-size: 29px;
}

.column-divider {
  border-right: 1px solid var(--color-divider);
  padding-right: 46px;
}

.column-divider + .col-lg-6 {
  padding-left: 46px;
}


.section-news.split-section {
  padding: 46px 0 52px !important;
}

.editorial-row {
  align-items: stretch;
}

.publication-panel {
  --publication-accent: var(--color-primary);
  --publication-soft: #F1F5FC;
  --publication-line: #D6E1F3;
  padding-top: 18px;
  border-top: 3px solid var(--publication-accent);
}

.publication-panel--list {
  --publication-accent: var(--color-accent);
  --publication-soft: #FBF8EF;
  --publication-line: #E9DFC4;
}

.publication-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--publication-line);
}

.publication-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--publication-accent);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.publication-head h2 {
  margin: 0;
  font-family: var(--font-family-display);
  color: var(--color-title);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: .04em;
}

.publication-head .more-link {
  flex: 0 0 auto;
  margin-bottom: 4px;
  color: var(--publication-accent);
}

.publication-feed {
  display: grid;
}

.publication-item {
  color: var(--color-body);
}

.publication-item:hover {
  color: var(--color-body);
  text-decoration: none;
}

.publication-item-label {
  display: inline-block;
  color: var(--publication-accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  white-space: nowrap;
}

.publication-item-title {
  display: block;
  color: var(--color-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.publication-item:hover .publication-item-title {
  color: var(--publication-accent);
}

.publication-item-summary {
  margin: 0;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.7;
}

.publication-item-date {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
  white-space: nowrap;
}

.publication-feed--feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.publication-feed--feature .publication-item {
  display: grid;
  gap: 10px;
  min-height: 126px;
  padding: 17px 19px;
  border-right: 1px solid var(--publication-line);
  border-bottom: 1px solid var(--publication-line);
}

.publication-feed--feature .publication-item:nth-child(2),
.publication-feed--feature .publication-item:nth-child(3) {
  border-top: 1px solid var(--publication-line);
}

.publication-feed--feature .publication-item:nth-child(even) {
  border-left: 1px solid var(--publication-line);
}

.publication-feed--feature .publication-item:first-child {
  display: block;
  grid-column: 1 / -1;
  min-height: 0;
  margin-bottom: 18px;
  padding: 25px 27px;
  border: 0;
  background: var(--publication-soft);
}

.publication-feed--feature .publication-item:first-child .publication-item-title {
  margin: 13px 0 11px;
  color: var(--color-title);
  font-family: var(--font-family-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
}

.publication-feed--feature .publication-item:first-child .publication-item-summary {
  margin: 0 0 14px;
}

.publication-feed--feature .publication-item:not(:first-child) .publication-item-summary {
  display: none;
}

.publication-feed--feature .publication-item:not(:first-child) .publication-item-date {
  text-align: left;
}

.publication-feed--list {
  padding: 0;
  background: transparent;
}

.publication-feed--list .publication-item {
  display: grid;
  grid-template-columns: 40px 1fr 42px;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--publication-line);
}

.publication-feed--list .publication-item:not(:first-child) .publication-item-title {
  line-height: 1.45;
}

.publication-feed--list .publication-item:last-child {
  border-bottom: 0;
}

.publication-feed--list .publication-item-summary {
  display: none;
}

.publication-feed--list .publication-item-date {
  text-align: right;
}

.publication-feed--list .publication-item:first-child {
  display: block;
  margin-bottom: 18px;
  padding: 24px 22px;
  border: 1px solid var(--publication-line);
  border-left: 3px solid var(--publication-accent);
  background: var(--publication-soft);
}

.publication-feed--list .publication-item:first-child .publication-item-title {
  margin: 14px 0 13px;
  color: var(--color-title);
  font-family: var(--font-family-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.publication-feed--list .publication-item:first-child .publication-item-date {
  text-align: left;
}

.section-public {
  padding: 66px 0 72px !important;
  background: var(--color-nav-dark);
}

.section-public .section-title-bar {
  margin-bottom: 30px;
  border-bottom-color: rgba(255, 255, 255, .18) !important;
}

.section-public .section-title-bar h3 {
  color: #FFFFFF;
}

.section-public .more-link {
  color: var(--color-accent-on-dark);
}

.public-service-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-service-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(229, 199, 111, .4);
  background: transparent;
  color: var(--color-accent-on-dark);
  font-size: 19px;
  transition: border-color .18s ease, background-color .18s ease, opacity .18s ease;
}

.public-service-nav:hover,
.public-service-nav:focus-visible {
  border-color: var(--color-accent-on-dark);
  background: rgba(197, 155, 39, .14);
}

.public-service-nav.swiper-button-disabled {
  opacity: .32;
  cursor: default;
}

.public-service-swiper .swiper-wrapper {
  align-items: stretch;
}

.public-service-swiper .swiper-slide {
  height: auto;
}

.public-service-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.public-service-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  margin: 0 !important;
  background: rgba(255, 255, 255, .3);
  opacity: 1;
  transition: width .18s ease, background-color .18s ease;
}

.public-service-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--color-accent-on-dark);
}

.card-public-service {
  --topic-accent: var(--color-primary);
  --topic-surface: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  padding: 29px 27px 27px;
  border: 1px solid transparent;
  border-top: 4px solid var(--topic-accent);
  background: var(--topic-surface);
  transition: background-color .18s ease, border-color .18s ease;
}

.card-public-index,
.global-topic-index {
  display: block;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: .25em;
}

.card-public-service .card-public-index {
  color: var(--topic-accent);
  opacity: .76;
}

.card-public-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 17px;
}

.card-public-meta {
  margin-bottom: 25px;
}

.card-public-header h3 {
  margin: 0;
  color: var(--color-title);
  font-family: var(--font-family-display);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.45;
}

.card-public-body {
  flex-grow: 1;
  margin-bottom: 27px;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.78;
}

.card-public-footer {
  padding-top: 16px;
  border-top: 1px solid var(--color-divider);
}

.card-public-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--topic-accent) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.card-public-footer .btn::after {
  content: "\2192";
  transition: transform .18s ease;
}

.card-public-service:hover,
.card-public-service:focus-within {
  border-color: var(--topic-accent);
  background: #FFFFFF;
  box-shadow: none;
}

.card-public-service:hover .card-public-footer .btn,
.card-public-service:focus-within .card-public-footer .btn,
.card-public-service .card-public-footer .btn:hover {
  color: var(--topic-accent) !important;
  text-decoration: none;
}

.card-public-service:hover .card-public-footer .btn::after,
.card-public-service:focus-within .card-public-footer .btn::after,
.card-public-footer .btn:hover::after {
  transform: translateX(4px);
}

.section-global {
  padding: 50px 0 74px !important;
  background: var(--color-page-bg);
}


.section-news .section-title-bar h2,
.section-news .section-title-bar h3,
.section-news .section-title-bar h4,
.section-public .section-title-bar h2,
.section-public .section-title-bar h3,
.section-public .section-title-bar h4 {
  margin: 0;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  letter-spacing: .04em;
}

.section-news .publication-head h2,
.section-news .publication-head h3,
.section-news .publication-head h4 {
  margin: 0;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.4;
  letter-spacing: .035em;
}

.section-news .news-featured-title {
  font-size: 21px;
  line-height: 1.55;
}

.section-news .publication-feed--feature .publication-item:first-child .publication-item-title,
.section-news .publication-feed--list .publication-item:first-child .publication-item-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-title);
  font-family: var(--font-family-display);
  font-size: 19px !important;
  font-weight: 650;
  line-height: 1.48;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.section-news .publication-feed--feature .publication-item:first-child .publication-item-title {
  margin: 10px 0 9px;
}

.section-news .publication-feed--list .publication-item:first-child .publication-item-title {
  margin: 10px 0 10px;
}

.section-public .card-public-header h3,
.service-section .service-title {
  font-size: 18px;
  line-height: 1.35;
}

.global-brand-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 55px 44px 42px;
  border-top: 3px solid var(--color-accent);
  color: #FFFFFF;
  background: var(--color-nav-dark);
}

.global-brand-kicker {
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
}

.global-brand-title {
  margin: 26px 0 25px;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.45;
}

.global-brand-desc {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  line-height: 1.6;
}

.global-brand-action {
  color: var(--color-nav-dark);
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
}

.global-brand-action:hover,
.global-brand-action:focus-visible {
  color: var(--color-nav-dark);
  border-color: var(--color-accent-on-dark);
  background: var(--color-accent-on-dark);
  text-decoration: none;
}

.global-topic-card {
  --topic-accent: var(--color-primary);
  --topic-surface: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px 31px;
  border: 1px solid var(--color-divider);
  border-top: 3px solid var(--topic-accent);
  background: var(--topic-surface);
  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.global-topic-card--outbound,
.card-public-service--outbound {
  --topic-accent: #123E91;
  --topic-surface: #F3F6FC;
}

.global-topic-card--talent,
.card-public-service--talent {
  --topic-accent: #39736A;
  --topic-surface: #F1F6F5;
}

.global-topic-card--institution,
.card-public-service--institution {
  --topic-accent: #C59B27;
  --topic-surface: #FBF8EF;
}

.global-topic-card--policy,
.card-public-service--policy {
  --topic-accent: #53627B;
  --topic-surface: #F3F5F7;
}

.global-topic-meta {
  margin-bottom: 23px;
}

.global-topic-card .global-topic-index {
  color: var(--topic-accent);
  opacity: .76;
}

.global-topic-title {
  margin-bottom: 8px;
  font-family: var(--font-family-display);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
}

.global-topic-desc {
  flex-grow: 1;
  margin-bottom: 16px;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.7;
}

.global-topic-card .topic-link {
  color: var(--topic-accent);
  font-size: 14px;
  font-weight: 500;
}

.global-topic-card:hover {
  transform: none;
  border-color: var(--topic-accent);
  background: #FFFFFF;
  box-shadow: none;
}


.inner-page {
  background: var(--color-page-bg);
}

.inner-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  overflow: hidden;
  padding: 42px 0 38px;
  background-color: var(--color-nav-dark);
  background-position: center;
  background-size: cover;
}

.inner-banner--about {
  background-image: url("page_banner01.png");
}

.inner-banner--news {
  background-image: url("page_banner02.png");
  background-position: center 42%;
}

.inner-banner--nav-default,
.inner-banner--nav-home,
.inner-banner--nav-about {
  background-image: url("page_banner01.png");
}

.inner-banner--nav-news {
  background-image: url("page_banner02.png");
  background-position: center 42%;
}

.inner-banner--nav-public {
  background-image: url("page_banner03.png");
}

.inner-banner--nav-party {
  background-image: url("page_banner04.png");
}

.inner-banner--nav-professional {
  background-image: url("page_banner05.png");
}

.inner-banner--nav-member {
  background-image: url("page_banner06.png");
}

.inner-banner--nav-contact {
  background-image: url("page_banner07.png");
}

.inner-banner--nav-global {
  background-image: url("page_banner08.png");
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(10, 43, 102, .92) 0%, rgba(10, 43, 102, .78) 48%, rgba(10, 43, 102, .36) 100%);
}

.inner-banner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0 22%, rgba(197, 155, 39, 0) 22%);
}

.inner-banner .container-site {
  position: relative;
  z-index: 1;
}

.inner-banner h1 {
  margin: 0 0 17px;
  color: #FFFFFF;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  list-style: none;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-nav li:empty {
  display: none;
}

.breadcrumb-nav li + li::before {
  content: "/";
  color: rgba(255, 255, 255, .42);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .72);
}

.breadcrumb-nav a:hover {
  color: var(--color-accent-on-dark);
  text-decoration: none;
}

.inner-content-section {
  padding: 62px 0 80px;
  background: var(--color-page-bg);
}

.inner-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.inner-side {
  position: sticky;
  top: 24px;
}

.inner-side-card {
  border: 1px solid rgba(217, 227, 241, .9);
  border-top: 2px solid var(--color-primary);
  background: #FFFFFF;
}

.inner-side-heading {
  position: relative;
  margin: 0;
  padding: 22px 28px 21px;
  border-bottom: 1px solid rgba(217, 227, 241, .8);
}

.inner-side-toggle {
  display: none;
}

.inner-side-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.inner-side-heading h2 {
  margin: 0;
  color: var(--color-title);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: .04em;
}

.inner-side-nav {
  display: grid;
}

.inner-side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  padding: 0 24px 0 28px;
  border-bottom: 1px solid rgba(217, 227, 241, .62);
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .025em;
}

.inner-side-nav a::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #AAB3C2;
  border-right: 1px solid #AAB3C2;
  transform: rotate(45deg);
  transition: border-color .18s ease, transform .18s ease;
}

.inner-side-nav a:last-child {
  border-bottom: 0;
}

.inner-side-nav a:hover,
.inner-side-nav a:focus-visible {
  color: var(--color-primary);
  background: #F8F9FA;
  text-decoration: none;
}

.inner-side-nav a.active {
  color: var(--color-title);
  background: #FCFBF7;
  font-weight: 600;
}

.inner-side-nav a.active::after {
  border-color: var(--color-accent);
}

.inner-side-nav a:hover::after,
.inner-side-nav a:focus-visible::after {
  border-color: var(--color-primary);
  transform: translateX(2px) rotate(45deg);
}

.inner-side-nav a.active:hover,
.inner-side-nav a.active:focus-visible {
  color: var(--color-title);
  background: #FAF7EE;
}

.inner-side-nav a.active:hover::after,
.inner-side-nav a.active:focus-visible::after {
  border-color: var(--color-accent);
}

.inner-side-nav a.active::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 2px;
  background: var(--color-accent);
}

.inner-article {
  border: 1px solid var(--color-divider);
  background: #FFFFFF;
}

.article-title {
  position: relative;
  padding: 36px 52px 32px;
  border-bottom: 1px solid var(--color-divider);
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 52px;
  width: 72px;
  height: 3px;
  background: var(--color-accent);
}

.article-title span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.article-title h2 {
  margin: 0;
  color: var(--color-title);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.article-content {
  min-height: 480px;
  padding: 46px 52px 56px;
  color: var(--color-body);
  font-size: 16px;
  line-height: 2.05;
  overflow-wrap: break-word;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 1.5em 0 .75em;
  color: var(--color-title);
  font-weight: 700;
  line-height: 1.5;
}

.article-content h1:first-child,
.article-content h2:first-child,
.article-content h3:first-child,
.article-content h4:first-child,
.article-content h5:first-child,
.article-content h6:first-child {
  margin-top: 0;
}

.article-content h1 {
  font-size: 30px;
}

.article-content h2 {
  font-size: 26px;
}

.article-content h3 {
  font-size: 22px;
}

.article-content h4 {
  font-size: 18px;
}

.article-content h5 {
  font-size: 17px;
}

.article-content h6 {
  color: var(--color-muted);
  font-size: 15px;
}

.article-content p {
  margin: 0 0 1.35em;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.35em;
  padding-left: 1.6em;
}

.article-content li {
  margin-bottom: .35em;
  padding-left: .2em;
}

.article-content li::marker {
  color: var(--color-primary);
  font-weight: 600;
}

.article-content strong,
.article-content b {
  color: var(--color-title);
  font-weight: 700;
}

.article-content em,
.article-content i {
  color: var(--color-body);
}

.article-content u {
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-content s,
.article-content del {
  color: var(--color-muted);
}

.article-content small {
  color: var(--color-muted);
  font-size: 13px;
}

.article-content blockquote {
  margin: 1.7em 0;
  padding: 5px 0 5px 24px;
  border-left: 3px solid var(--color-accent);
  color: var(--color-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content hr {
  margin: 2.2em 0;
  border: 0;
  border-top: 1px solid var(--color-divider);
  opacity: 1;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.7em auto;
}

.article-content figure {
  margin: 1.7em 0;
}

.article-content figure img {
  margin: 0 auto;
}

.article-content figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content a:hover,
.article-content a:focus-visible {
  color: var(--color-accent-ink);
}

.article-content table {
  width: 100%;
  margin: 1.7em 0;
  border-collapse: collapse;
  border-top: 2px solid var(--color-primary);
  font-size: 15px;
  line-height: 1.7;
}

.article-content th,
.article-content td {
  padding: 13px 16px;
  border-right: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: left;
  vertical-align: top;
}

.article-content th:first-child,
.article-content td:first-child {
  border-left: 1px solid var(--color-divider);
  white-space: nowrap
}

.article-content th {
  color: var(--color-title);
  background: var(--color-section-blue);
  font-weight: 700;
}

.article-content dl {
  margin: 0 0 1.35em;
}

.article-content dt {
  margin-top: 1em;
  color: var(--color-title);
  font-weight: 700;
}

.article-content dd {
  margin: .25em 0 0;
}

.article-content code {
  padding: .12em .35em;
  color: var(--color-nav-dark);
  background: var(--color-section-blue);
  font-family: Consolas, Monaco, monospace;
  font-size: .9em;
}

.contact-page-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 34px;
  align-items: stretch;
  margin: 0;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(18, 62, 145, .045), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  border: 1px solid var(--color-divider);
  border-top: 4px solid var(--color-primary);
}

.contact-page-main {
  min-width: 0;
}

.contact-page-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-accent-ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.contact-page-card h2 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 30px;
  font-weight: 760;
  line-height: 1.35;
}

.contact-page-lead {
  margin-bottom: 28px !important;
  color: var(--color-muted);
  font-size: 15px;
}

.contact-page-list {
  display: grid;
  gap: 14px;
  margin: 0 !important;
}

.contact-page-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(248, 250, 252, .78);
  border: 1px solid var(--color-divider);
}

.contact-page-row dt {
  margin: 0;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.contact-page-row dd {
  margin: 0;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.75;
}

.contact-page-row a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-page-row a:hover {
  color: var(--color-accent-ink);
  text-decoration: underline;
}

.contact-page-row--phones dd {
  display: grid;
  gap: 8px;
}

.contact-page-row--phones span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.contact-page-row--phones strong {
  min-width: 156px;
  color: var(--color-body);
  font-weight: 650;
}

.contact-page-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  background: var(--color-section-blue);
  border: 1px solid var(--color-divider);
  text-align: center;
}

.contact-qr-box {
  width: 158px;
  height: 158px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(18, 62, 145, .18);
}

.contact-qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.contact-page-qr strong {
  margin-top: 18px;
  color: var(--color-title);
  font-size: 17px;
  font-weight: 750;
}

.contact-page-qr span {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}


.list-search-form {
  display: flex;
  gap: 12px;
  margin: 28px 52px 4px;
  padding: 16px;
  border: 1px solid var(--color-divider);
  background: #F8FAFC;
}

.list-search-form input {
  min-width: 0;
  height: 42px;
  flex: 1;
  padding: 0 15px;
  border: 1px solid #C9D4E3;
  border-radius: 0;
  outline: 0;
  color: var(--color-body);
  background: #FFFFFF;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.list-search-form input::placeholder {
  color: #98A2B3;
}

.list-search-form input:focus {
  border-color: var(--color-accent);
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.list-search-form button {
  min-width: 104px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  color: #FFFFFF;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .18s ease, background-color .18s ease;
}

.list-search-form button:hover,
.list-search-form button:focus-visible {
  border-color: var(--color-nav-dark);
  background: var(--color-nav-dark);
}

.site-search-page {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.75), rgba(255, 255, 255, 0) 260px),
    #ffffff;
}

.site-search-panel {
  margin-bottom: 34px;
  padding: 34px 40px 38px;
  background: #ffffff;
  border: 1px solid var(--color-divider);
  border-top: 4px solid var(--color-primary);
}

.site-search-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.site-search-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-search-heading h2 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 28px;
  font-weight: 760;
  line-height: 1.3;
}

.site-search-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 128px;
  gap: 12px;
}

.site-search-form input,
.site-search-form select,
.site-search-form button {
  height: 46px;
  border-radius: 0;
  font-size: 14px;
}

.site-search-form input,
.site-search-form select {
  min-width: 0;
  padding: 0 15px;
  color: var(--color-body);
  background: #ffffff;
  border: 1px solid #C9D4E3;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.site-search-form input::placeholder {
  color: #98A2B3;
}

.site-search-form input:focus,
.site-search-form select:focus {
  border-color: var(--color-accent);
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.site-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--color-primary);
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 700;
  transition: border-color .18s ease, background-color .18s ease;
}

.site-search-form button:hover,
.site-search-form button:focus-visible {
  border-color: var(--color-nav-dark);
  background: var(--color-nav-dark);
}

.site-search-results {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.site-search-empty {
  margin-bottom: 34px;
  padding: 30px 28px;
  color: var(--color-muted);
  background: #ffffff;
  border: 1px dashed var(--color-divider);
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

.site-search-empty[hidden] {
  display: none;
}

.site-search-result-card {
  position: relative;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--color-divider);
  border-left: 3px solid transparent;
  transition: border-color .18s ease, background-color .18s ease;
}

.site-search-result-card:hover {
  border-color: rgba(18, 62, 145, 0.22);
  border-left-color: var(--color-accent);
  background: #FBFCFE;
}

.site-search-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 650;
}

.site-search-result-meta span {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent-ink);
}

.site-search-result-meta span::before {
  content: "";
  width: 3px;
  height: 11px;
  margin-right: 7px;
  background: var(--color-accent);
}

.site-search-result-card h3 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
}

.site-search-result-card h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.site-search-result-card h3 a:hover,
.site-search-result-action:hover {
  color: var(--color-primary) !important;
}

.site-search-result-card .searchbody {
  margin: 0;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.75;
}

.site-search-result-card font[color="red"] {
  color: var(--color-accent-ink) !important;
  font-weight: 750;
  background: rgba(197, 155, 39, 0.12);
}

.site-search-result-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--color-muted) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.site-search-result-action iconify-icon {
  font-size: 14px;
  transition: transform .18s ease;
}

.site-search-result-action:hover iconify-icon {
  transform: translateX(3px);
}

.site-search-page .list-pagination table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 6px 0;
}

.site-search-page .list-pagination td {
  min-width: 34px;
  height: 34px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.site-search-page .list-pagination .pages,
.site-search-page .list-pagination .pagesnow {
  border: 1px solid var(--color-divider);
  background: #ffffff;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 700;
}

.site-search-page .list-pagination .pagesnow {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.site-search-page .list-pagination .pages a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit !important;
  text-decoration: none !important;
}

.site-search-page .list-pagination .pages:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-ink);
  background: rgba(197, 155, 39, 0.06);
}

.site-search-page .list-pagination img {
  max-width: 24px;
  height: auto;
  opacity: 0.72;
}

.content-list {
  padding: 0 52px;
}

.content-list-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--color-divider);
}

.content-list-item:last-child {
  border-bottom: 0;
}

.content-list-date {
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 64px;
  min-height: 64px;
  padding: 8px 7px 7px;
  border: 1px solid #DCE4EF;
  border-top-color: #AABBD5;
  color: var(--color-muted);
  background: #FFFFFF;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.content-list-date strong {
  color: #355A94;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -.03em;
}

.content-list-date span {
  margin-top: 7px;
  padding-top: 6px;
  border-top: 1px solid #E9EDF3;
  color: #8490A3;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .03em;
}

.content-list-category {
  display: block;
  margin-bottom: 3px;
  color: var(--color-accent-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.content-list-body h3 {
  margin: 0;
  color: var(--color-title);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.42;
}

.content-list-body h3 a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .18s ease;
}

.content-list-body p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-list-item:hover .content-list-body h3 {
  color: var(--color-primary);
}

.content-list-body h3 a:hover,
.content-list-body h3 a:focus-visible {
  text-decoration-line: underline;
}

.party-member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
  padding: 34px 0 40px;
}

.party-member-card {
  min-width: 0;
  border: 1px solid var(--color-divider);
  background: #FFFFFF;
  transition: border-color .18s ease, background-color .18s ease;
}

.party-member-card:hover,
.party-member-card:focus-within {
  border-color: rgba(157, 35, 35, .42);
  background: #FFFCFC;
}

.party-member-link {
  display: block;
  height: 100%;
  padding: 10px 10px 14px;
  color: inherit;
  text-align: center;
  text-decoration: none !important;
}

.party-member-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #F1F4F8;
}

.party-member-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAB4C3;
  background: linear-gradient(145deg, #F5F7FA, #E9EEF4);
}

.party-member-placeholder iconify-icon {
  font-size: 48px;
  stroke-width: 1.25;
}

.party-member-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .22s ease;
}

.party-member-card:hover .party-member-photo img,
.party-member-card:focus-within .party-member-photo img {
  transform: scale(1.025);
}

.party-member-name {
  position: relative;
  display: block;
  margin-top: 13px;
  padding-top: 11px;
  overflow: hidden;
  color: var(--color-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.party-member-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #9D2323;
  transform: translateX(-50%);
}

.list-pagination {
  padding: 30px 52px 42px;
  border-top: 1px solid var(--color-divider);
}

.list-pagination .pagination,
.inner-article > nav .pagination {
  gap: 8px;
  margin: 0;
}

.list-pagination .page-link,
.inner-article > nav .page-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--color-divider);
  border-radius: 0;
  color: var(--color-nav-dark);
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.list-pagination .page-item:first-child .page-link,
.list-pagination .page-item:last-child .page-link,
.inner-article > nav .page-item:first-child .page-link,
.inner-article > nav .page-item:last-child .page-link {
  width: auto;
  padding: 0 15px;
  border-radius: 0;
}

.list-pagination .page-link:hover,
.list-pagination .page-link:focus-visible,
.inner-article > nav .page-link:hover,
.inner-article > nav .page-link:focus-visible {
  z-index: 1;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F3F6FC;
  text-decoration: none;
  outline: none;
}

.list-pagination .page-item.active .page-link,
.inner-article > nav .page-item.active .page-link {
  position: relative;
  border-color: var(--color-nav-dark);
  color: #FFFFFF;
  background: var(--color-nav-dark);
}

.list-pagination .page-item.active .page-link::before,
.inner-article > nav .page-item.active .page-link::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--color-accent);
}

.list-pagination .page-item.disabled .page-link,
.inner-article > nav .page-item.disabled .page-link {
  border-color: #E4EAF3;
  color: #A8B1C1;
  background: #F8FAFC;
}


.news-detail-header {
  position: relative;
  padding: 38px 52px 30px;
  border-bottom: 1px solid var(--color-divider);
}

.news-detail-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 52px;
  width: 72px;
  height: 3px;
  background: var(--color-accent);
}

.news-detail-category {
  display: block;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.news-detail-header h1 {
  max-width: 880px;
  margin: 0;
  color: var(--color-title);
  font-size: 30px;
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: 0;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-detail-meta span + span {
  position: relative;
}

.news-detail-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 2px;
  height: 2px;
  background: #AAB4C3;
  transform: translateY(-50%);
}

.news-detail-content {
  min-height: 520px;
}

.news-detail-content > p {
  text-indent: 2em;
}

.news-detail-content > p:first-child {
  color: var(--color-title);
}

.article-sibling-links {
  margin: 0 52px 34px;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.article-sibling-links a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.article-sibling-links a + a {
  border-top: 1px solid var(--color-divider);
}

.article-sibling-links a.is-disabled {
  color: var(--color-muted);
  cursor: default;
  pointer-events: none;
}

.article-sibling-links span {
  color: var(--color-muted);
  font-size: 12px;
}

.article-sibling-links strong {
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-sibling-links a:hover strong,
.article-sibling-links a:focus-visible strong {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


.channel-index-section {
  padding: 28px 0 80px;
  background: #FFFFFF;
}

.channel-index-top {
  border: 1px solid #E1E7F0;
  background: #F6F8FB;
}

.channel-breadcrumb {
  margin: 0 0 4px;
}

.channel-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  list-style: none;
}

.channel-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.channel-breadcrumb li + li::before {
  content: "/";
  color: #AAB3C2;
}

.channel-breadcrumb a {
  color: var(--color-muted);
}

.channel-breadcrumb a:hover,
.channel-breadcrumb a:focus-visible {
  color: var(--color-primary);
}

.channel-index-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 104px;
  padding: 24px 32px 22px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-index-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.channel-index-heading h1 {
  margin: 0;
  color: var(--color-title);
  font-size: 31px;
  font-weight: 750;
  line-height: 1.3;
}

.channel-index-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin: 0;
  padding: 0 32px;
  background: rgba(255, 255, 255, .38);
}

.channel-index-nav a {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 2px;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 600;
}

.channel-index-nav a:hover,
.channel-index-nav a:focus-visible {
  color: var(--color-primary);
  background: transparent;
}

.channel-index-nav a.active {
  color: var(--color-accent-ink);
  background: transparent;
}

.channel-index-nav a.active:hover,
.channel-index-nav a.active:focus-visible {
  color: var(--color-accent-ink);
}

.channel-index-nav a.active::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 0;
  left: 2px;
  height: 3px;
  background: var(--color-accent);
}

.channel-index-content {
  padding: 42px 0 0;
}

.channel-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 32px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-feature-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E9EEF5;
}

.channel-feature-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(5, 23, 54, 0) 0%, rgba(5, 23, 54, .9) 100%);
}

.channel-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.channel-feature:hover .channel-feature-image img {
  transform: scale(1.015);
}

.channel-feature-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px 25px;
  color: #FFFFFF;
}

.channel-feature-category {
  display: block;
  margin-bottom: 5px;
  color: #E8CD83;
  font-size: 11px;
  font-weight: 700;
}

.channel-feature-overlay strong {
  margin: 0;
  color: #FFFFFF;
  font-size: 23px;
  font-weight: 750;
  line-height: 1.45;
}

.channel-feature-overlay time {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
}

.channel-brief {
  border-top: 2px solid var(--color-primary);
}

.channel-brief-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-brief-heading h3 {
  margin: 0;
  color: var(--color-title);
  font-size: 19px;
  font-weight: 700;
}

.channel-brief-heading a,
.channel-block-heading a {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
}

.channel-brief-list,
.channel-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.channel-brief-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--color-divider);
}

.channel-brief-list a {
  display: block;
  color: var(--color-title);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.channel-brief-list a:hover,
.channel-brief-list a:focus-visible,
.channel-block-list a:hover,
.channel-block-list a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.channel-brief-list time {
  display: block;
  margin-top: 5px;
  color: #8490A3;
  font-size: 11px;
}

.channel-block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 34px;
  padding-top: 42px;
}

.channel-block {
  --channel-accent: var(--color-primary);
  border-top: 3px solid var(--channel-accent);
}

.channel-block--gold {
  --channel-accent: var(--color-accent);
}

.channel-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-block-heading h3 {
  margin: 0;
  color: var(--color-title);
  font-size: 20px;
  font-weight: 700;
}

.channel-block--gold .channel-block-heading a {
  color: var(--color-accent-ink);
}

.channel-block-lead {
  padding: 20px 0 17px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-block-lead h4 {
  margin: 0;
  color: var(--color-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.channel-block-lead h4 a {
  color: inherit;
}

.channel-block-lead p {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.channel-block-lead time {
  display: block;
  margin-top: 9px;
  color: #8490A3;
  font-size: 11px;
}

.channel-block-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--color-divider);
}

.channel-block-list a {
  overflow: hidden;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-block-list time {
  color: #8490A3;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.article-tools {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 52px 19px;
  border-top: 1px solid rgba(217, 227, 241, .72);
  background: #FFFFFF;
}

.article-tools-primary,
.article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}

.article-tool-button,
.article-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}

.article-tool-button:hover,
.article-tool-button:focus-visible,
.article-share-button:hover,
.article-share-button:focus-visible {
  background: rgba(244, 245, 246, .85);
  color: var(--color-primary);
  outline: 0;
}

.article-share-label {
  margin-right: 7px;
  color: #8B95A7;
  font-size: 11px;
  letter-spacing: .06em;
}

.article-share-button--top {
  position: relative;
  margin-left: 8px;
  padding-left: 14px;
}

.article-share-button--top::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  border-left: 1px solid var(--color-divider);
}

.article-tool-status {
  position: absolute;
  right: 52px;
  bottom: 1px;
  margin: 0;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.4;
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--color-section-blue);
  color: var(--color-primary);
}

@media print {
  .site-header,
  .inner-banner,
  .inner-side,
  .article-tools,
  .site-footer {
    display: none !important;
  }

  body,
  .inner-page,
  .inner-content-section {
    background: #FFFFFF !important;
  }

  .inner-content-section {
    padding: 0 !important;
  }

  .container-site {
    max-width: none;
    padding: 0;
  }

  .inner-layout {
    display: block;
  }

  .inner-article {
    border: 0;
  }

  .article-title,
  .article-content {
    padding-right: 0;
    padding-left: 0;
  }

  .article-content a {
    color: inherit;
  }
}

.site-footer {
  border-top: 0;
  background: var(--color-nav-dark);
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-top {
  padding: 62px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-grid {
  align-items: stretch;
}

.footer-brand {
  padding-right: 42px;
}

.footer-panel + .footer-panel {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.footer-logo {
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0 0 31px;
  padding: 0;
  background: transparent;
  color: #FFFFFF;
}

.footer-logo:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 3px solid var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-family-base);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: .15em;
}

.footer-wordmark small {
  margin-top: 11px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
}

.footer-desc {
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  line-height: 2;
}

.footer-nav-column,
.footer-contact {
  padding-top: 7px;
}

.footer-nav-column {
  padding-right: 36px;
  padding-left: 36px;
}

.footer-title {
  position: relative;
  margin: 0 0 28px;
  padding-top: 16px;
  border-top: 2px solid rgba(255, 255, 255, .24);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .08em;
}

.footer-contact {
  padding-left: 36px;
}

.footer-contact .footer-title {
  border-top-color: var(--color-accent);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-subtitle {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
}

.footer-subtitle--friend {
  margin-top: 28px;
}

.footer-link-dropdown {
  position: relative;
  z-index: 1;
}

.footer-link-dropdown summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  letter-spacing: .08em;
  list-style: none;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.footer-link-dropdown summary::-webkit-details-marker {
  display: none;
}

.footer-link-dropdown summary:hover,
.footer-link-dropdown[open] summary {
  border-color: var(--color-accent);
  color: #FFFFFF;
}

.footer-link-toggle {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
}

.footer-link-toggle::before,
.footer-link-toggle::after {
  content: "";
  position: absolute;
  background: var(--color-accent-on-dark);
}

.footer-link-toggle::before {
  top: 6px;
  left: 0;
  width: 13px;
  height: 1px;
}

.footer-link-toggle::after {
  top: 0;
  left: 6px;
  width: 1px;
  height: 13px;
  transition: transform .18s ease;
}

.footer-link-dropdown[open] .footer-link-toggle::after {
  transform: rotate(90deg);
}

.footer-link-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--color-nav-dark);
  box-shadow: 0 -12px 28px rgba(3, 20, 51, .28);
  list-style: none;
}

.footer-link-options a {
  display: block;
  padding: 13px 17px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.footer-link-options a:hover,
.footer-link-options a:focus-visible {
  color: var(--color-accent-on-dark);
  background: rgba(255, 255, 255, .05);
  text-decoration: none;
}

.contact-info {
  display: grid;
  gap: 19px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 19px;
  margin: 0;
}

.contact-info dt {
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
}

.contact-info dd {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.8;
}

.contact-info a {
  color: rgba(255, 255, 255, .82);
}

.contact-info a:hover {
  color: var(--color-accent-on-dark);
  text-decoration: none;
}

.contact-phone-list {
  display: grid;
  gap: 9px;
}

.contact-phone-item {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-phone-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-bottom {
  padding: 22px 0;
  font-size: 13px;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .04em;
}

.footer-icp {
  margin-left: 20px;
  color: rgba(255, 255, 255, .62);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  margin-right: 0;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}


.site-quick-links {
  position: fixed;
  right: 8px;
  top: 58%;
  z-index: 980;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 43, 102, .96);
  transform: translateY(-50%);
}

.site-quick-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: rgba(255, 255, 255, .86);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}

.site-quick-link:last-child {
  border-bottom: 0;
}

.site-quick-link iconify-icon {
  font-size: 21px;
  line-height: 1;
}

.site-quick-link > span:not(.site-quick-qr) {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  min-width: 96px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(10, 43, 102, .96);
  border-left: 2px solid var(--color-accent);
  opacity: 0;
  pointer-events: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transform: translate(8px, -50%);
  transition: opacity .18s ease, transform .18s ease;
}

.site-quick-link:hover,
.site-quick-link:focus-visible {
  color: var(--color-nav-dark);
  background: var(--color-accent);
  text-decoration: none;
}

.site-quick-link:hover > span:not(.site-quick-qr),
.site-quick-link:focus-visible > span:not(.site-quick-qr) {
  color: #ffffff;
  opacity: 1;
  transform: translate(0, -50%);
}

.site-quick-link--wechat {
  font-family: inherit;
}

.site-quick-qr {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  gap: 8px;
  width: 138px;
  padding: 12px;
  color: var(--color-title);
  background: #ffffff;
  border: 1px solid rgba(10, 43, 102, .16);
  border-top: 3px solid var(--color-accent);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity .18s ease, transform .18s ease;
}

.site-quick-qr::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-top: 1px solid rgba(10, 43, 102, .16);
  border-right: 1px solid rgba(10, 43, 102, .16);
  transform: translateY(-50%) rotate(45deg);
}

.site-quick-qr img {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.site-quick-qr strong {
  color: var(--color-title);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.site-quick-link--wechat:hover .site-quick-qr,
.site-quick-link--wechat:focus-visible .site-quick-qr {
  opacity: 1;
  transform: translate(0, -50%);
}


.section-ad {
  background: transparent !important;
  padding: 20px 0 0;
}


.section-ad a,
.ad-banner-link {
  display: block !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: transform 0.3s ease !important;
}


.section-ad img,
.ad-banner-img {
  display: block !important;
  object-fit: cover !important;
  max-height: 150px !important;
  width: 100% !important;
  filter: brightness(1) !important;
  transition: filter 0.3s ease !important;
}


.section-ad a:hover img,
.ad-banner-link:hover .ad-banner-img,
.ad-banner-link:hover img {
  filter: brightness(1.08) !important;
}


.section-ad a:active img,
.ad-banner-link:active img {
  filter: brightness(0.95) !important;
}

@media (max-width: 767.98px) {
  .section-ad {
    padding: 24px 0 8px 0;
  }
  .section-ad img,
  .ad-banner-img {
    max-height: 100px !important;
  }
}

*,
*::before,
*::after,
.btn,
.form-control,
.card,
.card-public-service,
.card-service,
.dropdown-menu,
.swiper-slide,
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet,
.offcanvas,
.badge,
.notice-tag,
iconify-icon,
img,
a {
  border-radius: 0px !important;
}

#list-title a{
  color: #101828 !important;
}
