*{
  padding: 0;
  margin: 0;
  font-size: 12px;
  box-sizing: border-box;
}
.login-img{
  background: url('../images/login_bg.png');
  background-size: 100%;
  background-repeat: no-repeat
}
.PM{
  width: 85%;
  position: relative;
  top: 5.5rem;
  height: 6.2rem;
  margin: 0 auto;
}
.login-text{
  margin-bottom: .2rem;
  margin-left: .2rem;
  font-size: .5rem;
  font-weight: 400;
  color: #fff;
  line-height: 0.49rem;
}
.inptutBox input{
  border-radius: 2rem;
  background: #F2F2F2;
  border: none;
  width: 100%;
  height: auto!important;
  margin-bottom: 0;
  padding-left: .5rem;
  outline:none;
  border:none;
  font-size: .3rem;
  font-weight: bold;
  color: #E77584;
  line-height: 0.8rem;
}
input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #A1A1A1;
}
  input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #A1A1A1;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #A1A1A1;
}
  input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color:  #A1A1A1;
}
.BUTNEXT{
  width: 4rem;
  height: .9rem;
  line-height: .9rem;
  text-align: center;
  background-color: #B1B1B1;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: .4rem;
  margin: 1rem auto;
}
.BUTNLOADING{
  width: 4rem;
  height: .9rem;
  line-height: .9rem;
  text-align: center;
  background-color: #E77584;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: .4rem;
  margin: 1rem auto;
}
.care-info{
  /* padding: .8rem 0; */
}
.care-info img{
  width: 0.25rem;
  height: 0.23rem;
}
.care-info span{
  font-size: 0.25rem;
  color:#9160D2;
  letter-spacing: 0.01rem;
}
#loading{
  position: absolute;
  z-index: 999;
  top: 5rem;
  left: 3rem;
  margin: auto;
  margin-top: 10px;
  margin-right: 1.6rem;
  width: 95px;
  height: 80px;
  display: none;

}
.loading-pic{
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 0 #666;
  animation: loop 1s infinite;
  -webkit-animation: loop 1s infinite;
}
@keyframes loop {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg );
  }
}
.show{
  display: block;
}
.noshow{
  display: none;
}