@charset "utf-8";
body,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
select,
textarea,
button,
th,
td,
menu {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
header,
nav,
footer,
section {
  display: block;
}
ul,
dl,
ol {
  list-style: none;
}
img,
fieldset,
input[type="submit"] {
  border: 0 none;
}
em {
  font-style: normal;
}
/*strong{font-weight:normal;}*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button,
input[type="button"] {
  cursor: pointer;
  border: 0 none;
}
a,
button,
input,
img {
  -webkit-touch-callout: none;
  outline: 0;
}
img {
  /*pointer-events:none;*/
  /*禁止图片的点击事件，例如长按保存图片*/
}
input,
select,
textarea {
  outline: none;
}
a {
  text-decoration: none;
  color: #333333;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
html,
body {
  /*禁止用户选择元素*/
  /*-moz-user-select:none;
 -webkit-user-select: none;
-ms-user-select: none;
 -khtml-user-select:none; 禁止元素点击出现半透明黑色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  height: 100%;
  width: 100%;
  font-family: "Univers LT Std", "Source Han Sans", "Helvetica Neue", "Helvetica", "Microsoft YaHei", "Arial", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", "sans-serif";
  outline: 0;
  -webkit-text-size-adjust: none;
}
body {
  height: 100%;
  margin: 0;
  position: relative;
}
.clear_fix::after {
  content: "";
  display: block;
  clear: both;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.dis-b {
  display: block;
}
.dis-b img {
  transition: all 0.6s;
}
.dis-b img:hover {
  transform: scale(1.02);
}
.dis-none {
  display: none;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* 移动端 */
.mobile-content .left {float:left}
.mobile-content .right {float:right}
.mobile-content .clear {clear:both}
.mobile-content .clearfix:after{ content:""; display:block; height:0px; clear:both; visibility:hidden;}
.mobile-content .text-left{text-align: left}
.mobile-content .text-right{text-align: right}
.mobile-content .text-center{text-align: center;}

.mobile-content .ell{
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mobile-content .img-responsive{
	display: block;
	width: 100%;
}
.mobile-content .show{
	display: block !important;
}
.mobile-content .hide{
	display: none  !important;
}