html,
body {
  width: 100%;
  height: 100%;
  background-color: #ededed;
  margin: 0;
}
a {
  cursor: pointer;
  color: #000;
  text-decoration: none;
  outline: 0 none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.enter-container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 500px;
  padding: 5% 2%;
  position: relative;
  text-align: center;
}
.enter-container .logo-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enter-container .logo-wrapper .img-logo {
  width: 80px;
  height: 80px;
}
.enter-container .txt-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 40px;
  color: #000;
}
.enter-container .txt-content {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
}
.enter-container .txt-enter {
  background: linear-gradient(#f8922d, #ff2f00);
  color: #fff;
  cursor: pointer;
  flex: 1 1;
  line-height: 40px;
  margin: 20px 0;
  padding: 0 10px;
  border-radius: 8px;
}
.enter-container .txt-saveqr {
  margin: 20px 0;
  align-items: center;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  line-height: 40px;
}
.enter-container .txt-saveqr .qrcode {
  margin-right: 4px;
}
