* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "思源黑体";
  border: 0;
  outline: 0;
  background-color: transparent;
}

ol,
ul {
  list-style: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a[title="站长统计"] {
  display: none;
}

.yt_toast {
  position: fixed;
  top: 40%;
  left: 50%;
  z-index: 10000;
  transform: translate(-50%, -50%);
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  box-sizing: content-box;
  padding: 8px 12px;
  min-width: 96px;
  max-width: 70%;
}

.yt_toast_text {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
}

.yt_loading {
  position: fixed;
  top: 40%;
  left: 50%;
  z-index: 10000;
  transform: translate(-50%, -50%);
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  box-sizing: content-box;
  width: 88px;
  max-width: 70%;
  padding: 16px 10px;
}

.loading_toast_icon {
  display: block;
  width: 38px;
  height: auto;
  margin: auto;
  animation: toast_loading 1.5s ease infinite;
}

@keyframes toast_loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading_toast_text {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
}
