#game_note {
    background: #fff;
    display: none;
    top: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%
}
#game_note_ad1 {
    height: 250px;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden
}

.header_bar {
    box-shadow: inset 0 0 0 1px #ebebf0, 0 2px 12px 0 rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-content: center;
    /*padding: 10px 18px;*/
    background-color: #fff
}

.header_bar h2 {
    color: #333;
    font-size: 20px;
    font-weight: 400
}

#describe {
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    width: calc(100% - 40px);
    margin: 10px;
    padding: 10px;
    box-shadow: inset 0 0 0 1px #ebebf0, 0 2px 12px 0 rgba(0, 0, 0, .1);
    text-align: initial
}

#describe h2 {
    margin-bottom: 10px;
    color: #212121;
    font-size: 16px;
    font-weight: 600
}

#describe h2 span {
    font-size: 24px;
    margin-right: 5px;
    vertical-align: middle;
    color: #4baf4f
}

#describe p {
    font-size: 12px;
    color: #757575;
    line-height: 18px;
    margin-bottom: 15px
}

#play {
    display: block;
    color: #fff;
    background-color: #fc2745;
    font-size: 18px;
    font-weight: 700;
    width: 80%;
    margin: 25px auto;
    text-align: center;
    height: 46px;
    line-height: 46px;
    border-radius: 24px;
    text-decoration: none;
    animation: playAnimate 500ms linear infinite alternate
}
#orientation {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(rotate.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    background-size: 25%;
    z-index: 999;
    display: none
}
@keyframes playAnimate {
    0% {
        transform: scale(.9)
    }
    100% {
        transform: scale(1)
    }
}