 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 导航栏样式 */
        .navbar {
            background-color: #333;
            color: white;
            padding: 10px 0;
            margin-bottom: 20px;
        }

        .navbar-container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

      .logo {
            font-size: 24px;
            font-weight: bold;
            margin-right: 100px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px; /* 增加链接之间的间距 */
        }

        .nav-links li {
            margin-left: 0; /* 移除左边距 */
        }

        .nav-links a {
            color: white;
            text-decoration: none;
        }

        
        /* 导航栏样式 */
        .navbar {
            background-color: #181818;
            color: white;
            padding: 20px 0;
            width: 100%;
        }

        .navbar-container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

  
        /* 主内容区样式 */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-content {
            display: flex;
            margin-bottom: 30px;
        }

        /* 播放器区域样式 */
        .player-container {
            flex: 0 0 70%;
            background-color: #000;
            padding: 20px;
            border-radius: 5px;
            position: relative;
        }

        .player-container .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: url('/img/play.png') no-repeat center;
            background-size: contain;
            cursor: pointer;
        }

        /* 电影信息区域样式 */
        .movie-info-container {
            flex: 0 0 30%;
            padding: 0 20px;
        }

        .movie-poster {
            width: 60%;
            height: auto;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .movie-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #fff;
            font-weight: bold;
        }

        .movie-details {
            margin-bottom: 15px;
        }

        .movie-details p {
            margin-bottom: 8px;
            font-size: 14px;
            color: #ccc;
        }

        .movie-description {
            line-height: 1.6;
            font-size: 14px;
            color: #ccc;
        }

        /* 电影列表样式 */
        .movie-list {
            background-color: #181818;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .movie-list h2 {
            margin-bottom: 20px;
            font-size: 20px;
            color: #fff;
        }

        .movie-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .movie-item {
            width: 23%;
            margin-bottom: 20px;
            background-color: #222;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .movie-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .movie-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .movie-item .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: url('/img/play.png') no-repeat center;
            background-size: contain;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .movie-item:hover .play-overlay {
            opacity: 1;
        }

        .movie-item .movie-title {
            padding: 10px;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            text-align: center;
        }

        .movie-item a {
            text-decoration: none;
            color: #fff;
        }

        .movie-item a:hover {
            color: #00a1d6;
        }

        /* 网友评论样式 */
        .comments-section {
            background-color: #181818;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .comments-section h2 {
            margin-bottom: 20px;
            font-size: 20px;
            color: #fff;
        }

        .comment {
            margin-bottom: 20px;
            border-bottom: 1px solid #333;
            padding-bottom: 20px;
        }

        .comment:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .comment-author {
            font-weight: bold;
            margin-bottom: 5px;
            color: #fff;
        }

        .comment-text {
            line-height: 1.6;
            font-size: 14px;
            color: #ccc;
        }

        /* 底部样式 */
        .footer {
            text-align: center;
            padding: 20px;
            background-color: #181818;
            color: white;
            margin-top: 30px;
        }
  