﻿.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.player-wrapper {
    padding: 16px;
    background-color: #fff;
    width: 80%;
}
#dplayer {
    width: 100%;
    max-height: 684px;
}
.dplayer {
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    line-height: 1;
}
.modal .button-wrapper {
    margin-top: 12px;
    width: 80%;
    display: flex;
    align-items: center;
}
.button-wrapper .play-btn.cur {
    background-color: #0281FF;
    color: #fff;
}
.button-wrapper .play-btn {
    margin-right: 16px;
    padding: 8px 16px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
}
.button-wrapper .contact {
    flex: 1;
    text-align: right;
    font-size: 16px;
}
.button-wrapper .contact a {
    font-size: 16px;
    color: #0281FF;
}