#slideTop .pcStart {
    width: 25vw;
    height: auto;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

#slide5 .pcStart {
    width: 20vw;
    height: auto;
    position: absolute;
    bottom: 13%;
    left: 62%;
    transform: translateX(-50%);
}

/* 模态窗口的背景遮罩 */
#pcPlayModal {
    display: none;
    /* 初始状态隐藏 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明黑色背景 */

    display: flex;
    justify-content: center;
    align-items: center;
}

/* 模态窗口的内容 */
#pcPlayModal .modal-content {
    width: 600px;
    height: 350px;
    /* background: #000; */
    overflow: visible;
    position: absolute;
    /* 为内部定位提供参考点 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 通过transform居中 */
}

#pcPlayModal #pcPlayModalClose {
    position: absolute;
    right: 2vw;
    top: 2vw;
    width: 5vw;
    /* 按钮的宽度 */
    height: 5vw;
    /* 按钮的高度 */
    cursor: pointer;
    z-index: 10;
    /* 确保按钮在所有内容之上 */
}

#pcPlayModal #pcPlayModalClose:hover {
    opacity: 0.8;
    /* 悬停时的透明度效果 */
}

/* 模态窗口的内容 */
#pcPlayModal .modal-content .playFrame {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    /* 移除iframe的默认边框 */

}