/* ============================================
   抖音第一枪 - 大码模特与多元审美身材自信演艺经纪公司
   自信肤色粉+高级丝绒红 时尚包容视觉体系
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #E57373;
  --secondary: #880E4F;
  --bg-main: #FFF0F5;
  --card-bg: #FFFFFF;
  --text-body: #4A4A4A;
  --text-heading: #2D2D2D;
  --accent-light: #F8BBD0;
  --accent-gold: #D4AF37;
  --shadow-soft: 0 4px 20px rgba(136, 14, 79, 0.08);
  --shadow-hover: 0 8px 40px rgba(229, 115, 115, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1400px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.4;
}

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

a:hover {
  color: var(--primary);
}

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

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

.c228d832b {
  padding: 80px 0;
}

/* ============================================
   导航栏
   ============================================ */
.c24a7deb1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 240, 245, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 115, 115, 0.1);
  transition: var(--transition-smooth);
}

.c24a7deb1.scrolled {
  box-shadow: var(--shadow-soft);
}

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

.c320e0e47 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
}

.c9e32fceb {
  display: flex;
  list-style: none;
  gap: 32px;
}

.c9e32fceb a {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.c9e32fceb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

.c9e32fceb a:hover::after,
.c9e32fceb a.c48d5366d::after {
  width: 100%;
}

.cebf983b8 {
  background: var(--secondary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.cebf983b8:hover {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(229, 115, 115, 0.4);
}

/* 移动端菜单按钮 */
.c10201b41 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.c10201b41 span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-smooth);
}

/* ============================================
   Hero区 - 自信宣言
   ============================================ */
.cc2597308 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.cf44a0a4f {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cf44a0a4f img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.c656ce228 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(136, 14, 79, 0.6) 0%, rgba(229, 115, 115, 0.3) 100%);
  z-index: 2;
}

.c82a12be6 {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 24px;
}

.c9e821b5a {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.cd3293e6a {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.cec45b850 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(229, 115, 115, 0.5);
  transition: var(--transition-smooth);
}

.cec45b850:hover {
  background: #fff;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* ============================================
   明星模特矩阵 - 不规则网格
   ============================================ */
.c624f6876 {
  background: var(--card-bg);
}

.cf62506fc {
  text-align: center;
  margin-bottom: 60px;
}

.cf62506fc h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--secondary);
  margin-bottom: 16px;
}

.cf62506fc p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.c481840c6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.c280299e3 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.c280299e3:nth-child(1) {
  grid-row: span 2;
}

.c280299e3:nth-child(4) {
  grid-column: span 2;
}

.c280299e3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.c280299e3:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.c4e90332a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(136, 14, 79, 0.9));
  color: #fff;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.c280299e3:hover .c4e90332a {
  transform: translateY(0);
}

.c4e90332a h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cc353bd8d {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  margin-right: 6px;
  margin-top: 4px;
}

/* ============================================
   业务服务范围
   ============================================ */
