@charset "utf-8";
/*=====================================
  全部CSS变量
  =====================================*/
:root {
  --main-bg-color: #F4F7FC;
  --main-white-color: #fff;
  --main-black-color: #333;
  --main-warning-bg-color:#FFEEE3;
  --main-success-bg-color:#EFF3FF;
  --main-danger-bg-color:#FFF3F4;
  --main-info-bg-color:#F6F6F6;
  --main-warning-text-color:#ED7B2F ;
  --main-success-text-color: #1650FF;
  --main-danger-text-color: #E34D59;
  --main-info-text-color: #999;
  --main-border-radius: 10px;
  --main-title-size: 16px;
  --main-title-color: #23456E;
  --main-return-flag-color: #C1CDFF;
}

/* 使用的时候，在其他css里可以这样写 */
/*=====================================
  .style {
    background-color: var(--main-bg-color);
  }
  =====================================*/

/* 以上为demo 所有 公共 css 写在此行下面，公共变量写在此行上面root里面 */

/*=====================================
  layout  
  =====================================*/
html,
body,
#app {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  color: var(--main-black-color);
  transform: translate(0,0);
  max-width: 800px;
}

#app {
  font-family: "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}

a {
  color: var(--main-black-color);
}
.wrapper,
.wrapper * {
  box-sizing: border-box;
}
.wrapper {
  background:var(--main-bg-color);
  transition: all .2s;
  flex-direction: row;
  display: flex;
  flex: auto;
  width: 100%;
  height: 100%;
  text-align: left;
  overflow: hidden;
  overflow-y: auto;
}

.page-wrap{
  width: 100%;
  padding: 10px;
}

.page-bg{
  height: 100%;
  background: var(--main-white-color) url(../images/bg-main.png) no-repeat;
  background-size: 100%;
  padding: 10px;
}

/*=====================================
  scrollbar Style
  =====================================*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #d8d9da;
  border-radius: 3px;
}





/*=====================================
  sidebar
  =====================================*/



/*=====================================
  人员弹窗
  =====================================*/

  .dialog-contact-content{
    width: 100%;
    height: 100%;
  }
  .jw-dialog-footer{
    height: 60px;
    background: #FFF;
    padding: 10px;
  }
/*=====================================
  pc兼容
  =====================================*/
/* @media screen and (min-width: 1024px) {
  html,
  body,
  #app {
    transform: translate(0,0);
    max-width: 1180px;
  }
} */
@media screen and (min-width: 800px) {
  html,
  body,
  #app {
    transform: translate(0,0);
    max-width: 880px;
  }
}