html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

body {
  line-height: 1.6;
  font-family: -apple-system-font, Helvetica Neue, sans-serif;
  overflow-x: hidden;
  font-size: .24rem;
  -webkit-overflow-scrolling: touch;
}

p,
h3,
h4 {
  margin: 0;
  padding: 0;
}

button,
input {
  margin: 0px;
  padding: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  outline: 0 !important;
  box-sizing: border-box;
  letter-spacing: .02rem !important;
}

#app {
  font-size: .24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

#app>.content {
  height: 100%;
  overflow: scroll;
}

.show {
  display: block !important;
}
.iblock{
  display: inline-block;
}
.none {
  display: none;
}

.w100 {
  width: 100%;
}

.f12 {
  font-size: .24rem;
}

.f13 {
  font-size: .26rem;
}

.f14 {
  font-size: .28rem;
}

.f15 {
  font-size: .30rem;
}

.lh15 {
  line-height: 1.5;
}

.lh18 {
  line-height: 1.8;
}

.lh20 {
  line-height: 2;
}

.lh60 {
  line-height: 6;
}
.vc{
  display: inline-block;
  vertical-align: middle;
}
.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.c_f {
  color: white
}

.c_red {
  color: #D81F1F;
}

.c_grey {
  color: #666666;
}

.bold6 {
  font-weight: bold !important;
}

/*公共组件*/
/*toast样式*/

.toast {
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 50%;
  left: 0;
  text-align: center;
  transition: opacity .5s;
  -webkit-transition: opacity .5s;
  /* Safari */
  opacity: 0;
  z-index: 9999;
}

.toast>span {
  padding: .2rem .3rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: .08rem;
  color: #ffffff;
  font-size: .32rem;
  margin: 0 1rem;
  display: inline-block;
}

/*loading*/
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.loading_content {
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  top: 45%;
  position: fixed;
  width: 2.4rem;
  min-height: 2.4rem;
  left: 50%;
  margin-left: -1.2rem;
  background: hsla(0, 0%, 7%, .7);
  text-align: center;
  border-radius: .1rem;
  color: #fff;
}

.loading_icon {
  display: inline-block;
  -webkit-animation: weuiLoading 1s steps(12, end) infinite;
  animation: weuiLoading 1s steps(12, end) infinite;
  background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
  background-size: 100%;
  font-size: 1.1rem;
  color: white;
  margin: .6rem 0 0;
  width: .72rem;
  height: .72rem;
  vertical-align: baseline;
}

@-webkit-keyframes weuiLoading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes weuiLoading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.loading_msg {
  font-size: .32rem;
}

/*活动说明弹窗*/

#popup {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

#popup .pop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

#popup .content {
  width: 6.25rem;
  position: absolute;
  top: 30%;
  left: .62rem;
  z-index: 9999;
  background: #fff;
  border-radius: .12rem;
  overflow-y: hidden;
}

#popup .content .msg {
  padding: 1.04rem 0 .68rem;
  display: none;
}

#popup .content .msg2 {
  padding: .55rem 0 .55rem;
  display: none;
}

#popup .btn {
  width: 3.8rem;
  height: .68rem;
  background: #09183D;
  border-radius: .12rem;
  color: #ffffff;
  font-size: .3rem;
}

#popup .tips {
  margin-top: .3rem;
  margin-bottom: .2rem;
  border: 1px solid #666666;
  padding: .14rem .2rem .1rem;
  border-radius: .12rem;
  font-size: .22rem;
  text-align: left;
  background-color: #FBF7EE;
}

#popup,
#toast2,
#modal,
#confim,
.btnBar {
  display: none;
}

#popup #toast2,
#popup #modal {
  padding: 0 .46rem .46rem;
}

#popup .inputMsg {
  padding: 0 .3rem !important;
}

#confim {
  padding: .16rem;
}

#confim .title {
  margin: .2rem auto;
}

#confim .txt {
  line-height: 2.2;
}

#popup .btnBar {
  width: 100%;
  display: flex;
  border-top: 1px solid #aaaaaa;
  margin-top: .25rem;
}

#popup .btnBar>button {
  background-color: transparent;
  width: 50%;
  line-height: .8rem;
  box-sizing: border-box;
}

#popup .btnBar>button:first-child {
  border-right: 1px solid #aaaaaa;
}
/**/