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

        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .content-wrapper {
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .content-wrapper {
                flex-direction: row;
            }
        }
        
        /* 图片区域 - 修复手机显示问题 */
        .image-section {
            flex: 0 0 auto;
            padding: 20px;
            max-width: 100%;
            display: block !important; /* 强制显示 */
        }
        
        @media (min-width: 768px) {
            .image-section {
                flex: 0 0 35%;
                max-width: 35%;
            }
        }
        
        .image-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 宽高比 - 横版图片 */
            overflow: hidden;
            border-radius: 6px;
            background-color: #eee;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .image-container:hover img {
            transform: scale(1.03);
        }
        
        /* 详情区域 */
        .detail-section {
            flex: 1;
            padding: 20px;
        }
        
        .title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #222;
            font-weight: 600;
            line-height: 1.3;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .meta-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 0.5rem;
            align-items: flex-start;
        }
        
        .tag {
            display: inline-flex;
            align-items: center;
            background-color: #f0f0f0;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #555;
            white-space: nowrap;
            margin-bottom: 5px;
        }
        
        .tag i {
            margin-right: 5px;
            color: #777;
        }
        
        .tag-link {
            color: #0066cc;
            text-decoration: none;
        }
        
        .tag-link:hover {
            color: #004499;
            text-decoration: underline;
        }
        
        /* 播放按钮 */
        .play-section {
            display: flex;
            
            margin: 0.5rem 0;
        }
        
        .play-btn {
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #ff6b6b, #ff8e53);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 6px 30px;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }
        
        .play-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
        }
        
        .play-btn i {
            margin-right: 8px;
            font-size: 1.3rem;
        }
        
        /* 简介区域 */
        .synopsis {
            background-color: #f9f9f9;
            padding: 20px;
            border: 2px solid #f2f2f2;
            margin-top: 20px;
        }
        
        .synopsis h2 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .synopsis h2 i {
            margin-right: 8px;
            color: #ff6b6b;
        }
        
        .synopsis p {
            color: #555;
            line-height: 1.6;
        }
        
        /* 响应式调整 */
        @media (max-width: 767px) {
            .title {
                font-size: 1.5rem;
            }
            
            .play-btn {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .tag {
                font-size: 0.8rem;
                padding: 5px 10px;
            }
            
            .image-section {
                padding: 15px;
            }
            
            .detail-section {
                padding: 15px;
            }
            
            /* 确保图片在手机上完全显示 */
            .image-container {
                max-height: 300px; /* 限制最大高度 */
            }
        }
        
        .movie {
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            padding: 15px 10px;
            background: #fff;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb a {
            text-decoration: none;
            color: #0066cc;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* 友情链接区域 */
        .friend-links {
            margin-top: 30px;
            padding: 20px;
            background-color: #fff;
            border-top: 1px solid #eee;
        }
        
        .friend-links h2 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid #ddd;
        }
        
        .friend-links h2 i {
            margin-right: 8px;
            color: #0066cc;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .friend-link {
            display: inline-block;
            padding: 8px 15px;
            background-color: white;
            color: #555;
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid #ddd;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        
        .friend-link:hover {
            background-color: #0066cc;
            color: white;
            border-color: #0066cc;
            transform: translateY(-2px);
        }