/* 影片播片 */
.video-container {
    position: relative;
    width: 100%;
    /* 可以根據需要調整 */
    height: 500px;
    /* 可以根據需要調整 */
    margin: 0;
    background: url('../images/index/sec2_video_cover.jpg') center center / cover no-repeat;
    background-size: cover;
    cursor: pointer;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: url('../images/common_icon/icon_video_icon.svg') center center / contain no-repeat;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.1);
    background: url('../images/index/icon_dots.png') center center / auto repeat;
    opacity: 0.2;
    z-index: 1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-container.playing::before,
.video-container.playing::after {
    display: none;
}

/* 影片播片 end */