@charset "utf-8";
.down {
    margin-top: -10px;
}

/* 游戏特色横向滚动 */
.gameShow { overflow: hidden; position: relative; }
.gameShowScrollWrap {overflow: hidden;margin-left: 65px;width: 1313px;}
.gameShowScrollWrap dl {
    white-space: nowrap;
    padding: 30px 0 0 0;
    transition: transform 0.8s ease;
}
.gameShowScrollWrap dd {
    float: none;
    display: inline-block;
    width: 317px;
    height: 292px;
    margin: 0 52px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gameShowScrollWrap dd:hover {
    transform: scale(1.05);
}
.gameShowScrollWrap dd img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.gameShow .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    outline: none;
    line-height: 80px;
    text-align: center;
    margin-left: 84px;
}
.gameShow .arrow:hover {
    background: rgba(0,0,0,0.8);
}
.gameShow .arrow-left {
    left: 30px;
}
.gameShow .arrow-right {
    right: 30px;
}
/* 视频播放器弹出层 */
.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.video-overlay.active {
    display: flex;
}
.video-popup {
    position: relative;
    width: 800px;
    max-width: 90vw;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.video-popup video {
    width: 100%;
    display: block;
    vertical-align: middle;
}
.video-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    line-height: 36px;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}
.video-popup .close-btn:hover {
    background: #ff4444;
    border-color: #ff4444;
    transform: rotate(90deg);
}
.video-progress-wrap {
    width: 100%;
    height: 6px;
    background: #333;
    cursor: pointer;
    position: relative;
}
.video-progress-wrap .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
}
.video-progress-wrap .progress-buffer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 0 3px 3px 0;
    transition: width 0.2s;
}
.video-controls {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #1a1a1a;
    gap: 10px;
}
.video-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
    outline: none;
    line-height: 1;
}
.video-controls button:hover {
    background: rgba(255,255,255,0.15);
}
.video-controls .video-time {
    color: #aaa;
    font-size: 13px;
    font-family: Arial, sans-serif;
    flex: 1;
}

					