:root {
  --brand-red: #c1292e;
  --brand-red-hover: #d7383e;
  --nav-active: #f24957;
  --brand-blue: #0055ff;
  --text-main: #1a2233;
  --text-sub: #596780;
  --text-light: #8b95a8;
  --line: #e6e9f0;
  --bg-soft: #f5f7fe;
  --bg-page: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  background: var(--bg-page);
  color: var(--text-main);
  font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  color: var(--text-main);
  line-height: 80px;
}

/* Background reveal layer — reference .Frame-header-bg */
.site-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(37, 38, 94, 0.10);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.site-header-transparent .site-header-bg {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  list-style: none;
  height: 80px;
}

.nav-item {
  position: relative;
  height: 80px;
  padding-right: 36px;
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-item:last-child {
  padding-right: 20px;
}

.nav-item:hover,
.nav-item.active {
  color: var(--nav-active);
}

.nav-arrow {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

/* Nav child dropdown — simple dropdown */
.nav-item-child {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 28px rgba(26, 34, 51, 0.12);
  padding: 8px 0;
  z-index: 101;
}

.nav-item:hover .nav-item-child {
  display: block;
}

/* Nav child dropdown — full-width mega menu */
.nav-item-child--mega {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 37px 0 rgba(19, 20, 57, 0.08);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-item:hover .nav-item-child--mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-item-child-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0;
}

.nav-item-child a {
  display: block;
  padding: 8px 20px;
  color: var(--text-main);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item-child a:hover {
  color: var(--nav-active);
  background: var(--bg-soft);
}

/* Nav item module — mega menu module columns */
div.nav-item-module {
  width: 214px;
  min-width: 214px;
  flex-shrink: 0;
  padding-top: 30px;
}

.nav-item-module .module-title {
  border-bottom: 1px solid #d9d9db;
  font-size: 16px;
  font-weight: 600;
  color: #1a2233;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item-module .module-title img {
  width: 24px;
  height: 24px;
}

.nav-item-module .module-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.module-items-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.nav-item-module .module-items li {
  height: 44px;
  line-height: 44px;
}

.nav-item-module .module-items li a {
  color: #1a2233;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.nav-item-module .module-items li a:hover {
  background: #f5f6f7;
  border-radius: 4px;
  color: #1a2233;
}

.nav-item-module .module-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Nav item module card (最新活动风格) */
.nav-item-module-card {
  width: 584px;
  min-width: 584px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f5f5f7;
  border-radius: 8px;
  padding: 24px 20px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

.nav-item-module-card:hover {
  box-shadow: 0 20px 60px -30px rgba(26, 34, 51, 0.2);
}

.nav-item-module-card:hover .module-card-content h5 {
  color: #05f;
}

.nav-item-child a.nav-item-module-card {
  display: flex;
  padding: 24px 20px;
  white-space: normal;
  color: inherit;
}

.nav-item-child a.nav-item-module-card:hover {
  background: #f5f5f7;
  color: inherit;
}

.module-card-content {
  flex: 1;
  min-width: 0;
}

.module-card-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1a2233;
  line-height: 24px;
  transition: color 0.3s ease;
}

.module-card-desc {
  font-size: 14px;
  color: #676b73;
  line-height: 22px;
  margin: 0 0 12px;
}

.module-card-reward {
  line-height: 22px;
  color: #f24957;
  font-size: 14px;
}

.module-card-reward span {
  display: inline-block;
}

.module-card-reward .recommend {
  color: #05f;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.module-card-reward .recommend i {
  vertical-align: bottom;
  font-size: 16px;
}

.nav-item-module-card:hover .recommend {
  color: #337eff;
}

.module-card-img {
  width: 160px;
  height: 107px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
  margin-left: 20px;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  gap: 5px;
  z-index: 102;
}

.mobile-nav-toggle i {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.open i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open i:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 20px;
  overflow-y: auto;
}

.mobile-nav-panel.open {
  display: block;
}

.mobile-nav-panel .mobile-nav-item {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-main);
}

.mobile-nav-panel .mobile-nav-item:hover {
  color: var(--nav-active);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 98;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 18px;
  color: var(--text-main);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.mobile-nav-parent:hover {
  color: var(--nav-active);
}

.mobile-nav-arrow {
  font-size: 14px;
  color: var(--text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav-arrow.open {
  transform: rotate(180deg);
}

.mobile-nav-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-children.expanded {
  max-height: 5000px;
}

.mobile-nav-children .mobile-nav-item {
  padding-left: 24px;
  font-size: 15px;
}

.mobile-nav-module-title {
  padding: 10px 0 4px 24px;
  font-size: 13px;
  color: var(--text-light);
}

/* ===== Primary Button ===== */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 88px;
  padding: 0 20px;
  border-radius: 60px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.primary-btn:hover {
  background: var(--brand-red-hover);
  box-shadow: 0 12px 28px -14px rgba(193, 41, 46, 0.65);
  transform: translateY(-1px);
}

/* Nav CTA — matches reference .primary-btn-nav */
.primary-btn.nav-cta {
  background: #c1292e;
  width: 88px;
  padding: 0;
  margin-left: 20px;
  display: inline-block;
  text-align: center;
}

.primary-btn.nav-cta:hover {
  background: #c1292e;
  box-shadow: none;
  transform: none;
}

/* ===== Hero ===== */
.hero {
  margin-top: 0;
  padding-top: 80px;
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 85, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f4f7ff 0%, #eef3fc 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: 1200px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 520px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(193, 41, 46, 0.08);
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 20px;
  color: #142033;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.18;
}

.hero p {
  color: #3d4c66;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  width: 520px;
  height: 320px;
}

.hero-orbit {
  position: absolute;
  right: 36px;
  top: 10px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(0, 85, 255, 0.95), rgba(96, 153, 255, 0.35));
  box-shadow: 0 34px 70px -38px rgba(0, 85, 255, 0.78);
}

.hero-card {
  position: absolute;
  width: 230px;
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px -38px rgba(23, 45, 90, 0.7);
  backdrop-filter: blur(12px);
}

.hero-card.primary {
  left: 18px;
  top: 54px;
}

.hero-card.secondary {
  right: 0;
  bottom: 46px;
  width: 260px;
}

.hero-card-tag {
  width: 54px;
  height: 22px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: linear-gradient(90deg, var(--brand-red), #ff8a91);
}

.hero-card-line {
  height: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #dce5f5;
}

.hero-card-line.short {
  width: 68%;
}

.hero-dots {
  position: absolute;
  right: 12px;
  top: 24px;
  width: 104px;
  height: 76px;
  background-image: radial-gradient(rgba(0, 85, 255, 0.38) 2px, transparent 2px);
  background-size: 16px 16px;
}

/* ===== Main content area ===== */
.main {
  width: 1200px;
  margin: 0 auto;
  padding: 58px 0 76px;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
  list-style: none;
  position: sticky;
  top: 80px;
  z-index: 50;
  background: var(--bg-page);
}

.tab {
  position: relative;
  height: 58px;
  color: #39445a;
  font-size: 14px;
  line-height: 58px;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tab:hover,
.tab.active {
  color: var(--brand-red);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 28px;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--brand-red);
  transform: translateX(-50%);
}

/* ===== Section Title ===== */
.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  color: #142033;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.section-title::before {
  content: "";
  width: 4px;
  height: 26px;
  margin-right: 12px;
  border-radius: 2px;
  background: var(--brand-blue);
}

/* ===== News Grid ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  overflow: hidden;
  min-height: 382px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px -34px rgba(26, 34, 51, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 41, 46, 0.18);
  box-shadow: 0 24px 56px -34px rgba(193, 41, 46, 0.45);
}

.cover {
  position: relative;
  height: 192px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.cover.has-image {
  background-size: cover;
  background-position: center;
}

.cover.no-image {
  background: linear-gradient(135deg, #0b1733, #2b66d9);
}

.cover.alt-1 {
  background: linear-gradient(135deg, rgba(20, 32, 51, 0.90), rgba(193, 41, 46, 0.52)), #18203a;
}

.cover.alt-2 {
  background: linear-gradient(135deg, rgba(15, 34, 72, 0.92), rgba(38, 189, 113, 0.44)), #13233f;
}

.cover.alt-3 {
  background: linear-gradient(135deg, rgba(7, 20, 48, 0.92), rgba(136, 117, 255, 0.50)), #0d1934;
}

.news-body {
  padding: 24px 28px 26px;
}

.meta {
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 20px;
}

.meta span {
  margin: 0 8px;
  color: #c3c8d4;
}

.news-title {
  min-height: 64px;
  color: #1a2233;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-title a:hover {
  color: var(--brand-red);
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 500;
}

.read-more::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.page-item {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #dfe4ee;
  border-radius: 4px;
  color: #596780;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.page-item:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.page-item.active {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
}

.page-item.disabled {
  color: #c3c8d4;
  pointer-events: none;
}

/* ===== Trial CTA Band ===== */
.trial-band {
  background: #f2f5fa;
  padding: 56px 0;
}

.trial-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 46px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 20%, rgba(0, 85, 255, 0.12), transparent 24%),
    #fff;
  box-shadow: 0 18px 48px -42px rgba(26, 34, 51, 0.72);
}

.trial-title {
  color: #142033;
  font-size: 28px;
  font-weight: 600;
}

.trial-desc {
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 16px;
}

.trial-btn {
  height: 48px;
  min-width: 148px;
  font-size: 18px;
  line-height: 48px;
}

/* ===== Footer ===== */
.site-footer {
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 0;
}

.footer-inner {
  width: 1200px;
  margin: 0 auto;
}

.service-list {
  display: flex;
  justify-content: space-between;
  padding: 40px 62px 0;
  border-bottom: 1px solid #d9d9db;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  color: #1a2233;
  font-size: 20px;
  line-height: 40px;
}

.service-list img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  padding: 60px 72px 60px;
  color: #999;
  font-size: 14px;
  line-height: 28px;
}

.footer-contact .footer-logo {
  width: 154px;
  height: auto;
}

.footer-links a {
  display: block;
  color: #1a2233;
}

.footer-links a:hover {
  color: var(--brand-red);
}

/* ===== ToolBox ===== */
.toolBox {
  width: 72px;
  position: fixed;
  right: 10px;
  bottom: 0;
  top: 50%;
  z-index: 10;
  transform: translateY(-134px);
  transition: all 0.5s;
  opacity: 1;
}

.toolBox.hidden {
  visibility: hidden;
  transition: all 0.5s;
  opacity: 0;
}

.toolBox .tool-main {
  background: #fff;
  box-shadow: 0 8px 20px 0 rgba(47, 56, 111, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}

.toolBox .tool-main > :first-child::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #f3f3f3;
  position: absolute;
  opacity: 0.5;
  bottom: 0;
  left: 20px;
}

.toolBox .tool-content {
  padding: 20px 0;
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.toolBox .tool-content span {
  display: block;
}

.toolBox .tool-content .iconfont {
  color: #1a1a1a;
  font-size: 24px;
}

.toolBox .tool-content:hover .iconfont {
  color: var(--brand-red);
}

.toolBox .tool-content:hover .tool-des {
  color: var(--brand-red);
}

.toolBox .tool-des {
  font-size: 12px;
  color: #1a1a1a;
  letter-spacing: 0;
  text-align: center;
  margin-top: 5px;
  display: inline-block;
  word-break: keep-all;
}

.toolBox .tool-toTop {
  margin-top: 20px;
  height: 72px;
  width: 72px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  box-shadow: 0 8px 20px 0 rgba(47, 56, 111, 0.1);
  border-radius: 8px;
  text-align: center;
  line-height: 72px;
  cursor: pointer;
  right: 0;
  top: 0;
}

.toolBox .tool-toTop:hover .iconfont {
  color: var(--brand-red);
}

.toolBox .tool-toTop .iconfont {
  display: inline-block;
  color: #1a1a1a;
  font-size: 24px;
}

/* call-panel */
.call-panel {
  width: 249px;
  position: absolute;
  top: 21px;
  right: 72px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform-origin: 100% 0;
  transform: rotateY(90deg);
  margin-right: 4px;
}

.call-panel.call-panel-show {
  visibility: visible;
  transform: rotateY(0deg);
  transition: all 0.3s ease-in-out;
}

.call-panel .pannel-con {
  width: 229px;
  background: #fff;
  border: 1px solid #e6e7eb;
  box-shadow: 0 20px 60px rgba(26, 34, 51, 0.15);
  border-radius: 8px;
}

.call-panel-img {
  text-align: center;
  margin-top: 36px;
}

.call-panel-content {
  padding: 0 40px;
  text-align: center;
}

.call-panel-tip {
  color: #596780;
  font-size: 12px;
  margin-top: 12px;
  word-break: keep-all;
}

.call-panel-form {
  text-align: left;
  margin-top: 12px;
  position: relative;
}

.call-panel-form .number-prefix {
  font-size: 17px;
  color: #333;
  line-height: 22px;
  padding-right: 11px;
  border-right: 1px solid #b0b6be;
}

.call-panel-form .phone-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b0b6be;
  padding-bottom: 4px;
}

.call-panel-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 0 4px 11px;
  font-size: 17px;
  background: transparent;
}

