		

 /* 视频项布局 - 始终图片在左，内容在右 */
        .rankvideo-item {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #dee2e6;
            display: flex;
            align-items: stretch;
        }
        
        .rankvideo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 前3名特殊样式 */
        .rankvideo-item.first-place {
            border-left-color: #ffd700;
			color:#ffd700;
            background-color: rgba(255, 215, 0, 0.05);
        }
        
        .rankvideo-item.second-place {
            border-left-color: #d700ff;
			color:#d700ff;
            background-color: rgba(192, 192, 192, 0.05);
        }
        
        .rankvideo-item.third-place {
            border-left-color: #3883d7;
			color:#3883d7;
            background-color: rgba(205, 127, 50, 0.05);
        }
        
        /* 图片区域 - 固定宽高比6:9 */
        .rankvideo-image-container {
            position: relative;
            width: 180px;
            min-width: 180px;
            height: 270px; /* 6:9比例，180px * 9/6 = 270px */
            overflow: hidden;
            flex-shrink: 0;
            object-fit: cover;
        }
        
        .video-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .rankvideo-item:hover .video-image {
            transform: scale(1.05);
        }
        
        /* 排序徽章 */
        .rank-badge {
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: white;
            border-bottom-right-radius: 10px;
        }
        
        .rank-badge.first {
            background-color: #ffd700;
            color: red;
        }
        
        .rank-badge.second {
            background-color: #d700ff;
            color: blue;
        }
        
        .rank-badge.third {
            background-color: #3883d7;
            color: white;
        }
        
        .rank-badge.other {
            background-color: #6c757d;
            color: white;
        }
        
        /* 内容区域 */
        .rankvideo-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        /* 标题和类型在同一行 */
        .rankv-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }
        
        .rankv-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            padding-right: 10px;
            margin: 0;
        }
        
        .video-type {
            background-color: var(--primary-color);
            color: white;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        /* 演员信息 */
        .video-actor {
            color: #666;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
        }
        
        .video-actor i {
            margin-right: 5px;
            flex-shrink: 0;
        }
        
        /* 简介 - 不换行，自动截断 */
        .vrank-description {
            color: #555;
            font-size: 0.8rem;
            line-height: 1;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }
        
        /* 按钮区域 */
        .vrank-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        
        .rankbtn-play {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 8px 15px;
            white-space: nowrap;
        }
        
        .rankbtn-play:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .rankbtn-details {
            background-color: #2a453a;
            color: white;
            font-weight: 600;
            padding: 8px 15px;
            white-space: nowrap;
        }
        
        .rankbtn-details:hover {
            background-color: #5a6268;
            color: white;
        }
        
        .btn i {
            margin-right: 5px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .rankvideo-item {
                flex-direction: row; /* 保持水平布局 */
                height: 220px;
            }
            
            .rankvideo-image-container {
                width: 120px;
                min-width: 120px;
                height: 180px; /* 6:9比例，120px * 9/6 = 180px */
            }
            
            .rankvideo-content {
                padding: 10px;
            }
            
            .vrank-actions {
                flex-direction: row;
            }
            
            .rankbtn-play, .rankbtn-details {
                width: 40%;
                text-align: center;
            }
        }
        
        /* PC端布局 - 每行3个 */
        @media (min-width: 992px) {
            .rankvideo-list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            /* PC端每个视频项也是水平布局 */
            .rankvideo-item {
                flex-direction: row;
                height: 220px;
            }
            
            .rankvideo-image-container {
                width: 140px;
                min-width: 140px;
                height: 210px; /* 6:9比例，140px * 9/6 = 210px */
            }
            
            .rankvideo-content {
                padding: 12px;
            }
            
            .vrank-actions {
                flex-direction: row;
            }
            
            .rankbtn-play, .rankbtn-details {
                width: auto;
            }
        }
        
        /* 中等屏幕 - 每行2个 */
        @media (min-width: 768px) and (max-width: 991px) {
            .rankvideo-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .rankvideo-item {
                flex-direction: row;
                height: 220px;
            }
            
            .rankvideo-image-container {
                width: 140px;
                min-width: 140px;
                height: 210px;
            }
            
            .rankvideo-content {
                padding: 12px;
            }
        }
        
      
        
        /* 移动端小屏幕调整 */
        @media (max-width: 576px) {
            .rankvideo-item {
                height: auto;
            }
            
            .rankvideo-image-container {
                width: 110px;
                min-width: 110px;
                height: 165px; /* 6:9比例，110px * 9/6 = 165px */
            }
            
            .rankv-title {
                font-size: 1rem;
            }
            
            .vrank-description {
                font-size: 0.85rem;
            }
        }
        
        /* 超小屏幕调整 */
        @media (max-width: 400px) {
            .rankvideo-image-container {
                width: 100px;
                min-width: 100px;
                height: 150px; /* 6:9比例，100px * 9/6 = 150px */
            }
            
            .rankvideo-content {
                padding: 8px;
            }
        }





.ranking-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            width: 100%;
            transition: transform 0.3s ease;
            border: none;
        }
        
        .ranking-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .ranking-header {
            background-color: var(--primary-color);
            color: white;
            padding: 18px 20px;
            border-radius: 10px 10px 0 0;
            font-weight: 600;
            font-size: 1.2rem;
            display: block;
            align-items: center;
            text-align:center;
        }
        
        .ranking-header .icon {
            margin-right: 10px;
            font-size: 1.4rem;
        }
        
        .ranking-list {
            padding: 0;
        }
        
        .ranking-item {
            padding: 5px 6px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .ranking-item:last-child {
            border-bottom: none;
        }
        
        .ranking-item:nth-child(odd) {
            background-color: #fdfdfd;
        }
        
        .ranking-item:hover {
            background-color: #f8fafc;
        }
        
        .ranking-number {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            min-width: 40px;
            text-align: center;
        }
        
        .ranking-number.top-3 {
            color: #e74c3c;
        }
        
        .ranking-content {
            flex-grow: 1;
            padding: 0 6px;
            text-align: center;
			
        }
        
        .ranking-title {
            font-weight: 500;
            font-size: 1rem;
            margin-bottom: 4px;
            line-height: 1;
			white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .ranking-status {
            font-size: 0.85rem;
            color: #666;
        }
        
        .ranking-play {
            text-align: right;
        }
        
        .rankingplay-btn {
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-block;
        }
        
        .rankingplay-btn:hover {
            transform: scale(1.05);
        }
        
       
        
        @media (max-width: 768px) {
            .ranking-card {
                margin-bottom: 20px;
            }
            
            .ranking-number {
                min-width: 35px;
                font-size: 1.3rem;
            }
            
            .ranking-play {
                min-width: 70px;
            }
        }
        
        @media (min-width: 992px) {
            .ranking-card {
                margin-bottom: 30px;
            }
        }
