.derun-side-bar {
    top: calc(50% - 106px);
    position: fixed;
    right: -150px;
    z-index: 999;
    border-radius: 6px;
    /* background: #fff; */
    /* box-shadow: 0 0 15px rgba(1,1,1,0.1); */
}
.derun-side-bar> div {
    display: block;
    cursor: pointer;
    width: 200px;
    height: 48px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    color: #fff;
    background: var(--color-primary);
    margin: 10px 0;
    border-radius: 10px 0 0 10px;
    transition: transform 0.3s ease;
    transform: translateX(0); /* 初始位置 */
    padding-left: 10px;
}
.derun-side-bar > a {
    display: block;
    cursor: pointer;
    width: 120px;
    height: 48px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    color: #fff;
    background: var(--color-primary);
    margin: 10px 0;
    border-radius: 10px 0 0 10px;
    transition: transform 0.3s ease;
    transform: translateX(0); /* 初始位置 */
    padding-left: 10px;
}

.derun-side-bar > a+a {
    border-top: 1px solid rgb(51 149 199 / 37%);
}

.derun-side-bar > a i {
    display: inline-block;
    font-size: 28px;
    color: inherit;
}

.derun-side-bar > div i {
    display: inline-block;
    font-size: 28px;
    color: inherit;
}

.derun-side-bar > a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(-30px);
}

.derun-side-bar > div:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(-30px);
}

.derun-side-bar a > .wx-box {
    width: 150px;
    position: absolute;
    right: 120px;
    top: -50px;
    display: none;
    z-index: 100;
}

.derun-side-bar a > .wx-box .box {
    width: 140px;
    padding: 5px;
    border: 1px solid #D6D7D7;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.derun-side-bar .wx-box .box img {
    width: 100%;
}

.derun-side-bar a > .wx-box .arrowPanel {
    width: 12px;
    height: 20px;
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
}

.derun-side-bar a > .wx-box .arrowPanel .arrow01 {
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 2px;
    top: 0;
    border-top: 10px dashed transparent;
    border-right: 10px dashed transparent;
    border-bottom: 10px dashed transparent;
    border-left: 10px solid #ddd;
}

.derun-side-bar a > .wx-box .arrowPanel .arrow02 {
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    border-top: 10px dashed transparent;
    border-right: 10px dashed transparent;
    border-bottom: 10px dashed transparent;
    border-left: 10px solid #fff;
}

.derun-side-bar a:hover > .wx-box {
    display: block;
}

.derun-side-bar div:hover .wx-box {
    display: block;
}

.derun-side-bar .wx span {
  font-size: 13px;
  color: var(--color-primary);
  display: block;
  margin: 8px 0 0;
}

.derun-side-bar  .wx .wx-box {
  position: absolute;
  right: 210px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.derun-side-bar .wx .wx-box .box {
  width: 220px;
  padding: 8px 0;
  border: 1px solid #D6D7D7;
  text-align: center;
  overflow: hidden;
  background: var(--color-primary);
}

.derun-side-bar .wx .wx-box .arrowPanel {
  width: 12px;
  height: 20px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.derun-side-bar .wx .wx-box .arrowPanel .arrow01 {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 2px;
  top: 0;
  border-top: 10px dashed transparent;
  border-right: 10px dashed transparent;
  border-bottom: 10px dashed transparent;
  border-left: 10px solid #ddd;
}

.derun-side-bar .wx .wx-box .arrowPanel .arrow02 {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 1px;
  top: 0;
  border-top: 10px dashed transparent;
  border-right: 10px dashed transparent;
  border-bottom: 10px dashed transparent;
  border-left: 10px solid #fff;
}

.derun-side-bar .wx a:hover {
    color: #fff;
}