.call-panel-form input::placeholder {
  color: #b0b6be;
  font-size: 16px;
}

.call-panel .call-btn {
  margin-top: 20px;
  margin-bottom: 40px;
  outline: none;
  word-break: keep-all;
  text-align: center;
  padding: 0 24px;
  height: 40px;
  border-radius: 60px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.call-panel .direction-right {
  background: #fff;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  position: absolute;
  display: block;
  border-color: transparent;
  border-style: solid;
  right: -4px;
  box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  top: 22px;
}

.call-number-content {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-red);
  word-break: keep-all;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--brand-red);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: #c3c8d4;
}

/* ===== Article Detail Page ===== */
/* ===== Article Detail: Hero ===== */
.page-hero {
  margin-top: 80px;
  background:
    radial-gradient(circle at 78% 36%, rgba(0, 85, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f7fe 0%, #eef3fc 100%);
}

.page-hero-inner {
  width: 1200px;
  min-height: 280px;
  margin: 0 auto;
  padding: 54px 0 46px;
}

.article-label {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(193, 41, 46, 0.08);
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 500;
}

.article-title {
  width: 860px;
  color: #142033;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.34;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-top: 22px;
  color: var(--text-light);
  font-size: 15px;
}

.article-meta .meta-sep {
  margin: 0 10px;
  color: #c3c8d4;
}

.article-meta a {
  color: var(--brand-red);
  margin-left: 16px;
}

.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-main);
}

