@charset "UTF-8";

/* 注：可通过此处进行简单样式修改 */
:root {
  /* 每个节点圆的颜色 */
  --deep-color: #c4d2e1;
  /* 每个节点圆的宽度 */
  --drop-weight: 7px;
  /* 每个节点圆的高度 */
  --drop-height: 7px;
  /* 每个节点线的高度 */
  --line-height: 30px;
  /* 未到达的横线颜色 */
  --light-color: rgba(0, 0, 0, 0);
  /* 进度条颜色 */
  --side-color: rgba(0, 0, 0, 0);
  /* 栏目名称字号 */
  --side-title-size: 16px;
  /* 栏目名称颜色 */
  --side-title-color: #7d8292;
}
.side-main-box {
  position: fixed;
  left: 20px;
  top: 30%;
  z-index: 99;
  opacity: 0;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
.side-online {
  position: absolute;
  top: 12px;
  left: 3px;
  width: 1px;
  height: 30%;
  background: var(--side-color);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  z-index: 92;
}
.side-content-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: calc(var(--line-height) - 15px);
}
.side-content-box::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 12px;
  width: 1px;
  height: var(--line-height);
  background: var(--light-color);
  z-index: 91;
}
.side-content-box:nth-last-child(1) {
  padding-bottom: 0;
}
.side-content-box:nth-last-child(1)::before {
  height: 0;
}
.side-content-drop {
  width: var(--drop-weight);
  height: var(--drop-height);
  margin-right: 10px;
  border-radius: 50%;
  background: var(--deep-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 93;
}
.side-content-box:hover .side-content-drop,
.side-on .side-content-drop {
  width: 19px;
  height: 19px;
  background: url(./../image/icon/side-on-drop.png) no-repeat;
  background-size: 100% 100%;
  margin-left: -6px;
  /* margin-left: -6px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
  backdrop-filter: blur(4px);

  background: linear-gradient(134deg, rgba(249, 77, 135, 1), rgba(118, 91, 218, 1), rgba(26, 97, 253, 1));
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; */
}
/* .side-content-box:hover .side-content-drop::before,
.side-on .side-content-drop::before {
  content: "";
  position: absolute;
  z-index: -3;
  left: 1px;
  top: 1px;
  width: 5px;
  height: 5px;
  border: 5.5px solid #fff;
  z-index: 94;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
} */
/* .side-content-box:hover .side-content-drop::after,
.side-on .side-content-drop::after {
  content: "";
  position: absolute;
  z-index: 12;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 5px;
  background: linear-gradient(312deg, #1661ff 0%, #ff4c84 100%);
  border-radius: 50%;
} */
.side-content-title {
  font-size: var(--side-title-size);
  line-height: 20px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
}
.side-content-box:hover .side-content-title,
.side-on .side-content-title {
  font-size: 16px;
  background: linear-gradient(180deg, #1661ff 0%, #c05df0 56%, #ff4c84 100%);
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent; /* 文字填充颜色变透明 */
  font-weight: bold;
}
.side-content-box:hover .side-content-title {
  background: linear-gradient(180deg, #1661ff 0%, #c05df0 56%, #ff4c84 100%);
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent; /* 文字填充颜色变透明 */
  font-weight: bold;
}

.side-show {
  position: fixed;
  left: 20px;
  top: 40%;
  opacity: 1;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
