.sideButtonPanel {
  opacity: 0;
  position: fixed;
  bottom: 30%;
  right: 15%;
  min-width: 48px;
  min-height: 224px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
}

.sideButtonPanel > .sideButton {
  width: 100%;
  height: 48px;
  max-height: 48px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.9);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  background-image: url(../../res/images/phone.svg);
}

.sideButtonPanel > .sideButton:nth-child(2) {
  background-image: url(../../res/images/qrcode.svg);
}
@media (min-width: 1240px) {
  .sideButton:hover > .sideInfoPanel,
  .sideInfoPanel:hover {
    opacity: 1;
  }
  .sideButton:hover {
    overflow: unset;
  }
}

.sideButton > .sideInfoPanel {
  opacity: 0;
  position: absolute;
  top: 0;
  left: -292px;
  width: 292px;
  height: 282px;
  z-index: 12;
  transition: all 0.5s ease-in-out;
  display: flex;
}

.sideButtonPanel > .sideButton:nth-child(2) > .sideInfoPanel {
  height: 260px;
}

.sideInfoPanel > .sideInfoBoxs {
  width: 266px;
  height: 282px;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sideButtonPanel
  > .sideButton:first-child
  > .sideInfoPanel
  > .sideInfoBoxs::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 72px;
  height: 6px;
  background: #f4bf1e;
}

.sideButtonPanel > .sideButton:nth-child(2) > .sideInfoPanel > .sideInfoBoxs {
  height: 260px;
  align-items: center;
}

.sideButtonPanel
  > .sideButton:nth-child(2)
  > .sideInfoPanel
  > .sideInfoBoxs
  > span:first-child {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.sideInfoBoxs > span:first-child {
  z-index: 1;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.sideInfoBoxs > span:nth-child(2) {
  margin-top: 20px;
}

.sideInfoBoxs > .sidetitle {
  font-size: 14px;
  color: #333333;
}

.sideInfoBoxs > .sideinfotext {
  font-family: Roboto;
  font-size: 18px;
}

.sideInfoBoxs > .Brdiv {
  width: 220px;
  height: 1px;
  background: #f5f5f5;
}

.sideInfoBoxs > span,
.sideInfoBoxs > div {
  color: #1a1a1a;
  line-height: 20px;
  margin-top: 10px;
}

.sideInfoBoxs > img {
  margin-top: 30px;
  width: 150px;
  height: 150px;
}

.sideInfoPanel > .sideInfoBoxInd {
  margin-left: -7.45px;
  margin-top: 16.17px;
  width: 11.08px;
  height: 11.08px;
  background-color: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
}

.sideButtonPanel > .sideButton:nth-child(2) {
  margin-top: 20px;
}

.sideButtonPanel > .sideButton:nth-child(3) {
  margin-top: 60px;
}

@media screen and (max-width: 2000px) {
  .sideButtonPanel {
    right: calc(50% - 678px);
    transform: translate(50%, 0%);
  }
}

@media screen and (max-width: 1500px) {
  .sideButtonPanel {
    right: 10px;
    transform: unset;
  }
}

@media screen and (max-width: 1240px) {
  .sideButtonPanel {
    right: 30px;
    transform: unset;
  }

  .sideButton.show > .sideInfoPanel {
    opacity: 1;
  }
  .sideButton.show {
    overflow: unset;
    background-image: url(../../res/images/close.svg);
  }

  .sideButtonPanel > .sideButton:nth-child(2).show {
    overflow: unset;
    background-image: url(../../res/images/close.svg);
  }
}
