body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #555;
  font-size: 14px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

td,
th,
caption {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border: none;
}

ol,
ul,
li {
  list-style: none;
}

input,
textarea,
select,
button {
  font: 14px Verdana, Helvetica, Arial, sans-serif;
}

table {
  border-collapse: collapse;
}

html {
  overflow-y: auto;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

/* start--文本行数限制--start */
.ux-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ux-line-2 {
  -webkit-line-clamp: 2;
}

.ux-line-3 {
  -webkit-line-clamp: 3;
}

.ux-line-4 {
  -webkit-line-clamp: 4;
}

.ux-line-5 {
  -webkit-line-clamp: 5;
}

.ux-line-2,
.ux-line-3,
.ux-line-4,
.ux-line-5 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  /* 弹性伸缩盒 */
  display: -webkit-box;
  /* 设置伸缩盒子元素排列方式 */
  -webkit-box-orient: vertical;
}

/* end--文本行数限制--end */

body {
  width: 100%;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  background: rgb(242,242,242);
  
}

label {
  font-weight: 700;
}

html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

#app {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

div:focus {
  outline: none;
}

.clearfix :after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}


.app-container {
  padding: 20px;
 
}

.ux-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ux-flex-1 {
  flex: 1;
}

.ux-flex-wrap {
  flex-wrap: wrap;
}

.ux-flex-nowrap {
  flex-wrap: nowrap;
}

.ux-col-center {
  align-items: center;
}

.ux-col-top {
  align-items: flex-start;
}

.ux-col-bottom {
  align-items: flex-end;
}

.ux-row-center {
  justify-content: center;
}

.ux-row-left {
  justify-content: flex-start;
}

.ux-row-right {
  justify-content: flex-end;
}

.ux-row-between {
  justify-content: space-between;
}

.ux-row-around {
  justify-content: space-around;
}

.u-text-left {
  text-align: left;
}

.ux-text-center {
  text-align: center;
}

.ux-text-right {
  text-align: right;
}

.ux-flex-col {
  display: flex;
  flex-direction: column;
}
.ux-flex-shrink {
  flex-shrink: 0;
}
.container {
  width: 1920px;
  margin: 0 auto;
}

.main-container {
  width: 1300px;
  height: 100%;
  margin: 0 auto;
}

input {
  background: none;
  outline: none;
  border: none;
}

.pointer {
  cursor: pointer;
}