html,
body,
#app {
  width: 100%;
  height: 100%;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  padding: 0 !important;
}
body{
  margin: auto !important;
  width: 100%;
  min-width: 1200px;
  background: var(--floor__1);
}
:root{
  --body-width: 1200px;
}
*{
  box-sizing: border-box;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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


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

.c1 {
  color: #40a9ff !important;
}


.c5 {
  color: #555555 !important;
}

.c8 {
  color: #888 !important;
}

::-webkit-input-placeholder {
  color: #878d99;
}

:-moz-placeholder {
  color: #878d99;
}

::-moz-placeholder {
  color: #878d99;
}

:-ms-input-placeholder {
  color: #878d99;
}


.mainPage {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 剩余滚动条样式 */

::-webkit-scrollbar-track-piece {
  width: 2px;
  background-color: rgba(255, 255, 255, 1) !important;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 38, 44, 0.6);
  z-index: 10000;
}

.b-border {
  position: relative;
}

.b-border:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.t-border {
  position: relative;
}

.t-border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(0deg, transparent 50%, #d9d9d9 50%);
}

.r-border {
  position: relative;
}

.r-border:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(0deg, transparent 50%, #d9d9d9 50%);
}

.l-border {
  position: relative;
}

.l-border:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  /* background-image: linear-gradient(0deg, transparent 50%, #d9d9d9 50%); */
  background: #d9d9d9;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

#app > div {
  background: var(--floor__1);
  color: var(--input_commonTitle);
}

/* ------------------左对齐---------------------------- */
/* 左对齐 横向布局（垂直向上） */
.vw_left_up {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
/* 左对齐 横向布局（垂直居中） */
.vw_left_center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
/* 右对齐 横向布局（垂直居中） */
.vw_right_center {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
/* 左对齐 横向布局（垂直向下） */
.vw_left_down {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}


/* 左对齐 竖向布局（垂直向上） */
.vh_left_up {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
/* 左对齐 竖向布局（垂直居中） */
.vh_left_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
/* 左对齐 竖向布局（垂直向下） */
.vh_left_down {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

/* --------------------右对齐-------------------------- */
/* 右对齐 横向布局（垂直向上） */
.vw_right_up {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
/* 右对齐 横向布局（垂直居中） */
.vw_right_center {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
/* 右对齐 横向布局（垂直向下） */
.vw_right_down {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}


/* 右对齐 竖向布局（垂直向上） */
.vh_right_up {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
/* 右对齐 竖向布局（垂直居中） */
.vh_right_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
/* 右对齐 竖向布局（垂直向下） */
.vh_right_down {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

/* --------------------居中对齐-------------------------- */
/* 居中对齐 横向布局（垂直向上） */
.vw_center_up {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
/* 居中对齐 横向布局（垂直居中） */
.vw_center_center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
/* 居中对齐 横向布局（垂直向下） */
.vw_center_down {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}


/* 居中对齐 竖向布局（垂直向上） */
.vh_center_up {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
/* 居中对齐 竖向布局（垂直居中） */
.vh_center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* 居右对齐 竖向布局（垂直居中） */
.vh_center_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
/* 居右对齐 竖向布局（垂直居中） */
.vh_center_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
/* 居中对齐 竖向布局（垂直向下） */
.vh_center_down {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

/* --------------------两端对齐-------------------------- */
/* 两端对齐 横向布局（垂直向上） */
.vw_between_up {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
/* 两端对齐 横向布局（垂直居中） */
.vw_between_center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
/* 两端对齐 横向布局（垂直向下） */
.vw_between_down {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}


/* 两端对齐 竖向布局（水平左边对齐） */
.vh_between_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
/* 两端对齐 竖向布局（垂直居中） */
.vh_between_center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/* 两端对齐 竖向布局（水平右对齐） */
.vh_between_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/* --------------------间隔相等对齐-------------------------- */
/* 间隔相等对齐 横向布局（垂直向上） */
.vw_around_up {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}
/* 间隔相等对齐 横向布局（垂直居中） */
.vw_around_center {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
/* 间隔相等对齐 横向布局（垂直向下） */
.vw_around_down {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}


/* 间隔相等对齐 竖向布局（水平左边对齐） */
.vh_around_left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
/* 间隔相等对齐 竖向布局（垂直居中） */
.vh_around_center {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
/* 间隔相等对齐 竖向布局（水平右对齐） */
.vh_around_right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.align_items_stretch{
  align-items: stretch;
}