    /* 全局样式 */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    
    header {
      background-color: #333;
      color: white;
      padding: 20px;
    }
    
    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
    }
    
    nav ul li {
      margin: 0 15px;
    }
    
    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    
    main {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 10px;
      margin-top: 20px;
    }
    
    /* 首页样式 */
    .hero {
      text-align: center;
      padding: 50px 0;
      background-color: #f5f5f5;
      border-radius: 10px;
      margin-bottom: 30px;
    }
    
    .hero h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    
    .btn {
      display: inline-block;
      background-color: #333;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
    }
    
    .btn:hover {
      background-color: #555;
    }
    
    .about {
      margin-bottom: 30px;
    }
    
    .about h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    
    .featured-movies {
      margin-bottom: 30px;
    }
    
    .featured-movies h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .movie-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .movie-card {
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
      text-align: center;
    }
    
    .movie-card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
    }
    
    .movie-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }
    
    /* 影视作品页样式 */
    .page-header {
      text-align: center;
      padding: 30px 0;
      background-color: #f5f5f5;
      border-radius: 10px;
      margin-bottom: 30px;
    }
    
    .page-header h1 {
      font-size: 30px;
      margin-bottom: 10px;
    }
    
    .movie-filter {
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    
    #genre-filter, #search-input {
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 5px;
    }
    
    #search-button {
      padding: 8px 15px;
      background-color: #333;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    
    #search-button:hover {
      background-color: #555;
    }
    
    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    
    .page-link {
      display: inline-block;
      padding: 8px 15px;
      margin: 0 5px;
      border: 1px solid #ddd;
      border-radius: 5px;
      text-decoration: none;
      color: #333;
    }
    
    .page-link:hover {
      background-color: #f5f5f5;
    }
    
    .page-link.active {
      background-color: #333;
      color: white;
    }
    
    /* 关于我们页样式 */
    .company-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .about-content h2, .team h2, .contact h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .company-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
    }
    
    .stat-item {
      background-color: #f5f5f5;
      padding: 20px;
      border-radius: 5px;
    }
    
    .stat-number {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 16px;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .team-member {
      text-align: center;
    }
    
    .team-member img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }
    
    .contact-info {
      background-color: #f5f5f5;
      padding: 20px;
      border-radius: 5px;
    }
    
    .contact-item {
      margin-bottom: 10px;
    }
    
    .icon {
      font-weight: bold;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        text-align: center;
      }
      
      nav ul li {
        margin: 10px 0;
      }
      
      .company-info {
        grid-template-columns: 1fr;
      }
      
      .company-stats {
        grid-template-columns: 1fr;
      }
    }
  