.auth-top {
  height: 445px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('../../images/auth/bg.png') no-repeat center / auto 100%;
}
.auth-top .h3 {
  font-size: 34px;
  color: #262626;
  line-height: 45px;
  margin: 0;
}
.auth-top .p {
  font-size: 20px;
  line-height: 26px;
  color: #484848;
  margin: 20px 0 60px;
}
.auth-top .search {
  width: 720px;
  margin: 0 auto;
  border-radius: 4px;
  padding-left: 72px;
  background: #fff url('../../images/auth/icon-search.png') no-repeat 32px center / 24px 24px;
  display: flex;
}
.auth-top .search .input {
  height: 64px;
  width: 400px;
  outline-style: none;
  border: 0px;
  font-size: 18px;
  color: #999999;
  flex: 1;
}
.auth-top .search .btn-search {
  width: 140px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  background: #2A68FB;
  font-size: 20px;
  color: #FFFFFF;
  cursor: pointer;
}
.auth-content {
  width: 1100px;
  margin: 100px auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.auth-content .title {
  position: absolute;
  left: 716px;
}
.auth-content .title .h3 {
  margin: 30px 0 8px;
  font-size: 32px;
  color: #333333;
  line-height: 42px;
}
.auth-content .title span {
  font-size: 16px;
  color: #999999;
  line-height: 21px;
}
.auth-content .img {
  width: 580px;
}
.auth-content .img-wap {
  display: none;
}
.auth-content .p {
  margin: 150px 0 0;
  font-size: 16px;
  color: #999999;
  line-height: 24px;
  max-width: 384px;
}
.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1041;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
}
.dialog.loading {
  display: flex;
}
.dialog.loading .loading-box {
  display: flex;
}
.dialog.done {
  display: flex;
}
.dialog.done .box .main {
  display: flex;
}
.dialog .box {
  width: 650px;
  background: #FFFFFF;
  border-radius: 10px;
  position: relative;
}
.dialog .box .btn-close {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
  background: url('../../images/auth/icon-close.png') no-repeat center / 100% 100%;
}
.dialog .box .main {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 35px;
}
.dialog .box .main .icon-img {
  width: 135px;
  height: 135px;
}
.dialog .box .main .icon-img img {
  width: 100%;
  height: 100%;
}
.dialog .box .main .key {
  margin: 25px 0 16px;
  font-size: 18px;
  color: #262626;
  line-height: 24px;
  font-weight: bold;
}
.dialog .box .main .text {
  font-size: 16px;
  color: #333333;
  line-height: 21px;
}
.dialog .box .main .text-bot {
  font-size: 14px;
  margin-top: 40px;
}
.dialog .box .main .list {
  width: 340px;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 32px;
}
.dialog .box .main .list .item {
  margin-bottom: 16px;
  padding: 19px 40px;
  background: #F5F6FA;
  border-radius: 8px;
}
.dialog .box .main .list .item:last-child {
  margin-bottom: 0;
}
.dialog .box .main .list .item dl {
  display: flex;
  padding: 11px 0;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 0;
}
.dialog .box .main .list .item dl dt {
  color: #8A8A8A;
  margin-right: 65px;
}
.dialog .box .main .list .item dl dd {
  color: #262626;
}
.loading-box {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 500px;
}
#circle {
  width: 100px;
  height: 100px;
  border: 3px white solid;
  border-left-color: #2A68FB;
  border-right-color: #2A68FB;
  border-radius: 100%;
  animation: loading 1s infinite linear;
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 750px) {
  .auth-top {
    height: 4.1rem;
    background: url('../../images/auth/bg-wap.png') no-repeat center / auto 100%;
  }
  .auth-top .h3 {
    font-size: 0.36rem;
    line-height: 0.48rem;
    margin: 0;
  }
  .auth-top .p {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin: 0.24rem 0 0.6rem;
  }
  .auth-top .search {
    width: 6.54rem;
    border-radius: 0.06rem;
    padding-left: 1.02rem;
    background: #fff url('../../images/auth/icon-search.png') no-repeat 0.4rem center / 0.42rem 0.42rem;
  }
  .auth-top .search .input {
    height: 0.82rem;
    font-size: 0.24rem;
  }
  .auth-top .search .btn-search {
    width: 1.52rem;
    height: 0.82rem;
    line-height: 0.82rem;
    font-size: 0.24rem;
  }
  .auth-content {
    width: auto;
    margin: 0.48rem 0.32rem 0.6rem;
    flex-direction: column;
    align-items: center;
  }
  .auth-content .title {
    position: static;
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .auth-content .title .h3 {
    margin: 0px 0 0.08rem;
    font-size: 0.32rem;
    color: #333333;
    line-height: 0.42rem;
  }
  .auth-content .title span {
    font-size: 0.2rem;
    line-height: 0.26rem;
  }
  .auth-content .img {
    width: 100%;
  }
  .auth-content .img-pc {
    display: none;
  }
  .auth-content .img-wap {
    display: block;
  }
  .auth-content .p {
    margin: 0.3rem 0 0;
    font-size: 0.24rem;
    color: #999999;
    line-height: 0.32rem;
    max-width: 6.1rem;
    text-align: center;
  }
  .dialog .box {
    width: 5.98rem;
    border-radius: 0.2rem;
  }
  .dialog .box .btn-close {
    width: 0.4rem;
    height: 0.4rem;
    right: 0.24rem;
    top: 0.24rem;
  }
  .dialog .box .main {
    padding: 0.9rem 0 0.35rem;
  }
  .dialog .box .main .icon-img {
    width: 1.35rem;
    height: 1.35rem;
  }
  .dialog .box .main .key {
    margin: 0.46rem 0 0.2rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .dialog .box .main .text {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .dialog .box .main .text-bot {
    font-size: 0.22rem;
    margin-top: 0.09rem;
  }
  .dialog .box .main .list {
    width: 4.2rem;
    margin-top: 0.4rem;
    max-height: 4.82rem;
  }
  .dialog .box .main .list .item {
    margin-bottom: 0.2rem;
    padding: 0.2rem 0.5rem;
    background: #F5F6FA;
    border-radius: 0.08rem;
  }
  .dialog .box .main .list .item dl {
    padding: 0.11rem 0;
    line-height: 0.29rem;
    font-size: 0.22rem;
  }
  .dialog .box .main .list .item dl dt {
    margin-right: 0.58rem;
  }
}
