/* flex */
.flex {
  display: -webkit-box;
  /*布局方式 相当于display:flex*/
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.align-items-center {
  -webkit-box-align: center;
  /*box的对齐方式 align-items:center;*/
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-end {
  -webkit-box-align: end;
  /*box的对齐方式 align-items:flex-end;*/
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.justify-content-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  /*排列方式flex-direction: column*/
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-direction-row {
  -webkit-box-orient: horizontal;
  /*排列方式flex-direction: column*/
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.justify-content-around {
  -webkit-box-pack: justify;
  /* justify-content: space-between;*/
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
}
.justify-content-between {
  -webkit-box-pack: justify;
  /* justify-content: space-between;*/
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-wrap-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.layout {
  background: #f5f7f9;
}
.layout-content {
  min-height: 200px;
  margin: 15px;
  background: #fff;
  border-radius: 4px;
}
.layout-breadcrumb {
  margin: 0 10px;
  padding: 10px 20px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.layout-content-main {
  padding: 10px;
  min-height: 560px;
}
.layout-content-main .layout-search {
  margin-bottom: 10px;
  background: #f5f7f9;
  padding: 5px 10px;
}
.layout-content-main .layout-pager {
  margin: 10px 0;
}

.layout-logo {
  width: 180px;
  height: 100%;
  box-sizing: border-box;
  float: left;
  padding-top: 10px;
  padding-left: 20px;
}
.layout-nav {
  width: auto;
  margin: 0 auto;
  float: left;
}
.layout-user {
  float: right;
}
.layout-copy {
  text-align: center;
  padding: 10px 0 20px;
  color: #9ea7b4;
}

.hide {
  display: none;
}

/* 文本的左右对齐 */
.text-left{
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right
}

/* 清除浮动 */
.no-float:after{
  clear:both;
  content:'.';
  display:block;
  width: 0;
  height: 0;
  visibility:hidden;
  line-height: 0;
}

/* 文字颜色 */
.auxiliary-color{
  color: #9ea7b4;
}


li {
  list-style: none;
}

.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item {
  padding-left: 58px;
}

.ivu-select-single .ivu-select-selection .ivu-select-placeholder,
.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
  color: #369;
}

.spin-col {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: fixed;
  z-index: 2;
  top: 40%;
  left: 0;
  right: 0;
}
.ivu-spin-fix {
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #eee;
}
.spin-icon-load {
  animation: ani-spin 1s linear infinite;
}
@keyframes ani-spin {
  from {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ivu-menu-vertical .ivu-menu-submenu-title {
  background-color: #d0d4dc;
}
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item {
  color: #fff;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item {
  border-bottom: 1px solid #f2f2f2;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu),
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item:hover,
.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover,
.ivu-menu-dark.ivu-menu-horizontal .ivu-menu-item-active {
  color: #5c9dff;
}
.ivu-menu-light.ivu-menu-vertical .ivu-menu-item-active:not(.ivu-menu-submenu) {
  border-right-color: #5c9dff;
}
.ivu-input-number-input[disabled] {
  color: #333;
}
.ivu-page-item-jump-next::after,
.ivu-page-item-jump-prev::after {
  content: "...";
  font-weight: bold;
  color: #2c2c2c;
}
.item-bottom-4 .ivu-form-item{
  margin-bottom: 4px;
}
