@charset "UTF-8";
html, body {
    /*min-width: 1280px;!*1280px作为标记方便查找*!*/
}

.index-play-back {
    position: absolute;
    top: 0;
    left: 0;
    /*min-width: 1280px;!*1280px作为标记方便查找*!*/
    width: 100%;
    height: 100%;
    display: none;
}

.index-play-back-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: 1;
}

.index-play-back-container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    min-width: calc(1440px - 40px);/*1280px作为标记方便查找*/
    z-index: 2;
}

.index-play-back-container-title {
    height: 40px;
    line-height: 40px;
    padding-left: 25px;
    color: var(--themeFontColor);
    background: var(--themeLightColor);
    border-bottom: var(--themeColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-play-back-container-title .index-play-back-close {
    font-size: 22px;
    width: 28px;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
    color: #FFFFFF;
}

.index-play-back-container iframe {
    width: 100%;
    height: calc(100% - 40px);
}