* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
[v-cloak] {
        display: none;
    }
input,
select,
textarea {
  font-size: 14px;
  font-family: "Microsoft Yahei", arial;
  background-color: #f3f7fb !important;
}

em,
strong,
th,
i {
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul,
li {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

.clearfix {
  *zoom: 1;
}

.hide {
  display: none;
}

.bodywidth {
  width: expression(document.body.clientWidth <=1200? "1200px": "auto");
  min-width: 1200px;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-1 {
  -webkit-flex: 1;
  flex: 1;
}

.flex-c-direction {
  display: flex;
  flex-direction: column;
}

.flex-a-center {
  display: flex;
  align-items: center;
}

.flex-a-start {
  display: flex;
  align-items: flex-start;
}

.flex-a-end {
  display: flex;
  align-items: flex-end;
}

.flex-j-start {
  display: flex;
  justify-content: flex-start;
}

.flex-j-center {
  display: flex;
  justify-content: center;
}

.flex-j-around {
  display: flex;
  justify-content: space-around;
}

.flex-j-between {
  display: flex;
  justify-content: space-between;
}

.flex-j-space-between {
  display: flex;
  justify-content: space-between;
}

.fw {
  font-weight: bold;
}