@charset "utf-8";
/********** 初始化 **********/
/*去除默认边距*/
html,
body,
header,
section,
footer,
article,
nav,
aside,
dialog,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
textarea {
  margin: 0;
  padding: 0;
}
/*阻止旋转屏幕时自动调整字体大小*/
html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: 100%;
}
body {
  min-width: 320px;
  max-width: 750px;
  font: 14px/1.2 "\5FAE\8F6F\96C5\9ED1", Verdana, Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  margin: 0 auto;
}
/* 禁止选中文本*/
html,
body {
  /* -webkit-user-select: none;
  user-select: none; */
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: normal;
  font-size: 100%;
}
em {
  font-style: normal;
}
ul,
ol {
  list-style-type: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  /*display: block;*/
  text-decoration: none;
  color: #333;
}
a:visited,
a:hover {
  text-decoration: none;
}
input,
button,
select {
  -webkit-appearance: none;
  appearance: none;
}
textarea {
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
/* 禁止长按链接与图片弹出菜单 */
a,
img {
  -webkit-touch-callout: none;
  touch-callout: none;
}
/*去掉手持设备点击时出现的透明层*/
a,
button,
input,
select {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  border: none;
  background: none;
  outline: none;
}
/********** 公共样式 **********/
/*滚动条整体样式*/
div::-webkit-scrollbar {
	width: 4px;
	height: 1px;
}
/*滚动条滑块*/
div::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	background: #ccc;
}
/*滚动条轨道*/
div::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0);
	/* border-radius: 10px; */
	background: #eeceb0;
}
/*伸缩的盒子*/
.flex-box {
  display: box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-flex: 1;
  -webkit-box-flex-group: 1;
}
.flex2 {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  -webkit-box-flex: 2;
  -webkit-box-flex-group: 2;
}
.flex3 {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  -webkit-flex-grow: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
  -webkit-box-flex: 3;
  -webkit-box-flex-group: 3;
}
/*box-sizing包括边框的宽度*/
.box-sizing {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*图片大小自适应*/
.img {
  width: 100%;
  display: block;
}
/*文字超出隐藏*/
.text-elli {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text-elli2{
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
/*清除浮动样式*/
.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  display: block;
  height: 0;
  overflow: hidden;
  content: " ";
  visibility: hidden;
  clear: both;
}
.trans{
	transition: all .5s ease-out; 
	-webkit-transition: all .5s ease-out;
}
body{
	background: #F7F7F7;
}
.fl{
	float: left !important;
}
.fr{
	float: right !important;
}
.hide{
	display: none !important;
}
.hidden{
	overflow: hidden !important; 
}
.relative{
	position: relative !important;
}