@charset "utf-8";
/*
	CSS Document 
*/
@import url('../fonts/iconfont.css');
@import url('./font-awesome.min.css');

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  zoom: 1;
}

html,
body {
  background-color: #fff;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.iconfont {
  font-weight: normal;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1548a3;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

a:focus {
  outline: thin dotted #000;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

li {
  list-style: none;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

input,
button,
textarea,
select {
  font-size: 100%;
}

input,
select {
  vertical-align: middle;
}

select,
input,
button,
textarea,
button {
  font: 99%;
}

table {
  font-size: inherit;
  font: 100%;
  border-collapse: collapse;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

.clear {
  clear: both;
  height: 0;
}

/* 向左浮动 */
.fl-fix {
  float: left;
}

/* 向右浮动 */
.fr-fix {
  float: right;
}

/* 图片最大100% */
.sk-img img {
  max-width: 100%;
  height: auto !important;
}

/* 鼠标悬浮图片放大 */
.sk-animation-img {
  display: block;
  overflow: hidden;
}

.sk-animation-img img {
  display: block;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}

.sk-animation-img:hover img {
  transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
}

/* 100%图片展示 */
.sk-banner-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sk-banner-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 容器最大大小 */
.sk-main {
  width: 1360px;
  margin: auto;
}

/* pagination */
.sk-pagex {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sk-pagex a{
  position: relative;
  display: block;
  font-size: 14px;
  color: #333333;
  text-align: center;
  padding: 5px 12px;
  margin: 0 3px;
  background-color: transparent;
  border: 1px solid #333333;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 5px;
}

.sk-pagex a:hover,
.sk-pagex a.page-num-current{
  color: #ffffff;
  background: #1548a3 !important;
  border-color: #1548a3;
}

.sk-pagex a.page-num-current {
  pointer-events: none;
}

/* mask */
.sk-mask {
  position: fixed;
  background-color: rgb(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: none;
}

.sk-overflow {
  overflow: hidden !important;
  width: 100%;
}

.sk-display-none {
  display: none !important;
}

.sk-display-block {
  display: block !important;
}

.sk-button{
  transition: all .8s;
  background-color: #333333;
}

.sk-button:hover{
  background-color: #1548a3;
}