$color: #fff;
$--color-primary: #409eff !default;
/// color|1|Background Color|4
$--color-white: #ffffff !default;
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  touch-action: pan-y;
}
html,
body,
#root,
.App {
  height: 100%;
}
body {
  font-family: "Microsoft YaHei", "宋体";
  color: #333;
  background-color: $color;
}

.page-main {
  width: 100%;
  height: 100%;
}

.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  width: 100%;
  /*! autoprefixer: off */
}

/*溢出省略*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
