ul li {
    list-style: none;
}

main .main_column .gameplay_area {
    background-image: url(../../../../../img/game/picmatch/pc/game_play_bg.png);
    background-size: cover;
    width: 728px;
    height: 440px;
    margin: 0 auto;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.beauty {
    position: relative;
    left: 148px;
    top: 56px;
}

.beauty.beautyActive {
    /* animation: bounceIn 1s;
    box-shadow: 0 0 .4rem .4rem #eee; */
}

.gameplay_area {
    position: relative;
    width: 440px;
    height: 440px;
}

.timebar_bg {
    position: absolute;
    top: -1.95em;
    left: 5.1em;
    width: 324px;
    height: 20px;
    background: #74747473;
    border-radius: 4px;
    overflow: hidden;
}

.timebar_fill {
    width: 100%;
    height: 100%;
    background-color: #6fc66f;
    transition: width 0.2s linear;
}

@keyframes bounceIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.startime {
    position: absolute;
    top: -2.1rem;
    right: 1rem;
    font-size: 1.12rem;
    color: #fff;
}

.music-toggle {
    position: absolute;
    top: -2.8rem;
    left: -0.5rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.12rem;
    color: #fff;
    text-align: center;
    line-height: 2.4rem;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.music-toggle.off {
    opacity: 0.5;
}

.btn-play {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 17.52rem;
    height: 3.68rem;
    background: url('../images/btn-star.png') no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    font: bold 1.36rem/3.28rem 微软雅黑;
    text-align: center;
    color: #753200;
    text-shadow: .52rem .52rem #ffba27;
    /* background-position: -46.04rem -19.96rem; */
}

.beauty ul {
    float: left;
    display: block;
    width: 440px;
    height: 342px;
}

.beauty ul li {
    float: left;
    /* display: inline-block; */
    margin: .72rem 0 0 .4rem;
    width: 65px;
    height: 58px;
    cursor: pointer;
}

.beauty ul li.activing {
    animation: swing 1s;
}

.beauty ul li img {
    display: block;
    width: 64px;
    height: 62px;
    vertical-align: top;
    border: none;
    outline: 2.5px solid #eadbb7;
    transition: outline-color 0.3s;
}

.beauty ul li img:hover,
.beauty ul li img.clicked {
    outline-color: red;
}

@media screen and (max-width: 640px) {
    .beauty {
        width: 24rem;
        padding-bottom: 1.2rem;
    }

    .beauty ul li {
        width: 30%;
        margin-left: .6rem;
        margin-top: 1.2rem;
    }
}

.word-ready {
    position: absolute;
    width: 100%;
    display: block;
    color: #eee;
    text-align: center;
    line-height: 400px;
    transform: translateY(-150%);
}

.word-go {
    position: absolute;
    width: 100%;
    display: block;
    color: #eee;
    text-align: center;
    transform: scale(0);
    opacity: 0;
    line-height: 400px;
}

.word-ready.readyActive {
    /* animation: bounceInDown 1s; */
    animation: readySlide 1.5s;
}

.word-go.goActive {
    /* animation: bounceInDown 1s; */
    animation: goSlide 1.5s .5s;
}

@keyframes readySlide {
    from {
        opacity: 1;
        transform: translateY(-150%);
    }
    to {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes goSlide {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        transform: scale(1.7);
        opacity: 1;
    }
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.mask .game-result {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20rem;
    height: 12rem;
    background-color: #555392;
    transform: translate(-50%, -50%);
    border-radius: .8rem;
    font-size: .96rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 .4rem .4rem #eee;
}

.mask .game-result p {
    padding: 4rem -0px;
}

.mask .btn-group {
    text-align: center;
}

.mask .btn-group a {
    display: inline-block;
    width: 8rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    color: #333;
    background-color: #fff;
    border-radius: .8rem;
}