:root {
  --red: #ef1218;
  --red-dark: #d60d13;
  --orange: #ff8f24;
  --text: #161616;
  --muted: #7c7c7c;
  --line: #eeeeee;
  --bg: #f5f5f6;
  --white: #fff;
  --container: 1200px;
  --shadow: 0 8px 24px rgba(20, 25, 35, 0.045);
  font-family:
    "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--text);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 1220px;
  background: var(--bg);
  font-size: 14px;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar {
  height: 30px;
  font-size: 12px;
  color: #777;
}
.topbar-inner {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar nav i {
  width: 1px;
  height: 13px;
  background: #ddd;
}
.topbar a:hover {
  color: var(--red);
}
.header-main {
  height: 76px;
  display: grid;
  grid-template-columns: 230px 570px 1fr;
  gap: 28px;
  align-items: center;
}
.brand img {
  width: 190px;
  height: 44px;
}
.search {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 72px;
}
/* 搜索结果页等：关键词框为 form 直接子级 */
.search > input[name="q"],
.search > input[type="search"] {
  height: 44px;
  border: 2px solid var(--red);
  border-right: 0;
  padding: 0 16px;
  color: #555;
  outline: none;
  background: #fff;
}
.search-field {
  display: flex;
  align-items: stretch;
  min-width: 0;
  border: 2px solid var(--red);
  border-right: 0;
  background: #fff;
}
.search-field input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  padding: 0 8px 0 16px;
  color: #555;
  outline: none;
  background: transparent;
}
.search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0 10px;
  border: 0;
  border-left: 1px solid rgba(239, 18, 24, 0.22);
  background: transparent;
  color: #888;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.search-clear:hover {
  color: var(--red);
}
.search.has-query .search-clear {
  display: flex;
}
.search > button[type="submit"] {
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}
.register {
  justify-self: end;
  width: 122px;
  height: 42px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.2s;
}
.register:hover,
.btn.red:hover,
.promo > a:hover,
.side-box.live > a:hover,
.member > a:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.mobile-toggle {
  display: none !important;
}
@media (max-width: 760px) {
  .mobile-toggle {
    display: flex !important;
  }
}
.main-nav {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid #f1f1f1;
}
.main-nav a {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
  font-weight: 800;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--red);
}
.main-nav a.active:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
.page {
  margin-top: 15px;
  padding-bottom: 20px;
}
.focus-strip {
  height: 38px;
  margin-top: 10px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.015);
}
.focus-strip strong {
  margin-right: 22px;
  color: var(--red);
  font-weight: 900;
}
.focus-strip span {
  color: #777;
}
.focus-strip em {
  margin-left: auto;
  color: #aaa;
  font-size: 22px;
  font-style: normal;
}
.hero-section {
  display: grid;
  grid-template-columns: 760px 386px;
  gap: 16px;
  margin-top: 14px;
}
.hero-banner {
  height: 360px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: url("images/design-exact/hero-bg.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
  color: #fff;
}
.hero-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.hero-date {
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 58%;
  padding: 42px 40px;
}
.hero-copy .btn {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: 2px;
  font-weight: 900;
}
.hero-copy h2 {
  margin: 13px 0 12px;
  font-size: 21px;
  font-weight: 900;
}
.hero-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-copy li:before {
  content: "◎";
  margin-right: 5px;
}
.hero-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-size: 13px;
}
.btn {
  height: 38px;
  padding: 0 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 800;
}
.btn.red {
  background: var(--red);
  color: #fff;
}
.btn.dark {
  background: rgba(93, 22, 18, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.dots {
  position: absolute;
  right: 26px;
  bottom: 18px;
  display: flex;
  gap: 12px;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}
.dots i:not(:first-child) {
  opacity: 0.55;
}
.hero-side {
  display: grid;
  gap: 14px;
}
.side-card {
  height: 173px;
  border-radius: 9px;
  box-shadow: var(--shadow);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
  position: relative;
  border: 1px solid #eee;
}
.side-card.policy {
  background-image: url("images/unified-design/policy-card-bg.svg");
}
.side-card.selection {
  background-image: url("images/unified-design/selection-card-bg.svg");
}
.side-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 96px;
  height: 96px;
}
.side-text {
  padding: 22px 22px 0 148px;
}
.side-text span {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}
.side-card.selection .side-text span {
  color: #ff6a00;
}
.side-text h3 {
  margin: 8px 0 7px;
  font-size: 22px;
  line-height: 1.3;
}
.side-text p {
  margin: 0 0 12px;
  color: #777;
  line-height: 1.7;
}
.side-text a {
  height: 28px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #666;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
}
.promo {
  height: 76px;
  margin-top: 14px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: url("images/unified-design/promo-strip-bg.svg") center/cover no-repeat;
}
.promo-logo-img {
  height: 24px;
  margin-right: 12px;
}
.promo-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.promo-logo {
  color: #f47426;
  font-weight: 900;
  font-size: 13px;
}
.promo b {
  width: 70px;
  height: 34px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo strong {
  font-size: 20px;
}
.promo p {
  margin: 0;
  color: #777;
}
.promo > a {
  width: 124px;
  height: 42px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s;
}
.entry-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.entry {
  height: 94px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  position: relative;
  padding-left: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}
.entry img {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.entry:hover,
.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(20, 25, 35, 0.06);
}
.entry strong {
  font-size: 17px;
  margin-bottom: 6px;
}
.entry span {
  font-size: 12px;
  color: #777;
}
.eico {
  position: absolute;
  left: 22px;
  top: 25px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
}
.eico:after {
  content: "";
  position: absolute;
}
.store {
  background: #ffe8e8;
}
.store:after {
  left: 10px;
  top: 17px;
  width: 24px;
  height: 18px;
  background: #f45454;
  border-radius: 2px;
  box-shadow: 0 -9px 0 #ff7373;
}
.bag {
  background: #fff4ea;
}
.bag:after {
  left: 10px;
  top: 13px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ff9a1f;
}
.book {
  background: #eafff7;
}
.book:after {
  left: 13px;
  top: 10px;
  width: 20px;
  height: 25px;
  border-radius: 5px;
  background: #20c997;
}
.cube {
  background: #fff5e7;
}
.cube:after {
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: #ff9824;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.user {
  background: #eaf5ff;
}
.user:after {
  left: 13px;
  top: 9px;
  width: 18px;
  height: 26px;
  background: #58a6ff;
  border-radius: 50% 50% 8px 8px;
}
.report {
  background: #f4edff;
}
.report:after {
  left: 13px;
  top: 9px;
  width: 18px;
  height: 26px;
  background: #8d63ee;
  border-radius: 3px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.stats article {
  height: 78px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px 24px;
}
.stats strong {
  display: block;
  color: var(--red);
  font-size: 26px;
  line-height: 1.05;
}
.stats span {
  display: block;
  margin-top: 8px;
  color: #666;
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 313px;
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}
.main-col,
.side-col {
  display: grid;
  gap: 14px;
}
.panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: 0.2s;
  margin-bottom: 20px;
}
.news-panel,
.block,
.side-box {
  padding: 16px 18px;
}
.section-head {
  height: 35px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-head h2 {
  position: relative;
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}
.section-head h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 30px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
.section-head a,
.section-head span {
  color: #888;
  font-size: 12px;
}
.compact {
  height: 32px;
}
.compact h2 {
  font-size: 17px;
}
.news {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f3f3f3;
}
.news.last {
  border-bottom: 0;
}
.thumb {
  height: 70px;
  border-radius: 4px;
  background-size: 100% 100%;
  padding: 18px 14px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.policy-thumb {
  background-image: url("images/design-exact/thumb-policy.svg");
}
.selection-thumb {
  background-image: url("images/design-exact/thumb-selection.svg");
}
.case-thumb {
  background-image: url("images/design-exact/thumb-case.svg");
}
.live-thumb {
  background-image: url("images/design-exact/thumb-live.svg");
}
.supply-thumb {
  background-image: url("images/design-exact/thumb-supply.svg");
}
.news em,
.course-row em,
.topic-row em {
  font-style: normal;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.news h3 {
  margin: 7px 0 6px;
  font-size: 18px;
  line-height: 1.35;
}
.news p,
.course-row p,
.topic-row p,
.side-box p,
.member p {
  margin: 0;
  color: #777;
  line-height: 1.68;
  font-size: 13px;
}
.news b {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 12px;
}
.course-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.course-row article {
  min-height: 140px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.course-row article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #e5e5e5;
}
.course-icon {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.course-icon:after {
  content: "";
  position: absolute;
  inset: 12px;
}
.course-row em {
  display: block;
  font-size: 12px;
  color: #ef1218;
  font-weight: 800;
  margin-bottom: 8px;
  font-style: normal;
}
.course-row h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.course-row h3 a {
  color: #1a1a1a !important;
  text-decoration: none;
}
.course-row p {
  margin: 0;
  font-size: 13px;
  color: #667085;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.play {
  background: linear-gradient(135deg, #ff4a4f, #d90d13);
}
.play:after {
  background: #fff;
  clip-path: polygon(25% 12%, 80% 50%, 25% 88%);
}
.tiktok {
  background: #eaf7ff;
}
.tiktok:after {
  background: #2198e7;
  border-radius: 3px;
}
.monitor {
  background: #eaf7ff;
}
.monitor:after {
  background: #2198e7;
  border-radius: 2px;
}
.course-row h3,
.topic-row h3 {
  margin: 6px 0 5px;
  font-size: 16px;
  line-height: 1.35;
}
.topic-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.topic-row article {
  min-height: 160px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.topic-row article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #e5e5e5;
}
.topic-row .eico {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.topic-row em {
  display: block;
  font-size: 12px;
  color: #ef1218;
  font-weight: 800;
  margin-bottom: 8px;
  font-style: normal;
}
.topic-row h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.topic-row h3 a {
  color: #1a1a1a !important;
  text-decoration: none;
}
.topic-row p {
  margin: 0;
  font-size: 13px;
  color: #667085;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-row.services article {
  min-height: 140px;
}

/* ---------- 首页 · 企业服务入口（独立区块：PC 四列图文横排，移动横向滑动） ---------- */
.service-entrance-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 55%);
  border-color: #e6eaf0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.045);
}
.service-entrance-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    #ff8a65 32%,
    rgba(255, 152, 0, 0.35) 62%,
    transparent 100%
  );
  opacity: 0.9;
  pointer-events: none;
}
.service-entrance-head {
  align-items: center;
  border-bottom-color: #e8ecf1;
}
.service-entrance-head h2 {
  letter-spacing: -0.02em;
}
.service-entrance-head h2::after {
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b4a);
}
.service-entrance-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  margin: -4px -6px -4px 0;
  border-radius: 999px;
  font-weight: 600;
  color: #475467 !important;
  text-decoration: none;
  border: 1px solid #e4e7ec;
  background: #fff;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-entrance-more:hover {
  color: var(--red) !important;
  border-color: rgba(239, 18, 24, 0.28);
  box-shadow: 0 4px 14px rgba(239, 18, 24, 0.08);
}
.service-entrance-more-arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}
.service-entrance-more:hover .service-entrance-more-arrow {
  transform: translateX(3px);
}
.service-entrance-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 18px -6px 0;
  padding: 2px 6px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.service-entrance-grid::-webkit-scrollbar {
  height: 5px;
}
.service-entrance-grid::-webkit-scrollbar-thumb {
  background: #d0d5dd;
  border-radius: 99px;
}
.service-entrance-card {
  flex: 0 0 min(86vw, 300px);
  max-width: min(86vw, 300px);
  scroll-snap-align: start;
  box-sizing: border-box;
  min-height: 132px;
  padding: 16px 16px 14px;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease,
    border-color 0.2s ease;
}
.service-entrance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: #d6dde8;
}
.service-entrance-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  flex-shrink: 0;
}
.service-entrance-tone-rose {
  background: linear-gradient(160deg, #fff0f0, #fff);
  border-color: #fde2e5;
}
.service-entrance-tone-amber {
  background: linear-gradient(160deg, #fff8ed, #fff);
  border-color: #fce8cf;
}
.service-entrance-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.service-entrance-body {
  min-width: 0;
}
.service-entrance-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}
.service-entrance-body h3 a {
  color: #101828 !important;
  text-decoration: none;
}
.service-entrance-body h3 a:hover {
  color: var(--red) !important;
}
.service-entrance-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: #667085;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 761px) {
  .service-entrance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .service-entrance-card {
    flex: none;
    max-width: none;
    min-height: 0;
    padding: 18px 18px 18px 16px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
  .service-entrance-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .service-entrance-icon {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1024px) {
  .service-entrance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-entrance-card,
  .service-entrance-more-arrow {
    transition: none;
  }
  .service-entrance-card:hover {
    transform: none;
  }
  .service-entrance-more:hover .service-entrance-more-arrow {
    transform: none;
  }
}

/* ---------- 首页 · 专题会场（独立样式，与 .topic-row 企业服务区分） ---------- */
.topic-venue-section {
  position: relative;
  overflow: visible;
  min-width: 0;
  max-width: 100%;
  background: linear-gradient(165deg, #f8fafc 0%, #fff 42%, #fff 100%);
  border-color: #e8ecf1;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}
.topic-venue-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b4a 38%, transparent 78%);
  opacity: 0.85;
  pointer-events: none;
}
.topic-venue-head {
  align-items: center;
  border-bottom-color: #e8ecf1;
}
.topic-venue-head h2 {
  letter-spacing: -0.02em;
}
.topic-venue-head h2:after {
  bottom: -12px;
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), #ff7a66);
}
.topic-venue-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #475467 !important;
  background: #f2f4f7;
  border: 1px solid #e8ecf1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.topic-venue-all:hover {
  color: var(--red) !important;
  background: #fff5f5;
  border-color: #f5d4d6;
}
.topic-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  padding-bottom: 2px;
  min-width: 0;
  max-width: 100%;
}
.topic-venue-card {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 18px 18px 16px;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.035);
}
.topic-venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(239, 18, 24, 0.12);
}
.topic-venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: #dce3ed;
}
.topic-venue-card:hover::after {
  opacity: 1;
}
.topic-venue-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f1f5f9, #fff);
  border: 1px solid #eef2f6;
}
.topic-venue-card:nth-child(1) .topic-venue-icon-wrap {
  background: linear-gradient(145deg, #ffeef0, #fff);
  border-color: #fde2e5;
}
.topic-venue-card:nth-child(2) .topic-venue-icon-wrap {
  background: linear-gradient(145deg, #eef4ff, #fff);
  border-color: #e2e9fb;
}
.topic-venue-card:nth-child(3) .topic-venue-icon-wrap {
  background: linear-gradient(145deg, #fff7e8, #fff);
  border-color: #fcefd9;
}
.topic-venue-card:nth-child(4) .topic-venue-icon-wrap {
  background: linear-gradient(145deg, #f3edff, #fff);
  border-color: #ebe4fb;
}
.topic-venue-card .topic-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.topic-venue-card .topic-venue-tag {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  padding: 3px 10px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #b42318 !important;
  background: rgba(239, 18, 24, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(239, 18, 24, 0.12);
}
.topic-venue-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  flex: 1 1 auto;
}
.topic-venue-card h3 a {
  color: #101828 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.topic-venue-card h3 a:hover {
  color: var(--red) !important;
}
.topic-venue-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.62;
  color: #667085 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-venue-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--red) !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
.topic-venue-cta:hover .topic-venue-cta-arrow {
  transform: translateX(4px);
}
.topic-venue-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
@media (max-width: 1239px) {
  .topic-venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 760px) {
  /* 覆盖 .home-polish .section-head 固定高度，避免标题与「查看全部」重叠或裁切 */
  .home-polish .section-head.topic-venue-head {
    flex-wrap: wrap;
    height: auto !important;
    min-height: 0;
    gap: 10px 12px;
    padding-bottom: 14px;
    align-items: flex-start;
  }
  .topic-venue-head h2:after {
    bottom: -10px;
  }
  .topic-venue-all {
    flex-shrink: 0;
    margin-left: auto;
  }
  .topic-venue-head h2 {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .topic-venue-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 18px;
    margin-left: 0;
    margin-right: 0;
    padding: 4px 0 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }
  .topic-venue-grid::-webkit-scrollbar {
    height: 6px;
  }
  .topic-venue-grid::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 99px;
  }
  .topic-venue-card {
    flex: 0 0 min(calc(100vw - 40px), 300px);
    max-width: min(calc(100vw - 40px), 300px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 200px;
    padding: 16px 16px 14px;
    box-sizing: border-box;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topic-venue-card,
  .topic-venue-cta-arrow {
    transition: none;
  }
  .topic-venue-card:hover {
    transform: none;
  }
}

@media (max-width: 1239px) {
  .topic-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .topic-row {
    grid-template-columns: 1fr;
  }
}
.shield {
  background: #fff0f0;
}
.shield:after {
  inset: 0;
  margin: auto;
  width: 20px;
  height: 25px;
  background: #f0474f;
  clip-path: polygon(50% 0, 90% 15%, 80% 70%, 50% 100%, 20% 70%, 10% 15%);
}
.tiktok {
  background: #f5f5f5;
}
.tiktok:after {
  inset: 0;
  margin: auto;
  width: 20px;
  height: 22px;
  background: #111;
  border-radius: 4px;
}
.chart {
  background: #f4edff;
}
.chart:after {
  inset: 0;
  margin: auto;
  width: 22px;
  height: 20px;
  background: linear-gradient(
    90deg,
    #8d63ee 0 25%,
    transparent 25% 38%,
    #8d63ee 38% 62%,
    transparent 62% 75%,
    #8d63ee 75%
  );
}
.cap {
  background: #fff0f0;
}
.cap:after {
  inset: 0;
  margin: auto;
  width: 26px;
  height: 16px;
  background: #e60012;
  clip-path: polygon(50% 0, 100% 35%, 50% 70%, 0 35%);
}
.magnify {
  background: #fff7ec;
}
.magnify:after {
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 5px solid #ff9800;
  border-radius: 50%;
  box-shadow: 13px 13px 0 -8px #ff9800;
}
.group {
  background: #fff0f0;
}
.group:after {
  inset: 0;
  margin: auto;
  width: 22px;
  height: 24px;
  background: #f05252;
  border-radius: 50% 50% 8px 8px;
}
.target {
  background: #fff7ec;
}
.target:after {
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border: 5px solid #ff8f24;
  border-radius: 50%;
}
.side-box h3 {
  margin: 12px 0 6px;
  font-size: 17px;
  line-height: 1.35;
}
.side-box.live > a {
  height: 34px;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.goods {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}
.goods li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f2f2f2;
}
.goods li:last-child {
  border-bottom: 0;
}
.goods span {
  color: #777;
}
.mentor {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f2f2f2;
}
.mentor:last-child {
  border-bottom: 0;
}
.mentor i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ded7;
  color: #7b4d42;
  font-style: normal;
  font-size: 12px;
}
.mentor span {
  color: #565656;
  font-size: 13px;
}
.rank {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.rank li {
  display: grid;
  grid-template-columns: 20px 1fr 40px;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
}
.rank b {
  width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rank span {
  text-align: right;
  color: #888;
}
.member {
  height: 82px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #efc4bd;
  background: url("images/design-exact/member-bg.svg") center/100% 100%
    no-repeat;
  display: grid;
  grid-template-columns: 74px 1fr 200px;
  gap: 18px;
  align-items: center;
  padding: 0 28px;
}
.member > i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c7d, #ef1218);
  position: relative;
}
.member > i:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 24px;
  height: 30px;
  border-radius: 50% 50% 13px 13px;
  background: #fff;
  opacity: 0.9;
}
.member span {
  height: 22px;
  padding: 0 8px;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}
.member h2 {
  margin: 7px 0 4px;
  font-size: 20px;
}
.member > a {
  width: 190px;
  height: 44px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.footer {
  background: #fff;
  border-top: 1px solid #eee;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 28px;
  padding: 24px 0 12px;
}
.footer-brand img {
  width: 150px;
  height: 28px;
  margin-bottom: 10px;
}
.footer p {
  margin: 0;
  color: #777;
  line-height: 1.8;
  font-size: 12px;
}
.footer h4 {
  margin: 0 0 10px;
  font-size: 14px;
}
.footer a {
  display: block;
  color: #777;
  margin-bottom: 8px;
}
.social {
  display: flex;
  gap: 8px;
}
.social i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #222;
  position: relative;
}
.social i:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.copy {
  grid-column: 1/-1;
  border-top: 1px solid #eee;
  padding-top: 10px;
  color: #999;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1239px) {
  body {
    min-width: 0;
  }
  .container {
    width: min(100% - 28px, 1200px);
  }
  .hero-section,
  .content-layout {
    grid-template-columns: 1fr;
  }
  .hero-banner {
    height: 360px;
  }
  .hero-side {
    grid-template-columns: repeat(2, 1fr);
  }
  .entry-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .side-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .topbar {
    display: none;
  }
  .header-main {
    height: auto;
    padding: 14px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .register {
    justify-self: start;
  }
  .main-nav {
    overflow: auto;
    gap: 10px;
  }
  .hero-banner {
    height: auto;
    min-height: 430px;
  }
  .hero-copy {
    width: 100%;
    padding: 38px 24px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .hero-side,
  .entry-row,
  .stats,
  .course-row,
  .topic-row,
  .side-col {
    grid-template-columns: 1fr;
  }
  .promo {
    height: auto;
    padding: 16px;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
  .promo-left {
    align-items: flex-start;
    flex-direction: column;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .thumb {
    height: 94px;
  }
  .member {
    height: auto;
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .copy {
    display: block;
  }
  .side-text {
    padding-left: 155px;
  }
  /* 允许主栏在栅格内收缩，避免内部横向滚动区把整页撑出横向滚动条 */
  .content-layout > .main-col,
  .content-layout > .side-col {
    min-width: 0;
  }
}

/* static-site pages completed in new2-cifstyle */
.sub-page {
  padding: 14px 0 24px;
}
.sub-hero {
  min-height: 230px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(238, 18, 24, 0.94), rgba(255, 122, 34, 0.84)),
    url("images/design-exact/hero-bg.svg") center/cover no-repeat;
  color: #fff;
  padding: 38px 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.sub-hero:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 360px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(4px);
}
.sub-hero > div,
.sub-hero > a {
  position: relative;
  z-index: 1;
}
.sub-hero span {
  display: inline-flex;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}
.sub-hero h1 {
  margin: 16px 0 12px;
  font-size: 46px;
  line-height: 1.1;
}
.sub-hero p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.sub-hero > a {
  width: 124px;
  height: 42px;
  border-radius: 4px;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-section {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.sub-section.soft {
  background: linear-gradient(180deg, #fff, #fff7f7);
  border-color: #f2dada;
}
.sub-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 14px;
}
.sub-title h2 {
  position: relative;
  margin: 0;
  font-size: 24px;
}
.sub-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
}
.sub-title p {
  margin: 0;
  color: #777;
  line-height: 1.7;
  max-width: 700px;
}
.sub-grid {
  display: grid;
  gap: 14px;
}
.sub-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.sub-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.sub-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.sub-card {
  position: relative;
  min-height: 150px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  transition: 0.2s;
  overflow: hidden;
}
.sub-card:hover,
.course-catalog article:hover,
.mentor-grid article:hover,
.table-card:hover,
.contact-layout:hover,
.process-list article:hover,
.insight-list article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(20, 25, 35, 0.06);
}
.sub-card > .eico {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  margin-bottom: 12px;
}
.sub-card small,
.sub-card > small {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.sub-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
}
.sub-card p {
  margin: 0 0 8px;
  color: #777;
  line-height: 1.75;
}
.sub-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #777;
  line-height: 1.9;
}
.sub-member {
  margin-top: 16px;
}
.course-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.course-catalog article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  position: relative;
  transition: 0.2s;
}
.course-catalog .course-icon,
.course-catalog .eico {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  margin-bottom: 16px;
}
.course-catalog em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}
.course-catalog h3 {
  margin: 10px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}
.course-catalog p {
  margin: 0 0 12px;
  color: #777;
  line-height: 1.75;
}
.course-catalog b {
  color: #333;
}
.market-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.table-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: 0.2s;
}
.table-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card th,
.table-card td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f1f1;
  text-align: left;
}
.table-card th {
  background: #fff7f7;
  color: #555;
}
.growth {
  color: var(--red);
  font-weight: 900;
}
.goods-preview a {
  margin-top: 10px;
  width: 160px;
  height: 38px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mentor-grid article {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: 0.2s;
}
.mentor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #ffe8e0, #f05b4c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}
.mentor-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.mentor-grid p {
  margin: 0 0 10px;
  color: #777;
  line-height: 1.75;
}
.mentor-grid b {
  display: block;
  margin-bottom: 14px;
  color: #333;
}
.mentor-grid a {
  height: 36px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 900;
}
.insight-list {
  display: grid;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.insight-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  border-bottom: 1px solid #f2f2f2;
  transition: 0.2s;
}
.insight-list article:last-child {
  border-bottom: 0;
}
.insight-list em {
  font-style: normal;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.insight-list h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}
.insight-list p {
  margin: 0;
  color: #777;
  line-height: 1.7;
}
.insight-list b {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 12px;
}
.contact-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: 0.2s;
}
.contact-copy span {
  color: var(--red);
  font-weight: 900;
}
.contact-copy h2 {
  margin: 10px 0 10px;
  font-size: 30px;
}
.contact-copy p {
  color: #777;
  line-height: 1.8;
}
.contact-info {
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: #fff7f7;
  border: 1px solid #f4dddd;
}
.contact-info b {
  display: block;
  margin-top: 10px;
}
.contact-info b:first-child {
  margin-top: 0;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 18, 24, 0.08);
}
.contact-form button {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.contact-form > p {
  margin: 0;
  color: #999;
  font-size: 12px;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-list article {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: 0.2s;
}
.process-list span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}
.process-list h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}
.process-list p {
  margin: 0;
  color: #777;
  line-height: 1.7;
}
@media (max-width: 1239px) {
  .sub-grid.two,
  .sub-grid.three,
  .sub-grid.four,
  .course-catalog,
  .market-layout,
  .mentor-grid,
  .contact-layout,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
  .sub-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .sub-hero {
    padding: 28px 22px;
  }
  .sub-hero h1 {
    font-size: 36px;
  }
  .sub-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .sub-grid.two,
  .sub-grid.three,
  .sub-grid.four,
  .course-catalog,
  .market-layout,
  .mentor-grid,
  .contact-layout,
  .process-list,
  .insight-list article {
    grid-template-columns: 1fr;
  }
  .sub-section {
    padding: 18px;
  }
  .main-nav a {
    white-space: nowrap;
  }
  .main-nav {
    overflow: auto;
  }
  .insight-list .thumb {
    height: 96px;
  }
}

/* ===== redesigned design-mockup based pages ===== */
.design-page {
  padding: 24px 0 28px;
}
.design-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #ededed;
}
.design-hero.red {
  background: linear-gradient(135deg, #ef1515 0%, #ff4d46 58%, #ff8477 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.design-hero.soft {
  background: linear-gradient(135deg, #fff7f6 0%, #fff 100%);
}
.design-hero.lightblue {
  background: linear-gradient(135deg, #f9fbff 0%, #fff 100%);
}
.design-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 1px;
}
.design-hero h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 900;
}
.design-hero p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: inherit;
  opacity: 0.92;
  max-width: 600px;
}
.design-hero .hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.design-hero .hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.design-hero .meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.design-hero .meta-item .num {
  font-size: 18px;
  font-weight: 900;
  color: inherit;
}
.design-hero .hero-side-art img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin-left: auto;
}
.design-hero .hero-side-art.tall img {
  max-height: 350px;
}
.design-hero .hero-note {
  display: inline-flex;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  align-items: center;
  font-weight: 800;
  font-size: 13px;
}
.design-panel {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 66px;
  border-bottom: 1px solid #efefef;
  gap: 16px;
}
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-tabs a,
.filter-tabs span {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #555;
}
.filter-tabs .active {
  color: var(--red);
  background: #fff1f1;
}
.filter-select {
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 18px;
  padding: 18px;
}
.article-list {
  display: grid;
  gap: 14px;
}
.article-card {
  display: grid;
  grid-template-columns: 220px 1fr 94px;
  gap: 18px;
  align-items: center;
  padding: 14px 10px;
  border-bottom: 1px solid #f1f1f1;
}
.article-card:last-child {
  border-bottom: 0;
}
.article-card img {
  width: 220px;
  height: 112px;
  border-radius: 12px;
  object-fit: cover;
  background: #f5f5f5;
  border: 1px solid #efefef;
}
.lecturer-list .article-card {
  grid-template-columns: 140px 1fr 94px;
}
.lecturer-list .article-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
}
.article-main small {
  color: #8b8b8b;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.article-main h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}
.article-main p {
  margin: 0;
  color: #777;
  line-height: 1.75;
}

/* 文章详情页样式 */
.article-content {
  padding: 30px 40px !important;
}
.article-content .section-head {
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.article-content .section-head h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 800;
  color: #1a1a1a;
}
.article-content .section-head h2:after {
  display: none;
}
.article-content .section-head span {
  font-size: 14px;
  color: #999;
}
.article-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}
.article-text p {
  margin-bottom: 20px;
}
.article-text h2, 
.article-text h3 {
  margin: 35px 0 18px;
  font-weight: 800;
  color: #1a1a1a;
}
.article-text img {
  margin: 25px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.article-text ul, 
.article-text ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.article-text li {
  margin-bottom: 10px;
}
.article-text blockquote {
  margin: 24px 0;
  padding: 12px 16px;
  border-left: 4px solid var(--red);
  background: #fff5f5;
  border-radius: 8px;
  color: #5b616e;
  line-height: 1.8;
}
.tag-stack {
  display: grid;
  justify-items: end;
  gap: 14px;
  color: #a0a0a0;
}
.pill {
  display: inline-flex;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}
.pill.red {
  background: #fff0f0;
  color: var(--red);
}
.pill.blue {
  background: #edf4ff;
  color: #3f78ff;
}
.pill.green {
  background: #eafbf4;
  color: #18a76c;
}
.pill.purple {
  background: #f5eeff;
  color: #7d58f0;
}
.pill.orange {
  background: #fff4e9;
  color: #ff8c22;
}
.side-stack {
  display: grid;
  gap: 16px;
}
.white-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.white-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}
.white-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.white-card .card-head a,
.white-card .card-head span {
  color: #888;
  font-size: 13px;
}
.hot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.hot-list li {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 15px;
}
.hot-list em {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #f5f5f5;
  color: #555;
  font-style: normal;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-list li:nth-child(-n + 3) em {
  background: var(--red);
  color: #fff;
}
.hot-list strong {
  font-weight: 700;
}
.hot-list span {
  color: #7e7e7e;
}
.hot-list .fire {
  color: #f84e4e;
}
.subscribe-box .subscribe-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 18px;
}
.subscribe-icons div {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #666;
  font-size: 12px;
}
.subscribe-icons img {
  width: 36px;
  height: 36px;
}
.subscribe-form {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}
.subscribe-form input {
  height: 42px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 0 14px;
}
.subscribe-form button {
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  transition: all 0.2s;
}
.subscribe-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.consent {
  margin-top: 12px;
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.consent input[type="checkbox"] {
  margin: 0 4px 0 0;
}
.consent .policy-link {
  color: var(--red);
  text-decoration: none;
}
.consent .policy-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}
.bottom-feature-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mini-feature {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mini-feature .iconball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4f4;
}
.mini-feature .iconball img {
  width: 26px;
  height: 26px;
}
.mini-feature h4 {
  margin: 0 0 4px;
  font-size: 20px;
}
.mini-feature p {
  margin: 0;
  color: #777;
  line-height: 1.6;
}
.icon-nav-row {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 22px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.icon-nav-row.five {
  grid-template-columns: repeat(5, 1fr);
}
.icon-nav-row .item {
  min-height: 88px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 10px;
  transition: 0.2s;
}
.icon-nav-row .item:hover {
  background: #fafafa;
}
.icon-nav-row .item img {
  width: 40px;
  height: 40px;
}
.icon-nav-row .item b {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.icon-nav-row .item span {
  display: block;
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}
.section-head-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 0 16px;
}
.section-head-large h2 {
  margin: 0;
  font-size: 34px;
}
.section-head-large a {
  color: #888;
  font-weight: 700;
}
.cards-grid {
  display: grid;
  gap: 18px;
}
.cards-grid.five {
  grid-template-columns: repeat(5, 1fr);
}
.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.course-card,
.product-card,
.mentor-card-new {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: 0.22s;
}
.course-card:hover,
.product-card:hover,
.mentor-card-new:hover,
.benefit-strip > div:hover,
.logo-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 18, 35, 0.06);
}
.course-thumb,
.product-thumb {
  height: 180px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-thumb img {
  transform: scale(1.08);
}
.product-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #1a1a1a;
}
.product-body p {
  margin: 0 0 12px;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}
