.page {
  background: url('./images/bg.png') no-repeat;
  background-size: cover;
}

.header {
  background: #fff;
}

.header .wrap {
  padding: 30px 0;
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  box-sizing: border-box;
}

.header .logo {
  width: 134px;
  height: 30px;
  margin: 0;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .title {
  font-size: 18px;
  font-weight: 500;
  color: #081B50;
  line-height: 18px;
  margin-left: 206px;
}

.main {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.main .wrap {
  width: 1000px;
}

.section-1 {
  text-align: center;
  display: flex;
  align-items: center;
  width: 345px;
  margin: 0 auto 80px;
}

.section-1 img {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}

.section-1 h3 {
  font-weight: 500;
  font-size: 58px;
  color: #FFFFFF;
  line-height: 58px;
  text-align: left;
  font-style: normal;
}

.section-2 {
  width: 100%;
  height: 460px;
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  box-sizing: border-box;
  padding: 60px 0;
  text-align: center;
}

.section-2 .empower {
  font-weight: 400;
  font-size: 24px;
  color: #6D7391;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  margin-bottom: 60px;
  display: block;
  text-align: center;
}

.section-2 .code {
  font-size: 48px;
  color: #081B50;
  line-height: 68px;
  height: 68px;
  display: block;
  margin-bottom: 80px;
}

.section-2 .btn {
  width: 220px;
  height: 58px;
  line-height: 58px;
  background: #0055FF;
  border-radius: 12px;
  font-size: 18px;
  color: #FFFFFF;
  border: 0;
  margin-bottom: 30px;
  cursor: pointer;
}

.section-2 .tips {
  font-size: 14px;
  color: #97AACF;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  display: block;
  text-align: center;
}

.section-3 p {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: justify;
  font-style: normal;
}

.footer {
  background: #0055FF;
  position: static;
  bottom: 0;
  width: 100%;
}

.footer .wrap {
  width: 1000px;
  margin: 0 auto;
}

.footer .box {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 0;
  height: 88px;
  box-sizing: border-box;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

.footer .statement {
  cursor: pointer;
}

.pop_main {
  display: none;
}

.pop_main .mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  left: 0;
  top: 0;
  z-index: 999;
}

.pop_main .pop_con {
  width: 600px;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 800px;
  height: 600px;
  margin: -300px 0 0 -400px;
  background: #fff;
  border-radius: 8px;
  z-index: 1000;
  padding: 50px;
  box-sizing: border-box;
}

.pop_main .pop_close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: rgba(0, 0, 0, 0.45);
  font-style: normal;
  font-size: 32px;
  font-family: arial;
  line-height: 32px;
  cursor: pointer;
}

#toastTip {
  display: none;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 18%;
  max-width: 80%;  /* 这里最大宽度可能不生效，内容过多展示宽度50%会折行 */
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 10px;
  z-index: 100;
}