/*
* @Author: admin
* @Date:   2018-05-21 22:52:19
 * @Last Modified by: mikey.zhaopeng
 * @Last Modified time: 2020-03-27 16:16:27
*/
.main {
  width: 1000px;
  margin: 0 auto;
}

* {
  margin: 0;
  padding: 0;
  font-family: "MicrosoftYaHei";
  box-sizing: border-box;
  outline: none;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

input {
  border: 0;
  outline: none;
}

.select-has-dow {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #000;
  /*很关键：将默认的select选择框样式清除*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /*在选择框的最右侧中间显示小箭头图片*/
  /*为下拉小箭头留出一点位置，避免被文字覆盖*/
  padding-right: 14px;
  background: url(../images/down.png) no-repeat right center;
  background-size: 30px 20px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
.select-has-dow::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
}

.w1200 {
  width: 1200px;
  margin: auto;
  position: relative;
}

.w693 {
  width: 693px;
  margin: auto;
}

.section {
  width: 100%;
  min-width: 1300px;
  margin: auto;
  position: relative;
}

.section-web {
  width: 100%;
  min-width: 750px;
  margin: auto;
}

.i-block {
  display: inline-block;
  vertical-align: middle;
}

.block-tab {
  display: block;
}

.flex-tab {
  display: flex;
}

.flex-item-center {
  display: flex;
  align-items: center;
}

.lr {
  float: right;
}

.lf {
  float: left;
}

select {
  outline: none;
  /*去掉默认的下拉三角*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}



/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: red;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: red;
}

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  background: #ccc;
  position: relative;
}

.jspDrag {
  background: #505050;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}

.jspArrow {
  background: #50506d;
  text-indent: -20000px;
  display: block;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d;
}

.jspVerticalBar .jspArrow {
  height: 16px;
}

.jspHorizontalBar .jspArrow {
  width: 5px;
  float: left;
  height: 100%;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.jspCorner {
  background: #eeeef4;
  float: left;
  height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
  margin: 0 -3px 0 0;
}