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

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

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

.c2557f73f {
  padding: 80px 0;
}

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

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

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

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

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

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

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

.c32e13df2 a:hover::after,
.c32e13df2 a.c711e6418::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc83a4289:hover .ca2cb18cb {
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

.c4a0b3934:hover .c7c02a8d2 img {
  transform: scale(1.1);
}

.cc172d224 {
  padding: 28px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c41537470 .c42dba322 h2 {
  color: #fff;
}

.c41537470 .c42dba322 p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.c4317fad2.c8e4f1b65 {
  grid-column: span 2;
}

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

.c4317fad2 input,
.c4317fad2 select,
.c4317fad2 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);
}

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

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

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

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

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

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

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

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

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

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

.cf3489856 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

.cf4784b9d {
  padding: 60px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   弹幕互动墙
   ============================================ */
.cc5f6875c {
  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; }
}

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

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

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

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

.cb6bbb2a2 {
  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手风琴
   ============================================ */
.c7deee8e2 {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.ce0ca9367.c711e6418 .c295f2950 {
  padding: 0 24px 20px;
  max-height: 500px;
}

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

@media (max-width: 768px) {
  .c32e13df2 {
    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);
  }
  
  .c32e13df2.c711e6418 {
    display: flex;
  }
  
  .c75f49237 {
    display: flex;
  }
  
  .c293b528b {
    min-height: 500px;
  }
  
  .c9890f558 {
    grid-template-columns: 1fr;
  }
  
  .cc83a4289:nth-child(1) {
    grid-row: span 1;
  }
  
  .c220cb0e8 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c220cb0e8:nth-child(even) {
    direction: ltr;
  }
  
  .cb86a3d68 {
    grid-template-columns: 1fr;
  }
  
  .c4317fad2.c8e4f1b65 {
    grid-column: span 1;
  }
  
  .c647ec80f {
    grid-column: span 1;
  }
  
  .c2581ec18 {
    grid-template-columns: 1fr;
  }
  
  .c67d65c02 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c2557f73f {
    padding: 50px 0;
  }
}

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

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

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

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

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

.c232250d0::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;
}

.c232250d0: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 {
  .cc520ce84,
  .c78ceaffd,
  .c293b528b {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
}
