* {
  box-sizing: border-box;
}

body.article-page {
  margin: 0;
  font-family: "Microsoft YaHei", SimSun, sans-serif;
  font-size: 14px;
  color: #24323d;
  background: #fff;
}

body.article-page ul,
body.article-page li {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.article-page a {
  color: inherit;
  text-decoration: none;
}

body.article-page button,
body.article-page input {
  font: inherit;
}

body.article-page .mt-20 {
  margin-top: 20px;
}

body.article-page .wrap {
  margin: 0 auto;
}

body.article-page .gov-header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body.article-page .gov-logo {
  flex-shrink: 0;
}

body.article-page .gov-title-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.article-page .nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

body.article-page .nav li {
  list-style: none;
}

body.article-page .page-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.article-page .breadcrumb {
  padding: 0 0 18px;
  margin: 0 0 20px;
  border-bottom: 1px solid #e8edf3;
  font-size: 12px;
  color: #7d8a96;
}

body.article-page .breadcrumb a {
  color: #5f7282;
}

body.article-page .page-header {
  padding: 28px 30px;
  margin-bottom: 24px;
  border: 1px solid var(--page-border, #dbe8f1);
  border-top: 4px solid var(--page-accent, #0967a9);
  background:
    linear-gradient(135deg, var(--page-accent-soft, rgba(9, 103, 169, 0.12)) 0%, #ffffff 56%);
}

body.article-page .page-header h1 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  color: var(--page-accent-dark, #0b4d89);
}

body.article-page .page-header p {
  margin: 0;
  color: #60717f;
  font-size: 15px;
  line-height: 1.7;
}

body.article-page .content-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

body.article-page .filter-rail {
  width: 290px;
  flex-shrink: 0;
}

body.article-page .content-main {
  flex: 1;
  min-width: 0;
}

body.article-page .rail-card,
body.article-page .video-panel,
body.article-page .article-card {
  border: 1px solid #e5ebf2;
  background: #fff;
}

body.article-page .rail-card {
  overflow: hidden;
}

body.article-page .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #f7fafc;
  border-bottom: 1px solid #e8edf3;
}

body.article-page .panel-heading h2,
body.article-page .list-heading h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #1d2c38;
}

body.article-page .panel-heading span,
body.article-page .panel-heading small,
body.article-page .list-heading p,
body.article-page .video-card-meta,
body.article-page .article-meta,
body.article-page .page-info {
  color: #7a8793;
}

body.article-page .filter-list {
  padding: 10px;
}

body.article-page .filter-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border: 1px solid #edf1f6;
  background: #fff;
  color: #29404f;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.article-page .filter-item:last-child {
  margin-bottom: 0;
}

body.article-page .filter-item:hover {
  border-color: var(--page-accent, #0967a9);
  background: var(--page-accent-soft, rgba(9, 103, 169, 0.08));
}

body.article-page .filter-item.active {
  border-color: var(--page-accent, #0967a9);
  background: var(--page-accent-soft, rgba(9, 103, 169, 0.12));
  color: var(--page-accent-dark, #0b4d89);
  box-shadow: inset 3px 0 0 var(--page-accent, #0967a9);
}

body.article-page .filter-icon,
body.article-page .video-card-play,
body.article-page .article-fallback-icon,
body.article-page .video-fallback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.article-page .filter-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--page-accent, #0967a9);
  flex-shrink: 0;
}

body.article-page .filter-icon svg,
body.article-page .video-card-play svg,
body.article-page .article-fallback-icon svg,
body.article-page .video-fallback-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.article-page .filter-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body.article-page .filter-text strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

body.article-page .filter-text span {
  font-size: 12px;
  line-height: 1.4;
  color: #7f8d98;
}

body.article-page .video-panel {
  margin-top: 22px;
  overflow: hidden;
}

body.article-page .video-list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.article-page .video-card {
  display: block;
  border: 1px solid #edf1f6;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.article-page .video-card:hover {
  transform: translateY(-2px);
  border-color: var(--page-accent, #0967a9);
  box-shadow: 0 8px 18px rgba(17, 51, 84, 0.08);
}

body.article-page .video-card-cover {
  position: relative;
  height: 126px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f5f99 0%, #65a8d3 100%);
}

body.article-page .video-card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.article-page .video-card-play {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--page-accent, #0967a9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

body.article-page .video-card-body {
  padding: 10px 12px 12px;
}

body.article-page .video-card-title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #1d2c38;
}

body.article-page .video-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  line-height: 1.4;
}

body.article-page .list-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--page-accent, #0967a9);
}

body.article-page .list-heading p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

body.article-page .list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  height: 34px;
  padding: 0 14px;
  background: var(--page-accent-soft, rgba(9, 103, 169, 0.12));
  color: var(--page-accent-dark, #0b4d89);
  font-size: 13px;
  font-weight: 700;
}

body.article-page .article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.article-page .article-grid.is-empty {
  grid-template-columns: minmax(0, 1fr);
}

body.article-page .article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.article-page .article-card:hover {
  transform: translateY(-2px);
  border-color: var(--page-accent, #0967a9);
  box-shadow: 0 10px 22px rgba(17, 51, 84, 0.08);
}

body.article-page .article-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--page-accent, #0967a9) 0%, #9cc5e5 100%);
}

body.article-page .article-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.article-page .article-cover-fallback,
body.article-page .video-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #fff;
  padding: 18px;
}

body.article-page .article-fallback-icon,
body.article-page .video-fallback-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

body.article-page .article-fallback-text,
body.article-page .video-fallback-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

body.article-page .article-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

body.article-page .article-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  padding: 5px 12px;
  background: var(--page-accent-soft, rgba(9, 103, 169, 0.12));
  color: var(--page-accent-dark, #0b4d89);
  font-size: 12px;
  font-weight: 700;
}

body.article-page .article-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #14202a;
}

body.article-page .article-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #5f6f7c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.article-page .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
  line-height: 1.4;
  margin-top: auto;
}

