a{
  text-decoration: none;
}
#my2048{
  width: 89vw;
  height: 119.108vw;
  max-width: 450px;
  max-height: 600px;
  margin:0 auto;
  font-family: clear sans,helvetica neue,Arial,sans-serif;
  color: #776E65;
  font-size: 14px;
  -moz-user-select:none;/*火狐*/
  -webkit-user-select:none;/*webkit浏览器*/
  -ms-user-select:none;/*IE10*/
  user-select:none;
}
#myhead{
  width: 100%;
  height: 29.773vw;
  max-height: 150px;
  float: left;
  box-sizing: border-box;
}
#headtop{
  width: 100%;
  height: 14.886vw;
  max-height: 75px;
  position: relative;
}
#title2048{
  font-size: 5.375em;
  line-height: 1em;
  font-weight: 600;
  color: #776E65;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#headScore{
  max-height: 55px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#headScore>div{
  width: 19.255vw;
  height: 10.918vw;
  max-width: 97px;
  max-height: 55px;
  font-size: 1.785em;
  line-height: 80px;
  display: inline-block;
  border-radius: 3px;
  background-color: #BBADA0;
  margin-left: 2vw;
  position: relative;
  text-align: center;
  color: #fff;
}
#headScore>div::after{
  position: absolute;
  width: 100%;
  top: 7px;
  left: 0px;
  font-size: 0.64em;
  line-height: 1em;
  color: #eee4da;
  text-align: center;
}
#nowScore::after{
  content: 'Score';
}
#bestScore::after{content:'Best'}
#gameIntro{
  width: 100%;
  float: left;
  margin-top: 20px;
}
#describe{
  float:left;
  line-height: 1.785em;
}
#restart{
  width: 21.836vw;
  height: 7.939vw;
  max-width: 110px;
  max-height: 40px;
  background-color: #8f7a66;
  color:#fff;
  cursor: pointer;
  border-radius: 3px;
  text-align: center;
  line-height: 40px;
  float: right;
}
#table2048{
  width: 100%;
  height: 89vw;
  max-width: 450px;
  max-height: 450px;
  float: left;
  position: relative;
  bottom: 0;
  background-color: rgb(187,173,160);
  border-radius: 10px;
  box-sizing: border-box;
  touch-action: none;
}
.table2048::after{
  content: 'Game Over';
  position:absolute;
  display: block;
  width: 100%;
  height: 100%;
  left:0;
  top: 0;
  border-radius: 10px;
  background: rgba(143,122,102,.6);
  line-height: 450px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #fff
}
#tablebox{
  position: relative;
}
.item{
  list-style: none;
  width: 17.866vw;
  height: 17.866vw;
  max-width: 90px;
  max-height: 90px;
  color: #000;
  font-size: 3.214em;
  text-align: center;
  line-height: 90px;
  background-color: #CDC1B4;
  position: absolute;
  border-radius: 5px;
  float: left;
  box-sizing: content-box;
}

@media (max-width: 480px) {
  #my2048{
    font-size:9px;
  }
  #gameIntro{
    margin-top: 15px!important;
  }
  #headScore>div{
    line-height: 15.9vw;
  }
  #restart{
    line-height: 7.939vw;
  }
  .table2048::after{
    line-height: 89vw;
  }
  .item{
    line-height: 17.866vw;
  }
}
@media (max-width: 320px) {
  #my2048{
    width: 87.5vw;
  }
  #table2048{
    height: 87.5vw;
  }
  #gameIntro{
   margin-top: 10px;
  }
}

.align-left.white-content-block-content-wrapper{
  padding: 30px 0;
}