@charset "utf-8";

/* CSS Document */
html,
body {
  min-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, Tahoma;
  transition: all .2s linear;
}

* html body {
  overflow: visible;
}

* html iframe,
* html frame {
  overflow: auto;
}

* html frameset {
  overflow: hidden;
}

body {
  color: #333;
  font-size: 14px;
  line-height: 26px;
  background-color: #fff;
}

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;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  border: 0;
  font-size: 0;
  line-height: 0;
  transition: all .2s linear;
}

a {
  color: #000;
  text-decoration: none;
  transition: all .2s linear;
}

a:hover {
  color: #004e99;
  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;
}

/* banner */
#full-screen-slider {
  width: 100%;
  height: 590px;
  position: relative;
  margin-top:80px;
}

#slides {
  display: block;
  width: 100%;
  height: 590px;
  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: 40px;
  z-index: 9900;
  margin: 0;
}

#pagination li {
  position: relative;
  right: -50%;
  display: block;
  list-style: none;
  width: 8px;
  height: 8px;
  float: left;
  margin: 0 5px;
  border-radius: 4px;
  background-color: #fff;
  transition: all .2s linear;
}

#pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  text-indent: -9999px;
}

#pagination li.current {
  width: 30px;
  height: 8px;
  background-color: #004e99;
}