/* 参考 tooling.qinfeng-gp.com 的信息架构与版式节奏；视觉为铠索独立调色（青绿 + 金 + 浅色底），非红色工业风 */

body.theme-qinfeng {
  --bg: #ffffff;
  --bg-elevated: #f4f6f9;
  --panel: #ffffff;
  --panel-face: #f0f2f6;
  --panel-highlight: #fafbfc;
  --ink: #1a1f2e;
  --muted: #5a6478;
  --line: rgba(26, 31, 46, 0.1);
  --line-strong: rgba(26, 31, 46, 0.16);
  --accent: #1e3a8a;
  --accent-dim: rgba(30, 64, 175, 0.14);
  --accent-2: #2563eb;
  --warm: #b45309;
  --glow-teal: 0 8px 32px rgba(30, 64, 175, 0.2);
  --bezel-top: rgba(255, 255, 255, 0.8);
  --bezel-inset: rgba(0, 0, 0, 0.04);
  --frame-outer: rgba(26, 31, 46, 0.12);
  --frame-mid: rgba(26, 31, 46, 0.08);
}

body.theme-qinfeng {
  background-color: var(--bg);
  background-image: none;
  color: var(--ink);
}

body.theme-qinfeng .metal-strip {
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, var(--accent), #3b82f6);
  opacity: 1;
}

body.theme-qinfeng > header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.theme-qinfeng .logo {
  color: var(--ink);
}

body.theme-qinfeng nav a {
  color: #4a5568;
}

body.theme-qinfeng nav a:hover {
  color: var(--ink);
  background: rgba(30, 64, 175, 0.08);
}

body.theme-qinfeng nav a.active {
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: inset 0 0 0 1px rgba(30, 64, 175, 0.25);
}

body.theme-qinfeng .nav-dropdown__menu {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

body.theme-qinfeng .nav-dropdown__menu a {
  color: var(--ink);
}

body.theme-qinfeng .nav-dropdown__menu a:hover,
body.theme-qinfeng .nav-dropdown__menu a.active {
  background: rgba(30, 64, 175, 0.08);
  color: var(--accent);
}

body.theme-qinfeng .lang-box {
  color: var(--muted);
}

body.theme-qinfeng .lang-box select {
  background: var(--panel-face);
  border-color: var(--line);
  color: var(--ink);
}

body.theme-qinfeng .header-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 14px rgba(30, 64, 175, 0.28);
}

/* —— 首页 Banner：固定高度 20cm，背景图仅上下裁切 —— */
.ks-cinema {
  position: relative;
  height: 20cm;
  min-height: 20cm;
  max-height: 20cm;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 900px) {
  .ks-cinema {
    height: auto;
    min-height: min(70vh, 480px);
    max-height: none;
  }

  .ks-cinema__content {
    padding: 28px 16px;
  }

  .ks-cinema__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .ks-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

.ks-cinema__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.ks-cinema__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(10, 18, 32, 0.88) 0%, rgba(15, 28, 42, 0.55) 42%, rgba(12, 20, 36, 0.75) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30, 64, 175, 0.2), transparent 55%);
}

.ks-cinema__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  padding: 1.2cm 16px;
  color: #fff;
  text-align: center;
}

.ks-cinema__kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
  margin: 0 0 20px;
}

.ks-cinema__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 20px;
  text-wrap: balance;
}

.ks-cinema__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.9);
  margin: 0 auto 36px;
  max-width: 40rem;
}

.ks-cinema__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.ks-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ks-btn--primary {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.ks-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.ks-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.ks-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(147, 197, 253, 0.65);
}

.ks-cinema__scroll {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 36px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  text-decoration: none;
  color: transparent;
}

.ks-cinema__scroll::after {
  content: "";
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  animation: ks-wheel 2s ease-in-out infinite;
}

@keyframes ks-wheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ks-cinema__scroll::after {
    animation: none;
  }
}

