@charset "utf-8";
/*
	CSS Document 
*/
@import url('../fonts/iconfont.css');

@font-face {
  font-family: "Josefin Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/JosefinSans-Light-5.ttf") format("truetype");
}

@font-face {
  font-family: "Josefin Sans";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/JosefinSans-Regular-7.ttf") format("truetype");
}

@font-face {
  font-family: "Josefin Sans";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/JosefinSans-SemiBold-8.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSans-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype"),
}


* {
	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: 'Open Sans', sans-serif;
	font-size: 14px;
  font-weight: 600;
	line-height: 1.428571429;
	color: #777777;
}
.iconfont{
  font-weight:normal;
}
a {
	color: #777777;
}

a:hover,
a:focus {
	color: #98c397;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}

a:focus {
	outline: thin dotted #777;
	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;
}

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;
}

/* 向左浮动 */
.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: 86%;
	margin: auto;
}
.row{
  padding: 0 15px;
}


/* 分页 */
.pagex {
  clear: both;
  height: auto;
  margin: 20px 0;
  overflow: hidden;
}

.mbbody_body .pagex {
  margin-left: 20px;
}

.pagex {
  text-align: center;
}

.pagex a {
  display: inline-block;
  border: 1px solid #e5e5e5;
  padding: 5px 12px;
  margin: 5px 3px;
  background: #fff;
}

.pagex a:hover,
.pagex a.page-num-current {
  border: 1px solid #98c397;
  background: #98c397;
  color: #fff;
}
.pagex a.page-num-current {
  pointer-events: none;
}

.pagex span {
  display: inline-block;
  border: 1px solid #e5e5e5;
  padding: 5px 12px;
  margin: 0 3px;
  background: #fff;
}