.product-body .price {
  margin-top: auto;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}
.product-stat {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
  color: #999;
  font-size: 12px;
}
.product-body .btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s;
}
.product-body .btn-detail:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 12px rgba(239, 18, 24, 0.15);
}
.cta-strip {
  margin-top: 20px;
  padding: 26px 30px;
  border: 1px solid #f1dfdb;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff9f7, #fff);
  display: grid;
  grid-template-columns: 90px 1fr 190px;
  align-items: center;
  gap: 20px;
}
.cta-strip img {
  width: 68px;
  height: 68px;
}
.cta-strip h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.cta-strip p {
  margin: 0;
  color: #777;
  line-height: 1.8;
}
.cta-strip .cta-btn {
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a2f, #f4431e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}
.mentor-hero-stats {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.mentor-hero-stats .box {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mentor-hero-stats img {
  width: 36px;
  height: 36px;
}
.mentor-hero-stats strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}
.mentor-hero-stats span {
  display: block;
  color: #666;
  margin-top: 4px;
}
.mentor-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
}
.mentor-card-new {
  padding: 0 0 16px;
}
.mentor-photo {
  height: 210px;
  background: linear-gradient(180deg, #f7f7f7, #fff);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid #f1f1f1;
}
.mentor-photo img {
  width: 180px;
  height: 210px;
  object-fit: contain;
}
.mentor-card-new .info {
  padding: 18px;
}
.mentor-card-new h3 {
  margin: 0;
  font-size: 22px;
}
.mentor-card-new .role {
  margin-top: 6px;
  color: #555;
  font-weight: 700;
}
.mentor-card-new .pill {
  margin-top: 10px;
}
.mentor-card-new p {
  margin: 12px 0 16px;
  color: #777;
  line-height: 1.7;
  min-height: 72px;
}
.mentor-card-new a {
  height: 42px;
  border-radius: 10px;
  background: #fff0f0;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.consult-strip {
  margin-top: 18px;
  border: 1px solid #f1e3df;
  border-radius: 22px;
  padding: 18px 24px;
  background: linear-gradient(180deg, #fff7f6, #fff);
  display: grid;
  grid-template-columns: 70px 1fr 170px;
  align-items: center;
  gap: 18px;
}
.consult-strip img {
  width: 60px;
  height: 60px;
}
.consult-strip h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.consult-strip p {
  margin: 0;
  color: #777;
}
.consult-strip a {
  height: 50px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}
.service-highlights {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.service-highlights .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-highlights img {
  width: 34px;
  height: 34px;
}
.service-highlights b {
  display: block;
  font-size: 17px;
}
.service-highlights span {
  display: block;
  color: #777;
  font-size: 13px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 30px;
}
.events-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 10px 0;
}
.events-grid .service-card-new {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.events-grid .service-card-new .top {
  height: 160px;
}
.events-grid .service-card-new h3 {
  padding: 16px 16px 8px;
  font-size: 16px;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-grid .service-card-new .article-desc {
  padding: 0 16px 12px;
  font-size: 13px;
  color: #667085;
  -webkit-line-clamp: 2;
  min-height: 40px;
}
.events-grid .service-card-new ul {
  padding: 0 16px 16px;
  border-top: 1px solid #f2f4f7;
  margin-top: auto;
  padding-top: 12px;
}
.events-grid .service-card-new ul li {
  color: #667085;
}
.events-grid .service-card-new > a {
  margin: 0 16px 16px;
  padding: 10px;
  text-align: center;
  background: #f9fafb;
  border-radius: 8px;
  color: #344054;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.events-grid .service-card-new > a:hover {
  background: #f04438;
  color: #fff;
}
.service-card-new {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #f0f0f0;
}
.service-card-new .top {
  position: relative;
  height: 180px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-new .top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 0.35s ease;
}
.service-card-new:hover .top img {
  filter: brightness(1.04);
}
.service-card-new h3 {
  margin: 0;
  padding: 18px 18px 6px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}
.service-card-new h3 a {
  color: #1a1a1a !important;
  background: transparent !important;
  padding: 0 !important;
  display: block;
  transition: color 0.2s;
  text-decoration: none;
}
.service-card-new h3 a:hover {
  color: var(--red) !important;
}
.service-card-new ul {
  margin: 0;
  padding: 0 18px 18px;
  list-style: none;
  flex-grow: 1;
}
.service-card-new ul li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}
.service-card-new ul li:first-child {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.service-card-new ul li:last-child {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-new .article-desc {
  padding: 0 18px 12px;
  flex-grow: 1;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.service-card-new > a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 18px 18px;
  height: 40px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}
.service-card-new > a:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 12px rgba(239, 18, 24, 0.2);
}
.service-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
.service-case-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: 0.2s;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.service-case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 18, 35, 0.06);
}
.service-case-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}
.service-case-card div {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-case-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.service-case-card p {
  margin: 0;
  color: #777;
  line-height: 1.8;
  font-size: 14px;
  max-width: 720px;
}
.case-pill {
  display: inline-flex;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  width: max-content;
  margin-bottom: 10px;
}
.case-pill.red {
  background: #fff0f0;
  color: var(--red);
}
.case-metrics {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.case-metrics li {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff7f7;
}
.case-metrics b {
  display: block;
  color: var(--red);
  font-size: 18px;
  line-height: 1.1;
}
.case-metrics span {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 12px;
}
.case-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.case-actions a {
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid #f0d1d1;
  color: var(--red);
  background: #fff;
}
.case-actions a:first-child {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.logo-tile {
  height: 74px;
  border-radius: 14px;
  border: 1px solid #ededed;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.2s;
}
.logo-tile.small {
  font-size: 18px;
  color: #777;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}
.about-copy h1 {
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 1.1;
}
.about-copy p {
  margin: 0 0 10px;
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}
.about-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.about-stats .stat {
  padding: 0 18px 0 0;
  border-right: 1px dashed #e5e5e5;
}
.about-stats .stat:last-child {
  border-right: 0;
}
.about-stats strong {
  font-size: 32px;
  color: var(--red);
}
.about-stats span {
  display: block;
  margin-top: 6px;
  color: #666;
}
.about-photo {
  display: grid;
  gap: 12px;
  align-content: start;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid #ededed;
  box-shadow: var(--shadow);
}
.mission-values {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 18, 35, 0.04);
}
.mission-values-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 18px;
  align-items: stretch;
}
.mission-block,
.values-area {
  min-width: 0;
}
.mission-block > span,
.values-area > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}
.values-area h2,
.mission-block h2 {
  margin: 0 0 18px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-area h2:before,
.mission-block h2:before {
  content: "";
  width: 5px;
  height: 32px;
  background: var(--red);
  border-radius: 4px;
}
.mission-card {
  height: calc(100% - 62px);
  background: linear-gradient(135deg, #f01820, #ff6a3d);
  border-radius: 22px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.mission-card:after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.mission-card img {
  width: 72px;
  height: 72px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}
.mission-card h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.mission-tags b {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}
.values-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.value-card {
  border: 1px solid #ededed;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  text-align: left;
  transition: 0.2s;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 18, 35, 0.07);
}
.value-card img {
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  padding: 12px;
  border-radius: 16px;
  background: #fff4f2;
}
.value-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}
.value-card p {
  margin: 0;
  color: #777;
  line-height: 1.75;
  font-size: 13px;
}
.value-responsibility {
  margin-top: 18px;
  border: 1px solid #f3d5d2;
  background: #fff8f7;
  border-radius: 20px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
}
.value-responsibility img {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
}
.value-responsibility h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.value-responsibility p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}
.value-responsibility a {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}
.dark-footer {
  margin-top: 0;
  background: radial-gradient(
    circle at 30% 20%,
    #24344f 0,
    #111b29 45%,
    #0d1520 100%
  );
  color: #fff;
  border-top: 0;
}
.dark-footer .footer-inner {
  padding-top: 26px;
}
.dark-footer .footer-brand img {
  filter: none;
}
.dark-footer p,
.dark-footer a,
.dark-footer .copy {
  color: rgba(255, 255, 255, 0.78);
}
.dark-footer h4 {
  color: #fff;
}
.dark-footer .social i {
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 1239px) {
  .design-hero,
  .dual-layout,
  .mission-values-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid.five,
  .mentor-grid-new,
  .service-grid,
  .values-grid,
  .values-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-nav-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .icon-nav-row.five {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .bottom-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-card {
    grid-template-columns: 160px 1fr;
  }
  .article-card img {
    width: 160px;
    height: 92px;
  }
  .tag-stack {
    grid-column: 2;
    justify-items: start;
    grid-template-columns: repeat(2, max-content);
  }
  .cta-strip,
  .consult-strip {
    grid-template-columns: 80px 1fr;
  }
  .cta-strip .cta-btn,
  .consult-strip a {
    grid-column: 1/-1;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-case-card {
    grid-template-columns: 220px 1fr;
  }
  .case-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-photo img {
    aspect-ratio: 16/9;
  }
  .mission-card {
    height: auto;
  }
}
@media (max-width: 760px) {
  .design-hero h1,
  .about-copy h1 {
    font-size: 38px;
  }
  .design-hero h2 {
    font-size: 34px;
  }
  .filter-bar {
    height: auto;
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
  }
  .article-card,
  .bottom-feature-row,
  .benefit-strip,
  .icon-nav-row,
  .icon-nav-row.five,
  .cards-grid.five,
  .cards-grid.four,
  .cards-grid.two,
  .mentor-grid-new,
  .service-grid,
  .logo-row,
  .values-grid,
  .values-matrix,
  .about-stats,
  .service-case-card,
  .case-metrics,
  .value-responsibility {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .article-card img {
    width: 100%;
    height: 160px;
  }
  .article-card {
    grid-template-columns: 1fr;
  }
  .tag-stack {
    grid-column: auto;
  }
  .benefit-strip > div + div {
    border-left: 0;
    border-top: 1px solid #f2e8e6;
  }
  .mission-card .inner {
    grid-template-columns: 1fr;
  }
  .design-hero {
    padding: 24px;
  }
  .subscribe-form {
    grid-template-columns: 1fr;
  }
  .contact-layout,
  .process-list {
    grid-template-columns: 1fr;
  }
  .service-case-card img {
    height: 180px;
  }
  .service-case-card div {
    padding: 18px;
  }
  .case-metrics {
    gap: 10px;
  }
  .case-actions a {
    flex: 1;
  }
  .about-grid {
    gap: 18px;
  }
  .about-copy h1 {
    margin-bottom: 14px;
  }
  .about-photo img {
    aspect-ratio: 4/3;
    border-radius: 18px;
  }
  .about-stats {
    margin-top: 20px;
  }
  .mission-values {
    padding: 18px;
  }
  .mission-card {
    padding: 22px;
  }
  .mission-card h3 {
    font-size: 20px;
  }
  .value-responsibility a {
    white-space: normal;
  }
}

/* ===== page image2 generated assets applied ===== */
.hero-side-art img.page-hero-raster,
.about-photo img.page-hero-raster {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-side-art img[src*="image2-pages"],
.about-photo img[src*="image2-pages"] {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(15, 18, 35, 0.08);
}
.design-hero .hero-side-art {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.design-hero .hero-side-art img[src*="image2-pages"] {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.design-hero.red .hero-side-art img[src*="image2-pages"] {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.about-photo img[src*="image2-pages"] {
  background: #fff;
}

/* 首页 Hero 修正：避免标题被逐字拆行，并保留完整说明与按钮。 */
.hero-banner {
  height: 390px;
  background-position: center right;
}
.hero-copy {
  width: 64%;
  padding: 44px 40px 34px;
}
.hero-copy h1 {
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: 1px;
}
.hero-copy .hero-title-nowrap {
  white-space: nowrap;
}
.hero-copy h2 {
  margin: 12px 0 10px;
  font-size: 18px;
  line-height: 1.35;
}
.hero-copy ul {
  margin-bottom: 12px;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}
.hero-copy p {
  max-width: 430px;
  margin-bottom: 14px;
  line-height: 1.65;
}
@media (max-width: 1239px) {
  .hero-banner {
    height: auto;
    min-height: 390px;
  }
  .hero-copy {
    width: min(66%, 520px);
  }
}
@media (max-width: 760px) {
  .hero-banner {
    min-height: 430px;
    background-position: center right;
  }
  .hero-copy {
    width: 100%;
    padding: 36px 24px 88px;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.16;
  }
  .hero-copy h2 {
    font-size: 17px;
  }
  .hero-copy p {
    max-width: none;
  }
}

/* 首页 Hero 右侧卡片修正：与主视觉等高，并让两张卡片均分空间。 */
.hero-side {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}
.side-card {
  height: auto;
  min-height: 0;
  overflow: visible;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.hero-side .side-text {
  flex: 1 1 auto;
  min-height: 0;
  padding: 28px 24px 20px 158px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.hero-side .side-text h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  line-height: 1.32;
}
.hero-side .side-text p {
  margin-bottom: 10px;
  line-height: 1.55;
}
.hero-side .side-text a {
  width: max-content;
  margin-top: auto;
  align-self: flex-start;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1239px) {
  .hero-side {
    grid-template-rows: none;
    min-height: 0;
  }
  .side-card {
    min-height: 188px;
  }
  .hero-side .side-text {
    padding-left: 158px;
  }
}
@media (max-width: 760px) {
  .side-card {
    min-height: 176px;
  }
  .hero-side .side-text {
    padding: 22px 20px 20px 148px;
  }
  .hero-side .side-text h3 {
    font-size: 18px;
  }
}

/* 资讯洞察页 Hero 背景图。 */
.design-hero.insights-hero {
  min-height: 300px;
  background: url("images/design-exact/insights-hero-bg.svg") center/cover
    no-repeat;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.design-hero.insights-hero .hero-side-art {
  display: none;
}
.design-hero.insights-hero p {
  max-width: 620px;
}

@media (max-width: 1239px) {
  .design-hero.insights-hero {
    grid-template-columns: 1fr;
    background-position: center right;
  }
}

/* footer 统一基线：共享 partial 统一复用。 */
.footer-pages {
  border-top: 0;
}
.footer-pages .footer-inner {
  padding: 30px 0 16px;
  gap: 24px;
  align-items: start;
}
.footer-links-wrapper {
  display: contents;
}
.footer-pages .footer-inner > div {
  min-width: 0;
}
.footer-pages .footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}
.footer-pages .footer-brand p {
  max-width: 300px;
  line-height: 1.8;
  font-size: 13px;
}
.footer-pages .footer-col h4 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.2;
}
.footer-pages .footer-col a {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-social-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  width: max-content;
}
.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  flex: 0 0 24px;
  object-fit: contain;
}
.footer-contact-meta {
  margin-top: 12px;
  color: #777;
  font-size: 12px;
  line-height: 1.7;
}
.footer-contact-meta b {
  display: block;
  margin-bottom: 4px;
  color: #555;
}
.footer-contact-meta p {
  margin: 0;
}
.footer-pages .social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-pages .social i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 28px;
}
.footer-pages .social i:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.footer-pages .copy {
  grid-column: 1/-1;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-pages .footer-col a:hover {
  color: var(--red);
}
.footer-pages .footer-brand p,
.footer-pages .footer-col a,
.footer-pages .copy {
  color: #777;
}
.footer-pages .copy span {
  color: inherit;
}
.dark-footer {
  margin-top: 0;
  background: radial-gradient(
    circle at 30% 20%,
    #24344f 0,
    #111b29 45%,
    #0d1520 100%
  );
  color: #fff;
}
.dark-footer .footer-brand p,
.dark-footer .footer-col a,
.dark-footer .copy {
  color: rgba(255, 255, 255, 0.78);
}
.dark-footer .footer-col a:hover,
.dark-footer .copy span {
  color: #fff;
}
.dark-footer .footer-contact-meta,
.dark-footer .footer-contact-meta b {
  color: rgba(255, 255, 255, 0.78);
}
.dark-footer .copy {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.dark-footer .social i {
  background: rgba(255, 255, 255, 0.12);
}
.dark-footer .social i:after {
  border-color: #fff;
}

/* footer 关注区域修正：避免联系方式挤压和 CSS 图标叠层错乱。 */
.footer-pages .footer-inner {
  grid-template-columns: 1.35fr 0.78fr 0.78fr 0.78fr 1.35fr;
}
.footer-pages .footer-col:last-of-type {
  min-width: 190px;
}
.footer-social-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}
.footer-contact-item {
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f6f6f6;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  width: auto;
  color: #555 !important;
  font-size: 12px;
  font-weight: 700;
}
.footer-contact-item:hover {
  background: #fff1f1;
  color: var(--red) !important;
}
.social-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}
.footer-contact-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 12px;
  line-height: 1.75;
  color: #777;
}
.footer-contact-meta b {
  display: block;
  margin-bottom: 4px;
  color: #555;
  font-size: 13px;
}
.footer-contact-meta p {
  margin: 0;
  white-space: nowrap;
}
.dark-footer .footer-contact-item {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86) !important;
}
.dark-footer .footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}
.dark-footer .footer-contact-meta {
  border-top-color: rgba(255, 255, 255, 0.12);
}
@media (max-width: 760px) {
  .footer-pages .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 24px;
    gap: 0;
  }
  .footer-pages .footer-brand {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .footer-pages .footer-brand img {
    margin: 0 auto 12px;
  }
  .footer-pages .footer-brand p {
    margin: 0 auto;
    max-width: none;
  }
  .footer-pages .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-bottom: 32px;
  }
  .footer-pages .footer-col {
    margin-bottom: 0;
  }
  .footer-pages .footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 700;
  }
  .footer-pages .footer-col a {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
  }
  .footer-pages .footer-col:last-of-type {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }
  .footer-contact-item {
    flex: 1;
    min-width: 80px;
    justify-content: center;
    padding: 10px !important;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .footer-contact-item span {
    font-size: 13px;
  }
  .footer-contact-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    background: #fdfdfd;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    margin-top: 0;
  }
  .footer-contact-meta b {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .footer-contact-meta p {
    font-size: 13px;
    white-space: normal;
  }
  .footer-pages .copy {
    margin-top: 24px;
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

/* 首页纯样式精修：仅调整布局密度和视觉层级，不修改任何图片素材。 */
.home-polish .site-header {
  box-shadow: 0 1px 14px rgba(20, 25, 35, 0.05);
}
.home-polish .topbar {
  background: #fbfbfb;
}
.home-polish .header-main {
  height: 74px;
  grid-template-columns: 230px 570px 1fr;
}
.home-polish .brand img {
  width: 200px;
  height: auto;
}
.home-polish .search {
  height: 44px;
  box-shadow: 0 6px 14px rgba(239, 18, 24, 0.035);
}
.home-polish .search > input[name="q"],
.home-polish .search > input[type="search"] {
  height: 44px;
  border-width: 2px;
  border-radius: 4px 0 0 4px;
}
.home-polish .search-field {
  border-radius: 4px 0 0 4px;
  border-width: 2px;
}
.home-polish .search-field input {
  height: 44px;
}
.home-polish .search > button[type="submit"] {
  border-radius: 0 4px 4px 0;
}
.home-polish .register {
  width: 124px;
  height: 44px;
  border-radius: 6px;
}
.home-polish .main-nav {
  height: 44px;
  gap: 24px;
}
.home-polish .main-nav a {
  height: 44px;
  padding: 0 4px;
}
.home-polish .focus-strip {
  height: 38px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(20, 25, 35, 0.03);
}
.home-polish .hero-section {
  --home-hero-banner-h: 408px;
  margin-top: 14px;
  gap: 16px;
}
@media (min-width: 1240px) {
  .home-polish .hero-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .home-polish .hero-banner {
    flex: 0 0 760px;
    width: 760px;
    max-width: 760px;
    height: var(--home-hero-banner-h);
    min-height: var(--home-hero-banner-h);
    box-sizing: border-box;
  }
  .home-polish .hero-side {
    flex: 0 0 386px;
    width: 386px;
    max-width: 386px;
    align-self: stretch;
    min-height: var(--home-hero-banner-h);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .home-polish .hero-side > .side-card {
    flex: 1 1 0;
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .home-polish .hero-side .side-text a {
    flex-shrink: 0;
  }
}
.home-polish .hero-banner {
  height: var(--home-hero-banner-h, 390px);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(121, 12, 18, 0.12);
}
.home-polish .hero-copy {
  width: 64%;
  padding: 44px 40px 34px;
}
.home-polish .hero-copy h1 {
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: 1px;
}
.home-polish .hero-copy h2 {
  margin-top: 12px;
  font-size: 18px;
}
.home-polish .hero-copy ul {
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.home-polish .hero-copy p {
  max-width: 430px;
  line-height: 1.65;
}
.home-polish .hero-side {
  gap: 14px;
}
.home-polish .side-card {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(20, 25, 35, 0.045);
  background-position: center;
  background-size: cover;
}
.home-polish .hero-side .side-text {
  padding: 22px 20px 18px 148px;
  overflow: visible;
  min-height: auto;
}
.home-polish .hero-side .side-text h3 {
  font-size: 17px;
  line-height: 1.4;
  margin: 6px 0 6px;
}
.home-polish .hero-side .side-text p {
  max-width: none;
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 8px;
}
.home-polish .promo {
  height: 74px;
  margin-top: 14px;
  border: 1px solid #f2cfcb;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(239, 18, 24, 0.035);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: #fff;
}
.home-polish .promo > a {
  width: 124px;
  height: 42px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s;
  text-decoration: none;
}
.home-polish .promo > a:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.home-polish .entry-row {
  gap: 14px;
  margin-top: 14px;
}
.home-polish .entry {
  height: 92px;
  border-radius: 10px;
}
.home-polish .stats {
  gap: 14px;
  margin-top: 14px;
}
.home-polish .stats article {
  height: 80px;
  border-radius: 10px;
  padding: 17px 24px;
}
.home-polish .stats strong {
  font-size: 30px;
}
.home-polish .content-layout {
  gap: 16px;
  margin-top: 16px;
  grid-template-columns: 1fr 313px;
}
.home-polish .main-col,
.home-polish .side-col {
  gap: 14px;
}
.home-polish .panel {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(20, 25, 35, 0.03);
}
.home-polish .news-panel,
.home-polish .block,
.home-polish .side-box {
  padding: 16px 18px;
}
.home-polish .section-head {
  height: 36px;
}
.home-polish .section-head h2 {
  font-size: 19px;
}
.home-polish .section-head h2:after {
  bottom: -16px;
  width: 32px;
}
.home-polish .news {
  grid-template-columns: 168px 1fr;
  gap: 18px;
  padding: 17px 0;
}
.home-polish .thumb {
  height: 74px;
  border-radius: 7px;
}
.home-polish .side-box h3 {
  font-size: 17px;
}
.home-polish .course-row,
.home-polish .topic-row,
.home-polish .topic-venue-grid {
  gap: 12px;
}
.home-polish .course-row article,
.home-polish .topic-row article {
  border-radius: 8px;
  background: #fff;
}
.home-polish .member {
  height: 84px;
  margin-top: 16px;
  border-radius: 10px;
}
.home-polish .footer-pages {
  margin-top: 8px;
}

/* 选品货盘页推荐平台广告位：内容由 CMS 区块后台维护。 */
.market-platform-ad {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 138px;
  gap: 18px;
  align-items: center;
  margin: 0 0 20px;
  padding: 18px 20px;
  border: 1px solid #f2d8d5;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #fff7f5);
  box-shadow: 0 8px 22px rgba(239, 18, 24, 0.045);
}
.market-platform-logo {
  min-width: 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid #f0e5e3;
  border-radius: 8px;
  background: #fff;
}
.market-platform-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.market-platform-main {
  min-width: 0;
}
.market-platform-main span {
  display: inline-flex;
  height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  background: #ef1218;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.market-platform-main h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  line-height: 1.35;
}
.market-platform-main p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}
.market-platform-btn {
  width: 138px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ef1218;
  color: #fff !important;
  font-weight: 900;
  white-space: nowrap;
}
.market-platform-btn:hover {
  background: #d60d13;
  color: #fff !important;
  transform: translateY(-1px);
}

/* CMS 选品货盘列表：封面完整展示，避免产品图被 4:3 容器裁切。 */
.product-item {
  margin-bottom: 24px;
}
.product-item .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20, 25, 35, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-item .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20, 25, 35, 0.08);
}
.product-item .card .thumb {
  position: relative;
  height: auto;
  padding: 0;
  color: inherit;
  background: #fff8ee;
  border-bottom: 1px solid #f1eee9;
}
.product-item .card .thumb .preview-link {
  display: block;
}
.product-item .card .thumb .embed-responsive {
  height: auto;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #fff9ef, #fff);
}
.product-item .card .thumb .embed-responsive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.22s ease;
}
.product-item .card .thumb:hover .embed-responsive img {
  transform: scale(1.015);
}
.product-item .card .thumb .preview-link::before {
  display: none;
}
.product-item .card .quickview-link {
  display: none;
}
.product-item .card .title {
  flex: 1 1 auto;
  padding: 16px 18px 0;
}
.product-item .card h2 {
  height: auto;
  min-height: 52px;
  margin: 0 0 8px;
  padding: 0;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-item .card h2 a {
  color: inherit;
}
.product-item .card h2 a:hover {
  color: var(--red);
}
.product-item .card .operate {
  height: auto;
  min-height: 54px;
  padding: 0 18px 16px;
  overflow: visible;
}
.product-item .card .operate .pull-left {
  width: 100%;
  margin-bottom: 12px;
  color: #98a2b3 !important;
  font-size: 12px;
}
.product-item .card .operate .pull-right {
  display: block;
  width: 100%;
  float: none !important;
}
.product-item .card .operate .detail {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  line-height: 40px;
}
.product-item .card .operate .detail:hover {
  background: var(--red-dark);
}
@media (max-width: 1239px) {
  .home-polish .header-main {
    grid-template-columns: 230px 1fr 140px;
  }
  .home-polish .hero-section,
  .home-polish .content-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-polish .hero-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }
  .home-polish .side-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .home-polish .content-layout > .main-col {
    min-width: 0;
  }
  .home-polish .article-content {
    padding: 14px 16px !important;
    border-radius: 10px !important;
  }
  .home-polish .article-content > .section-head {
    height: auto !important;
    min-height: 0;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding-bottom: 12px;
  }
  .home-polish .article-content > .section-head h2 {
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere;
  }
  .home-polish .article-content > .section-head h2:after {
    display: none;
  }
  .home-polish .article-content > .section-head span {
    font-size: 12px;
    line-height: 1.4;
    color: #98a2b3;
  }
  .home-polish .article-content .article-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 16px !important;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .home-polish .article-content .article-tag span {
    margin-right: 0 !important;
  }
  .home-polish .article-content .article-text {
    color: #344054;
    font-size: 15px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }
  .home-polish .article-content .article-text p {
    margin: 0 0 14px;
  }
  .home-polish .article-content .article-donate {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
  .home-polish .article-content .article-donate .btn {
    margin: 0;
    white-space: normal;
  }
  .home-polish .article-content .social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .home-polish .article-content .entry-meta {
    padding: 12px !important;
    border-radius: 10px !important;
  }
  .home-polish .article-content .entry-meta .goods li {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
  }
  .home-polish .article-content .entry-meta .goods li span {
    max-width: none;
    text-align: left;
    overflow-wrap: anywhere;
  }
  .home-polish .article-content .service-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card-new h3 {
    padding: 14px 18px 6px;
    font-size: 16px;
  }
  .service-card-new .top {
    height: 160px;
  }
  .home-polish .header-main {
    grid-template-columns: 1fr;
  }
  .home-polish .brand img {
    width: 200px;
  }
  .home-polish .hero-banner {
    min-height: 430px;
  }
  .home-polish .hero-copy {
    width: 100%;
    padding: 36px 24px 88px;
  }
  .home-polish .hero-copy h1 {
    font-size: 38px;
  }
  .home-polish .hero-side,
  .home-polish .course-row,
  .home-polish .topic-row,
  .home-polish .side-col {
    grid-template-columns: 1fr;
  }
  .home-polish .entry-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home-polish .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home-polish .entry {
    height: auto;
    min-height: 86px;
    padding: 12px 10px 12px 60px;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
  }
  .home-polish .entry img {
    left: 10px;
    width: 44px;
    height: 44px;
  }
  .home-polish .entry strong {
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .home-polish .entry span {
    font-size: 11px;
    line-height: 1.4;
    color: #667085;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .home-polish .stats article {
    height: auto;
    min-height: 76px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  .home-polish .stats strong {
    font-size: 24px;
    line-height: 1.1;
  }
  .home-polish .stats span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.35;
    color: #667085;
    overflow-wrap: anywhere;
  }
  .home-polish .hero-side .side-text {
    padding-left: 148px;
  }
  .home-polish .content-layout {
    gap: 14px;
  }
  .home-polish .news {
    grid-template-columns: 1fr;
  }
  .home-polish .thumb {
    height: 94px;
  }
  .home-polish .member {
    height: auto;
  }
  .home-polish .footer-pages {
    margin-top: 0;
  }
  .market-platform-ad {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .market-platform-logo {
    width: 170px;
    max-width: 100%;
    justify-content: flex-start;
  }
  .market-platform-main h3 {
    font-size: 18px;
  }
  .market-platform-btn {
    width: 128px;
  }
}
