*{
	padding: 0;
	margin: 0;
}
img{
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
.row{
	margin-right: 0;
	margin-left: 0;
}
a{
	text-decoration: none !important;
	font-size: 14px;
	font-family: simsun;
	color: #222 !important;
}
html{
	height: 100%;
}
body{
	background: #eee;
	height: 100%;
	overflow-y: scroll;
	font-family: "PingFang SC", "Microsoft YaHei", arial, "Hiragino Sans GB", "Hiragino Sans GB W3" !important;
    font-size: 14px;
    color: #333;
}
html{
	height: 100%;
}
b,i,em{
	font-style: normal;
	font-weight: 500;
}
.flex{
	display: flex;
}
.flex-1{
	flex: 1;
}
.flex-wrap{
	flex-wrap: wrap;
}
.line-h{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
.shou {
  cursor: pointer;
}
.flex{
  display: flex;
}
/* display justify-content定义区,格式:(display'+_+'方向)*/
.ju_lr {
  display: flex;
  justify-content: space-between;
}
.ju_left {
  display: flex;
  justify-content: flex-start;
}
.ju_right {
  display: flex;
  justify-content: flex-end;
}
.ju_center {
  display: flex;
  justify-content: center;
}
.ju_top {
  display: flex;
  align-items: flex-start;
}
.ju_bottom {
  display: flex;
  align-items: flex-end;
}
.ju_centers {
  display: flex;
  align-items: center;
}
.ju_kong {
  display: flex;
  justify-content: space-around;
}
/* 超出文字自动换行 */
.word_wrap {
  word-wrap: break-word;
  word-break: normal;
  word-break: break-all;
  word-wrap: break-word;
}
.not_allowed{
  cursor: not-allowed
}
.forbid{
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version */
}