.fixedBox {
  background: #ffffff;
  border: 1px solid #d6d6d6;
  right: 8px;
  bottom: 100px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.fixedBox:hover > ul.fixedBoxList > li:not(.BackToTop) {
  animation: fixedboxshow 0.5s forwards;
}
.fixedBox ul.fixedBoxList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fixedBox ul.fixedBoxList > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0;
}
.fixedBox ul.fixedBoxList > li:not(.BackToTop) {
  height: 0;
  overflow: hidden;
}
.fixedBox ul.fixedBoxList > li.pointer {
  cursor: pointer;
}
.fixedBox ul.fixedBoxList > li.hover {
  border: 1px solid #d6d6d6;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.fixedBox ul.fixedBoxList > li.hover .bjfff {
  background: #ffffff;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -5px;
  z-index: 1000;
}
.fixedBox ul.fixedBoxList > li.hover .ServiceBox {
  display: block;
}
.fixedBox ul.fixedBoxList > li .ServiceBox {
  display: none;
  position: absolute;
  right: 102%;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  z-index: 999;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
}
.fixedBox ul.fixedBoxList > li .ServiceBox p {
  margin-bottom: 0;
}
.fixedBox ul.fixedBoxList > li.share .ServiceBox {
  width: 340px;
  padding: 5px 10px 0px;
}
.fixedBox .text-grey {
  color: #777;
}
.fixedBox .white-space-nowrap {
  white-space: nowrap;
}
.contactBox {
  position: fixed;
  background-color: #fff;
  right: 10%;
  bottom: 10%;
  width: 70vw;
  z-index: 9998;
  display: none;
}
.contactBox #quickFeedback1 {
  margin-bottom: 0;
}
.contactBox #quickFeedback1 .row {
  clear: both;
}
.contactBox #quickFeedback1 .title {
  margin-top: 0;
  width: 100%;
  text-align: left;
  text-indent: 10px;
}
.contactBox #quickFeedback1 .iBoxList3 {
  overflow-y: scroll;
  max-height: 80vh;
}
.contactBox #quickFeedback1 .iBoxList3 .bottom {
  position: static;
  text-align: right;
  margin-bottom: 30px;
}
.contactBox .close-contact {
  position: absolute;
  top: -4px;
  right: 7px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
@keyframes fixedboxshow {
  from {
    height: 0;
    overflow: hidden;
  }
  to {
    height: 50px;
    overflow: unset;
  }
}
