
/* 全局样式 */
body.ui-style-7 {
  font-size: 16px;
}

.logo {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.content-module {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-module h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

.section-intro {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.video-card {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.video-card h3 a {
  text-decoration: none;
  color: #2c3e50;
}

.video-card h3 a:hover {
  color: #667eea;
}

.meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.more-link, .action-link {
  display: inline-block;
  padding: 10px 20px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 15px;
  margin-top: 10px;
  transition: background 0.3s;
}

.more-link:hover, .action-link:hover {
  background: #764ba2;
}

.link-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* 列表页样式 */
.page-header {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-header h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.list-content {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.list-card {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.list-card:last-child {
  border-bottom: none;
}

.list-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.list-card h3 a {
  text-decoration: none;
  color: #2c3e50;
}

.list-card h3 a:hover {
  color: #667eea;
}

.list-card .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.list-card .summary {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.list-card .review {
  font-size: 14px;
  color: #666;
  font-style: italic;
  line-height: 1.5;
}

.list-card .date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.rank-num {
  position: absolute;
  left: -10px;
  top: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.card-ranked {
  padding-left: 45px;
}

/* 详情页样式 */
.detail-page {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-page h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #2c3e50;
  border-bottom: 2px solid #667eea;
  padding-bottom: 15px;
}

.detail-page section {
  margin-bottom: 30px;
}

.detail-page h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
  border-left: 4px solid #667eea;
  padding-left: 12px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #ddd;
  font-size: 15px;
}

.info-list li:last-child {
  border-bottom: none;
}

.one-line {
  font-size: 18px;
  font-weight: 500;
  color: #667eea;
  line-height: 1.6;
}

.plot p, .review p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  transition: transform 0.3s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.related-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.related-card h3 a {
  text-decoration: none;
  color: #2c3e50;
}

.related-card h3 a:hover {
  color: #667eea;
}

footer {
  text-align: center;
  padding: 30px;
  background: #2c3e50;
  color: white;
  margin-top: 50px;
}

/* 响应式 */
@media (max-width: 768px) {
  .logo { font-size: 22px; padding: 15px; }
  .hero h1 { font-size: 22px; }
  .page-header h1 { font-size: 22px; }
  .detail-page { padding: 20px; }
  .detail-page h1 { font-size: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