.article-body h2 {
  margin: 44px 0 18px;
  color: #142033;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.45;
}

.article-body h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 23px;
  margin-right: 12px;
  border-radius: 2px;
  background: var(--brand-blue);
  vertical-align: -4px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: #142033;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 8px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-red);
  border-radius: 0 8px 8px 0;
  background: #f7f9fd;
  color: #3d4c66;
  font-size: 18px;
  line-height: 1.9;
}

.article-body pre,
.article-body code {
  background: #f5f7fa;
  border-radius: 4px;
  font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
  font-size: 14px;
}

.article-body pre {
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}

.article-body code {
  padding: 2px 6px;
}

/* Copyright & Tags */
.article-footer-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.article-copyright {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.article-copyright a {
  color: var(--brand-red);
}

.article-tags {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.article-tags .tag-label {
  color: var(--text-light);
  font-size: 13px;
  line-height: 26px;
}

.article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border: 1px solid #e2e7f0;
  border-radius: 999px;
  background: #f8faff;
  color: #596780;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.article-tag[href]:hover {
  border-color: rgba(193, 41, 46, 0.24);
  background: rgba(193, 41, 46, 0.06);
  color: var(--brand-red);
}

/* 分享按钮与标签同行, 靠右对齐 */
.article-footer-meta .share {
  flex: 0 0 auto;
  margin-left: auto;
}

/* 底部分享图标缩小 (仅文章页, 不影响共享 share.min.css) */
.article-footer-meta .social-share a {
  margin: 3px;
}

.article-footer-meta .social-share .social-share-icon {
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 28px;
}

/* Prev / Next nav */
.article-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.prev-link,
.next-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 500;
  max-width: 48%;
}

