﻿@charset "utf-8";
/*变量*/
/*媒体查询高度*/
/*媒体查询宽度*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
h1 {
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
pre {
  font-family: monospace, monospace;
  /* 1 */
}
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
button,
input {
  /* 1 */
  overflow: visible;
}
button,
select {
  /* 1 */
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
details {
  display: block;
}
summary {
  display: list-item;
}

template {
  display: none;
}
[hidden] {
  display: none;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial,Microsoft YaHei, SimSun;
  color: #000;
  font-size: 14px;
}
fieldset,
img {
  border: 0;
}
ol,
ul,
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
/*清除input和img的默认边框和样式*/
input,
button,
select,
textarea {
  outline: none;
}
/* 禁用了文本的拖拉，尤其在谷歌下*/
textarea {
  resize: none;
}
/*为了使文本段落左右两边对齐*/
p {
  text-align: justify;
  text-justify: distribute;
  word-wrap: break-word;
}
i,
span,
s,
del,
b,
em {
  display: inline-block;
}
/*清除i,s,del的效果*/
i,
s,
del,
b,
em {
  font-style: normal;
  text-decoration: none;
}
address,
cite,
code,
em,
th {
  font-weight: normal;
  font-style: normal;
}
/*清除a标签的默认样式*/
a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input[type="button"], input[type="submit"], input[type="reset"] {
  -webkit-appearance: none;
}
textarea {  -webkit-appearance: none;}
/*浮动*/
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
/*大写*/
.upperCase {
  text-transform: uppercase;
}
/*小写*/
.lowerCase {
  text-transform: lowercase;
}
/*首字母大写*/
.cpitalize {
  text-transform: capitalize;
}
/*清楚浮动*/
.clearfix:after {
  display: block;
  height: 0;
  line-height: 0;
  content: "";
  visibility: hidden;
  clear: both;
}
/*兼容IE清除浮动*/
.clearfix {
  zoom: 1;
}
input {
  border: 0 none;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
}
/*定义代码区*/
.viewport {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
/*定义伸缩盒子*/
.box {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}
/*文本内容基本效果*/
.info {
  line-height: 25px;
  padding-right:20px;
}
.info p {
  line-height: 25px;
}
.info img {
  max-width: 100%;
}
/*图片移入放大特效*/
.scale {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.scale:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/*单行点点点效果*/
.point {
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
/*多行点点点效果*/
.points {
  overflow: hidden;
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  text-overflow: ellipsis;
  /*可以用来多行文本的情况下，用省略号“...”隐藏超出范围的文本*/
  -webkit-box-orient: vertical;
  /*设置或检索伸缩盒对象的子元素的排列方式*/
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-line-clamp: 2;
  /*限制在一个块元素显示的文本的行数*/
  line-clamp: 2;
  /*限制在一个块元素显示的文本的行数*/
}
.points2 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    max-height: 30px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.visible-xs {
  display: none;
}

@media screen and (max-width: 767px) {
  .visible-xs {
    display: block;
  }

  .hidden-xs {
    display: none;
  }
  .banner .hidden-xs {
    display: block !important;
  }
}