html {
  /* scroll-behavior: smooth; */
  width: 100%;
}
body {
  background-color: #e6eaeb;
}
.container {
  width: 100%;
  box-sizing: border-box;
}

.circle-text{
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 99%;
  width: 192px;
  height: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.circle_process{
  position: absolute;
  width: 239px;
  height: 240px;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(74, 176, 247);
  border-radius: 99%;
}
.circle_process .wrapper{
  width: 120px;
  height: 240px;
  position: absolute;
  top:0;
  overflow: hidden;
}
.circle_process .right{
  right:0;
}
.circle_process .left{
  left:0;
}
.circle_process .circle{
  width: 192px;
  height: 192px;
  border:24px solid transparent;
  border-radius: 50%;
  position: absolute;
  top:0;
  transform : rotate(-135deg);
}
.circle_process .rightcircle{
  border-top:24px solid rgb(74, 176, 247);
  border-right:24px solid rgb(74, 176, 247);
  right:0;
  -webkit-animation: circle_right 5s linear infinite;
}
.circle_process .leftcircle{
  border-bottom:24px solid rgb(74, 176, 247);
  border-left:24px solid rgb(74, 176, 247);
  left:0;
  -webkit-animation: circle_left 5s linear infinite;
}
@-webkit-keyframes circle_right{
  0%{
    -webkit-transform: rotate(-135deg);
  }
  50%,100%{
    -webkit-transform: rotate(45deg);
  }
}
@-webkit-keyframes circle_left{
  0%,50%{
    -webkit-transform: rotate(-135deg);
  }
  100%{
    -webkit-transform: rotate(45deg);
  }
}
.loading-main-box-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6eaeb;
  z-index: 9999;
}
.loading-main-box{
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 120%;
  max-width: 720px;
  min-width: 540px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px #a3a3a3;
  -moz-box-shadow: 0 0 15px #a3a3a3;
  box-shadow: 0 0 15px #a3a3a3;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding-top: 240px;
  padding-bottom: 24px;
}
.text1 {
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 24px;
}
.text2 {
  font-size: 17px;
  color: rgb(123, 123, 123);
}
.go-btn {
  width: 60%;
  border-radius: 12px;
  font-size: 25px;
  line-height: 58px;
  height: 58px;
  color: #fff;
  background-color: rgb(74, 176, 247);
  margin: 12px auto 24px auto;
}
.lock-warp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lock-warp img {
  width: 30px;
  height: 30px;
}
.lock-text {
  text-align: left;
  border-left: 1px solid rgb(238, 238, 238);
  padding-left: 5px;
  margin-left: 5px;
  color: #7b7f87;
}
.second {
  font-size: 55px;
  color: #000;
  height: 50px;
}
.ok-img {
  width: 50px;
}
a {
  text-decoration:none
}
@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }
  to {
    --progress: 100;
  }
} 


.hint-wrap {
  display: none;
}

.hint-wrap.active {
  display: block;
}