.prev-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.next-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== Two-column layout ===== */
.detail-wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 56px 0 76px;
  display: grid;
  grid-template-columns: 820px 320px;
  gap: 60px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

/* ===== Sidebar ===== */
.sidebar {
  position: sticky;
  top: 104px;
}

.side-panel {
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px -38px rgba(26, 34, 51, 0.45);
}

.side-title {
  margin-bottom: 20px;
  color: #142033;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.side-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--brand-blue);
  vertical-align: -3px;
}

/* Category list */
.category-list {
  list-style: none;
}

.category-list li {
  border-bottom: 1px solid #edf0f6;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #253047;
  font-size: 15px;
  transition: color 0.2s ease;
}

.category-list a:hover,
.category-list a.active {
  color: var(--brand-red);
}

.category-count {
  color: #9aa4b8;
  font-size: 13px;
}

/* CTA Panel */
.side-cta {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 30px;
  border: none;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(140deg, #c1292e 0%, #e04b54 48%, #ff7b82 100%);
  color: #fff;
}

.side-cta::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.side-cta-title {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.side-cta-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.side-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 124px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.side-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -18px rgba(20, 32, 51, 0.8);
}

/* Hot list */
.hot-list {
  list-style: none;
}

.hot-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f6;
}

.hot-list li:first-child {
  padding-top: 0;
}

