/* 桃花影视 - 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* 头部导航 */
.x7f4k9m2p {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.a8n3q5w7r {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.b9k2m6n4p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.b9k2m6n4p:hover {
  transform: scale(1.05);
}

.c3l8p5q2w {
  display: flex;
  gap: 30px;
  list-style: none;
}

.d5m9n7k3x a {
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.d5m9n7k3x a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* 横幅区域 */
.e2w8q4n6m {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.f7k3m9p5q h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: bounceIn 1s ease;
}

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

.f7k3m9p5q p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* 主内容区 */
.g4n8k2m7p {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.h5m3k9n2q {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.i7k4m2n9p {
  font-size: 28px;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
  position: relative;
}

.i7k4m2n9p::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #f5576c;
}

/* 影视网格 */
.j2n8k5m3q {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.k9m4n2p7w {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease backwards;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.k9m4n2p7w:nth-child(1) { animation-delay: 0.1s; }
.k9m4n2p7w:nth-child(2) { animation-delay: 0.2s; }
.k9m4n2p7w:nth-child(3) { animation-delay: 0.3s; }
.k9m4n2p7w:nth-child(4) { animation-delay: 0.4s; }
.k9m4n2p7w:nth-child(5) { animation-delay: 0.5s; }
.k9m4n2p7w:nth-child(6) { animation-delay: 0.6s; }

.k9m4n2p7w:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.l3k7m9n4p {
  position: relative;
  overflow: hidden;
  padding-bottom: 140%;
}

.l3k7m9n4p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.k9m4n2p7w:hover .l3k7m9n4p img {
  transform: scale(1.1);
}

.m8n2k5p4q {
  padding: 15px;
}

.m8n2k5p4q h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n4k9m2p7w {
  font-size: 13px;
  color: #999;
}

/* 评论板块 */
.o7m3k8n2p {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.p2n8k4m9q {
  margin-top: 20px;
}

.q5k2m9n7p {
  padding: 20px;
  border-bottom: 1px solid #eee;
  animation: fadeIn 0.5s ease backwards;
}

.q5k2m9n7p:nth-child(1) { animation-delay: 0.1s; }
.q5k2m9n7p:nth-child(2) { animation-delay: 0.2s; }
.q5k2m9n7p:nth-child(3) { animation-delay: 0.3s; }
.q5k2m9n7p:nth-child(4) { animation-delay: 0.4s; }
.q5k2m9n7p:nth-child(5) { animation-delay: 0.5s; }

.q5k2m9n7p:last-child {
  border-bottom: none;
}

.r8n4k2m5p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.s3m9k7n2p {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 12px;
}

.t7k3m2n9p {
  flex: 1;
}

.t7k3m2n9p strong {
  color: #333;
  font-size: 15px;
}

.u4n8k5m2p {
  color: #999;
  font-size: 13px;
  margin-left: 10px;
}

.v2m7k9n3p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-left: 57px;
}

/* 页脚 */
.w9k2m5n7p {
  background: #2c3e50;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.x3n8k2m4p {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.x3n8k2m4p p {
  margin: 10px 0;
  opacity: 0.8;
}

.y5k9m2n7p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.6;
}

/* 面包屑导航 */
.z8n3k5m2p {
  padding: 20px 0;
  font-size: 14px;
  color: #666;
}

.z8n3k5m2p a {
  color: #667eea;
  margin: 0 5px;
}

.z8n3k5m2p a:hover {
  text-decoration: underline;
}

/* 返回顶部按钮 */
.a1m9k4n2p {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.a1m9k4n2p.b7k3m9n2p {
  opacity: 1;
}

.a1m9k4n2p:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

/* 文章详情页 */
.c9m2k7n4p {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.c9m2k7n4p h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.d3k8m2n5p {
  display: flex;
  gap: 20px;
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.e5m9k3n7p {
  line-height: 1.8;
  font-size: 16px;
  color: #555;
}

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

.e5m9k3n7p img {
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.e5m9k3n7p h2 {
  font-size: 24px;
  color: #333;
  margin: 30px 0 15px;
}

/* 分类标签 */
.f4k7m9n2p {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .c3l8p5q2w {
    gap: 15px;
  }

  .d5m9n7k3x a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .j2n8k5m3q {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .a1m9k4n2p {
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
  }

  .c9m2k7n4p {
    padding: 25px;
  }

  .c9m2k7n4p h1 {
    font-size: 24px;
  }
}

/* 加载动画 */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.g7k2m9n4p {
  animation: pulse 1.5s ease-in-out infinite;
}

/* 文章列表 */
.h8n4k2m7p {
  display: grid;
  gap: 20px;
}

.i2m9k5n3p {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease backwards;
}

.i2m9k5n3p:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(102,126,234,0.2);
}

.i2m9k5n3p h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.i2m9k5n3p p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.j9k3m2n8p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-size: 13px;
}

.k2n7m4p9w {
  color: #667eea;
  font-weight: 500;
  transition: color 0.3s ease;
}

.k2n7m4p9w:hover {
  color: #f5576c;
}
