:root {
  --red: #d50000;
  --deep-red: #c40000;
  --brand-blue: #0456a3;
  --text: #222;
  --muted: #8a8f99;
  --line: #e5e5e5;
  --soft-line: #eeeeee;
  --footer: #f3f3f3;
  --notice: #fff3d8;
  --wrap: 1216px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  background: #fff;
  font: 14px/1.6 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--deep-red);
}

.page-wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

.preview-notice {
  height: 45px;
  color: #ff8e1e;
  background: var(--notice);
  text-align: center;
  font-size: 12px;
  line-height: 45px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 16px;
}

.preview-notice a {
  color: #5874d8;
  text-decoration: underline;
}

.site-header {
  background: url("../images/top.jpg") no-repeat; background-size:cover;
}

.header-wrap {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
}

.header-org {
  flex: 0 0 420px;
  border-right: 1px solid rgba(255, 255, 255, .34);
  padding-right: 30px;    color: var(--red);
}

.org-name {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.show-name {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.3;
}
video{    width: 100%;
    height: auto;}
.header-title {
  flex: 1;    color: var(--red);
  font-size: 23px;
  line-height: 1.35;
  font-weight: 700;
  text-align: right;
}

.site-nav {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, var(--red) 0, var(--red) 100%);
}

.nav-wrap {
  display: flex;
  min-height: 50px;
  align-items: stretch;
  overflow: visible;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  display: flex;
  min-width: 112px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.nav-link:hover {
  color: #fff;
  background: #b90000;
}

.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link {
  color: var(--red);
  background: #fff;
}

.nav-link.active {
  color: var(--red);
  background: #fff;
}

.nav-link.active-page {
  color: #fff;
  background: var(--red);
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  left: 50%;
  z-index: 30;
  display: none;
  min-width: 122px;
  padding-top: 10px;
  transform: translateX(-50%);
}

.nav-dropdown::before {
  position: absolute;
  left: 50%;
  top: 2px;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--red);
  border-left: 6px solid transparent;
  transform: translateX(-50%);
  content: "";
}

.nav-dropdown a {
  display: flex;
  min-width: 122px;
  max-width: 260px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.nav-dropdown a + a {
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.nav-dropdown a:hover {
  color: #fff;
  background: #b90000;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}

.main-layout {
  display: grid;
  grid-template-columns: 1.22fr 1.18fr 1fr;
  gap: 20px 12px;
  padding: 20px 0 4px;
}

.module {
  min-width: 0;
  background: #fff;
}

.module-head {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
}

.module-head h2 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: var(--red);
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}

.module-head h2::before {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 5px;
  height: 17px;
  margin-top: -8.5px;
  background: var(--red);
  content: "";
}

.module-head.has-more > a {
  padding-right: 14px;
  color: #4b4f58;
  font-size: 14px;
  line-height: 34px;
}

.intro-placeholder {
  height: 300px;
  margin-top: 8px;
  border: 8px solid #f8f8f8;
  background: #f1f1f1 url("../img/placeholder.svg") center / 55% auto no-repeat;
}

.intro-summary {
  position: relative;
  min-height: 300px;
  margin-top: 8px;
  border: 1px solid #eeeeee;
  padding: 28px 34px;
  background: #fafafa;
}

.intro-text {
  color: #333;
  font-size: 16px;
  line-height: 2;
  text-indent: 2em;
}

.intro-more {
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--deep-red);
  font-size: 13px;
  text-transform: uppercase;
}

.intro-module {
  grid-column: 1 / 3;
}

.declaration-module {
  grid-column: 3;
}

.news-list {
  list-style: none;
  margin: 12px 12px 0;
  padding: 0;
}

.news-list li {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--soft-line);
}

.news-list a {
  min-width: 0;
  overflow: hidden;
  color: #222;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list a:hover {
  color: var(--deep-red);
}

.news-list time {
  flex: 0 0 auto;
  color: var(--muted);
}

.report-module,
.support-module,
.video-module {
  margin-top: 0;
}

.report-module {
  grid-column: 1;
  grid-row: 2;
}

.support-module {
  grid-column: 2;
  grid-row: 2;
}

.video-module {
  grid-column: 3;
  grid-row: 2;
}

.video-module .module-head h2::before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--red);
  background: transparent;
}