.hot-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hot-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f2f5fa;
  color: #8b95a8;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.hot-list li:nth-child(-n+3) .hot-rank {
  background: rgba(193, 41, 46, 0.09);
  color: var(--brand-red);
}

.hot-list a {
  display: block;
  color: #253047;
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.2s;
}

.hot-list a:hover {
  color: var(--brand-red);
}

/* Keyword cloud */
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* min-height: 156px; */
  align-content: flex-start;
}

.keyword {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #e2e7f0;
  border-radius: 999px;
  background: #f8faff;
  color: #596780;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.keyword:hover,
.keyword.active {
  border-color: rgba(193, 41, 46, 0.24);
  background: rgba(193, 41, 46, 0.06);
  color: var(--brand-red);
}

/* Comments */
.comments-section {
  margin-top: 48px;
}

.comments-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #142033;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-blue);
}

/* ===== Archive (Category/Tag) Pages ===== */
.archive-hero {
  margin-top: 80px;
  background:
    radial-gradient(circle at 82% 26%, rgba(0, 85, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #f5f7fe 0%, #eef3fc 100%);
}

.archive-hero-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 48px 0 44px;
}

.archive-kicker {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(193, 41, 46, 0.08);
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 500;
}

.archive-title {
  color: #142033;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.28;
}

.archive-desc {
  width: 760px;
  margin-top: 16px;
  color: #3d4c66;
  font-size: 18px;
  line-height: 1.8;
}

/* ===== Archive Layout ===== */
.archive-layout {
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 76px;
  display: grid;
  grid-template-columns: 820px 320px;
  gap: 60px;
  align-items: start;
}

.archive-main {
  min-width: 0;
}

.result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.result-title {
  display: flex;
  align-items: center;
  color: #142033;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.result-title::before {
  content: "";
  width: 4px;
  height: 26px;
  margin-right: 12px;
  border-radius: 2px;
  background: var(--brand-blue);
}

.result-count {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== Archive Article List ===== */
.article-list {
  display: grid;
  gap: 22px;
}

.article-item {
  display: grid;
  grid-template-columns: 216px 1fr;
  gap: 24px;
  min-height: 154px;
  padding: 22px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px -38px rgba(26, 34, 51, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-item:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 41, 46, 0.18);
  box-shadow: 0 24px 56px -34px rgba(193, 41, 46, 0.45);
}

.article-cover {
  position: relative;
  overflow: hidden;
  height: 132px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(6, 18, 48, 0.86), rgba(0, 85, 255, 0.48)),
    linear-gradient(90deg, #0b1733, #2b66d9);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.article-item:hover .article-cover img {
  transform: scale(1.035);
}

.article-item .article-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.article-copy {
  min-width: 0;
}

.article-name {
  margin-bottom: 12px;
  color: #142033;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.article-item .article-name {
  margin-top: 0;
}

.article-name a {
  color: inherit;
  transition: color 0.2s ease;
}

.article-name a:hover {
  color: var(--brand-red);
}

.article-summary {
  color: #596780;
  font-size: 15px;
  line-height: 1.8;
}

.article-item .article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.article-item .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.article-item .article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #e2e7f0;
  border-radius: 999px;
  background: #f8faff;
  color: #596780;
  font-size: 13px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.article-item .article-tag:hover {
  border-color: rgba(193, 41, 46, 0.24);
  background: rgba(193, 41, 46, 0.06);
  color: var(--brand-red);
}

.article-date {
  flex: 0 0 auto;
  color: var(--text-light);
  font-size: 14px;
  line-height: 28px;
  white-space: nowrap;
}

/* ===== Tags Pages ===== */
.tag-index {
  padding: 20px 0;
}

.tag-groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-group h3 {
  font-size: 20px;
  font-weight: 600;
  color: #142033;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-red);
  display: inline-block;
}

.tag-group .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-group .tag-list a {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-sub);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.tag-group .tag-list a:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.tag-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag-letters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-sub);
  font-size: 14px;
  transition: all 0.2s;
}

