/* 全局样式 */
:root {
  --primary-color: #FF5E52;
  --secondary-color: #FF9966;
  --text-color: #333;
  --light-text: #666;
  --lighter-text: #999;
  --background: #f8f8f8;
  --card-bg: #fff;
  --border-color: #eee;
  --header-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

ul {
  list-style: none;
}

/* 头部样式 */
.header {
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 25px;
}

.main-nav ul li a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  border: 1px solid var(--border-color);
  border-radius: 20px 0 0 20px;
  padding: 8px 15px;
  width: 200px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: var(--primary-color);
}

.search-btn {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 0 20px 20px 0;
  padding: 8px 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search-btn:hover {
  opacity: 0.9;
}

/* 轮播图样式 */
.banner {
  padding: 30px 0;
}

.banner-slider {
  border-radius: 8px;
  overflow: hidden;
}

/* 内容区域通用样式 */
section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}

.section-header h2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.more-link {
  color: var(--light-text);
  font-size: 14px;
}

/* 影戏卡片样式 */
.movie-list, .series-list, .variety-list, .anime-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.movie-card, .series-card, .variety-card, .anime-card {
  transition: transform 0.3s ease;
}

.movie-card:hover, .series-card:hover, .variety-card:hover, .anime-card:hover {
  transform: translateY(-5px);
}

.movie-card h3, .series-card h3, .variety-card h3, .anime-card h3 {
  font-size: 16px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card p, .series-card p, .variety-card p, .anime-card p {
  font-size: 14px;
  color: var(--lighter-text);
}

/* APP下载区域样式 */
.app-download {
  background: linear-gradient(135deg, rgba(255, 94, 82, 0.1), rgba(255, 153, 102, 0.1));
  border-radius: 12px;
  margin: 40px 0;
}

.app-content {
  display: flex;
  align-items: center;
  padding: 40px;
}

.app-info {
  flex: 1;
}

.app-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.app-features {
  margin: 20px 0;
}

.app-features li {
  margin-bottom: 10px;
  font-size: 16px;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.download-btn {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 94, 82, 0.3);
  color: white;
}

/* 文章区域样式 */
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.article-item p {
  font-size: 14px;
  color: var(--light-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 页脚样式 */
.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo p {
  margin-top: 15px;
  color: #bdc3c7;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav-col h3, .footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav-col h3:after, .footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav-col ul li {
  margin-bottom: 10px;
}

.footer-nav-col ul li a, .footer-contact p {
  color: #bdc3c7;
  font-size: 14px;
}

.footer-nav-col ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links ul li a, .footer-links ul a {
  color: #bdc3c7;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #bdc3c7;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .movie-list, .series-list {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .variety-list, .anime-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .movie-list, .series-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .variety-list, .anime-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article-list {
    grid-template-columns: 1fr;
  }
  
  .app-content {
    flex-direction: column;
    text-align: center;
  }
  
  .app-qrcode {
    margin-top: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .movie-list, .series-list, .variety-list, .anime-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-buttons {
    flex-direction: column;
  }
}

/* 透明轮播配景 */
.banner::before {
  content: '';
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, rgba(255, 94, 82, 0.05), rgba(255, 153, 102, 0.05));
  z-index: -1;
}

/* 渐变配景效果 */
.gradient-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
<!--耗时1781360684.1886秒-->