.video-thumb {
  position: relative;
  display: block;
  height: 260px;
  margin-top: 8px;
  overflow: hidden;
  border-top: 1px solid #666;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 68% 22%, rgba(255, 241, 196, .95), rgba(255, 241, 196, 0) 28%),
    radial-gradient(circle at 38% 60%, rgba(255, 225, 127, .85), rgba(255, 225, 127, 0) 35%),
    linear-gradient(135deg, #fff8d9 0%, #f4c68e 42%, #fff4cf 74%, #f1d29e 100%);
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .18);
  content: "";
}

.play-button {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(108, 111, 101, .64);
  transform: translate(-50%, -50%);
}

.play-button::before {
  position: absolute;
  left: 24px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  content: "";
}

.site-footer {
  min-height: 132px;
  margin-top: 0;
  padding-top: 75px;
  color: #b0b0b0;
  background: var(--footer);
  text-align: center;
}

.footer-line {
  height: 1px;
  margin: 0 40px 15px;
  background: #e9e9e9;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer a,
.site-footer strong {
  color: #b0b0b0;
  font-weight: 400;
}

.site-footer span {
  margin: 0 5px;
}

.list-page {
  padding-top: 24px;
}

.subpage-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 36px;
}

.side-nav {
  align-self: start;
  margin-top: 38px;
  background: #f6f6f6;
}

.side-nav-title {    border-bottom: 1px solid #fff;
  min-height: 78px;
  padding: 20px 18px;
  color: #fff;
  background: var(--deep-red);
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
}

.side-nav nav {
  display: block;
}

.side-nav a {
  display: block;
  min-height: 58px;
  padding: 18px 10px;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
  background: #f3f3f3;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.side-nav a:hover,
.side-nav a.active {
  color: #fff;
  background: var(--deep-red);
}

.subpage-main {
  min-width: 0;
}

.list-panel {
  min-height: 320px;
}

.list-panel .module-head {
  margin: 0 12px;
}

.catalog-list {
  list-style: none;
  margin: 10px 22px 0;
  padding: 0;
}

.catalog-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px 96px;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px dashed #e1e1e1;
  column-gap: 10px;
}

.catalog-title {
  overflow: hidden;
  color: #39404a;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-type {
  color: #39404a;
  text-align: right;
  white-space: nowrap;
}

.catalog-list time {
  color: #39404a;
  text-align: right;
  white-space: nowrap;
}

.pager {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 20px 30px 48px;
  color: #39404a;
}

.pager span {
  color: var(--red);
}

.breadcrumb {
  height: 32px;
  margin: 18px 0 10px;
  padding-right: 68px;
  color: #39404a;
  background: #fff;
  text-align: right;
  font-size: 13px;
  line-height: 32px;
}

.breadcrumb span,
.breadcrumb a {
  margin-left: 6px;
}

.list-footer {
  min-height: 132px;
  margin-top: 0;
  padding-top: 80px;
}

.detail-page {
  background: #fff;
}

.detail-breadcrumb {
  height: 38px;
  padding-right: 68px;
  color: #39404a;
  background: #fff;
  text-align: right;
  font-size: 13px;
  line-height: 38px;
}

.detail-breadcrumb span,
.detail-breadcrumb a {
  margin-left: 6px;
}

.detail-panel {
  min-height: 900px;
  padding: 0 0 68px;
  background: #fff;
}

.detail-top-marker {
  height: 52px;
  border-top: 1px solid #d5d5d5;
}

.detail-top-marker::before {
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid var(--red);
  transform: translate(-14px, -28px);
  content: "";
}

.article-header {
  border-bottom: 1px solid #ededed;
  padding: 22px 0 24px;
  text-align: center;
}

.article-header h2 {
  margin: 0;
      color: var(--red); 
  font-size: 30px;
  line-height: 1.4;
  font-weight: 400;
}

.article-header p {
  margin: 0;
  color: #9ba3ad;
  font-size: 13px;
}

.pdf-viewer {
  margin: 30px 0 52px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  background: #fff;
}

.pdf-viewer iframe,
.pdf-viewer embed,
.pdf-viewer object {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.pdf-viewer.no-download-pdf {
  border: 0;
  background: transparent;
}

.pdf-inline-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #fff;
}

