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

/* 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; }

/* 场记板加载动画 */
.ce64137e1 {
  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;
}

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

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

.c4cdd2c8e .c32abaf1d {
  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;
}

.c4cdd2c8e .c99f43f69 {
  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); }
}

/* 导航栏 */
.c0c030d3a {
  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;
}

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

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

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

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

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

.c8cbe57af li {
  position: relative;
}

.c8cbe57af 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);
}

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

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

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

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

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

.c3d5c74a0 {
  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%);
}

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

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

.c76c021b5 h1 .c25eec997 {
  color: var(--color-accent);
}

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

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

/* 按钮样式 */
.c4d8158ea {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ccb9609f6:hover .c90d03782 img {
  transform: scale(1.05);
}

/* 镜头光晕特效 */
.ccb9609f6 .c4f94bc38 {
  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;
}

.ccb9609f6:hover .c4f94bc38 {
  left: 100%;
}

.ccb9609f6 .c348f466d {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c2d53bf07 {
  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);
}

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

.c2d53bf07 .c73dec5cc {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.cc2b866ce .c438e45b5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

.c701f21db ul {
  list-style: none;
}

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

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

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

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

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

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

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

.c2b4c34ff .c49e0a518 {
  max-width: 900px;
}

.c2b4c34ff .c49e0a518 p {
  margin-bottom: 1.5rem;
  line-height: 2;
}

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

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

.cae597ecb {
  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);
}

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

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

.cd0198445.c1c81be7e .cae597ecb::after {
  transform: rotate(45deg);
}

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

.cd0198445.c1c81be7e .c41bf29c0 {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

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

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

.cc7ec6240 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;
}

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

.cc7ec6240 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);
}

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

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

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

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

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

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

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

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

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

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

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

.cb558d802 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;
}

.c07e167ed {
  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) {
  .ce7824fad {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .c8cbe57af {
    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;
  }
  
  .c8cbe57af.c1c81be7e {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .cd698f5f5 {
    display: flex;
  }
  
  .c76c021b5 h1 {
    font-size: 2rem;
  }
  
  .c7ee8c38f {
    font-size: 1.3rem;
  }
  
  .ce7824fad {
    grid-template-columns: 1fr;
  }
  
  .c0fbb6ac9 {
    grid-template-columns: 1fr;
  }
  
  .ca4692856 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c68d185db {
    padding: 0 1rem;
  }
  
  .c8d13cdb4 {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .c76c021b5 h1 {
    font-size: 1.6rem;
  }
  
  .ca4692856 {
    grid-template-columns: 1fr;
  }
  
  .cf16b9fb3 {
    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;
}

/* 录制指示灯动画 */
.c882c6308 {
  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); }
}

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

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

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

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

.c3a9a1ba6 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);
}

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

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

/* 返回顶部 */
.c182047b2 {
  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;
}

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

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