/**
 * 移动端会话：底栏随软键盘上移（配合 crmchat-mobile-keyboard-fix.js）。
 * 部署：与 index.html 中 link 一致；改版本 ?v= 清缓存。
 */
@media (max-width: 900px) {
  /* /chat/mobile：外层底栏 */
  .footer_customerServer_container {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10050 !important;
    box-sizing: border-box;
    background: #fff;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* 旧版 chunk 会话页 .chat-box */
  .chat-box .footer-box {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10050 !important;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .pc_customerServer_container .pc_customerServer_container_content .scroll_content {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .chat-box .scroll-box {
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}
