
[v-cloak] {
  display: none;
}
#app{
  min-height: 100vh;
  width: 10rem;
  background-color: #f2f2f2;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.empty{
  height: 100vh;
  background-color: #fff;
}
main{
  height: calc( 100vh - 15vh );
  width: 100%;
  margin-top: 15vh;
  background-color: #fff;
  border-radius: .5333rem;
  position: relative;
  padding: 1.44rem .4267rem 0;
  box-sizing: border-box;
}
main .icon{
  width: 2.1333rem;
  height: 2.1333rem;
  border-radius: 50%;
  background-color: #f2f2f2;
  position: absolute;
  left: 0;
  right: 0;
  top: -1.0667rem;
  z-index: 9;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .icon img{
  width: 1.7rem;
  height: 1.7rem;
}
main .name{
  font-size: 0.48rem;
  font-weight: bold;
  color: #000;
  width: 100%;
  text-align: center;
  margin-bottom: 0.8rem;
}
main .remark{
  font-size: .4rem;
  margin: .2667rem 0;
}

.inputWrap{
  width: 100%;
  padding: .2133rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: .0267rem solid #f2f2f2;
}
.inputWrap .inputLeft{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  height: .5867rem;
}
.inputWrap .rmb{
  width: .32rem;
  height: .5867rem;
  margin-right: .2133rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inputWrap .rmb img{
  display: block;
  width: .32rem;
  height: .4rem;
}
.inputWrap .inputMoney{
  width: auto;
  height: 100%;
  line-height: .5867rem;
  font-size: .7467rem;
  font-weight: 700;
  color: #333;
}
.inputWrap .placeholder{
  height: 100%;
  font-size: .4267rem;
  color: #b8b8b8;
}

.inputWrap .inputCursor{
  display: block;
  width: .0533rem;
  height: 100%;
  line-height: .6875rem;
  background-color: #e49b3c;
  animation: cursorKey 1s infinite;
  -webkit-animation: cursorKey 1s infinite;
}


[class*=van-hairline]::after{
  border: 0;
}
.content{
  padding: .4267rem;
  font-size: .4rem;
}
.content .van-cell{
  padding: .16rem .2667rem;
  background-color: #eee;
}
.van-number-keyboard__header{
  height: .5333rem;
}
.van-number-keyboard__title{
  font-size: .4rem;
  margin: 0;
}

.keyword .van-key--blue{
  background-color: #aaa;
}
.van-empty__description{
  padding: 0 .4267rem;
}
@keyframes cursorKey{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}