* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "PingFang SC", "Microsoft Yahei UI", "Microsoft Yahei", "Helvetica", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

code,
kbd,
pre,
samp,
tt {
  font-family: "Courier New", Courier, monospace;
}

:focus,
:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

::-webkit-scrollbar {
  z-index: 50;
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #eee;
  transition: all 0.2s;
}

:hover::-webkit-scrollbar-thumb {
  background-color: #ddd;
  transition: all 0.2s;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-corner {
  display: none;
}

div[v-cloak] {
  display: none;
}

body {
  background-color: #F4F4F4;
  width: 500px;
}

@media (min-width: 500px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gray;
  }

  .container {
    width: 500px;
  }
  .container .chart {
    padding: 50px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
}
.chart {
  padding: 30px 15px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chart .chart-item .chart-pic {
  margin: 0 auto 10px;
  border: 1px solid;
  position: relative;
  height: 150px;
  width: 60%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.chart .chart-item .chart-pic .chart-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66%;
}
.chart .chart-item .blue {
  border-color: #007AFF;
}
.chart .chart-item .blue .chart-fill {
  background-color: #007AFF;
}
.chart .chart-item .orange {
  border-color: #FF9500;
}
.chart .chart-item .orange .chart-fill {
  background-color: #FF9500;
}
.chart .chart-item .green {
  border-color: #4CD964;
}
.chart .chart-item .green .chart-fill {
  background-color: #4CD964;
}
.chart .chart-item .label {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #4A4A4A;
  line-height: 150%;
}
.chart .chart-item .capacity {
  font-size: 15px;
  line-height: 150%;
  font-family: "PTSans", sans-serif;
  text-align: center;
  color: #9B9B9B;
}

.loading {
  box-sizing: content-box;
  height: 30px;
  padding: 7.5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading-item {
  width: 3px;
  margin-right: 5px;
}
.loading .loading-item:last-child {
  margin-right: 0;
}
.loading-1 {
  height: 30px;
  -webkit-animation: load-frame-1 1s infinite linear 0s;
  -o-animation: load-frame-1 1s infinite linear 0s;
  animation: load-frame-1 1s infinite linear 0s;
  background-color: #FF3B30;
}
.loading-2 {
  height: 15px;
  -webkit-animation: load-frame-2 1s infinite linear 0s;
  -o-animation: load-frame-2 1s infinite linear 0s;
  animation: load-frame-2 1s infinite linear 0s;
  background-color: #FF9500;
}
.loading-3 {
  height: 7.5px;
  -webkit-animation: load-frame-1 1s infinite linear 0s;
  -o-animation: load-frame-1 1s infinite linear 0s;
  animation: load-frame-1 1s infinite linear 0s;
  background-color: #4CD964;
}

@keyframes load-frame-1 {
  0% {
    height: 7.5px;
  }
  50% {
    height: 30px;
  }
  100% {
    height: 7.5px;
  }
}
@keyframes load-frame-2 {
  0% {
    height: 30px;
  }
  50% {
    height: 7.5px;
  }
  100% {
    height: 30px;
  }
}
