@charset "utf-8";
/*---------------- html ----------------*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	font-family: "sy-r";
	font-weight: normal;
    cursor: none;
}

*:focus{
	outline: none;
}

img{
	display: inline-block;
	margin: 0;
	border: 0;
}

b, strong{
	font-weight: bold;
}

video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

input{
    -webkit-appearance: none;
}

input:focus, textarea:focus{
    border: 0;
}

::-webkit-input-placeholder {
    color: #dcdddd;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #dcdddd;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #dcdddd;
    text-overflow: ellipsis;
    opacity: 1;
}

html,body{
	width:100%;
	height:auto;
	min-height: 100%;
	overflow:auto;
	background: #ffffff;
    color: #595757;
    font-size: 16px;
}

a{
    color: #595757;
    cursor: pointer;
}
a * {
    cursor: pointer;
}

a:hover, a:active, a:focus{
    color: #f5d925;
    color: #004987;
}

.clear {
	clear: both;
}

/*---------------- layout ----------------*/
#layout{
	width: 100%;
	height: auto;
	position: relative;
}

.lg{
	display: block;
}

.md{
	display: block;
}

.xs{
	display: none;
}

.container, .content, .main{
	height: auto;
	margin: 0 auto;
	position: relative;
}

.max{
	width: 100%;
	height: auto;
	position: relative;
}

.max-pic{
	width: 100%;
	height: auto;
	position: relative;
	overflow: visible;
}

.max-pic img{
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.box{
	width: 100%;
	height: auto;
	float: left;
	position: relative;
}

.vb{
	overflow: visible;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.clear{
	clear: both;
}

.hide{
	display: none;
}

/*---------------- bg ----------------*/
.bg-eee{
	background: #eeeeee;
}

/*---------------- public ----------------*/
@keyframes scaleIn{
	0%{
		opacity: 0;
		transform: scale(1.6, 1.6);
		-webkit-transform: scale(1.6, 1.6);
		-moz-transform: scale(1.6, 1.6);
		-ms-transform: scale(1.6, 1.6);
		-o-transform: scale(1.6, 1.6);
}
	100%{
		opacity: 1;
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-o-transform: scale(1, 1);
	}
}

@-webkit-keyframes scaleIn{
	0%{
		opacity: 0;
		transform: scale(1.6, 1.6);
		-webkit-transform: scale(1.6, 1.6);
		-moz-transform: scale(1.6, 1.6);
		-ms-transform: scale(1.6, 1.6);
		-o-transform: scale(1.6, 1.6);
}
	100%{
		opacity: 1;
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-o-transform: scale(1, 1);
	}
}

.scaleIn{
	animation-name: scaleIn;
	-webkit-animation-name: scaleIn;
}

.thumb {
	width: 100%;
	position: relative;
}

.thumb img {
	width: 100%;
	display: block;
}

/* link line */
.link-line{
	padding-bottom: 5px;
	position: relative;
	overflow: visible;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}

.link-line::before{
	content: " ";
	width: 0px;
	height: 2px;
	display: block;
	background: #f5d925;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate3d(-50%, 0, 0);
	-webkit-transform: translate3d(-50%, 0, 0);
	-ms-transform: translate3d(-50%, 0, 0);
	-moz-transform: translate3d(-50%, 0, 0);
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}

.link-line:hover, .link-line.on{
	color: #004987;
}

.link-line:hover::before, .link-line.on::before{
	width: 100%;
	width: 30px;
}

.line_trans {
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}

/* btn */
.btn{
	width: 240px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0 auto;
	background: #927e52;
	border: 2px solid #927e52;
	color: #ffffff;
	font-size: 24px;
	font-weight: lighter;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.btn:hover{
	background: #ffffff;
	color: #927e52;
}

.btn-more {
	width: 156px;
	height: 42px;
	display: block;
	margin: 0 auto;
	border: 1px solid #a7a7a8;
	border-radius: 5px;
	font-size: 21px;
	line-height: 40px;
	text-align: center;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}

.btn-shadow {
	width: auto;
	height: 34px;
	display: inline-block;
	padding: 0 28px;
	margin: 10px 0;
	border-radius: 18px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
	font-size: 14px;
	line-height: 34px;
	text-align: center;
}

.btn-tag {
	width: auto;
	height: 42px;
	float: left;
	padding: 0 22px;
	background: #f4ce2e;
	border-radius: 5px;
	color: #004987;
	font-size: 18px;
	line-height: 42px;
}

/* ih */
.ih, .ih a, .ih div, .ih img, .ih p, .ih span, .ih h1, .ih h2, .ih h3, .ih h4, .ih h5, .ih *{
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.ih:hover{
	background: #505050;
}

.ih:hover .zoom img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.ih:hover a, .ih:hover *, .ih:hover .info *{
	color: #ffffff;
}

.ih:hover a:hover{
	color: #d80c24;
}

/* zoom */
/*
.zoom{
	width: 100%;
	height: auto;
	float: left;
}

.zoom img{
	width: 100%;
	display: block;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.zoom:hover img{
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
}
*/

.zoom{
	width: 100%;
	display: block;
	position: relative;
	cursor: pointer;
}

.zoom img{
	width: 100%;
	display: block;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.zoom:hover img{
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
}

.load-more{
	width: 140px;
	height: auto;
	display: block;
	margin: 70px auto 90px auto;
	padding: 0 0 50px 0;
	position: relative;
	color: #000000;
	font-size: 26px;
	font-weight: lighter;
	text-align: center;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.load-more::after{
	content: " ";
	width: 42px;
	height: 42px;
	display: block;
	background: url(../images/icon_loadmore.png) no-repeat 0 0;
	background-size: 100%;
	position: absolute;
	left: 49px;
	bottom: 0;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.load-more:hover::after{
	background-image: url(../images/icon_loadmore_blue.png);

}

/*---------------- animate ----------------*/