@media screen and (min-width: 980px) {
  .toolBar {
    width: 80px;
    height: 190px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    left: 93.5%;
    bottom: 15%;
    transition: all .3s linear;
    z-index: 6;
  }

  .toolBar .tooBar-item {
    width: 80px;
    height: 90px;
    box-shadow: 0px 2px 8px 0px rgba(83, 117, 187, 0.5);
    border-radius: 8px;
    background-color: #5d8ef0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
  }

  .toolBar .tooBar-item p {
    font-size: 14px;
    color: #FFFFFF;
  }

  .toolBar .tooBar-item:hover {
    background-color: rgba(93,142,240,.6);
  }

  .toolBar .tooBar-item:hover>img{
    opacity: .7;
  }
  .toolBar .tooBar-item:hover>p{
    opacity: .7;
  }

  .infoBoxs {
    background: #FFFFFF;
    color: #333333;
  }

  .infoBoxs .info-detail {
    display: flex;
    gap: 16px;
    font-family: Microsoft YaHei;
  }

  .infoBoxs .info-detail .info {
    width: auto;
  }

  .infoBoxs .info-detail .info .email,
  .infoBoxs .info-detail .info .telegraph,
  .infoBoxs .info-detail .info .phone {
    max-width: 196px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    overflow: hidden;
  }

  .infoBoxs .info-detail .info .email img,
  .infoBoxs .info-detail .info .telegraph img,
  .infoBoxs .info-detail .info .phone img {
    width: 14px;
    height: 14px;
    filter: drop-shadow(24px 0 0 #333333);
    transform: translate(-24px);
  }

  .infoBoxs .info-detail .info .email p,
  .infoBoxs .info-detail .info .telegraph p,
  .infoBoxs .info-detail .info .phone p {
    max-width: 176px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 16px;
  }

  .infoBoxs .info-detail .qrcode {
    max-width: 172px;
    max-height: 176px;
    min-height: auto;
    display: flex;
    gap: 16px;
    margin-top: 14px;
  }

  .infoBoxs .info-detail .qrcode .qrcode-item {
    width: 78px;
    height: fit-content;
    max-height: 144px;
    background: #ECECEC;
    border-radius: 6px;
    padding: 8px 8px;
    overflow: hidden;
  }

  .infoBoxs .info-detail .qrcode .qrcode-item img {
    width: 60px;
    height: 60px;
  }

  .infoBoxs .info-detail .qrcode .qrcode-item p {
    width: 100%;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #333333;
    line-height: 12px;
    margin-top: 7px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}


@media screen and (max-width: 980px) {
  .toolBar {
    width: 100%;
    height: 13.3333vw;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #FFFFFF;
    box-shadow: 0rem -0.25rem 1.25rem 0rem rgba(203, 203, 203, 0.5);
    padding: 4vw 16vw;
    z-index: 5;
  }

  .toolBar .tooBar-item {
    width: 24.5333vw;
    height: 5.3333vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
  }

  .toolBar .tooBar-item img {
    width: 5.6vw;
    height: 5.6vw;
  }

  .toolBar .tooBar-item p {
    font-size: 4.2667vw;
    color: #4C8FFF;
    font-weight: bold;
  }

  .toolBar .tooBar-item:nth-of-type(1)::after {
    content: '';
    width: 0.2667vw;
    height: 5.3333vw;
    background-color: #4C8FFF;
    position: absolute;
    top: 0.2667vw;
    right: -9.3333vw;
  }

  .toolBar-personal {
    width: 12vw;
    height: 28vw;
    position: fixed;
    right: 1.3333vw;
    bottom: 18.6667vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
    z-index: 5;
  }

  .toolBar-personal .tooBar-item {
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .toolBar-personal .tooBar-item img {
    width: 8.5333vw;
    height: 8vw;
    filter: drop-shadow(-12vw 0 0 #FFFFFF);
    transform: translateX(12vw);
  }

  .toolBar-personal .tooBar-item p {
    display: none;
  }

}
