.mobile {
  padding: 40px 0;
  background: linear-gradient(360deg, #f8f9fa 0%, #173793 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
.container2,
.container {
  padding: 0% 4%;
}
.collect-email {
  width: 100%;
  background: #ffffff;
  border-radius: 16px 16px 16px 16px;
  text-align: center;
  padding: 40px 24px;
  box-sizing: border-box;
}
.collect-email h1 {
  font-size: 24px;
  margin-top: 20px;
}
.collect-email .desc {
  font-size: 16px;
  margin: 10px 0 15px 0;
}
.collect-email .iptbox {
  position: relative;
}
.collect-email .iptbox .tip-error {
  display: none;
  position: absolute;
  left: 10px;
  bottom: -25px;
  font-size: 12px;
  color: red;
}
.collect-email .email {
  width: 100%;
  height: 64px;
  border-radius: 32px 32px 32px 32px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #e6e8e9;
  text-align: center;
  font-size: 16px;
}
.collect-email .email::placeholder {
  color: #999999;
}
.collect-email .btn {
  min-width: 100%;
  height: 64px;
  background: #2258f6;
  border-radius: 288px 288px 288px 288px;
  font-size: 16px;
  line-height: 64px;
  color: #ffffff;
  margin: 32px 0 24px 0;
}
.collect-email .anyway {
  color: #2258f6;
  font-size: 14px;
}
.collect-email-2 {
  display: none;
  padding: 60px 24px;
}
.collect-email-2 .top {
  border-bottom: 1px solid #e6e8e9;
}
.collect-email-2 .desc {
  margin: 10px 0 60px 0;
}
.collect-email-2 .desc-2 {
  margin: 45px 0 40px 0;
  font-size: 16px;
}
.collect-email-2 .linkbox {
  display: flex;
  justify-content: space-between;
}
.collect-email-2 .small-bt {
  width: 48%;
  height: 48px;
  border-radius: 288px 288px 288px 288px;
  border: 1px solid #2258f6;
  color: #2258f6;
  font-size: 12px;
  line-height: 48px;
}
[data-btn="sendEmail"] {
  position: relative;
  overflow: hidden;
}
[data-btn="sendEmail"] .loading {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
[data-btn="sendEmail"] .loading i {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/assets/images/icon/loading.png) no-repeat;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
footer {
  padding: 40px 0;
  background: #000000;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
