:root {
  --yellow: #faa626;
  --blue  : #2d5ec4;
}

::-webkit-scrollbar {
  width : 5px;
  height: 5px;
}

::-webkit-scrollbar-track-piece {
  background-color     : rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
}

.width {
  width : 1480px;
  margin: 0 auto;
}

.yellow {
  color: var(--yellow);
}

.tips {
  position        : fixed;
  top             : 30%;
  left            : 50%;
  transform       : translate(-50%, -50%);
  width           : 20vw;
  height          : 10vw;
  min-width       : 200px;
  min-height      : 150px;
  display         : flex;
  align-items     : center;
  justify-content : center;
  background-color: white;
  border-radius   : 8px;
  font-weight     : bold;
  font-size       : 20px;
  box-shadow      : 0px 3px 30px 1px rgba(45, 94, 196, 0.12);
  opacity         : 0;
  z-index         : -100;
  transition      : opacity .25s;
}

.tips.show {
  opacity: 1;
  z-index: 100;
}