/* TowinPR / TowinExpo 手机端悬浮拨号入口与联系人弹窗 */
.mobile-call-widget {
  display: none;
}

@media (max-width: 767.98px) {
  body.mobile-call-open {
    overflow: hidden;
  }

  .mobile-call-widget {
    display: block;
  }

  .mobile-call-trigger {
    position: fixed;
    z-index: 1100;
    right: 18px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    display: grid;
    width: 64px;
    height: 64px;
    padding: 0;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: #78be20;
    box-shadow: 0 8px 22px rgba(30, 66, 15, .3);
    color: #fff;
    cursor: pointer;
    font: 700 16px/1.15 Arial, "Microsoft YaHei", sans-serif;
    letter-spacing: .04em;
    text-align: center;
  }

  .mobile-call-trigger span {
    display: block;
  }

  .mobile-call-backdrop {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(0, 0, 0, .42);
  }

  .mobile-call-backdrop[hidden] {
    display: none;
  }

  .mobile-call-dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 30px 30px 34px;
    border-radius: 8px;
    outline: 0;
    background: #f1f1f1;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
  }

  .mobile-call-dialog h2 {
    margin: 0 44px 26px 0;
    color: #222;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-call-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #999;
    cursor: pointer;
    font: 300 46px/40px Arial, sans-serif;
  }

  .mobile-call-list {
    display: grid;
    gap: 12px;
  }

  .mobile-call-list a {
    display: grid;
    min-height: 68px;
    padding: 14px 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    background: #78be20;
    color: #fff;
    text-decoration: none;
  }

  .mobile-call-list a:first-child {
    background: #f5a400;
  }

  .mobile-call-list span,
  .mobile-call-list b {
    color: inherit;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;
  }
}

@media (max-width: 379.98px) {
  .mobile-call-dialog {
    padding: 28px 18px 24px;
  }

  .mobile-call-list a {
    padding: 13px 15px;
    gap: 10px;
  }

  .mobile-call-list span,
  .mobile-call-list b {
    font-size: 18px;
  }
}
