/* ============================================
   广播级影视器材租赁与斯坦尼康稳定器实操网 - 主样式表
   电影机哑光黑+碳纤维红 重型工业视觉
   ============================================ */

/* CSS变量定义 */
:root {
  --color-primary: #111111;       /* 器材哑光黑 */
  --color-accent: #D32F2F;        /* ARRI红/录制红 */
  --color-bg: #1E1E1E;            /* 深灰摄影棚底色 */
  --color-card: #2A2A2A;          /* 金属机身灰 */
  --color-text: #CCCCCC;          /* 刻度白 */
  --color-white: #FFFFFF;
  --color-dark: #0A0A0A;
  --color-border: #3A3A3A;
  --font-heading: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1400px;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 重置与基础 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
  color: #FF5252;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* 场记板加载动画 */
.cd3f16fa6 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.cd3f16fa6.loaded {
  opacity: 0;
  pointer-events: none;
}

.c3782a826 {
  width: 120px;
  height: 100px;
  position: relative;
}

.c3782a826 .cff65db2e {
  width: 120px;
  height: 30px;
  background: var(--color-accent);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom left;
  animation: clap 1.2s ease-in-out infinite;
}

.c3782a826 .cac8d10c3 {
  width: 120px;
  height: 70px;
  background: var(--color-card);
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
}

@keyframes clap {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-30deg); }
  50% { transform: rotate(0deg); }
}

/* 导航栏 */
.c828e3d73 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 9999;
  padding: 0 2rem;
}

