body {
  margin: 0;
}

p {
  margin: 0;
}

.container {
  position: relative;
  padding: 20px;
}

.container header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}
.container header img {
  width: 50px;
}
.container header .desc {
  color: #999;
  font-size: 13px;
}
.container .header-bottom {
  padding-bottom: 35px;
  border-bottom: 1px solid #e4e2e2;
}

main .qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .qrcode img {
  width: 200px;
  padding: 10px 0 30px;
}
main .qrcode p {
  color: rgba(32, 128, 240, 1);
  font-size: 12px;
  cursor: pointer;
}
main .qrcode p:hover {
  color: rgba(32, 128, 240, 0.7);
}

.download-container .step {
  padding: 30px 0 50px;
  border-bottom: 1px solid #e4e2e2;
  text-align: center;
}
.download-container h3 {
  text-align: start;
  padding-left: 13px;
  color: #2080f0;
  position: relative;
  font-weight: 500;
}
.download-container h3::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  background: #2080f0;
}
.download-container .install-btn {
  margin: 20px 0;
  padding: 12px 22px;
  background-color: rgba(32, 128, 240, 0.16);
  color: #2080f0;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  img {
    width: 20px;
    padding-right: 3px;
  }
}
.download-container .install-btn:hover {
  background-color: rgba(32, 128, 240, 0.23);
}
.download-container p {
  color: #999;
  font-size: 13px;
}
.toast-download-testflight {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100vw;
  height: 100vh;
}
.toast-download-testflight .content {
  width: 92%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 22px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}

.toast-download-testflight .download-app {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.7;
}
.toast-download-testflight .download-appstore {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #edf5fe;
  padding: 8px 10px;
  margin: 30px 20px;
  border: 1px solid #83b0eb;
}
.toast-download-testflight .download-appstore img {
  width: 20px;
  padding-right: 8px;
}
.toast-download-testflight .download-appstore p {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.toast-download-testflight .btn {
  padding: 10px 15px;
  color: #2080f0;
  text-align: end;
  cursor: pointer;
}

.toast-download-testflight header {
  display: flex;
  justify-content: space-between;
}


.toast-download-testflight header .icon {
  display: inline-flex;
}

.toast-download-testflight header img {
  width: 20px;
  padding-right: 8px;
}
.toast-download-testflight header .close {
  cursor: pointer;
  color: #666;
  transform: scaleX(1.2);
}
