.hint_info_type {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  max-width: 30rem;
  height: 100%;
  background: transparent;
  overflow: hidden;
}
.hint_info_type .content_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hint_info_type .alone {
  background: transparent;
}
.hint_info_type .alone p {
  max-width: 50%;
  padding: 0.5rem 2rem;
  color: #fff;
  line-height: 1.5em;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
}
.hint_info_type .judge_ok {
  background: rgba(0, 0, 0, 0.4);
}
.hint_info_type .judge_ok .clear_info {
  display: flex;
  flex-flow: column;
  width: 90%;
  background: #fff;
  -webkit-border-radius: 0.56rem;
  -moz-border-radius: 0.56rem;
  border-radius: 0.56rem;
  overflow: hidden;
}
.hint_info_type .clear_info strong {
    line-height: 0.8rem;
    font-size: 0.5rem;
    color: #000;
    font-weight: 500;
    padding: 0.5rem 0.6rem 0.2rem;
}
.hint_info_type .clear_info p {
    width: 100%;
    height: 100%;
    padding: 0 0.6rem 0.6rem 0.6rem;
    line-height: 1.3;
    color: #555555;
    font-size: 0.46rem;
    text-align: justify;
    text-align-last: left;
    text-indent: .8em;
}
.hint_info_type .clear_info ul {
  flex-shrink: 0;
  display: flex;
}
.hint_info_type .clear_info li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding-bottom: 1.5em;
}
.hint_info_type .clear_info button {
    width: 80%;
    height: 1rem;
    border-radius: 0.2rem 8.28px;
    overflow: hidden;
    color: var(--tl-color-main);
    font-size: 0.46rem;
    border: 1px solid var(--tl-color-main);
}
.hint_info_type .clear_info li:nth-child(2) button {
  color: #fff;
  background: var(--tl-color-main);
}

.loading_page {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 !important;
}
.loading_page .loading_con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.loading_page .loading_con .box {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.2rem;
    background: #fff;
}
.loading_page .loading_con p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.loading_page .loading_con p:before,
.loading_page .loading_con p:after {
  content: "";
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.loading_page .loading_con p:before {
  z-index: 1;
  width: 1.12rem;
  height: 1.12rem;
  -webkit-animation: 1.5s loading linear infinite;
  -o-animation: 1.5s loading linear infinite;
  animation: 1.5s loading linear infinite;
  background: transparent;
  border: 0.08rem solid var(--tl-color-main);
  border-right-color: transparent;
  border-left-color: transparent;
}
.loading_page .loading_con p:after {
  width: 1.04rem;
  height: 1.04rem;
}
.loading_page .loading_con span {
    display: block;
    padding-top: 0.5rem;
    line-height: 1;
    font-size: 0.4rem;
}