body {
  position: relative;
  background-color: #eeeeee;
}

#copyright {
  text-align: center;
  font-size: 12px;
  color: #c2c2c2;
  white-space: pre;
}

#watermark {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.1;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5%;
}

#watermark .watermark-text {
  display: inline-block;
  flex: 1;
  font-size: 14px;
  min-width: 100px;
  transform: rotate(-15deg);
  text-align: center;
}

.layui-container {
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  min-height: 100vh;
}

.layui-nav {
  display: flex;
  flex-direction: row;
}

#taskinfo-float-box {
  width: 30px;
  height: 100px;
  position: fixed;
  z-index: 999;
  top: 40vh;
  right: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  background-color: #31bdec;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: 0 10px 50px 0 hsl(0deg 100% 94.35% / 80%);
}

#taskinfo-float-box:hover {
  background-color: #1e9fff;
}
