/* 语音验证码 */
/*盒模型*/
.flex,
.yuyin_container,
.yuyin_container .yuyin_body,
.yuyin_container .yuyin_body p,
.loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*盒模型垂直布局*/
.flex_v,
.yuyin_container {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/*子元素占据剩余的空间*/
.flex_1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/*子元素垂直居中*/
.flex_align_center,
.yuyin_container .yuyin_body p,
.loading {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/*子元素水平居中*/
.flex_pack_center,
.yuyin_container .yuyin_body,
.loading {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*子元素两端对齐*/
.flex_pack_justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.yuyin_container {
  position: fixed;
  left: 0;
  top: 40%;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  border-radius: 0.6rem 0.6rem 0 0;
}
.yuyin_container .close_btn {
  position: absolute;
  right: 0.45rem;
  top: 0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  background: url(../files/close_btn.png) no-repeat;
  background-size: 100% 100%;
}
.yuyin_container .yuyin_title {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 750;
  color: #333333;
  line-height: 0.75rem;
}
.yuyin_container .yuyin_tips {
  margin-top: 0.9rem;
  font-size: 0.42rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  line-height: 0.42rem;
}
.yuyin_container .yuyin_tips p {
  margin-bottom: 0.225rem;
}
.yuyin_container .yuyin_tips .yuyin_mobile {
  margin: 0 0.225rem;
  width: 3.435rem;
  height: 0.57rem;
  font-size: 0.57rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
  line-height: 0.57rem;
}
.yuyin_container .yuyin_body {
  margin-top: 0.6rem;
  height: 1.65rem;
}
.yuyin_container .yuyin_body p {
  width: 6.84rem;
  border-bottom: 0.01rem solid #999999;
}
.yuyin_container .yuyin_body p input {
  padding-left: 0.3rem;
  width: 100%;
  font-size: 1.05rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.45rem;
}
.yuyin_container .yuyin_retry {
  margin-top: 0.6rem;
  font-size: 0.42rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  line-height: 0.42rem;
}
html,
body {
  width: 100%;
  height: 100%;
}
.mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
.tips {
  padding: 0.3rem;
  box-sizing: border-box;
  overflow: hidden;
  width: 7.5rem;
  line-height: 0.75rem;
  border-radius: 0.3rem;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 150;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  color: #eee;
}
.loading {
  width: 7.5rem;
  height: 1.35rem;
  line-height: 0.75rem;
  border-radius: 0.3rem;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 150;
  margin: auto;
  text-align: center;
  color: #eee;
}
.loading span {
  display: inline-block;
}
.loading img {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.12rem;
}

