/* 侧边栏工具 iPeng 22/2/12 */
.AsideTool {
  bottom: 186px;
  position: fixed !important;
  right: 0;
  text-align: center;
  transform: translateZ(0);
  width: 64px;
  z-index: 910
}

.AsideTool-chat-layer {
  background: linear-gradient(90deg, #10a4ff, #50b8f7);
  background-color: #10a4ff;
  border-radius: 52px 0 0 52px;
  box-shadow: 0 2px 4px 0 rgba(33, 143, 243, .36);
  color: #fff;
  height: 52px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: -52px;
  transform: translate(100%);
  transition: transform .2s cubic-bezier(.165, .84, .44, 1), opacity .2s cubic-bezier(.165, .84, .44, 1);
  width: 224px;
  z-index: 910
}

.AsideTool-chat-layer.animation {
  transform: translate(0)
}

.AsideTool-chat-layer .Agent-avatar {
  float: left;
  height: 32px;
  margin-right: 8px;
  width: 32px
}

.AsideTool-chat-layer-cont {
  line-height: 1.1;
  overflow: hidden;
  text-align: left
}

.AsideTool-chat-layer-name {
  font-size: 14px;
  font-weight: 700
}

.AsideTool-chat-layer-text {
  font-size: 12px;
  padding-top: 3px
}

.AsideTool-list.AsideTool-chat {
  margin-bottom: 16px
}

.AsideTool-list-item {
  border-top: 1px solid #f8f8f8;
  box-sizing: content-box;
  cursor: pointer;
  height: 64px;
  position: relative
}

.AsideTool-list-item:first-child {
  border-top: 0
}

.AsideTool-list-item.active .AsideTool-list-box {
  color: #39AC6A;
}

.AsideTool-list-item:hover .AsideTool-pop {
  -webkit-animation: asidetoolfadein .5s ease;
  animation: AsideToolFadeIn .5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
  opacity: 1
}

.AsideTool-list-item:hover .AsideTool-list-box {
  color: #39AC6A
}

.AsideTool-list-box {
  background: #fff;
  box-shadow: -2px 1px 6px 0 rgba(0, 0, 0, .1);
  overflow: hidden;
  padding: 12px 0
}

.AsideTool-list-box.AsideTool-hidden {
  height: 0;
  padding: 0
}

.AsideTool-icon {
  display: block;
  font-size: 22px;
  height: 24px;
  line-height: 24px;
  margin: 0 auto;
  width: 24px
}

.AsideTool-icon.icon-phone {
  font-size: 19px
}

.AsideTool-text {
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  margin: 0;
}

.AsideTool-num {
  background-color: #ef0000;
  border: 1px solid #fff;
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  left: 50%;
  line-height: 1.167;
  min-width: 16px;
  padding: 0 3px;
  position: absolute;
  top: 5px
}

.AsideTool-pop {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .12);
  box-sizing: border-box;
  display: none;
  margin-top: -75px;
  opacity: 0;
  padding: 12px 0;
  position: absolute;
  right: 74px;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, 0, 0);
  transition: all .3s;
  width: 180px;
  z-index: 900
}

.AsideTool-pop-arrow {
  height: 18px;
  margin-top: -9px;
  overflow: hidden;
  position: absolute;
  right: -18px;
  top: 50%;
  width: 18px;
  z-index: 101
}

.AsideTool-pop-arrow:before {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
  content: "";
  height: 12px;
  position: absolute;
  right: 12px;
  top: 3px;
  transform: rotate(45deg);
  width: 12px
}

.AsideTool-pop-text {
  font-size: 12px;
  padding-top: 4px
}

.AsideTool-pop img {
  display: block;
  height: 160px;
  margin: 0 auto;
  width: 160px
}

.AsideTool .icon-chat.animation {
  -webkit-animation: message .75s ease-in-out infinite;
  animation: message .75s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

@-webkit-keyframes AsideToolFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes AsideToolFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@-webkit-keyframes AsideToolChatFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes AsideToolChatFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@-webkit-keyframes AsideToolChatFadeOut {
  0% {
    opacity: 1;
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes AsideToolChatFadeOut {
  0% {
    opacity: 1;
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
}

@-webkit-keyframes message {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes message {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}