html{
    height:100%;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,button,textarea,p,blockquote,th,td{
    padding:0;
    margin:0;
}
body{
    font-family: "Helvetica Neue", "Hiragino Sans GB", "Segoe UI", "Microsoft Yahei", "微软雅黑", Tahoma, Arial, STHeiti, sans-serif;
    font-size: 12px;
    background-color: #2E2E2E;
    color: #E3E3E3;
}
a{
    outline:none;
    -moz-outline:none;
    text-decoration:none;
}
.clearfix{
    zoom:1;
    _height:1px;
}
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
body{background:#030000 url("../images/bg.jpg") center top no-repeat;background-size: 100%;}
.wrap{
    width:100%;
    margin:0 auto;padding: 40px 0 20px;
}
.game-time{
    text-align: center;font-size: 14px;height: 64px;
}
.game-time span{font-weight: bold;font-size: 28px;}
.play_wrap{
    margin: 30px auto 0;
}
#play_area{
    position:relative;
    width:300px;
    height:300px;
    margin:auto;
    background:#fefefe;
    border-radius:2px;
    color: black;

    border:1px solid #fff;
    border:1px solid #e5e5e5;
    cursor:default;
}
#play_area .play_cell{
    width:48px;
    height:48px;
    border:1px solid #fff;
    border-radius:4px;
    position:absolute;
    background-position: 5px 5px;
    cursor: default;
    z-index:80;
    transition-property:background-position;
    transition-duration:300ms;
    transition-timing-function:ease-in-out;
}
#play_area .play_cell.hover{
    filter: alpha(opacity=80);
    opacity:.8;
    box-shadow: 0px 0px 8px #000;
    z-index:90;
    *border:1px solid #09F;
}
.play_menu{
    margin-top: 40px;
}

.play_menu .play_btn{
    display:block;
    width:160px;
    height:46px;
    line-height:46px;
    text-align:center;
    text-decoration:none;
    font-size:16px;font-weight: bold;
    color:#fff;
    background: url("../images/start-btn.png") no-repeat;background-size: contain;
    margin: 0 auto;
}

.play_menu a#play_btn_level{
    position:relative;
    margin-bottom:30px;
}
.level_text{
    margin-left:-10px;
}
.level_icon{
    display:block;
    position:absolute;
    top:12px;
    right:16px;
    width:0;
    height:0;
    overflow:hidden;
    border:5px solid #FFF;
    border-color:#999 transparent transparent transparent;
}
.level_menu{
    position:absolute;
    margin:-30px 0 0px 1px;
    display:none;
}
.level_menu ul{
    list-style:none;
}
.level_menu li{
    float:left;
}
.level_menu li a{
    display:block;
    padding:3px 10px;
    border:1px solid #e8e8e8;
    margin-left:-1px;
    color:#09c;
}
.level_menu li a:hover{
    background:#09c;
    color:#fefefe;
}
#info{
    font-size:16px;
    margin:30px 0 0 0;
}
#info a{
    color:#09F;
}
.game-title{text-align: center;height: 120px; background: url("../images/title.png") center center no-repeat; background-size: 70%;}
.mask-con{position: fixed;left: 0;top:0;width: 100%;height: 100%;background: rgba(0,0,0,.8);z-index: 99;}
.mask-info{text-align: center;margin-top: 50px;}
.mask-info .mask-pic{position: relative;z-index: 2;margin-top: 30px;}
.mask-info .mask-pic .blin{
    position: absolute;top:0;left: -10%;width: 120%;height: 100%;
    background: url("../images/gold.png") no-repeat;background-size: contain;
    animation: circle 10s linear infinite;z-index: 1;
}
.mask-info .mask-pic img{
    width:120%;z-index: 2;position: relative;-webkit-transform: scale(0.1);transform: scale(0.1);
    -webkit-animation: reback .5s linear forwards;
     animation: reback .5s linear forwards;margin-left: -10%;
}
.tips-con{
    font-size: 16px;
}
.tips-con b{font-size: 24px;}
.tips-con2{font-size: 16px;opacity: 0.9;margin-top: 30px;}

@keyframes circle {
    0% {
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes reback {
    100% {
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
