* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
}
html,
body {
  height: 100%;
}
div,
p {
  box-sizing: border-box;
}
.pd-20 {
  padding: 20px;
}
.p-24 {
  padding: 24px;
}
.pd-16 {
  padding: 16px;
}
.pd-10 {
  padding: 10px;
}

.bold {
  font-weight: bold;
}
.f10 {
  font-size: 10px;
}
.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f18 {
  font-size: 18px;
}

.f20 {
  font-size: 20px;
}
.f22 {
  font-size: 20px;
}

.f24 {
  font-size: 24px;
}

.mg-b5 {
  margin-bottom: 5px;
}
.mg-b10 {
  margin-bottom: 10px;
}
.mg-b15 {
  margin-bottom: 15px;
}

.mg-b25 {
  margin-bottom: 25px;
}

.mg-b20 {
  margin-bottom: 20px;
}

.mg-r5 {
  margin-right: 5px;
}
.mg-l5 {
  margin-left: 5px;
}

p {
  word-break: break-word;
}

.text-center {
  text-align: center;
}

.pos-relative {
  position: relative;
}
.pos-absolute {
  position: absolute;
}
.xt_scroll {
  overflow: auto;
  height: 100%;
}

.compos {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.imgblock {
  width: 100%;
  display: block;
}

.flex-xy-cen {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-y-cen {
  display: flex;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}

.none {
  display: none !important;
}
.blue-link {
  color: #2b6bff;
}
.flex-1 {
  flex: 1;
}
.break {
  word-break: break-all;
}

.outer_circle {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
}

.outer_circle::after {
  content: '';
  background-image: linear-gradient(to bottom, rgba(0, 216, 247, 0) 0%, #327fff 130%);
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -4px;
  left: -4px;
  z-index: -1;
  border-radius: inherit;
}

.loading {
  background-color: #fff;
  z-index: 9;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.h100 {
  height: 100%;
}
.flex {
  display: flex;
}

.route {
  animation: route 1s infinite;
}
@keyframes route {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

input {
  width: 100%;
  border: none;
  outline: 0;
  outline-style: none;
  font-size: 18px;
  background-color: transparent;
}
input:focus {
  outline: 0;
}