/* 微信icon hover */
.footer-ic-wechat-container .wechattiptext {
    visibility: hidden;
    width: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 32px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 3px #0003;
    margin-bottom: -20px;
  }

  .footer-ic-wechat-container:hover .wechattiptext {
    visibility: visible;
    opacity: 1;
  }

  .footer-ic-wechat-container.top .wechattiptext {
    bottom: 100%;
    top: auto;
  }

  .footer-ic-wechat-container .wechat-order-txt {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0px;
    color: #212121;
  }

  .footer-ic-wechat-container .wechat-order-scan {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 24px;
    margin-bottom: 20px;
    letter-spacing: 0px;
    color: #A6A6A6;
  }