@charset "utf-8";

html{
  font-family:"Helvetica Neue", Helvetica, "Microsoft YaHei", STHeiTi, sans-serif;
  /* 禁用iPhone中Safari的字号自动调整 */
  /*-webkit-text-size-adjust:100%;*/
  /*-ms-text-size-adjust:100%;*/
  /* 解决IOS默认滑动很卡的情况 */
  /*-webkit-overflow-scrolling: touch;*/
}
/* body {
  background-color: #fff;
  color: #000;
} */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/**:not(input,textarea) {*/
  /*!* 禁用系统默认菜单 *!*/
  /*-webkit-touch-callout: none;*/
  /*!* 除input与textarea外的文本不能被选择 *!*/
  /*!* -webkit-user-select: none; *!*/
/*}*/
/* 初始化 */
body, ol, ul, dl, dd, h1, h2, h3, h4, h5, h6, p, form, textarea, input {
  margin:0;
}
ol, ul, th, td, textarea, select, option, button {
  padding:0;
}
/* 控制列表项标记类型 */
li{
  list-style-type: none;
}
em, i {
  font-style: normal;
}
/* b, strong {
  font-weight: normal;
} */
/* 设置HTML5新标签为块元素 */
article,aside,footer,header,nav,section,figure,figcaption,main {
  display:block;
}
a {
  text-decoration:none;
  /*color: #000;*/
}
/* 轮廓线处理 */
a:hover, a:active, input:focus, button:focus, select:focus, textarea:focus {
  outline: 0;
}
/* 取消链接高亮  */
/*a,button,input,textarea,select,optgroup{*/
  /*background-color: transparent;*/
  /*-webkit-tap-highlight-color:rgba(0,0,0,0);*/
  /*-webkit-tap-highlight-color: transparent; !* For some Androids *!*/
/*}*/
/* 图片自适应 */
img {
  border: none;
  /*width: 100%;*//* 与display: block;对应使用 */
  /*display: block;*//* 设置之后不能用text-align: center;实现水平居中 */
  /* 垂直方向基线图片相对于父元素居中对齐 */
  vertical-align: middle;
  /*照顾ie6-7图片缩放失真*/
  -ms-interpolation-mode: bicubic;
}
/* 需重设字体的 */
input, textarea, select, button {
  border: 0;
  outline: none;
  font-family:"微软雅黑", "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
}
/* 禁止缩放文本框 */
/*textarea {*/
  /*resize: none;*/
  /*display: block;*/
  /*width: 100%;*/
/*}*/
/*input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {*/
  /*color: #eee;*/
/*}*/
/*input, select {*/
  /*-webkit-appearance: none;*/
  /*-moz-appearance: none;*/
  /*appearance: none;*/
/*}*/
/* 左右浮动 */
.f_left {
  float: left;
}
.f_right {
  float: right;
}
/* 清除浮动 */
.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}
/* 文本单行溢出 */
.ellipsis_one {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 多行溢出只适合webkit浏览器与移动端 */
.ellipsis_more {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*text-overflow: ellipsis;*/
  /*white-space: normal !important;*/
  /*word-wrap: break-word;*/
}
/* 0.5分割线 */
.line_top:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
  /*-webkit-transform-origin: 0 0;
  transform-origin: 0 0;*/
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

.line_bottom:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #e0e0e0;
  /*-webkit-transform-origin: 0 0;
  transform-origin: 0 0;*/
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
