.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;
}
.dplayer_box{
    position: relative;
}
.stream_box{
    position: absolute;
    padding-top: 5px;
    top: 0;
    z-index: 1010;
}
.stream_box a{
    display: inline-block;
    line-height: 25px;
    padding: 0 10px;
    background: #f3f3f3;
    margin-right: 5px;
    color: #000;
    border-radius: 25px;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 14px;
}

.stream_box a.act{
    background: #e9e9a9;
}
@media screen and (max-width: 768px) {
    .stream_box {
        display: grid !important;
        grid-template-columns: repeat(4, 25%);
        gap: 5px !important;
        width: calc(100% - 15px);
    }
    .stream_box a{
        margin-right: 0;
        padding: 0 0;
        text-align: center;
    }
}