/* 全局滚动样式，解决在微信小程序web-view中的滚动问题 */
html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  position: static !important;
  margin: 0;
  padding: 0;
  width: 100%;
}

#app {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  position: static !important;
  width: 100%;
} 