* {
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
*::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.wh100 {
  width: 100%;
  height: 100%;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.textHidden1 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.textHidden2 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.textHidden3 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.inlineBlock {
  display: inline-block;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.wsNowrap {
  white-space: nowrap;
}
.wsNormal {
  clear: both;
  /* 清除左右浮动 */
  word-break: break-word;
  /* 文本行的任意字内断开 */
  word-wrap: break-word;
  /* IE */
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -hp-pre-wrap;
  /* HP printers */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
  top: 0;
  left: 0;
}
.absoluteCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.absoluteRight {
  position: absolute;
  top: 0;
  right: 0;
}
.absoluteBottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.absoluteBottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.fixedCenter {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fixedRight {
  position: fixed;
  top: 0;
  right: 0;
}
.fixedBottom {
  position: fixed;
  bottom: 0;
  left: 0;
}
.fixedBottomRight {
  position: fixed;
  bottom: 0;
  right: 0;
}
.sticky {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  top: 0;
  left: 0;
}
.static {
  position: static;
  top: 0;
  left: 0;
}
.flex {
  display: flex;
}
.flex1 {
  flex: 1;
  min-width: 0;
}
.flex2 {
  flex: 2;
  min-width: 0;
}
.flex3 {
  flex: 3;
  min-width: 0;
}
.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexRow {
  display: flex;
  flex-direction: row;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
.flexWarp {
  display: flex;
  flex-wrap: wrap;
}
.justifyStart {
  display: flex;
  justify-content: flex-start;
}
.justifyCenter {
  display: flex;
  justify-content: center;
}
.justifyEnd {
  display: flex;
  justify-content: flex-end;
}
.justifyEvenly {
  display: flex;
  justify-content: space-evenly;
}
.justifyAround {
  display: flex;
  justify-content: space-around;
}
.justifyBetween {
  display: flex;
  justify-content: space-between;
}
.justifySelfStart {
  justify-self: flex-start;
}
.justifySelfCenter {
  justify-self: center;
}
.justifySelfEnd {
  justify-self: flex-end;
}
.itemsStart {
  display: flex;
  align-items: flex-start;
}
.itemsCenter {
  display: flex;
  align-items: center;
}
.itemsEnd {
  display: flex;
  align-items: flex-end;
}
.itemsSelfStart {
  align-self: flex-start;
}
.itemsSelfCenter {
  align-self: center;
}
.itemsSelfEnd {
  align-self: flex-end;
}
.alignContentStart {
  align-content: flex-start;
}
.flexShrink0 {
  flex-shrink: 0;
}
.floatRight {
  float: right;
}
.floatLeft {
  float: left;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
  top: 0;
  left: 0;
}
.absoluteCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.absoluteRight {
  position: absolute;
  top: 0;
  right: 0;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.sticky {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  top: 0;
  left: 0;
}
.static {
  position: static;
  top: 0;
  left: 0;
}
.absoluteBottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.absoluteBottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.fixedBottom {
  position: fixed;
  bottom: 0;
  left: 0;
}
.borderBox {
  box-sizing: border-box;
}
.contentBox {
  box-sizing: content-box;
}
.margin0Auto {
  margin: 0 auto;
}
.yScroll {
  overflow-y: scroll;
}
.xScroll {
  overflow-x: scroll;
}
.xHidden {
  overflow-x: hidden;
}
.yHidden {
  overflow-y: hidden;
}
.xyHidden {
  overflow: hidden;
}
.textCenter {
  text-align: center;
}
.textLeft {
  text-align: left;
}
.textRight {
  text-align: right;
}
.verticalMiddle {
  vertical-align: middle;
}
.verticalBaseline {
  vertical-align: baseline;
}
.verticalTop {
  vertical-align: top;
}
.verticalBottom {
  vertical-align: bottom;
}
.verticalTextTop {
  vertical-align: text-top;
}
.verticalTextBottom {
  vertical-align: text-bottom;
}
.textLineThrough {
  text-decoration: line-through;
}
.textUnderline {
  text-decoration: underline;
}
.fontbold {
  font-weight: bold;
}
.font12 {
  font-size: 1.2rem;
}
.font13 {
  font-size: 1.3rem;
}
.font14 {
  font-size: 1.4rem;
}
.font15 {
  font-size: 1.5rem;
}
.font16 {
  font-size: 1.6rem;
}
.font17 {
  font-size: 1.7rem;
}
.font18 {
  font-size: 1.8rem;
}
.font19 {
  font-size: 1.9rem;
}
.font20 {
  font-size: 2rem;
}
.font29 {
  font-size: 2.9rem;
}
.color000 {
  color: #000000;
}
.color333 {
  color: #333333;
}
.color999 {
  color: #999999;
}
.colorfff {
  color: #ffffff;
}
.colorB8BBC2 {
  color: #B8BBC2;
}
.color406CFF {
  color: #406CFF;
}
.colorE22018 {
  color: #E22018;
}
.bgfff {
  background-color: #ffffff;
}
.bgF6 {
  background-color: #f6f6f6;
}
.bgE9F0FF {
  background-color: #E9F0FF;
}
.bg406CFF {
  background-color: #406CFF;
}
.bg7DA1FF {
  background-color: #7DA1FF;
}
.bg121B34 {
  background-color: #121B34;
}
.pointer {
  cursor: pointer;
}
.container {
  box-sizing: border-box;
  width: 108.8rem;
}
