
.el-message-fade {
    opacity: 0;
    transform: translateY(-100%);
}

.message-box {
    min-width: 280px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    position: fixed;
    left: 50%;
    top: 20px;
    background-color: #edf2fc;
    transition: opacity .3s, transform .4s;
    overflow: hidden;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    z-index: 999;
}

.message-box--success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
    color: #67c23a;
}

.message-box--error {
    background-color: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}

img {
    border: none;
}

#video-play-pop {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .65);
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateY(-20px);
    transition: opacity .2s, transform .4s;
    opacity: 0;
}

#video-play-pop video {
    display: block;
    max-height: 100%;
    max-width: 100%;
    margin: 0px auto;
}

.video-box {
    position: relative;
    max-height: calc(100% - 160px);
    max-width: 90%;
    margin: 92px auto 0;
}

.video-play-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .7);
    color: #bbb;
    font-style: oblique;
}

.video-play-loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-36%, -72%);
    font-size: 24px;

}

.video-play-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    vertical-align: text-bottom;
    margin-right: 7px;
}

.video-play-close {
    position: absolute;
    top: -10px;
    transform: translateY(-100%);
    cursor: pointer;
    transition: transform .2s;
}

.video-play-close:hover {
    transform: translateY(-100%) rotateZ(90deg);
}


@media screen and (max-width: 768px) {
    .video-play-btn {
        width: 16px;
        height: 16px;
    }

    .video-play-close svg {
        width: 20px;
        height: 20px;
    }

    .video-box {
        max-width: 98%;
    }
}