.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 999;
}

.wrapper {
  flex: 1 0 auto;
}

.p-l-0px {
  padding-left: 0 !important;
}

.p-t-10px {
  padding-top: 10px !important;
}

.m-t-15px {
  margin-top: 15px !important;
}

header .title {
  font-size: 5em;
  text-align: center;
  margin: 0;
  margin-bottom: 24px;
  color: #fff;
}

header .sub-title {
  width: 100%;
  font-size: 20px;
  margin: 24px 0 32px;
  text-align: center;
  color: #fff;
}

header .github-items {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #000;
  background: rgba(0, 0, 0, 0.1);
}

main {
  padding: 20px 0;
}

main .opts {
  margin-bottom: 40px;
}

main .postions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

main .postions label {
  max-width: 60px;
  min-width: 50px;
}

main .switchs {
  justify-content: space-between;
}

main .btns,
main .switchs {
  display: flex;
  align-items: center;
}

main .btns {
  padding: 20px 0;
  margin-top: 11.5px;
  margin-bottom: 40px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

main .btns .btn {
  width: 180px;
  font-size: 22.4px;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  outline: none;
  margin-bottom: 38px;
  color: #fff;
  transition: all 0.2s ease;
}

main .btns .btn:hover {
  transform: translateY(-4px);
}

main .btns .btn[data-type=text] {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
}

main .btns .btn[data-type=log] {
  color: #333;
  background: #fffffc;
}

main .btns .btn[data-type=info] {
  background: #2ca9e1;
}

main .btns .btn[data-type=success] {
  background: #38b48b;
}

main .btns .btn[data-type=warn] {
  background: #f89406;
}

main .btns .btn[data-type=error] {
  background: #e9546b;
}

@media (max-width: 600px) {
  main .postions {
    justify-content: flex-start;
  }
}