* {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

html {
  font-size: 100px;
  -webkit-text-stroke: 1px transparent;
  text-stroke: 1px transparent;
}

body {
  /* background: #fff; */
  position: relative;
  background: transparent;
  color: #34363c;
  font-size: 0.1rem;
  padding-right: 0 !important;
  /*font-family: arial, "Microsoft Yahei", PingFang, Helvetica, sans-serif;*/
  font-family: "Microsoft Yahei", PingFangSC-Regular, Helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-backface-visibility: hidden;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
}

.user-select-text {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fixed {
  position: fixed;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.p-0 {
  padding: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.m-0 {
  margin: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/*行内元素，内联元素对齐方式*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: bolder;
}

.table {
  display: table;
  text-align: left;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

a,
a:hover {
  text-decoration: none;
}

.pointer {
  cursor: pointer;
}

.del {
  position: relative;
  font-size: 0.7rem;
  color: #ccc;
  margin-left: 8rpx;
}

.del::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-top: 1px solid #bbb;
}

/*自动隐藏文字*/
.aui-ellipsis-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.aui-ellipsis {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.aui-ellipsis-2 {
  /* display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; */
}

/* 容器类 */
.controller-full,
.controller {
  clear: both;
}

.controller-full:after,
.controller:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.controller-full {
  display: block;
  width: 100%;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  box-sizing: border-box;
}

.controller {
  display: block;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* 图标类 */
.icon {
  display: inline-block;
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
}

.border-test {
  border: 1px solid #f54545;
}

/*定义布局为盒模型 */
.flex {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*盒模型垂直布局*/
.flex-v {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*子元素占据剩余的空间*/
.flex-1 {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
}

/*子元素垂直居中*/
.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*子元素水平居中*/
.flex-pack-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*子元素两端对齐*/
.flex-pack-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*子元素两端留等空间对齐*/
.flex-pack-justify-around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*反向横像排列*/
.flex-row-reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 1px) and (max-width: 1290px) {
  /* html {
    font-size: 90px;
  } */

  .controller {
    padding-left: 0.66rem;
    padding-right: 0.66rem;
  }

  * {
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1291px) and (max-width: 1550px) {
  html {
    font-size: 95px;
  }

  .controller {
    padding-left: 0.66rem;
    padding-right: 0.66rem;
  }
}