.c93bab9a8 {
  background: linear-gradient(180deg, var(--bg-main) 0%, #fff 100%);
}

.c657b926b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.c9cafe8a0 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.c9cafe8a0:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.c4fd9934b {
  height: 200px;
  overflow: hidden;
}

.c4fd9934b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.c9cafe8a0:hover .c4fd9934b img {
  transform: scale(1.1);
}

.ceb22b0f5 {
  padding: 28px;
}

.ceb22b0f5 h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.ceb22b0f5 p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.c4c555f14 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   品牌合作墙
   ============================================ */
.cc6928f44 {
  background: var(--card-bg);
  text-align: center;
}

.c52abb8c1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.c52abb8c1 img {
  height: 60px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.c52abb8c1 img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   打破身材焦虑故事集
   ============================================ */
.ce3462f12 {
  position: relative;
  overflow: hidden;
}

.cc501f620 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.cc501f620:nth-child(even) {
  direction: rtl;
}

.cc501f620:nth-child(even) > * {
  direction: ltr;
}

.ca55c2af2 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ca55c2af2 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.c3af16acd h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.c3af16acd p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.c61572001 {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
  color: var(--secondary);
  font-size: 1.1rem;
}

/* ============================================
   快速合作与选角通道
   ============================================ */
.cd2482180 {
  background: linear-gradient(135deg, var(--secondary) 0%, #AD1457 100%);
  color: #fff;
}

.cd2482180 .cf62506fc h2 {
  color: #fff;
}

.cd2482180 .cf62506fc p {
  color: rgba(255, 255, 255, 0.8);
}

.c1c3dfc7c {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c547dc483 {
  display: flex;
  flex-direction: column;
}

.c547dc483.c576b352d {
  grid-column: span 2;
}

.c547dc483 label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.c547dc483 input,
.c547dc483 select,
.c547dc483 textarea {
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.c547dc483 input::placeholder,
.c547dc483 textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.c547dc483 input:focus,
.c547dc483 select:focus,
.c547dc483 textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.c547dc483 textarea {
  resize: vertical;
  min-height: 120px;
}

.cc4b304b4 {
  grid-column: span 2;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  justify-self: center;
}

.cc4b304b4:hover {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   页脚
   ============================================ */
.cc3bac349 {
  background: #1A0A10;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.c3e7dbdd3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ca1164d5c h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ca1164d5c p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.c47a16c05 h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.c47a16c05 ul {
  list-style: none;
}

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

.c47a16c05 a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.c47a16c05 a:hover {
  color: var(--primary);
}

.c7c5727b3 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.c7c5727b3 a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
}

/* ============================================
   面包屑导航
   ============================================ */
.caada02b5 {
  padding: 100px 0 20px;
  font-size: 0.9rem;
}

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

.caada02b5 span {
  margin: 0 8px;
  color: var(--primary);
}

/* ============================================
   内页通用样式
   ============================================ */
.c8a62898e {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: #fff;
}

.c8a62898e h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.c8a62898e p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.cc8a11ffb {
  padding: 60px 0;
}

.cf298f066 {
  max-width: 900px;
  margin: 0 auto;
}

.cf298f066 h2 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 40px 0 20px;
}

.cf298f066 h3 {
  font-size: 1.4rem;
  color: var(--text-heading);
  margin: 30px 0 16px;
}

.cf298f066 p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
}

.cf298f066 ul,
.cf298f066 ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.cf298f066 li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ============================================
   模特筛选器组件
   ============================================ */
.c29d3c0fd {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.c48d083a0 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.c37f4c412 {
  flex: 1;
  min-width: 150px;
}

.c37f4c412 label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 6px;
  font-weight: 500;
}

.c37f4c412 select,
.c37f4c412 input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.c37f4c412 select:focus,
.c37f4c412 input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.1);
}

.c80a3ec78 {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.c80a3ec78:hover {
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(136, 14, 79, 0.3);
}

/* ============================================
   弹幕互动墙
   ============================================ */
.c03558f9e {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #1A0A10 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}

.barrage-item {
  position: absolute;
  white-space: nowrap;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  animation: barrage-float 10s linear infinite;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.barrage-item.negative {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.barrage-item.positive {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(229, 115, 115, 0.4);
}

.barrage-item.shattered {
  animation: shatter 0.5s forwards;
}

@keyframes barrage-float {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

@keyframes shatter {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0); opacity: 0; }
}

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

.cdcb95d34 input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  background: var(--card-bg);
  transition: var(--transition-smooth);
}

.cdcb95d34 input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(229, 115, 115, 0.15);
}

.cdcb95d34 button {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  padding: 0 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
}

.c381b1230 {
  max-width: 800px;
  margin: 0 auto;
}

.search-result-item {
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.search-result-item h3 a {
  font-size: 1.2rem;
  color: var(--secondary);
}

.search-result-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 8px;
}

/* ============================================
   FAQ手风琴
   ============================================ */
.caa51bd6f {
  max-width: 800px;
  margin: 0 auto;
}

.c3314b90d {
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.c60623f4e {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: var(--card-bg);
  transition: var(--transition-smooth);
}

.c60623f4e:hover {
  background: var(--bg-main);
}

.c8ea3644e {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.c3314b90d.c48d5366d .c8ea3644e {
  padding: 0 24px 20px;
  max-height: 500px;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1024px) {
  .c3e7dbdd3 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c481840c6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c280299e3:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .c9e32fceb {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
  }
  
  .c9e32fceb.c48d5366d {
    display: flex;
  }
  
  .c10201b41 {
    display: flex;
  }
  
  .cc2597308 {
    min-height: 500px;
  }
  
  .c481840c6 {
    grid-template-columns: 1fr;
  }
  
  .c280299e3:nth-child(1) {
    grid-row: span 1;
  }
  
  .cc501f620 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cc501f620:nth-child(even) {
    direction: ltr;
  }
  
  .c1c3dfc7c {
    grid-template-columns: 1fr;
  }
  
  .c547dc483.c576b352d {
    grid-column: span 1;
  }
  
  .cc4b304b4 {
    grid-column: span 1;
  }
  
  .c3e7dbdd3 {
    grid-template-columns: 1fr;
  }
  
  .c7c5727b3 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c228d832b {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .c9e821b5a {
    font-size: 2rem;
  }
  
  .c657b926b {
    grid-template-columns: 1fr;
  }
  
  .c48d083a0 {
    flex-direction: column;
  }
}

/* ============================================
   动画效果
   ============================================ */
.ca6bcad66 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.parallax-img {
  transition: transform 0.1s linear;
}

/* 按钮光晕效果 */
.c69102f06 {
  position: relative;
  overflow: hidden;
}

.c69102f06::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.c69102f06:hover::before {
  width: 300px;
  height: 300px;
}

/* 3D体型展示台 */
.body-scan-viewer {
  width: 100%;
  height: 500px;
  background: #1A0A10;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.body-scan-viewer::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* 打印样式 */
@media print {
  .c24a7deb1,
  .cc3bac349,
  .cc2597308 {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
}
