/*
 * @Author: lixiuhuang 
 * @Date: 2020-10-28 14:51:08 
 * @Last Modified by: lixiuhuang
 * @Last Modified time: 2021-01-06 17:05:20
 */
 html {
  font-size: 16px;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
}
body {
  -webkit-user-select: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.wrap{
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 75px;
}
.myiframe {
  width: 100%;
  min-height: 100vh;
  margin-top: -1px;
}

.footer-btn {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 100;
  max-width: 600px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 7px 30px 20px;
}
.button-p{
  width: 100%;
  background: url(https://test-image.medtrib.cn/image/post/picture/5/3321bbe3-0688-44ca-9cce-85340e06709a.png) no-repeat;
  background-size: 100% 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
}
.signUpYes-wrap{
  position: relative;
}
.img-bac img{
  display: block;
  width: 100%;
}
.info-cont{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  z-index: 10;
  margin-top: -35px;
}
.success-icon{
  background: url(https://test-image.medtrib.cn/image/post/picture/5/1cae3cf9-e969-4320-ac09-583bc8781bc6.png) no-repeat center;
  width: 100%;
  height: 31px;
  background-size: 150px 31px;
  display: block;
}
.info-cont p{
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  padding-top: 14px;
}
.info-cont p span{
  background: rgba(54, 16, 16, .4);
  padding: 0 6px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
}
.myfirst{
  animation:myfirst 1.2s linear infinite;
  -webkit-animation:myfirst 1.2s linear infinite; /*Safari and Chrome*/
}
@keyframes myfirst {
  0% {transform: scale(.9);  /*开始为原始大小*/}
  50% {transform: scale(1.1);}
  80% {transform: scale(1);}
  100% {transform: scale(.9);}
}

@-moz-keyframes myfirst /* Firefox */
{
  0% {transform: scale(.9);  /*开始为原始大小*/}
  50% {transform: scale(1.1);}
  80% {transform: scale(1);}
  100% {transform: scale(.9);}
}

@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
  0% {transform: scale(.9);  /*开始为原始大小*/}
  50% {transform: scale(1.1);}
  80% {transform: scale(1);}
  100% {transform: scale(.9);}
}

@-o-keyframes myfirst /* Opera */
{
  0% {transform: scale(.9);  /*开始为原始大小*/}
  50% {transform: scale(1.1);}
  80% {transform: scale(1);}
  100% {transform: scale(.9);}
}