
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }        
        .container {
            width: 1200px;
            max-width: 95%;
            margin: 0 auto;
            padding-top:70px ;
        }
        /* 分类导航 */
        .categories {
            width: 100%;
            background-color: white;
            border-radius: 8px;
            margin-top: 15px;
            padding: 15px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .categories-scroll {
            width: 100%;
            display: flex;
            overflow-x: auto;
            padding: 0 20px;
        }
        
        .categories-scroll::-webkit-scrollbar {
            height: 6px;
        }
        
        .categories-scroll::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }
        
        .category-item {
            padding: 8px 20px;
            margin-right: 10px;
            white-space: nowrap;
            border-radius: 20px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .category-item:hover, .category-item.active {
            background-color: #1a2a6c;
            color: white;
            border-color: #1a2a6c;
        }
        
        /* 主体内容 */
        .main-content {
            display: flex;
            margin: 30px 0;
            gap: 30px;
        }
        
        /* 影视资讯区域 */
        .news-section {
            flex: 0 0 60%;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        
        .news-list {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .news-item {
            
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .news-title {
            font-size: 20px;
            font-weight: 700;
            padding: 15px 20px;
            color: #222;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .news-content {
            display: block;
            padding: 0 20px 20px;
        }
        .news-pic-content { 
            display: flex;
        }        
        .news-image {
            flex: 0 0 280px;
            height: 168px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-text {
            flex: 1;
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            overflow: hidden;
            height: 168px;
            max-width: 380px;
        }
        
        .news-meta {
            /* position:absolute; */
            
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }
        
        .news-category {
            color: #f39c12;
            font-weight: 600;
            font-size: 14px;
        }
        
        .news-date {
            color: #777;
            font-size: 14px;
        }
        
        /* 热门资讯排行 */
        .ranking-section {
            flex: 1;
        }
        
        .ranking-list {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .ranking-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .ranking-item:last-child {
            border-bottom: none;
        }
        
        .ranking-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #f5f7fa;
            color: #1a2a6c;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .ranking-item:nth-child(1) .ranking-number {
            background-color: #ff4757;
            color: white;
        }
        
        .ranking-item:nth-child(2) .ranking-number {
            background-color: #ffa502;
            color: white;
        }
        
        .ranking-item:nth-child(3) .ranking-number {
            background-color: #2ed573;
            color: white;
        }
        
        .ranking-title {
            font-weight: 600;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }
        
        /* 底部样式 */
        footer {
            background-color: #1a2a6c;
            color: #ddd;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #f39c12;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .news-section, .ranking-section {
                width: 100%;
            }
            
            .news-content {
                flex-direction: column;
            }
            
            .news-image {
                flex: 0 0 auto;
                width: 100%;
                height: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .news-text {
                height: auto;
                -webkit-line-clamp: 3;
            }
        }
        
        @media (max-width: 768px) {
            .container{
                padding: 0;
            }
        }