.cad4b1626 {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.c7a45586d {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c7a45586d img {
  height: 40px;
  width: auto;
}

.c7a45586d span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

.cafc54129 {
  display: flex;
  list-style: none;
  gap: 0;
}

.cafc54129 li {
  position: relative;
}

.cafc54129 a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.cafc54129 a:hover,
.cafc54129 a.c4340847f {
  color: var(--color-white);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
}

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

.c08343bfe span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* Hero区域 */
.c4f986181 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.c35b8d593 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.c2691ef3c {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(30,30,30,0.9) 100%);
}

.cc2741144 {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.cc2741144 h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.cc2741144 h1 .cbf830a64 {
  color: var(--color-accent);
}

.cc2741144 p {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cb09d26e1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

/* 按钮样式 */
.caa33c524 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.c5f557910 {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.c5f557910:hover {
  background: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.6);
  color: var(--color-white);
  text-decoration: none;
}

.c94718443 {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.c94718443:hover {
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
}

/* 通用容器 */
.c9b87afea {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 区块标题 */
.cd467b81f {
  text-align: center;
  margin-bottom: 3rem;
}

.cd467b81f h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.cd467b81f h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

.cd467b81f p {
  margin-top: 1rem;
  color: var(--color-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* 内容区块 */
.ce50a0331 {
  padding: 5rem 0;
}

.ce50a0331:nth-child(even) {
  background: var(--color-primary);
}

/* 器材网格 */
.c14cc78ed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.c1d27b3b1 {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.c1d27b3b1:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--color-accent);
}

.c1d27b3b1 .c061a1e0d {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-primary);
}

.c1d27b3b1 .c061a1e0d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c1d27b3b1:hover .c061a1e0d img {
  transform: scale(1.05);
}

/* 镜头光晕特效 */
.c1d27b3b1 .cae32cdc4 {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211,47,47,0.15), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.c1d27b3b1:hover .cae32cdc4 {
  left: 100%;
}

.c1d27b3b1 .cc9568a88 {
  padding: 1.5rem;
}

.c1d27b3b1 .ca461d610 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.c1d27b3b1 .cf45f5282 {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.c1d27b3b1 .c458717d8 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* 参数表格 */
.caf9b665a {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.caf9b665a th,
.caf9b665a td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.caf9b665a th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.caf9b665a td {
  font-size: 0.9rem;
  color: var(--color-text);
}

.caf9b665a tr:hover td {
  background: rgba(211, 47, 47, 0.05);
}

/* 培训课程区 */
.c4e7545ec {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg) 100%);
}

.c04011fc4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.cb07e9acb {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.cb07e9acb:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(211, 47, 47, 0.1);
}

.cb07e9acb h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cb07e9acb .c94c6ad1d {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-accent);
}

/* 器材清单配置器 */
.c99ad299b {
  background: var(--color-primary);
}

.cbf7f691c {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.cd4bedd5f {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.c3c8294b5 {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.c3c8294b5:hover,
.c3c8294b5.c4340847f {
  border-color: var(--color-accent);
  background: rgba(211, 47, 47, 0.1);
}

.c3c8294b5 .c4a10bfab {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* DIT技术支持区 */
.c75a518d4 {
  position: relative;
}

.c04a67340 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.c80a4441c {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.c80a4441c:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.c80a4441c .c72e15205 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 2px solid var(--color-accent);
}

.c80a4441c .c72e15205 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 面包屑导航 */
.cd6ce8fe7 {
  padding: 1rem 0;
  margin-top: 70px;
}

.c169d3750 {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.c169d3750 li::after {
  content: '>';
  margin-left: 0.5rem;
  color: var(--color-border);
}

.c169d3750 li:last-child::after {
  display: none;
}

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

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

/* 页脚 */
.c5c30d889 {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.c92779c84 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.c005f5fd2 h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.c005f5fd2 ul {
  list-style: none;
}

.c005f5fd2 ul li {
  margin-bottom: 0.5rem;
}

.c005f5fd2 ul a {
  color: var(--color-text);
  font-size: 0.9rem;
}

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

.cdaa870e5 {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text);
}

.cdaa870e5 a {
  color: var(--color-text);
  margin: 0 0.5rem;
}

/* 页面内容区 */
.cfe2013ff {
  padding: 3rem 0 5rem;
  min-height: 60vh;
}

.cfe2013ff h1 {
  margin-bottom: 1.5rem;
}

.cfe2013ff .ca4a7944e {
  max-width: 900px;
}

.cfe2013ff .ca4a7944e p {
  margin-bottom: 1.5rem;
  line-height: 2;
}

/* FAQ区域 */
.cded2ae35 {
  margin-top: 3rem;
}

.c80a7e40f {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.ce67aee44 {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition);
}

.ce67aee44:hover {
  background: rgba(211, 47, 47, 0.05);
}

.ce67aee44::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.c80a7e40f.c4340847f .ce67aee44::after {
  transform: rotate(45deg);
}

.c485e1ac2 {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.c80a7e40f.c4340847f .c485e1ac2 {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* 搜索页 */
.ceef04a4c {
  max-width: 700px;
  margin: 0 auto;
}

.c34ecda1c {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}

.c34ecda1c input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--color-white);
  font-size: 1rem;
  outline: none;
}

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

.c34ecda1c button {
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.c34ecda1c button:hover {
  background: #E53935;
}

.c09ac1d4a .result-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.c09ac1d4a .result-item h3 a {
  color: var(--color-white);
}

.c09ac1d4a .result-item p {
  font-size: 0.9rem;
  color: var(--color-text);
}

/* 404页面 */
.c8e89bcc0 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

.c8e89bcc0 h1 {
  font-size: 8rem;
  color: var(--color-accent);
  line-height: 1;
}

.c8e89bcc0 h2 {
  font-size: 2rem;
  margin: 1rem 0;
}

/* APP下载页 */
.c56ab55e6 {
  text-align: center;
  padding: 5rem 0;
}

.c662963ea {
  max-width: 300px;
  margin: 2rem auto;
}

.c3f1baaaf {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 卡口匹配检测仪 */
.c17ea7752 {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.c17ea7752 select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.c016ce028 {
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}

/* 宽容度对比滑块 */
.dr-comparison {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: col-resize;
}

.dr-comparison .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  left: 50%;
  z-index: 10;
}

.dr-comparison .slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .c14cc78ed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .cafc54129 {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  
  .cafc54129.c4340847f {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .c08343bfe {
    display: flex;
  }
  
  .cc2741144 h1 {
    font-size: 2rem;
  }
  
  .cb09d26e1 {
    font-size: 1.3rem;
  }
  
  .c14cc78ed {
    grid-template-columns: 1fr;
  }
  
  .c92779c84 {
    grid-template-columns: 1fr;
  }
  
  .cd4bedd5f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c9b87afea {
    padding: 0 1rem;
  }
  
  .ce50a0331 {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .cc2741144 h1 {
    font-size: 1.6rem;
  }
  
  .cd4bedd5f {
    grid-template-columns: 1fr;
  }
  
  .c3f1baaaf {
    flex-direction: column;
    align-items: center;
  }
}

/* Schema标记隐藏文本 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 录制指示灯动画 */
.c1eeb9910 {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  margin-right: 0.5rem;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* 对焦环旋转动画 */
@keyframes focusRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(15deg); }
}

.c1d27b3b1:hover .focus-ring-icon {
  animation: focusRing 0.5s ease-in-out;
}

/* 内链样式 */
.c85c8d4d1 {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.c85c8d4d1 h4 {
  margin-bottom: 1rem;
}

.c85c8d4d1 ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.c85c8d4d1 ul li a {
  display: block;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.c85c8d4d1 ul li a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
}

/* 时间标记 */
.c6b2fda15 {
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

/* 返回顶部 */
.ca6831421 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.ca6831421.visible {
  opacity: 1;
  visibility: visible;
}

.ca6831421:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}
