/* 常用flex布局 */
.flex {
  display: flex !important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flex-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex1 {
  flex: 1;
}

/* ellips */
.hidden {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 边框图片 */
.panel {
  border: 8px solid;
  border-width: 8px 8px;
  border-image-source: url('../images/service/border.png');
  border-image-slice: 50 50;
  box-sizing: border-box;
  position: relative;
}

/* 边框图片内部容器 */
.inner {
  position: absolute;
  left: -8px;
  top: -8px;
  padding: 21px;
}

html,
body,
#app {
  width: 100%;
  height: 100%;
  position: relative;
  /* overflow: hidden; */
  background-color: #f2f2f2;
}

.log {
  color: #fff;
}

.empty-content {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 14px;
  height: 100px;
  line-height: 100px;
}

.hover-font-active:hover {
  cursor: pointer;
  opacity: 0.7;
}
