.assistant_wrapper {
  position: fixed;
  right: 80px;
  bottom: 200px;
  z-index: 2000;
  border-radius: 8px;
  box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
  overflow: hidden;
}
.assistant_wrapper .avatar {
  width: 56px;
  height: 56px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.assistant_wrapper .shrink_box {
  display: flex;
  position: relative;
  width: 180px;
  height: 48px;
  background: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}
.assistant_wrapper .shrink_box .avatar {
  position: relative;
  width: 28px;
  height: 28px;
  background-image: url("../../../image/home/robot-switch.jpg");
  background-size: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
}
.assistant_wrapper .shrink_box .avatar::after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 5px;
  background-color: #ff0000;
  border-radius: 50%;
}
.assistant_wrapper .shrink_box .text {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin-left: 4px;
  margin-right: 7px;
  letter-spacing: 0.84px;
}
.assistant_wrapper .shrink_box .close_btn {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 16px;
  height: 16px;
  background: url("../../../image/assistant/shrink_icon.png") no-repeat center;
  background-size: cover;
  cursor: pointer;
}
.assistant_wrapper  .more {
  position: relative;
  width: 180px;
  background: #ffffff;
  height: 36px;
  color: #3464E0;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.assistant_wrapper  .more::after{
  display: inline-block;
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: rgba(0,0,0,0.05);
}
.assistant_wrapper  .list {
  width: 180px;
  background: #ffffff;
}
.assistant_wrapper .list .item {
  position: relative;
  box-sizing: border-box;
  padding: 10px 12px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  line-height: 18px;
  letter-spacing: 0;
  white-space: normal;
  word-break: break-all;
  cursor: pointer;
}
.assistant_wrapper .list .item>div {
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box; */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* .assistant_wrapper  .list .item:not(:first-child):after {
  display: inline-block;
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: rgba(0,0,0,0.05);
} */
.assistant_wrapper .list .item:hover {
  color: #0052D9;
  background: rgba(0,82,217,0.05);
}
/* .assistant_wrapper  .list .item:hover:after,
.assistant_wrapper .list .item:hover+.item::after {
  display: none;
} */

.assistant_content {
  position: fixed;
  right: 0px;
  bottom: 280px;
  z-index: 2000;
}
.assistant_content .assistant_img {
  background-image: url(../../../image/assistant/teng_t.png);
  background-size: contain;
  width: 46px;
  height: 72px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.assistant_content:hover{
  right: 9px;
  transition: .5s;
}
.assistant_content:hover .assistant_img{
  transform: scale(1.35);
  transition: .5s;
}
.assistant_content:hover .assistant_tip {
  display: block;
  transition: .5s;
}
.assistant_content .assistant_tip {
  font-size: 14px;
  font-family: "PingFang SC";
  font-weight: 400;
  width: 57px;
  height: 27px;
  background: #000;
  color: #fff;
  line-height: 27px;
  text-align: center;
  position: absolute;
  right: 36px;
  top: 26px;
  display: none;
}
.assistant_content .assistant_tip::after {
  content: "";
  border-top: 6px solid transparent;
  border-left: 6px solid black;
  border-bottom: 6px solid transparent;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: -6px;
  top: 6px;
}

