/* 容器 */
.container_wrap {
  width: 100%;
}
.container {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
/* 布局 */
.flex_row {
  display: flex;
  flex-direction: row;
}
.flex_col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.flex_1 {
  flex: 1;
}
.flex_wrap {
  flex-wrap: wrap;
}
.flex_no_wrap {
  flex-wrap: nowrap;
}
.justify_content_center {
  justify-content: center;
}
.justify_content_between {
  justify-content: space-between;
}
.justify_content_around {
  justify-content: space-around;
}
.justify_content_start {
  justify-content: flex-start;
}
.justify_content_end {
  justify-content: flex-end;
}
.align_items_center {
  align-items: center;
}
.align_items_start {
  align-items: flex-start;
}
.align_items_end {
  align-items: flex-end;
}
.align_items_baseline {
  align-items: baseline;
}
.align_items_stretch {
  align-items: stretch;
}
.flex_row_center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex_col_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 颜色 */
.color_white {
  color: #fff;
}
.color_primary {
  color: #3385ff;
}
.color_success {
  color: #00c957;
}
.color_error {
  color: #ff6333;
}
.color_warning {
  color: #ffb833;
}
.color_main {
  color: #323538;
}
.color_content {
  color: #60656b;
}
.color_tips {
  color: #8e959e;
}
.color_border {
  color: #ebedf0;
}
.color_fill {
  color: #f0f2f5;
}
/* 背景 */
.bg_white {
  background-color: #fff;
}
.bg_primary {
  background-color: #3385ff;
}
.bg_success {
  background-color: #00c957;
}
.bg_error {
  background-color: #ff6333;
}
.bg_warning {
  background-color: #ffb833;
}
.bg_main {
  background-color: #323538;
}
.bg_content {
  background-color: #60656b;
}
.bg_tips {
  background-color: #8e959e;
}
.bg_border {
  background-color: #ebedf0;
}
.bg_fill {
  background-color: #f0f2f5;
}
.font_10 {
  font-size: 10px;
}
.font_11 {
  font-size: 11px;
}
.font_12 {
  font-size: 12px;
  line-height: 16px;
}
.font_13 {
  font-size: 13px;
  line-height: 17px;
}
.font_14 {
  font-size: 14px;
  line-height: 19px;
}
.font_15 {
  font-size: 15px;
  line-height: 20px;
}
.font_16 {
  font-size: 16px;
  line-height: 21px;
}
.font_17 {
  font-size: 17px;
}
.font_18 {
  font-size: 18px;
  line-height: 24px;
}
.font_19 {
  font-size: 19px;
}
.font_20 {
  font-size: 20px;
  line-height: 26px;
}
.font_22 {
  font-size: 22px;
  line-height: 29px;
}
.font_24 {
  font-size: 24px;
  line-height: 31px;
}
/* 宽高 */
.w_full {
  width: 100%;
}
.h_full {
  height: 100%;
}
.size_full {
  width: 100%;
  height: 100%;
}
/* 文本溢出 */
.line_1,
.line_2,
.line_3,
.line_4,
.line_5 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.line_1 {
  -webkit-line-clamp: 1;
}
.line_2 {
  -webkit-line-clamp: 2;
}
.line_3 {
  -webkit-line-clamp: 3;
}
.line_4 {
  -webkit-line-clamp: 4;
}
.line_5 {
  -webkit-line-clamp: 5;
}

.mask {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.transition {
  transition: all 0.2s ease-in-out;
}

.group:hover .group_hover_color_primary,
.hover_color_primary:hover {
  color: #3385ff !important;
}
.group:hover .group_hover_color_white,
.hover_color_white:hover {
  color: #fff !important;
}
.group:hover .group_hover_bg_primary,
.hover_bg_primary:hover {
  background-color: #3385ff !important;
}
.group:hover .group_hover_border_primary,
.hover_border_primary:hover {
  border-color: #3385ff !important;
}
.group_hover_fadeIn {
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
.group:hover .group_hover_fadeIn {
  opacity: 1;
  z-index: 1;
}
.group:hover .group_hover_right_10 {
  right: 10px !important;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8e959e;
}
.pagination .prev,
.pagination .next {
  font-size: 12px;
  color: #323538;
}
.pagination .prev.disabled,
.pagination .next.disabled {
  color: #8e959e !important;
  cursor: not-allowed;
}
.pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.pagination a.active {
  background-color: #3385ff;
  color: #fff !important;
}
.pagination a.more {
  width: 12px;
  background-color: transparent;
}
.pagination a:hover {
  color: #3385ff;
}
.pagination input[type='number'] {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  margin: 0 8px;
  background-color: #fff;
}
.pagination .confirm {
  width: 60px;
}<!--0.00018596649169922-->