.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.containerWhite {
  height: auto;
  width: 100% - 0.64rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: white;
  margin-left: 0.32rem;
  margin-right: 0.32rem;
}
.whiteVer {
  width: 100vw;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.contentScrollY {
  height: calc(100vh - 60px);
  overflow-y: scroll;
  display: flex;
  width: 100%;
  overflow: auto;
  flex-direction: column;
}

.view_header {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.viewLineMar {
  height: 1px;
  background-color: #ececec;
}
.hide {
  visibility: hidden;
}
.show {
  visibility: visible;
}
input::-webkit-input-placeholder {
  /* WebKit browsers 适配谷歌 */
  color: #8c8c8c;
  font-size: 0.32rem;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #8c8c8c;
  font-size: 0.32rem;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ 适配火狐 */
  color: #8c8c8c;
  font-size: 0.32rem;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+  适配ie*/
  color: #8c8c8c;
  font-size: 0.32rem;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
input,
textarea {
  -webkit-user-select: auto !important;

  -moz-user-select: auto !important;

  -ms-user-select: auto !important;

  -o-user-select: auto !important;

  user-select: auto !important;
}
body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ececec;
}
/* @media screen and (max-width: 800px) {
  input,
  textarea {
    font-size: 16px !important;
  }
} */


#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
}
html,
body {
  -webkit-overflow-scrolling: touch;
  background: #fff !important;
}

