/* PC端影视卡片统一样式 */
.vod-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.3);
    background: #252525;
}

.vod-card-item:hover img {
    transform: scale(1.05);
}

.vod-card-item:hover .play-hover {
    opacity: 1;
}

.vod-card-item:hover .vod-name-text {
    color: #ff0000;
}

.vod-card-item:hover .label-tag {
    background: rgba(255,0,0,0.2);
    color: #ff0000;
}

/* 标题区域更多链接悬停效果 */
.section-title a:hover,
.title a:hover {
    color: #ff0000 !important;
}

/* 演员列表区域左右间距 */
.box-width.tv4 {
    /*margin-left: 60px !important;*/
    /*margin-right: 60px !important;*/
}

/* 响应式 */
@media (max-width: 1200px) {
    .box-width > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .box-width.tv4 {
        /*margin-left: 40px !important;*/
        /*margin-right: 40px !important;*/
    }
}

@media (max-width: 992px) {
    .box-width > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .box-width.tv4 {
        /*margin-left: 20px !important;*/
        /*margin-right: 20px !important;*/
    }
}

@media (max-width: 768px) {
    .box-width > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .box-width.tv4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
