/** 
 * 公共样式 
 */
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
dl,
dt,
dd,
ul,
ol,
li,
th,
td {
  margin: 0;
  padding: 0;
  word-break: break-all;
  box-sizing: border-box;
}
html {
  min-width: 320px;
  overflow-x: auto;
  height: 100%;
  background: #fff;
}
body {
  height: 100%;
  background: #fff;
}
input,
textarea,
select,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a:active,
a:hover {
  outline: none;
}
table {
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.f-df {
  display: flex;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
[v-cloak] {
  display: none;
}
/* CSS for manage text typography */
.mt10 {
  margin-top: 10px;
}
.ml10 {
  margin-left: 10px;
}
.mr10 {
  margin-right: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt20 {
  margin-top: 20px;
}
.ml20 {
  margin-left: 20px;
}
.mr20 {
  margin-right: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.tal {
  text-align: left;
}
.tar {
  text-align: right;
}
.tac {
  text-align: center;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.hidden {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.pointer {
  cursor: pointer;
}
.nowarp {
  white-space: nowrap;
  word-break: normal;
}
/*单行截断*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*防止双击选中文字*/
.noselect {
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.m-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.pre-box {
  word-break: break-word;
  white-space: pre-wrap;
  max-height: 500px;
  overflow: auto;
}
input[disabled],
select[disabled] {
  cursor: no-drop;
  color: #999;
  background: #f3f3f3;
}
