/* emop 全局样式类名 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

// 布局
.emop_center {
  display: flex;
  align-items: center;
}

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

.emop_column {
  display: flex;
  flex-direction: column;
}

.emop_layout_padding {
  padding: 12px 0 12px 12px;
}

.emop_card_padding {
  padding: 12px 12px 40px;
}

.emop_list_margin {
  margin-right: 8px;

  &:last-child {
    margin-right: 0;
  }
}

// 文字
.emop_text_title {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: $text_color_title;
}

.emop_text_primary {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: $text_color_primary;
}

.emop_text_normal {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: $text_color_normal;
}

.emop_text_desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: $text_color_desc;
}

.emop_radius {
  border-radius: 5px;
}

.emop_shadow {
  box-shadow: 0 0 9px 0px #aaaaaaa8;
}

.emop_line {
  width: 95%;
  height: 1px;
  background-color: rgba(170, 170, 170, 0.447);
  margin: 30px auto;
}