body.article-page .article-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--page-accent-dark, #0b4d89);
}

body.article-page .article-action::after {
  content: ">";
  font-size: 12px;
}

body.article-page .article-empty {
  padding: 64px 24px;
  border: 1px dashed #d9e3ec;
  background: #fbfdff;
  text-align: center;
  color: #7f8c97;
  line-height: 1.8;
}

body.article-page .list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

body.article-page .page-btn {
  min-width: 88px;
  height: 36px;
  border: 1px solid #d8e1ea;
  background: #fff;
  color: #29404f;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.article-page .page-btn:hover:not(:disabled) {
  border-color: var(--page-accent, #0967a9);
  color: var(--page-accent-dark, #0b4d89);
}

body.article-page .page-btn:disabled {
  color: #a6b0b9;
  background: #f5f7fa;
  cursor: not-allowed;
}

body.article-page .floating-widget {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
}

body.article-page .floating-qrcode {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.article-page .floating-qrcode img {
  width: 120px;
  height: 120px;
}

body.article-page .floating-qrcode p {
  margin: 10px 0 0;
  font-size: 13px;
  color: #333;
  font-weight: 700;
}

body.article-page .back-to-top {
  display: block;
  width: 50px;
  height: 50px;
  margin: 15px auto 0;
  background: #1976d2;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
}

body.article-page .back-to-top:hover {
  background: #d53737;
  color: #fff;
}

body.article-page .footer {
  font-size: 12px;
}

body.article-page .footer-links {
  text-align: center;
}

body.article-page .copyright {
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  body.article-page .content-layout {
    flex-direction: column;
  }

  body.article-page .filter-rail {
    width: 100%;
  }
}

@media (max-width: 768px) {
  body.article-page .page-header {
    padding: 22px 18px;
  }

  body.article-page .page-header h1 {
    font-size: 28px;
  }

  body.article-page .list-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  body.article-page .article-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.article-page .floating-widget {
    display: none;
  }
}