.tag-letters a:hover,
.tag-letters a.active {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
}

/* ===== 404 Page ===== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 20px;
}

.error-page .error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h2 {
  font-size: 24px;
  color: #142033;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-sub);
  font-size: 16px;
  margin-bottom: 32px;
}

.error-page .error-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 60px;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}

.error-page .error-link:hover {
  background: var(--brand-red-hover);
}

/* ===== Block Page ===== */
.block-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 20px;
}

.block-page .block-icon {
  font-size: 64px;
  margin-bottom: 24px;
  color: var(--brand-red);
}

.block-page h2 {
  font-size: 24px;
  color: #142033;
  margin-bottom: 12px;
}

.block-page p {
  color: var(--text-sub);
  font-size: 16px;
  max-width: 500px;
}

/* ===== Category/Tag filter header ===== */
.filter-header {
  margin-bottom: 36px;
}

.filter-header .filter-title {
  font-size: 28px;
  font-weight: 600;
  color: #142033;
  margin-bottom: 12px;
}

.filter-header .filter-brief {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.filter-header .filter-copyright {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 16px;
  background: #fdf6f6;
  border-left: 3px solid var(--brand-red);
  border-radius: 0 6px 6px 0;
}

/* ===== Swiper Banner (for index banner area) ===== */
.swiper-banner {
  margin-bottom: 42px;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== Hot Articles sidebar on index ===== */
.hot-articles-side {
  margin-bottom: 42px;
}

.hot-articles-side .hot-title {
  font-size: 18px;
  font-weight: 600;
  color: #142033;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-red);
}

.hot-articles-side ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hot-articles-side li a {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-sub);
  font-size: 13px;
  transition: all 0.2s;
}

.hot-articles-side li a:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* ===== Ad Banner (fixed bottom) ===== */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.fixed-footer-link {
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.fixed-footer-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-footer-close:hover {
  color: #fff;
}

/* ===== Slider Articles (small banner) ===== */
.slider-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.slider-article-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}

.slider-article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-article-card .slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.slider-article-card .slider-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-article-card .slider-overlay .slider-cat {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(193, 41, 46, 0.85);
  color: #fff;
  font-size: 12px;
  margin-bottom: 8px;
}

/* ===== Sitemap Page ===== */
.sitemap-page {
  padding: 40px 0;
}

.sitemap-page h1 {
  font-size: 28px;
  font-weight: 600;
  color: #142033;
  margin-bottom: 32px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-blue);
}

