body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:hover {
  background-color: #409eff;
  border-radius: 6px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 #fff;
}

* {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

body {
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body #main {
  margin: 0 auto 46px;
  width: 95%;
  max-width: 1350px;
}

body #main header {
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  height: 56px;
  width: 95%;
  max-width: 1350px;
  position: fixed;
  top: 0;
  background-color: #f6f6f6;
}

body #main header .logo {
  height: 34px;
}

body #main header .logo h1 {
  font-size: 16px;
  display: flex;
  align-items: center;
}

body #main header .logo h1 img {
  margin-right: 6px;
  display: block;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

body #main header .logo h1 a {
  display: block;
  line-height: 34px;
}

body #main header .link h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
}

body #main .title {
  box-sizing: border-box;
  text-align: center;
  line-height: 72px;
  margin-top: 58px;
  transition: 0.5s;
  user-select: none;
  background-color: #fff;
  color: #3b3b3b;
  border-radius: 10px;
  box-shadow: 0px 0px 20px -5px rgb(158 158 158 / 20%);
}

body #main .title:hover {
  color: #fff;
  background-color: #0d0e53;
  animation: uk-text-shadow-glitch 0.65s cubic-bezier(1, -1.91, 0, 2.79) 0s
    infinite normal both running;
}

body #main .contant {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body #main .contant .ref {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  overflow: hidden;
}

body #main .contant .ref img {
  height: 15px;
  width: 15px;
  cursor: pointer;
}

body #main .contant .ref img:hover {
  animation: refImg 2s linear infinite;
}

body #main .contant .box {
  position: relative;
  box-sizing: border-box;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 0px 20px -5px rgb(158 158 158 / 20%);
}

body #main .contant .box .refd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(214, 211, 211, 0.5);
  z-index: 1;
}

body #main .contant .box .refd .refround {
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #000;
  border-left-color: transparent;
  animation: refdroundi 1s linear infinite;
}

body #main .contant .box .div_s {
  font-size: 16px;
}

body #main .contant .box .div_s .div_s-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #282a2d;
}

body #main .contant .box .div_s .div_s-title .l {
  display: flex;
  align-items: center;
}

body #main .contant .box .div_s .div_s-title .l img {
  height: 16px;
  padding-right: 6px;
}

body #main .contant .box .div_s .div_s-title .l h3 {
  font-size: 16px;
}

body #main .contant .box .div_s .div_s-title .r {
  display: flex;
  align-items: center;
}

body #main .contant .box .div_s .div_s-title .r span {
  font-size: 13px;
}

body #main .contant .box .div_s .div_s-con::-webkit-scrollbar {
  width: 5px;
}

body #main .contant .box .div_s .div_s-con::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 6px;
}

body #main .contant .box .div_s .div_s-con::-webkit-scrollbar-thumb:hover {
  background-color: red;
  border-radius: 6px;
}

body #main .contant .box .div_s .div_s-con::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 #c0c0c0;
}

body #main .contant .box .div_s .div_s-con {
  height: 200px;
  font-size: 14px;
  font-weight: normal;
  color: #282a2d;
  overflow-y: auto;
}

body #main .contant .box .div_s .div_s-con li {
  display: flex;
  min-height: 21px;
  margin-bottom: 10px;
  word-wrap: break-word;
  line-height: 1.5;
}

body #main .contant .box .div_s .div_s-con li > span {
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background-color: rgb(88, 111, 142);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  overflow: hidden;
}

body #main .contant .box .div_s .div_s-con li:nth-of-type(1) > span {
  background-color: rgb(255, 80, 34);
}

body #main .contant .box .div_s .div_s-con li:nth-of-type(2) > span {
  background-color: rgb(255, 144, 38);
}

body #main .contant .box .div_s .div_s-con li:nth-of-type(3) > span {
  background-color: rgb(246, 192, 50);
}

body #main .contant .box .div_s .div_s-con li > a {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin-top: -2.5px;
}

body #main .contant .box .div_s .div_s-con li > a > span:nth-of-type(1) {
  flex: 1;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

body #main .contant .box .div_s .div_s-con li > a > span:nth-of-type(2) {
  text-align: right;
  white-space: nowrap;
  margin-left: 8px;
  color: #6c757d;
}

body #main footer {
  margin: 36px auto 0;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 14px;
  line-height: 28px;
}

body #main footer a {
  color: #409eff;
}
@media screen and (max-width: 990px) {
  body #main .contant {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 680px) {
  body #main .contant {
    grid-template-columns: repeat(1, 1fr);
  }
}

@keyframes uk-text-shadow-glitch {
  0% {
    text-shadow: none;
  }

  25% {
    text-shadow: -2px -2px 0 #ff0048, 2px 2px 0 #3234ff;
  }

  50% {
    text-shadow: 2px -2px 0 #ff0048, -2px 2px 0 #3234ff;
  }

  75% {
    text-shadow: -2px 2px 0 #ff0048, 2px -2px 0 #3234ff;
  }

  100% {
    text-shadow: 2px 2px 0 #ff0048, -2px -2px 0 #3234ff;
  }
}

@keyframes refImg {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

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

@keyframes refdroundi {
  0% {
    transform: translateY(calc(144px - 50%)) rotate(0deg);
  }

  25% {
    transform: translateY(calc(144px - 50%)) rotate(90deg);
  }

  50% {
    transform: translateY(calc(144px - 50%)) rotate(180deg);
  }

  75% {
    transform: translateY(calc(144px - 50%)) rotate(270deg);
  }

  100% {
    transform: translateY(calc(144px - 50%)) rotate(360deg);
  }
}
