* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #D4DBED;
}

.container {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;

  background: url("../img/bg.jpg") no-repeat;
  background-size: 100% 100%;
  max-width: 550px;
  margin: auto;
  padding-top: 42vh;
  padding-bottom: 4%;
}

.input {
  padding: 0% 6%;
}

.input__text {
  width: 100%;
  height: 50px;
  outline: none;
  border: none;

  background: url("../img/shuru.png") no-repeat;
  background-size: 100% 100%;
  padding-left: 2%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.input-btn {
  padding: 0% 6%;
}

.btn {
  width: 100%;
  height: 54px;
  outline: none;
  border: none;
  background: url("../img/anniu.png") no-repeat;
  background-size: 100% 100%;
  font-size: 16px;
  color: #b0bec4;
  margin-top: 4%;
}

.content {
  padding: 0% 6%;
  margin-top: 6%;
}

.normal-text {
  width: 100%;
  background: url("../img/kuang.png") no-repeat;
  background-size: 100% 100%;
  padding: 6%;
  color: #fff;
  font-size: 16px;
}

.red {
  color: #ff5252;
  font-weight: bold;
}

.main-title {
  padding: 0% 8%;
  margin-top: 6%;
}

.title {
  width: 100%;
  height: 26px;
  background: url("../img/title.png") no-repeat;
  background-size: 100% 100%;
}

.mask {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0% 6%;
  transform: translateX(-50%);
}

.mask-content {
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6% 0%;
}

.mask-icon {
  width: 255px;
  height: 147px;
}

.mask-title {
  font-size: 20px;
  color: #000;
  margin-top: 20px;
  text-align: center;
}

.result {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("../img/TC-BG.jpg") no-repeat;
  background-size: 100% 100%;
  transform: translateX(-50%);
}

.result-btn {
  background: url("../img/TC-anniu.png") no-repeat;
  background-size: 100% 100%;
  animation: btntrans 1s infinite alternate;
}

@keyframes btntrans {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

::-webkit-input-placeholder {
  color: #999;
  text-align: center;
}

:-moz-placeholder {
  color: #999;
  text-align: center;
}

::-moz-placeholder {
  color: #999;
  text-align: center;
}

:-ms-input-placeholder {
  color: #999;
  text-align: center;
}