/* 首屏下信任条 */
.ks-trust-strip {
  background: var(--panel-highlight);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.ks-trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

body.theme-qinfeng .ks-trust-strip .trust-badge {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* 区块：白 / 灰交替 */
.ks-band {
  padding: clamp(72px, 10vw, 120px) 0;
}

.ks-band--white {
  background: transparent;
}

.ks-band--gray {
  background: transparent;
}

/* 首页指定区块：取消不透明白/灰底色块 */
body.page-home.theme-qinfeng #scope.ks-band,
body.page-home.theme-qinfeng #about-teaser.ks-band,
body.page-home.theme-qinfeng #advantage.ks-band,
body.page-home.theme-qinfeng #factory.ks-band,
body.page-home.theme-qinfeng #news.ks-band,
body.page-home.theme-qinfeng #quick.ks-band,
body.page-home.theme-qinfeng #clients.ks-band,
body.page-home.theme-qinfeng #message.ks-band {
  background: transparent !important;
  background-color: transparent !important;
}

/* 首页：相邻两节之间留白合计 4cm（上节底 2cm + 下节顶 2cm） */
body.page-home.theme-qinfeng #scope.ks-band {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 2cm !important;
}
body.page-home.theme-qinfeng #about-teaser.ks-band {
  padding-top: 2cm !important;
  padding-bottom: 2cm !important;
}
body.page-home.theme-qinfeng #advantage.ks-band {
  padding-top: 2cm !important;
  padding-bottom: 2cm !important;
}
body.page-home.theme-qinfeng #factory.ks-band {
  padding-top: 2cm !important;
  padding-bottom: 2cm !important;
}
body.page-home.theme-qinfeng #news.ks-band,
body.page-home.theme-qinfeng #quick.ks-band,
body.page-home.theme-qinfeng #clients.ks-band,
body.page-home.theme-qinfeng #message.ks-band {
  padding-top: 2cm !important;
  padding-bottom: 2cm !important;
}

/* 区块标题：勿继承顶栏 header 的 sticky / 毛玻璃底 */
header.ks-heading,
.ks-heading {
  position: static;
  top: auto;
  z-index: auto;
  text-align: center;
  margin-bottom: 20px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.ks-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ks-heading__en {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.ks-heading__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ks-narrow {
  max-width: 52rem;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
}

.ks-narrow.t-center {
  text-align: center;
}

/* 业务范围：横向滑轨 + 卡片 */
.ks-scope-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.ks-scope-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ks-scope-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.ks-scope-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ks-scope-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ks-scope-card__body {
  padding: 18px 16px 20px;
}

.ks-scope-card__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.ks-scope-card__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* 数据四宫格 */
#about-teaser .ks-stat-grid {
  margin-bottom: 36px;
}

.ks-stat-grid {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.ks-stat-grid li {
  background: #fff;
  padding: 28px 16px;
  text-align: center;
}

.ks-stat-grid em {
  display: block;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}

/* 仅统计项说明文字；勿用 li span 以免 em 内的 i18n 数字被压成 13px */
.ks-stat-grid li > span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .ks-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 通栏图 */
.ks-bleed-img {
  margin-top: 48px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-height: min(52vh, 520px);
  overflow: hidden;
}

.ks-bleed-img img {
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  display: block;
}

.ks-link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid rgba(30, 64, 175, 0.4);
  padding-bottom: 4px;
}

.ks-link-more:hover {
  color: var(--accent-2);
}

/* 能力四栏（类沁峰 advantage） */
.ks-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .ks-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ks-adv-grid {
    grid-template-columns: 1fr;
  }
}

.ks-adv-card {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1e293b;
  color: #fff;
}

.ks-adv-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.ks-adv-card:hover .ks-adv-card__bg {
  transform: scale(1.06);
}

.ks-adv-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.88) 100%);
}

.ks-adv-card__body {
  position: absolute;
  inset: 0;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.ks-adv-card__body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.ks-adv-card__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.88);
}

/* 产品区（浅色版） */
.ks-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .ks-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ks-product-grid {
    grid-template-columns: 1fr;
  }
}

.ks-product-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ks-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.ks-product-card__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.ks-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ks-product-card__body {
  padding: 16px 14px 18px;
}

.ks-product-card__body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.ks-product-card__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

/* 资讯三卡 */
.ks-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

@media (max-width: 800px) {
  .ks-news-grid {
    grid-template-columns: 1fr;
  }
}

