/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-modal .modal-content {
    width: 80%;
    max-width: 800px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal video {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* 关闭按钮样式 */
.video-modal .close,
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0);
    color: #4d3a4d;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}

/* 视频封面图容器 */
.video-image {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 50px;
}

/* 视频详情部分样式 */
.video-detail-section {
    padding: 0 .36rem;
}

.video-detail .video-container {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.video-detail .video-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.video-detail .video-meta {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
    text-align: center;
}

.video-detail .video-description {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
    margin-top: 20px;
}

/* 链接样式 */
.video-detail-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #fc84de;
    text-decoration: none;
}

.video-detail-link:hover {
    text-decoration: underline;
}

/* 视频部分的整体样式 */
.video-section {
    position: relative;
    padding-top: 20px;
    text-align: center;
}

.video-section .intro-video {
    position: relative;
    text-align: center;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: cover;
}