.sitemap-page h2 {
  font-size: 20px;
  font-weight: 600;
  color: #142033;
  margin: 24px 0 16px;
}

.sitemap-page ul {
  list-style: none;
}

.sitemap-page li {
  padding: 6px 0;
}

.sitemap-page li a {
  color: var(--text-sub);
  font-size: 15px;
  transition: color 0.2s;
}

.sitemap-page li a:hover {
  color: var(--brand-red);
}

/* ===== Topic Page (shared) ===== */
.topic-page {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  body {
    min-width: 0;
  }

  .site-header,
  .header-inner {
    height: 64px;
  }

  .header-inner,
  .hero-inner,
  .main,
  .trial-inner,
  .footer-inner,
  .page-hero-inner,
  .detail-wrap,
  .topic-page {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .detail-wrap {
    display: block;
  }

  .logo {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .primary-btn.nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .page-hero {
    margin-top: 64px;
  }

  .hero {
    margin-top: 0;
    padding-top: 64px;
  }

  .hero-inner {
    height: auto;
    min-height: 520px;
    padding: 58px 0 46px;
    display: block;
  }

  .hero-copy {
    width: auto;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-visual {
    width: 100%;
    height: 260px;
    margin-top: 32px;
  }

  .hero-card.primary {
    left: 0;
  }

  .hero-card.secondary {
    right: 0;
  }

  .main {
    padding-top: 42px;
  }

  .tabs {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    top: 64px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .slider-articles {
    grid-template-columns: 1fr;
  }

  .trial-inner {
    display: block;
    padding: 30px 24px;
  }

  .trial-btn {
    margin-top: 22px;
  }

  .service-list,
  .footer-contact {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .service-list li,
  .footer-contact > div {
    margin-bottom: 24px;
  }

  .floating-tools {
    display: none;
  }

  .article-title {
    width: auto;
    font-size: 30px;
  }

  .article-body {
    font-size: 15px;
  }

  .article-meta {
    display: block;
    line-height: 1.9;
  }

  .article-meta .meta-sep {
    display: none;
  }

  .sidebar {
    position: static;
    margin-top: 42px;
  }

  .tag-letters {
    gap: 6px;
  }

  .tag-letters a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .archive-hero {
    margin-top: 64px;
  }

  .archive-hero-inner,
  .archive-layout {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .archive-title {
    font-size: 34px;
  }

  .archive-desc {
    width: auto;
    font-size: 16px;
  }

  .archive-layout {
    display: block;
    padding: 38px 0 56px;
  }

  .result-head {
    display: block;
  }

  .result-count {
    margin-top: 14px;
  }

  .article-item {
    display: block;
    min-height: 0;
    padding: 22px;
  }

  .article-cover {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
  }

  .article-name {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .article-summary {
    font-size: 16px;
  }

  .article-item .article-footer {
    display: flex;
    margin-top: 20px;
  }

  .article-item .article-tags {
    gap: 10px;
  }

  .article-item .article-tag {
    min-height: 28px;
    padding: 0 12px;
    font-size: 13px;
  }

  .article-date {
    margin-top: 0;
    font-size: 14px;
    text-align: right;
  }

}
