@charset "gb2312";
@import url(style_fonts.css); /* 引用WEB字体样式 */
/*------------------头部控件------------------*/
.ctrl-head {
	width: 100%;
	height: 90px;
}
.head-holder {
	width: 1180px;
	height: 90px;
	margin: auto;
}
.head-logo {
	float: left;
	width: 350px;
	height: 90px;
	background-image: url(../img/logo.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.head-nav {
	float: left;
	width: 770px;
	height: 90px;
}
.head-qr {
	position: relative;
	float: left;
	width: 60px;
	height: 90px;
	background-image: url(../img/qr-icon.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.head-qr span {
	position: absolute;
	z-index: 9999;
	right: 0;
	bottom: -160px;
	display: none;
	width: 128px;
	height: 160px;
}
.head-qr:hover span {
	display: block;
}
/*------------------底部控件------------------*/
.ctrl-footer {
	width: 100%;
	background-color: #2c1600;
}
.ctrl-footer-icon {
	width: 100%;
	background-color: #fffee0;
	border-bottom: 5px solid #ffc555;
}
.ctrl-footer-icon li {
	width: 1180px;
	height: 100px;
	margin: auto;
	background-image: url(../img/footer-icon.png);
	background-repeat: no-repeat;
	background-position: center;
}
.ctrl-footer-main {
	width: 1180px;
	padding: 40px 0px;
	margin: auto;
}
.footer-nav {
	float: left;
	width: 600px;
}
.footer-nav-list {
	float: left;
	width: 100px;
}
.footer-nav-list span {
	display: block;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	color: #ffc555;
}
.footer-nav-list a {
	display: block;
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	color: #6a3906;
}
.footer-nav-list a:hover {
	color: #FFF;
}
.footer-contact {
	float: left;
	width: 420px;
}
.footer-contact .tel {
	width: 100%;
	height: 30px;
	font-size: 14px;
	line-height: 30px;
	color: #ffc555;
}
.footer-contact .text {
	width: 100%;
	font-size: 12px;
	line-height: 24px;
	color: #6a3906;
}
.footer-qr {
	float: left;
	width: 160px;
	height: 160px;
	background-image: url(../img/QRcode.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.ctrl-footer-copy {
	width: 100%;
	height: 60px;
	background-color: #250b00;
}
.ctrl-footer-copy li {
	width: 1180px;
	padding: 20px 0px;
	margin: auto;
	line-height: 20px;
	text-align: center;
	color: #6a3906;
	background-color: #250b00;
}
/*------------------分页控件------------------*/
.ctrl_paging {
	width:100%;
	height: 76px;
	margin: auto;
	padding: 20px 0px;
	font-size: 12px;
	color: #C0C0C0;
	text-align: center;
	clear: both;
}
.ctrl_paging #pageCount {
	display: block;
	display:inline-block;  
    _display:inline;  
    *display:inline;  
    zoom:1; 
	height: 36px;
	line-height: 26px;
	margin: auto 2px;
	padding: 5px;
}
.ctrl_paging a {
	display: block;
	display:inline-block;  
    _display:inline;  
    *display:inline;  
    zoom:1; 
	min-width: 36px;
	height: 36px;
	margin: auto 2px;
	padding: 5px 10px;
	border: 1px solid #F0F0F0;
	font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
	font-size: 12px;
	color: #C0C0C0;
	text-align: center;
	line-height: 24px;
}
.ctrl_paging a:hover {
	border: 1px solid #DF0000;
	color: #ff0000;
}
.ctrl_paging #Current {
	display: block;
	display:inline-block;  
    _display:inline;  
    *display:inline;  
    zoom:1; 
	min-width: 36px;
	height: 36px;
	padding: 5px;
	margin: auto 2px;
	border: 1px solid #DF0000;
	background-color: #DF0000;
	font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	line-height: 24px;
}
/*------------------图片缩放------------------*/
.imgEffect .img i {
	transition: all 0.6s;
	-moz-transition: all 0.6s; /* Firefox 4 */
	-webkit-transition: all 0.6s; /* Safari 和 Chrome */
	-o-transition: all 0.6s; /* Opera */
}
.imgEffect:hover .img i {
	transform: scale(1.3);
	-ms-transform: scale(1.3); 	/* IE 9 */
	-moz-transform: scale(1.3); 	/* Firefox */
	-webkit-transform: scale(1.3); /* Safari 和 Chrome */
	-o-transform: scale(1.3); 	/* Opera */
}
/*------------------透明动画------------------*/
@keyframes fade-out {  
    0% {opacity: 0.5;}/*初始状态 透明度为0.5*/  
    50% {opacity: 0.7;}/*过渡状态 透明度为0.7*/  
    100% {opacity: 1;}/*结束状态 透明度为1*/  
}  
@-webkit-keyframes fade-out {/*针对webkit内核*/  
    0% {opacity: 0.5;}
    50% {opacity: 0.7;}  
    100% {opacity: 1;}  
}  
.imgFade:hover {    
    animation: fade-out;/*动画名称*/  
    animation-duration: 0.6s;/*动画持续时间*/  
    -webkit-animation:fade-out 0.6s;/*针对webkit内核*/ 
	opacity: 1 !important;
}