/**
 * 全站移动端基础修复（覆盖 header_public / footer_public 的桌面 min-width）
 */
@media (max-width: 1199px) {
  html {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .centere,
  .containeres,
  .header_cont,
  .foot,
  .foot_top,
  .foot_d1 {
    min-width: 0 !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .containeres {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* common.css 中 flex-shrink:0 会导致子元素撑破屏幕 */
  .wrap1 *,
  #app *,
  .foot *,
  .header * {
    flex-shrink: 1;
    min-width: 0;
  }

  .header .left,
  .header .right,
  .mobile-menu-btn {
    flex-shrink: 0;
    min-width: auto;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .commonLeftTip,
  .nav_rig,
  .right_list {
    display: none !important;
  }

  .tc-wrap {
    width: 92vw !important;
    max-width: 92vw !important;
    margin: 0 auto;
  }
}
