@media screen and (max-width: 960px) {
  .esc-container #pc-header,.esc-container #pc-footer,.esc-container .pc-box {
    display: none;
  }
  .esc-container  #m-header,.esc-container #m-footer,.esc-container .mb-box {
    display: flex;
  }

}
@media screen and (min-width: 960px) {
  .esc-container #pc-header,.esc-container #pc-footer,.esc-container .pc-box {
    display: flex;
  }
  .esc-container #m-header,.esc-container #m-footer,.esc-container .mb-box {
    display: none;
  }
  /* 隐藏横向滚动条但保持滚动功能 */
    ::-webkit-scrollbar {
      width: 5px;
      height: 5px;
    }

    ::-webkit-scrollbar-track {
      background: #1a1a1a;
    }

    ::-webkit-scrollbar-thumb {
      background: #EF7C1C;
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #e55c00;
    }

    /* 隐藏横向滚动条 */
    ::-webkit-scrollbar:horizontal {
      display: none;
    }

    .esc-container {
      width: 100%;
      min-height: 100vh;
    }
}
