blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul,
section,
nav,
header,
footer,
aside {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

small {
  font-size: 12px;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

fieldset,
img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

button {
  border-radius: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  width: 100%;
  font-family: 'Microsoft YaHei', '\5b8b\4f53', Tahoma, Arial, sans-serif;
  font-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-x: hidden;
}

button {
  font-family: 'Microsoft YaHei', '\5b8b\4f53', Tahoma, Arial, sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Microsoft YaHei', '\5b8b\4f53', Tahoma, Arial, sans-serif;
  font-size: 14px;
}

img {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  max-width: 100%;
}

button {
  border: none;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.column {
  flex-direction: column;
}

.flex.align-start {
  align-items: flex-start;
}

.flex.align-end {
  align-items: flex-end;
}

.flex.start {
  justify-content: flex-start;
}

.flex.around {
  justify-content: space-around;
}

.flex.end {
  justify-content: flex-end;
}

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

.flex-0 {
  flex: 0 0 auto;
}

.flex-1 {
  flex: 1 1 auto;
}

.loading-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-wrapper .loading-main {
  padding: 30px 44px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: 0 0 10px 2px #acaaaa;
  color: #000;
}

.loading-wrapper .loading-main p {
  font-size: 14px;
  margin-top: 14px;
}

.loading-wrapper .loading-main .loading,
.loading-wrapper .loading-main .loading > div {
  position: relative;
  box-sizing: border-box;
}

.loading-wrapper .loading-main .loading {
  display: block;
  font-size: 0;
  color: #000;
}

.loading-wrapper .loading-main .loading.la-dark {
  color: #333;
}

.loading-wrapper .loading-main .loading > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loading-wrapper .loading-main .loading {
  width: 32px;
  height: 32px;
}

.loading-wrapper .loading-main .loading > div {
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-radius: 100%;
  animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
}

.loading-wrapper .loading-main .loading > div:first-child {
  position: absolute;
  width: 32px;
  height: 32px;
  border-right-color: transparent;
  border-left-color: transparent;
}

.loading-wrapper .loading-main .loading > div:last-child {
  width: 16px;
  height: 16px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

@keyframes ball-clip-rotate-multiple-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.toast {
  position: fixed;
  margin-top: 0 auto;
  z-index: 999;
  font-size: 16px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  min-width: 220px;
  padding: 16px 20px;
  border-radius: 6px;
  background-color: #fff;
  background-color: #fdf0f0;
  border: 1px solid #f5534b;
  color: #f5534b;
  text-align: center;
  display: none;
}

.toast.success {
  background-color: #f0f9eb;
  border: 1px solid #95d475;
  color: #67c23a;
  display: block;
}
