html,body{
    font-family: PingFangSC-Medium, PingFang SC;
    font-size: 0.32rem;
    min-height: 100%;
    background: #FFFCFC;
}
.common-container{
    width: 7.5rem;
    margin: 0 auto;
    box-sizing: border-box;
    background: #FFFCFC;
}
img{
    width: 100%;
    display: block;
    object-fit: cover;
}
.loading-container {
    width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.1);
}
.loading-container .loading-wrap{
    width: 1.1rem;
    height: 1.1rem;
}
.loading-container .loading{
    width: 100%;
    height: 100%;
    border: 0.12rem solid transparent;
    border-top: 0.12rem solid #F69800;
    border-right: 0.12rem solid #F69800;
    border-bottom: 0.12rem solid #F69800;
    border-radius: 50%;
    animation: rotate 1.5s infinite linear;
    box-sizing: border-box;
}
.loading-container .msg-wrap {
    width: 70%;
    position: fixed;
    top: 40%;
    left: 50%;
    padding: 0.2rem 0.4rem;
    color: #fff;
    background: rgba(0,0,0,0.75);
    border-radius: 0.1rem;
    /* max-width: 7.5rem; */
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 0.36rem;
    font-family: PingFangSC-Regular, PingFang SC;
    /* color: #bd0000; */
    line-height: 0.4rem;
    /* padding: 0.2rem; */
    z-index: 9999;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.toast{
    position: fixed;
  top: 40%;
  left: 50%;
  padding: 0.2rem 0.4rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 0.1rem;
  max-width: 6rem;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 0.28rem;
  font-family: PingFangSC-Regular, PingFang SC;
  /* color: #bd0000; */
  line-height: 0.4rem;
  z-index: 9999;
}