*{
  margin:0;
  padding:0;
}
body{
  background: #F2F7FD;
}
ul > li {
  list-style: none;
}
.dialog {
  width:100vw;
  height:100vh;
  position: fixed;
  top:0;
  left:0;
  background: rgba(0, 0, 0,0.7);
  z-index:100;
  display: none;
}
.dialogBtn {
  width:15rem;
  height:3.33rem;
  line-height: 3.33rem;
  font-size:1.25rem;
  color:#fff;
  text-align: center;
  background: #F0896F;
  border-radius: 0.42rem;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:-2rem;
}
.dialogContent {
  position: absolute;
  left:50%;
  top:46%;
  transform: translate(-50%,-50%);
}
#loadingView {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
}
#loadingView img {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
input:focus,
select:focus,
textarea:focus{
  outline:none;
}

select{
  -webkit-appearance: none;
  -moz-appearance: none;
}
#showText {
  position: fixed;
  left:0;
  top:0;
  width:100vw;
  height: 100vh;
  z-index:999;
}
#showText > div{
  display: inline-block;
  font-size:1rem;
  padding:4px 10px;
  background: rgba(0, 0, 0,0.5);
  color:#fff;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  border-radius: 4px;
  max-width: 80vw;
  box-sizing: border-box;
  word-break: break-all;
  text-align: center;
}