html, body {
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    max-width: 320px;
    max-height: 480px;
}
.conteiner{
  width: 320px;
  margin:0 auto;
  height: 480px;
  animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari & Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
.clickTag{
  width: 320px;
  height: 480px;
  position: absolute;
  z-index: 3;
  bottom: 19px;
  top: 0px;
  left: 0px;
}
.bg{
  position: absolute;
  top: 0;
  width: 320px;
  height: 480px;
  background-image: url("../img/bg.jpg");
}
.text{
  position: absolute;
  top: 80px;
  width: 191px;
  height: 58px;
  background-image: url("../img/text.png");
  left: 19px;
  /* display: none; */
}
.mano{
  width: 50px;
  height: 67px;
  background: url("../img/mano.png") no-repeat 50% 50%;
  bottom: 230px;
  z-index: 2;
  animation: tiembla ease .9s infinite;
  position: absolute;
  top: 0px;
}

@keyframes tiembla{
    0% { left: 170px;}
    100% { left: 50px; }
  }

.box{
  display: none;
  width: 240px;
  height: 160px;
  margin: 0 auto;
  position: absolute;
  left: 40px;
  top: 270px;
  z-index: 999;
}

.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
    background-color: transparent!important;
    border-color: #bbb;
    color: #333;
    text-shadow: 0 1px 0 #f3f3f3;
}
