@charset "utf-8";

/* CSS Document */
html,
body {
  min-width: 1224px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all .3s linear;
}

* html body {
  overflow: visible;
}

* html iframe,
* html frame {
  overflow: auto;
}

* html frameset {
  overflow: hidden;
}

body {
  color: #333;
  font-size: 16px;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, Tahoma;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  padding: 0;
  outline: none;
  word-wrap: break-word;
  word-break: break-all;
  vertical-align: middle;
  font-size: .9rem;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  border: 0;
  font-size: 0;
  line-height: 0;
}

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

a:hover {
  color: #0055b9;
  text-decoration: none;
}

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

/* public */
.main {
  width: 1200px;
  margin: 0 auto;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix::before,
.clearfix::after {
  clear: both;
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

.box {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}

.justify {
  justify-content: space-between;
}

.flex1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
}

.flex15 {
  -webkit-box-flex: 1.5;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1.5;
  /* OLD - Firefox 19- */
  -webkit-flex: 1.5;
  /* Chrome */
  -ms-flex: 1.5;
  /* IE 10 */
  flex: 1.5;
}

.flex2 {
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  flex: 2;
}

.flex3 {
  -webkit-box-flex: 3;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 3;
  /* OLD - Firefox 19- */
  -webkit-flex: 3;
  /* Chrome */
  -ms-flex: 3;
  /* IE 10 */
  flex: 3;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
}

/* banner */
#full-screen-slider {
  width: 100%;
  height: 330px;
  position: relative;
}

#slides {
  display: block;
  width: 100%;
  height: 330px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: -1;
}

#slides li {
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
}

#slides li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

#pagination {
  display: block;
  list-style: none;
  position: absolute;
  right: 50%;
  text-align: center;
  bottom: 15px;
  z-index: 9900;
  margin: 0;
}

#pagination li {
  position: relative;
  right: -50%;
  display: block;
  list-style: none;
  width: 12px;
  height: 12px;
  float: left;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #eee;
}

#pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  text-indent: -9999px;
}

#pagination li.current {
  background-color: #0055b9;
}