@charset "UTF-8";

/* 注：可通过此处进行简单样式修改 */
:root {
  /* 每个节点圆的颜色 */
  --deep-color: #c4d2e1;
  /* 每个节点圆的宽度 */
  --drop-weight: 7px;
  /* 每个节点圆的高度 */
  --drop-height: 7px;
  /* 每个节点线的高度 */
  --line-height: 60px;
  /* 未到达的横线颜色 */
  --light-color: #ced9e3;
  /* 进度条颜色 */
  --side-color: #ced9e3;
  /* 栏目名称字号 */
  --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-on .side-content-drop {
  width: 19px;
  height: 19px;
  margin-left: -6px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
  backdrop-filter: blur(4px);
  background: linear-gradient(
    135deg,
    rgba(64, 129, 250, 1),
    rgba(75, 117, 245, 1),
    rgba(100, 81, 252, 1)
  );
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-on .side-content-drop::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 7px;
  background: #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-title {
  font-size: var(--side-title-size);
  line-height: 20px;
  cursor: pointer;
}
.side-on .side-content-title {
  font-size: 16px;
  background: linear-gradient(45deg, #388cff 1%, #4a75f5 41%, #7043ff 100%);
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent; /* 文字填充颜色变透明 */
  font-weight: bold;
}
.side-show {
  position: fixed;
  left: 20px;
  top: 30%;
  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;
}
@media screen and (min-width: 1000px) and (max-width: 1449px) {
  .side-content-title {
    font-size: 12px;
  }
  .side-content-box {
    margin-bottom: calc(40px - 15px);
  }
  .side-content-box::before {
    height: 40px;
  }
  .side-on .side-content-title {
    font-size: 12px;
  }
  .side-on .side-content-drop {
    width: 15px;
    height: 15px;
    margin-left: -4px;
  }
  .side-on .side-content-drop::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 5px;
    height: 5px;
  }
}
