/* ============================================
   智能电视(TV)应用开发与大屏互动营销服务商 - 主样式表
   客厅沉浸黑 + 智能交互蓝 视觉体系
   ============================================ */

:root {
  --color-primary: #0A0A0A;
  --color-accent: #2196F3;
  --color-bg: #121212;
  --color-card: #1E1E1E;
  --color-text: #F5F5F5;
  --color-text-secondary: #B0B0B0;
  --color-accent-glow: rgba(33, 150, 243, 0.3);
  --color-accent-light: rgba(33, 150, 243, 0.1);
  --radius-card: 16px;
  --radius-btn: 28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-focus: 0 0 0 3px var(--color-accent-glow), 0 8px 32px rgba(33, 150, 243, 0.2);
  --transition-focus: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  --font-main: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --max-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #64B5F6;
}

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

/* ============ 导航栏 ============ */
.c9d51b981 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c60532d06 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.c7a86dc11 {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.c48d3e541 {
  display: flex;
  gap: 32px;
  align-items: center;
}

.cc98c0d8e {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.cc98c0d8e:hover,
.ce7425f23 {
  color: var(--color-accent);
}

.cc98c0d8e::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.cc98c0d8e:hover::after,
.ce7425f23::after {
  width: 100%;
}

.cffa2c3dc {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.cffa2c3dc span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* ============ Hero 客厅大屏区 ============ */
.caf0f030b {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at center bottom, rgba(33, 150, 243, 0.08) 0%, transparent 60%);
  overflow: hidden;
}

.c2a315bea {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 600px 400px at 50% 60%, rgba(33, 150, 243, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(33, 150, 243, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 300px 300px at 80% 80%, rgba(33, 150, 243, 0.04) 0%, transparent 60%);
  animation: ambientPulse 6s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.c21f6c422 {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--color-primary);
  border-radius: 12px;
  border: 3px solid #333;
  box-shadow: 
    0 0 60px rgba(33, 150, 243, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.c107a6cb1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ce7d4106c {
  width: 200px;
  height: 20px;
  background: linear-gradient(to bottom, #333, #1a1a1a);
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

.c1cde55ad {
  text-align: center;
  margin-top: 40px;
}

.c5ec853c0 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ce60ad80c {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.c11a399f9 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.c11a399f9:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.6);
  color: #fff;
}

/* ============ 通用容器 ============ */
.c06d81105 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ce36e16d7 {
  padding: 100px 0;
  position: relative;
}

.c29f8ca7d {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.c607968df {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* ============ 核心能力矩阵 - 横向卡片 ============ */
.c48c9c02b {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.c51ced19a {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-focus);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.c51ced19a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.c51ced19a:hover,
.c51ced19a:focus {
  transform: scale(1.05);
  box-shadow: var(--shadow-focus);
  border-color: var(--color-accent);
}

.c51ced19a:hover::before {
  opacity: 1;
}

.cda8f4ef0 {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 12px;
}

.cf2201cd1 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.c35550247 {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  position: relative;
  line-height: 1.7;
}

/* ============ 案例展播 - 横向滚动 ============ */
.c10b43a19 {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-card);
}

.c10b43a19::-webkit-scrollbar {
  height: 6px;
}

.c10b43a19::-webkit-scrollbar-track {
  background: var(--color-card);
  border-radius: 3px;
}

.c10b43a19::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.cb99f67be {
  min-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--color-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-focus);
}

.cb99f67be:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-focus);
}

.cb12d9622 {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.c6e2961c1 {
  padding: 20px;
}

.c13dd1860 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.c60216fe0 {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.c3d9a7a01 {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.c1e09e4e6 {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ============ 数据大屏 ============ */
.cd06cd24e {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cf1f9832d {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cf1f9832d::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.cf26191d5 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.cf650f6dd {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* ============ SDK下载区 ============ */
.ca5836d45 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.c21fa6417 {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-focus);
}

.c21fa6417:hover {
  transform: scale(1.02);
  border-color: var(--color-accent);
}

.c264af29c {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cc7b39e76 {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.c377e9511 {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.c377e9511:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ============ 合作伙伴 ============ */
.cf93736e6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.c31e6c3fd {
  background: var(--color-card);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-focus);
  aspect-ratio: 2/1;
}

.c31e6c3fd:hover {
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.c31e6c3fd img {
  max-height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.c31e6c3fd:hover img {
  opacity: 1;
}

.cec4f19e0 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.c6df0f2fa {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.c1f4daeae {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.8;
}

.c21a7e53d {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}

.cc210ef6f {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ============ 页脚 ============ */
.cec7b937f {
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 24px 30px;
}

.c9f652435 {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.c36275b92 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cad9c0c08 {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cd7e6edea {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.c5b3275f1 {
  list-style: none;
}

.c5b3275f1 li {
  margin-bottom: 10px;
}

.c5b3275f1 a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.c5b3275f1 a:hover {
  color: var(--color-accent);
}

.c7c94efc9 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ============ 面包屑 ============ */
.cc57f69bc {
  padding: 100px 24px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c1e29f94e {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.c1e29f94e a {
  color: var(--color-text-secondary);
}

.c1e29f94e a:hover {
  color: var(--color-accent);
}

/* ============ 内页通用 ============ */
.c73873452 {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.ce3c7f032 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.c54f38856 {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.c464f2690 {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}

.c464f2690 h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  font-weight: 700;
}

.c464f2690 h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  font-weight: 600;
}

.c464f2690 p {
  margin-bottom: 20px;
}

.c464f2690 ul,
.c464f2690 ol {
  margin: 16px 0;
  padding-left: 24px;
}

.c464f2690 li {
  margin-bottom: 8px;
}

.c464f2690 img {
  border-radius: var(--radius-card);
  margin: 24px 0;
}

.c464f2690 table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.c464f2690 table th,
.c464f2690 table td {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.c464f2690 table th {
  background: var(--color-card);
  font-weight: 600;
}

/* ============ 搜索页 ============ */
.c2ca5d8cc {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.cffe65a6b {
  width: 100%;
  padding: 16px 56px 16px 24px;
  background: var(--color-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-btn);
  color: var(--color-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.cffe65a6b:focus {
  border-color: var(--color-accent);
}

.c0ce72fcb {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.c7376cf0a {
  max-width: 700px;
  margin: 0 auto;
}

.tv-search-result {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-search-result__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.tv-search-result__url {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.tv-search-result__desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

/* ============ 404页面 ============ */
.cc54cd976 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.cb33eb516 {
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.c686a6195 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 16px 0;
}

.cd8860f1c {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

/* ============ APP下载页 ============ */
.cbb74fad5 {
  text-align: center;
  padding: 140px 24px 80px;
}

.cc884aa97 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.c6386f713 {
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cd4c75c84 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ce2a64c34 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s;
}

.ce2a64c34:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  color: var(--color-text);
}

/* ============ 互动组件 ============ */
.tv-simulator {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-simulator__screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-primary);
  border-radius: 8px;
  border: 2px solid #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tv-simulator__hint {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.cfb2ef4c4 {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.c757d91c0 {
  margin-bottom: 20px;
}

.cd7cba40b {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.c09abc4d5 {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1rem;
  outline: none;
}

.c09abc4d5:focus {
  border-color: var(--color-accent);
}

.cb1dca316 {
  width: 100%;
  padding: 14px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cb1dca316:hover {
  background: #1976D2;
}

.c6dff1d1a {
  margin-top: 24px;
  padding: 20px;
  background: var(--color-bg);
  border-radius: 8px;
  display: none;
}

/* ============ FAQ ============ */
.cd095af7c {
  max-width: 760px;
  margin: 0 auto;
}

.c2aa3e036 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.cc0f15814 {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c21992d36 {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  display: none;
}

.c2aa3e036.active .c21992d36 {
  display: block;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .c48c9c02b {
    grid-template-columns: repeat(2, 1fr);
  }
  .cd06cd24e {
    grid-template-columns: repeat(2, 1fr);
  }
  .ca5836d45 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cf93736e6 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cec4f19e0 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c9f652435 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c48d3e541 {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .c48d3e541.active {
    display: flex;
  }
  .cffa2c3dc {
    display: flex;
  }
  .c5ec853c0 {
    font-size: 1.8rem;
  }
  .ce60ad80c {
    font-size: 1rem;
  }
  .c48c9c02b {
    grid-template-columns: 1fr;
  }
  .cb99f67be {
    min-width: 280px;
  }
  .cd06cd24e {
    grid-template-columns: 1fr 1fr;
  }
  .ca5836d45 {
    grid-template-columns: 1fr;
  }
  .cf93736e6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cec4f19e0 {
    grid-template-columns: 1fr;
  }
  .c9f652435 {
    grid-template-columns: 1fr;
  }
  .c7c94efc9 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .ce36e16d7 {
    padding: 60px 0;
  }
  .c29f8ca7d {
    font-size: 1.6rem;
  }
  .ce3c7f032 {
    font-size: 1.6rem;
  }
  .cc884aa97 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .cd06cd24e {
    grid-template-columns: 1fr;
  }
  .cf93736e6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c21f6c422 {
    border-radius: 8px;
  }
}

/* ============ 动画 ============ */
.c821133a5 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c821133a5.visible {
  opacity: 1;
  transform: translateY(0);
}

.tv-slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tv-slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ 内链卡片 ============ */
.c2fbca514 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.cb3d7f395 {
  display: block;
  padding: 16px 20px;
  background: var(--color-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  transition: all 0.3s;
}

.cb3d7f395:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateX(4px);
}

/* ============ 兼容性查询 ============ */
.tv-compat-form {
  max-width: 500px;
  margin: 0 auto;
}

.tv-compat-result {
  margin-top: 24px;
  padding: 20px;
  background: var(--color-card);
  border-radius: 12px;
  display: none;
}

.tv-compat-result.show {
  display: block;
}
