.cadient-side-bar {
  position: fixed;
  z-index: 9999;
  border-radius: 3px;
  box-shadow: rgba(62, 57, 107, 0.3) 0px 6px 16px 0px;
}

.cadient-side-bar a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #E8E8E8;
  border-radius: 3px;
  cursor: pointer;
}

.cadient-side-bar a span {
  font-size: 12px;
  display: block;
  margin: 8px 0 0;
}

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

.cadient-side-bar a.wx .wx-box .box {
  width: 120px;
  padding: 3px;
  border: 1px solid #D6D7D7;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

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

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

.cadient-side-bar a.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;
}

.cadient-side-bar a.wx .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;
}

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


@media (max-width: 767px) {
  .cadient-side-bar {
    display: none;
  }
}