.fixed-right-kefu {
  position: fixed;
  right: 30px;
  bottom: 60px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  z-index: 9;
  padding: 2px 10px;
}
.fixed-right-kefu > * {
  position: relative;
  display: block;
  padding: 12px 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.fixed-right-kefu > *:first-child {
  border-top: unset;
}
.fixed-right-kefu > *:hover .pop-detail {
  display: block;
}
.fixed-right-kefu > *:hover .kefu-detail {
  display: flex;
}
.fixed-right-kefu .icon {
  width: 20px;
  height: 20px;
}
.fixed-right-kefu .pop-detail {
  box-sizing: border-box;
  width: 100px;
  background-color: #fff;
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  border: 1px solid #EFEFEF;
  padding: 5px;
  padding-bottom: 0;
  display: none;
  color: #777;
  text-align: center;
  font-size: 0;
}
.fixed-right-kefu .pop-detail span {
  font-size: 14px;
  height: 32px;
  line-height: 32px;
}
.fixed-right-kefu .kefu-detail {
  display: none;
  position: absolute;
  right: 40px;
  bottom: 0;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: 185px;
  padding: 10px;
  border-radius: 5px;
  background: #e7f3ff;
  text-align: center;
  border: 1px solid #4189ff;
}
.fixed-right-kefu .kefu-detail:before {
  content: '';
  position: absolute;
  height: 100%;
  right: -20px;
  width: 20px;
}
.fixed-right-kefu .kefu-detail > div:not(:last-child) {
  margin-bottom: 10px;
}
.fixed-right-kefu .kefu-detail .qr-code {
  font-size: 12px;
  position: relative;
}
.fixed-right-kefu .kefu-detail .qr-code:not(:last-child) {
  margin-bottom: 15px;
}
.fixed-right-kefu .kefu-detail .qr-code .customer-btn {
  display: block;
  color: #fff;
  background: #3f76f8;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
}
.fixed-right-kefu .kefu-detail .qr-code .customer-btn:hover {
  background: #eb4437;
}
.fixed-right-kefu .kefu-detail .qr-code .img {
  display: none;
  position: absolute;
  padding: 10px;
  background: #fff;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.fixed-right-kefu .kefu-detail .qr-code .img img {
  width: 145px;
  height: 145px;
}
.fixed-right-kefu .kefu-detail .qr-code:hover .img {
  display: block;
}
