@charset "utf-8";
/*
	CSS Document 
*/
@import url('../fonts/iconfont.css');
@import url('./font-awesome.min.css');

:root {
  --main: #88d400;
  --mainalt: #dff5da;
  --greener: #177500;
  --black: #000000;
  --white: #ffffff;
  --border: #eeeeee;
  --bgadv: #f6f6f6;
  --bgpro: #f9f9f9;
  --grey: #777777;
}

* {
  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: var(--white);
}

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: Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
}

.iconfont {
  font-weight: normal;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--main);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

a:focus {
  outline: thin dotted var(--black);
  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;
  *font-size: 108%;
  line-height: 100%;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

.clear {
  clear: both;
  height: 0;
}

.sk-center{ text-align: center; }

/* 向左浮动 */
.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: 1560px;
  margin: auto;
}

/* pagination */
.sk-pagination {
  margin-top: 32px;
}

.sk-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sk-pagination ul li {
  display: block;
  margin: 2px 4px;
  font-size: 0;
}

.sk-pagination li a,
.sk-pagination li span {
  position: relative;
  display: inline-block;
  height: 38px;
  width: 38px;
  line-height: 36px;
  font-size: 16px;
  color: var(--black);
  text-align: center;
  padding: 0px;
  background-color: transparent;
  border: 1px solid var(--border);
  background-color: var(--white);
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.sk-pagination li a:hover,
.sk-pagination li.active span,
.sk-pagination li.active span:hover {
  color: var(--white);
  background: var(--main);
}

.sk-pagination li.disabled a,
.sk-pagination li.disabled span {
  background-color: var(--border);
  cursor: no-drop;
}

.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: var(--black);
}

.sk-button:hover{
  background: var(--main);
}