.no-download-pdf {
  -webkit-user-select: none;
  user-select: none;
}

.pdf-toolbar {
  display: flex;
  height: 36px;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  color: #333;
  background: #f2f2f2;
  font-size: 13px;
}

.pdf-icon {
  display: flex;
  width: 13px;
  height: 14px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  color: #fff;
  background: #d93b3b;
  font-size: 9px;
  line-height: 1;
}

.pdf-name {
  margin-left: 6px;
}

.pdf-body {
  height: 465px;
  background: #fff;
}

.pdf-footer {
  height: 35px;
  border-top: 1px solid #dcdcdc;
  background: #f7f7f7;
  text-align: right;
}

.expand-icon {
  display: inline-block;
  margin: 7px 18px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 1;
  transform: rotate(45deg);
}

.share-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px dashed #eeeeee;
  padding-top: 28px;
  color: #333;
}

.share-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.share-icon:hover {
  color: #fff;
}

.share-icon.wx { background: #35c53b; }
.share-icon.wb { background: #ff3b47; }
.share-icon.qq { background: #268df0; }
.share-icon.qz { background: #ffb722; }
.share-icon.db { background: #03bf26; }
.share-icon.tb { background: #2f83f7; }

.detail-footer {
  margin-top: 0;
}

@media (max-width: 860px) {
  .page-wrap {
    width: min(100% - 24px, var(--wrap));
  }

  .preview-notice {
    height: auto;
    min-height: 36px;
    line-height: 1.5;
    white-space: normal;
    padding: 8px 12px;
  }

  .site-header {
    height: auto;
  }

  .header-wrap {
    display: block;
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .header-org {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .org-name {
    font-size: 24px;
  }

  .show-name {
    font-size: 16px;
  }

  .header-title {
    margin-top: 12px;
    font-size: 20px;
    text-align: left;
  }

  .nav-wrap {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0 12px;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .nav-link {
    min-width: 96px;
    font-size: 15px;
  }

  .nav-dropdown {
    top: 50px;
    left: 0;
    transform: none;
  }

  .nav-dropdown::before {
    left: 48px;
  }

  .main-layout {
    display: block;
    padding-top: 16px;
  }

  .module + .module {
    margin-top: 18px;
  }

  .report-module,
  .support-module {
    width: auto;
    margin-left: 0;
  }

  .intro-placeholder {
    height: clamp(180px, 52vw, 300px);
    background-size: 72% auto;
  }

  .video-thumb {
    height: clamp(190px, 58vw, 260px);
  }

  .site-footer {
    margin-top: 28px;
    padding-top: 36px;
  }

  .list-page {
    padding-top: 16px;
  }

  .subpage-layout {
    display: block;
  }

  .side-nav {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .side-nav-title {
    min-height: 0;
    font-size: 22px;
  }

  .catalog-list {
    margin: 8px 8px 0;
  }

  .catalog-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 60px;
    padding: 8px 0;
  }

  .catalog-title {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .catalog-type {
    text-align: left;
  }

  .breadcrumb {
    padding-right: 12px;
  }

  .list-footer {
    margin-top: 0;
  }

  .detail-breadcrumb {
    padding-right: 12px;
  }

  .detail-panel {
    min-height: 0;
    padding: 0 12px 36px;
  }

  .detail-top-marker {
    height: 36px;
  }

  .article-header h2 {
    font-size: 22px;
  }

  .pdf-viewer {
    margin: 28px 0 36px;
  }

  .pdf-body {
    height: 360px;
  }

  .pdf-viewer iframe,
  .pdf-viewer embed,
  .pdf-viewer object {
    min-height: 520px;
  }

  .pdf-inline-frame {
    height: 560px;
  }

  .share-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 13px;
  }

  .org-name {
    font-size: 22px;
  }

  .header-title {
    font-size: 18px;
  }

  .news-list {
    margin: 8px 8px 0;
  }

  .news-list li {
    display: block;
    min-height: 58px;
    padding: 10px 0 8px;
  }

  .news-list a {
    display: block;
    white-space: normal;
  }

  .news-list time {
    display: block;
    margin-top: 2px;
    font-size: 12px;
  }

  .module-head h2 {
    font-size: 15px;
  }
}
