<template>
  <div id="app">
    <!-- <img src="./assets/logo.png"> -->
    <router-view />
  </div>
</template>

<script>
export default {
  name: "App"
};
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
body,
html,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select,
label {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

html,
body {
  font: 12px "微软雅黑", "Arial", HELVETICA;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "微软雅黑";
  overflow: auto;
}

a {
  color: #0d1e2e;
  text-decoration: none;
  font-weight: normal;
}

em {
  font-style: normal;
}

li {
  list-style: none;
  font-weight: normal;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  vertical-align: middle;
}

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

p {
  word-wrap: break-word;
  font-weight: normal;
  cursor: pointer;
}

i {
  font-style: normal;
}
input {
  outline: none;
  /* border-radius: 3px;
  height: 32px;
  font-size: 14px;
  border: 1px solid #eee;
  padding-left: 14px; */
}

/* 清浮动 */
.clearfix::after {
  content: ".";
  clear: both;
  display: block;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.clearfix {
  zoom: 1;
}
/* flex布局 */
.layout {
  display: -moz-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* align-item */
.align_center {
  -moz-box-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-box-pack: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.align_left {
  -moz-box-align: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -moz-box-pack: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
}
.align_end{
  align-items: flex-end;
  -moz-box-align: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  -moz-box-pack: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
}
/* justify */
.justify {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-box-pack: space-between;
  -webkit-box-pack: space-between;
  box-pack: space-between;
}
.justify_around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -moz-box-pack: space-around;
  -webkit-box-pack: space-around;
  box-pack: space-around;
}
.justify_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -webkit-box-pack: center;
  box-pack: center;
}
.justify_end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: flex-end;
  -webkit-box-pack: flex-end;
  box-pack: flex-end;
}
.justify_start{
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: flex-start;
  -webkit-box-pack: flex-start;
  box-pack: flex-start;
}
/* flex-direction */
.flex_diection {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.flex_row {
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-flex-wrap: wrap;
}

/* 下拉选框 */
.el-input__inner {
  border-color: #999!important;
  border-radius: 3px!important;
  color: #666!important
}
.el-input__inner:hover{
  border-color: #526AA6!important
}
.el-input__inner::placeholder {
  color: #999!important;
}
.el-select .el-input.is-focus .el-input__inner{
  border-color: #526AA6!important
}
.el-select .el-input__inner:hover{
  border-color: #526AA6!important
}
.el-select .el-input__inner:focus{
  border-color: #526AA6!important
}
.el-select-dropdown__item.selected{
  color: #666!important
}
/* select右侧箭头 */
.el-input__suffix-inner .el-icon-arrow-up:before {
    content: "\E78F";
    font-size: 18px;
}
/* 表头 */
 .el-table th > .cell {
  font-weight: normal;
}
 .el-table thead th {
  background-color: #c8c8c8 !important;
}
 .el-table th {
  padding: 0;
}
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{
  display: none!important
}
/* 验证错误提示 */
.el-form-item__error{
  text-align: center
}
</style>