.ks-news-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.ks-news-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.ks-news-card__img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.ks-news-card__body {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ks-news-card__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.ks-news-card__body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.ks-news-card__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.ks-news-card__go {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* 快捷入口 */
.ks-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .ks-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ks-quick-card {
  display: block;
  padding: 22px 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ks-quick-card:hover {
  border-color: rgba(30, 64, 175, 0.35);
  box-shadow: var(--glow-teal);
}

.ks-quick-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.ks-quick-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* 内页通用覆盖 */
body.theme-qinfeng .page-hero {
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 35%, #f8fafc 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

body.theme-qinfeng .page-hero__kicker {
  color: var(--accent);
  border-bottom-color: rgba(180, 83, 9, 0.4);
}

body.theme-qinfeng .page-hero__lead {
  color: var(--muted);
}

body.theme-qinfeng .page-body {
  background: var(--bg);
}

body.theme-qinfeng .hero {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-color: var(--line);
}

body.theme-qinfeng .hero-split__meta {
  border-image: linear-gradient(180deg, var(--accent), var(--warm)) 1;
}

body.theme-qinfeng .flow {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--ink);
}

body.theme-qinfeng .flow h2 {
  color: var(--ink);
  border-bottom-color: var(--line);
}

body.theme-qinfeng .flow .card,
body.theme-qinfeng .flow .pillar {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

body.theme-qinfeng .flow .muted,
body.theme-qinfeng .flow .card p,
body.theme-qinfeng .flow .pillar p {
  color: var(--muted);
}

body.theme-qinfeng .card {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

body.theme-qinfeng .card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

body.theme-qinfeng .btn {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

body.theme-qinfeng .btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}

body.theme-qinfeng .site-footer {
  border-top: 3px solid var(--accent);
}

.ks-actions-center {
  text-align: center;
}

body.theme-qinfeng .client-strip {
  background: rgba(26, 31, 46, 0.04);
  border-color: var(--line);
}

body.theme-qinfeng .client-slot {
  background: #fff;
  color: var(--muted);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

body.theme-qinfeng .message-layout--editorial .message-aside {
  border-inline-end-color: var(--line);
}

body.theme-qinfeng .cta {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  border-color: var(--line);
}

body.theme-qinfeng .ks-trust-strip .trust-badge span.dot {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.22);
}

body.theme-qinfeng .content-band h2 {
  border-bottom-color: var(--accent);
}

/* 首页：去掉各节标题下方的灰/白色底块（节区、容器、卡片、统计格、客户条、表单） */
body.page-home.theme-qinfeng {
  background-color: #fff;
  background-image: none;
}

body.page-home.theme-qinfeng main,
body.page-home.theme-qinfeng .ks-band,
body.page-home.theme-qinfeng .ks-band > .container,
body.page-home.theme-qinfeng .ks-heading,
body.page-home.theme-qinfeng .ks-narrow {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body.page-home.theme-qinfeng #scope,
body.page-home.theme-qinfeng #about-teaser,
body.page-home.theme-qinfeng #advantage,
body.page-home.theme-qinfeng #factory,
body.page-home.theme-qinfeng #news,
body.page-home.theme-qinfeng #quick,
body.page-home.theme-qinfeng #clients,
body.page-home.theme-qinfeng #message {
  background: transparent !important;
  background-color: transparent !important;
}

body.page-home.theme-qinfeng #scope .ks-scope-card,
body.page-home.theme-qinfeng #news .ks-news-card,
body.page-home.theme-qinfeng #news .ks-news-card__body,
body.page-home.theme-qinfeng #quick .ks-quick-card,
body.page-home.theme-qinfeng #about-teaser .ks-stat-grid,
body.page-home.theme-qinfeng #about-teaser .ks-stat-grid li,
body.page-home.theme-qinfeng #clients .client-strip,
body.page-home.theme-qinfeng #clients .client-slot,
body.page-home.theme-qinfeng #clients .client-logo-grid,
body.page-home.theme-qinfeng #clients .client-logo-item,
body.page-home.theme-qinfeng #clients .client-group-title,
body.page-home.theme-qinfeng #message .message-layout,
body.page-home.theme-qinfeng #message .message-aside,
body.page-home.theme-qinfeng #message .inquiry-form input,
body.page-home.theme-qinfeng #message .inquiry-form textarea {
  background: transparent !important;
  background-color: transparent !important;
}

body.page-home.theme-qinfeng #scope .ks-scope-card,
body.page-home.theme-qinfeng #news .ks-news-card,
body.page-home.theme-qinfeng #quick .ks-quick-card {
  box-shadow: none !important;
}

body.page-home.theme-qinfeng #clients .client-slot {
  color: var(--muted);
  box-shadow: none !important;
}

body.page-home.theme-qinfeng #clients .client-slot::before {
  border-color: var(--line);
}

body.page-home.theme-qinfeng #clients .client-group-title {
  color: var(--text);
}

body.page-home.theme-qinfeng #clients .client-logo-item {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

body.theme-qinfeng .kaisuo-float__panel {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

body.theme-qinfeng .kaisuo-float__title {
  color: var(--muted);
}

body.theme-qinfeng .kaisuo-float__pop-inner {
  background: #fff;
  border-color: var(--line);
}

body.theme-qinfeng .kaisuo-float__id {
  color: var(--muted);
}
