* {
	scrollbar-width: thin;
	/*//设置火狐滚动条宽度*/
	scrollbar-color: #9b9b9b #ffffff;
	/*//设置火狐滚动条颜色*/
}

/*声明 WebFont*/
/*@font-face {*/
/*	font-family: 'DIN LIGHT';*/
/*	src: url('../fonts/DIN_LIGHT.TTF');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DIN MEDIUM';*/
/*	src: url('../fonts/DIN_MEDIUM.TTF');*/
/*	font-weight: normal;*/
/*}*/

/*@font-face {*/
/*	font-family: 'din-bold';*/
/*	src: url('../fonts/din-bold.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DINCond-Black';*/
/*	src: url('../fonts/DINCond-Black.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DINCond-Bold';*/
/*	src: url('../fonts/DINCond-Bold.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DINCond-Medium';*/
/*	src: url('../fonts/DINCond-Medium.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DIN-LIGHT';*/
/*	src: url('../fonts/DIN-LIGHT.OTF');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DINPro-Regular';*/
/*	src: url('../fonts/DINPro-Regular.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'DIN-Regular';*/
/*	src: url('../fonts/DIN-Regular.otf');*/
/*}*/

/*@font-face {*/
/*	font-family: 'SOURCEHANSANSCN-BOLD';*/
/*	src: url('../fonts/SourceHanSansCN-Bold.ttf');*/
/*	font-weight: normal;*/
/*}*/

/*@font-face {*/
/*	font-family: 'SOURCEHANSANSCN-HEAVY';*/
/*	src: url('../fonts/SourceHanSansCN-Regular.ttf');*/
/*	font-weight: 900;*/
/*}*/

/*@font-face {*/
/*	font-family: 'SourceHanSansCN-Medium';*/
/*	src: url('../fonts/SourceHanSansCN-Bold.ttf');*/
/*	font-weight: normal;*/
/*}*/

/*@font-face {*/
/*	font-family: 'SOURCEHANSANSCN-NORMAL';*/
/*	src: url('../fonts/SourceHanSansCN-Regular.ttf');*/
/*	font-weight: normal;*/
/*}*/

/*@font-face {*/
/*	font-family: 'SourceHanSansCN-Regular';*/
/*	src: url('../fonts/SourceHanSansCN-Regular.ttf');*/
/*	font-weight: normal;*/
/*}*/

/*@font-face {*/
/*	font-family: '车牌字体DIN1451';*/
/*	src: url('../fonts/车牌字体DIN1451.ttf');*/
/*}*/
/*@font-face {*/
/*	font-family: '思源宋体';*/
/*	src: url('../fonts/syst.woff');*/
/*}*/

body {
	font-size: 16px;
	line-height: 1.5;
	color: #666666;
	background: #ffffff;
}

/* .w1416{
	width: calc(100% - 504px);
	margin: 0px auto;
	max-width: 1416px;
	min-width: 1200px;
} */
/* 头部 */
header {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	/*border-bottom: 1px dashed #d5d5d5;*/
	position: relative;
	z-index: 9999;
	min-width: 1280px;
	background: #ffffff;
	margin: 0px auto;

}

/* LOGO */
header .logoBox {
	width: 255px;
	height: 100%;
	border-right: 1px solid #b5b5b5;

}

header .logoBox img {
	display: block;
	width: 170px;
	height: 42px;
	margin: 26px auto;
	cursor: pointer;
}

.w1416 {
	width: 1416px;
	margin: 0px auto;
	overflow: hidden;
}

.w1280 {
	width: 1280px;
	margin: 0px auto;
	overflow: hidden;
}

/* 导航 */
header nav {
	max-width: 1280px;
	width: 100%;
	margin: 0px auto;
	/* width: calc(100% - 504px);
    margin: 0px auto;
    max-width: 1416px;
    min-width: 1200px; */
}

header nav ul {
	width: 100%;
	justify-content: space-between;
	margin: 0px auto;
	font-size: 0px;
	position: relative;
	padding: 0px 0px;
}

header nav ul li {
	width: 11.11%;
	display: inline-block;
	text-align: center;
	line-height: 100px;
}

header nav ul li a {
	display: block;
	font-size: 16px;
	color: #333333;
}

header nav ul li:hover a {
	padding-bottom: 3px;
}

header nav ul li:hover span,
header nav ul li.hover a span {
	border-bottom: 2px solid #017234;
	display: inline-block;
	font-weight: bold;
	color: #333333;
}

header nav ul li a i.fa {
	margin-left: 6px;
}

/* 副栏目 */
header nav ul li {
	position: relative;
	cursor: pointer;
}

header nav ul li .subBox {
	display: none;
	position: absolute;
	left: 0px;
	background: rgba(255, 255, 255, 0.8);
	width: 120px;
	overflow: hidden;
	opacity: 0;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

@keyframes showSubBox {
	from {
		opacity: 0;
		display: none;
	}

	to {
		opacity: 1;
		display: block;
	}
}

header nav ul li:hover .subBox {
	animation: showSubBox .5s ease-in forwards;
	display: block;
}

header nav ul li .subBox ul {
	width: calc(100% - 80px);
	height: calc(75px - 35px);
	font-size: 0px;
	line-height: 0px;
	text-align: left;
	padding: 18px 40px;
	border-bottom: #c6c6c6 2px solid;
}

header nav ul li .subBox ul li {
	width: auto;
	height: 40px;
	margin: 0px 15px;
	font-size: 16px;
	line-height: 40px;
}

header nav ul li .subBox ul li a {
	display: inline-block;
	color: #333333;
}

header nav ul li .subBox ul li a.hover,
header nav ul li .subBox ul li a:hover {
	border-bottom: 2px solid #333333;
	color: #333333;
	font-weight: bold;
}

/* cont 内容 */
header nav ul li .subBox .tabCont {
	display: block;
	width: 120px;
}

header nav ul li .subBox .tabCont div {
	display: flex;
	flex-wrap: nowrap;
}

header nav ul li .subBox .tabCont div.hide {
	display: none;
}

header nav ul li .subBox .tabCont div.show {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

header nav ul li .subBox .tabCont ol {
	text-align: center;
}

header nav ul li .subBox .tabCont ol li {
	line-height: 40px;
	width: auto;
	text-align: center;
	font-size: 10px;
	color: #cdcdcd;
	display: block;
}

header nav ul li .subBox .tabCont ol li a {
	display: inline-block;
	margin-left: 3px;
	color: #333333;
}

header nav ul li .subBox .tabCont ol li a:hover {
	color: #017234;
	font-weight: bold;
}


/* 电话 */
header .telBox {
	width: 255px;
	height: 100%;
	border-left: 1px solid #b5b5b5;
	font-size: 13px;
}

header .telBox ul {
	display: flex;
	justify-content: center;
	height: 100%;
}

header .telBox ul li {
	text-align: center;
	line-height: 100px;
	cursor: pointer;
}

header .telBox ul li img {
	display: block;
	margin: 38px auto;
	width: 27px;
	height: 27px;
}

header .telBox ul li:first-child {
	width: 106px;
	/*border-right: 1px solid #cfcfcf;*/
}

header .telBox ul li:nth-child(2) {
	/*border-right: 1px solid #afafaf;*/
	width: 68px;
}

header .telBox ul li:nth-child(3) {
	/*border-right: 1px solid #afafaf;*/
	width: 72px;
}

/* lay弹出窗关闭按钮置顶 */
.layui-layer-setwin {
	z-index: 999;
}

/* 尾部 */

/* 尾部导航 */
#footerMenu {}

#footerMenu ul {
	display: flex;
	justify-content: center;
}

#footerMenu ul li {
	width: 178px;
	height: 268px;
	background: #e5e5e5;
	margin-right: 16px;
	border-bottom: 10px solid #fff;
}

#footerMenu ul li:hover {
	border-color: #267737;
}

#footerMenu ul li:last-child {
	margin-right: 0px;
}

#footerMenu ul li a {
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

#footerMenu ul li i {
	display: block;
	width: 80px;
	height: 80px;
	margin: 60px auto 0px auto;
}

#footerMenu ul li h2 {
	font-size: 20px;
	text-align: center;
	font-family: "SourceHanSansCN-Medium";
	color: #727171;
	line-height: 100%;
	font-weight: bold;
}

#footerMenu ul li p {
	margin-top: 10px;
	color: #727171;
	font-size: 12px;
	font-family: "DIN-LIGHT";
	text-align: center;
	line-height: 100%;
}

/* 尾部 */
#footer {
	background: #f9f9f9;
}

#footer .cont {
	display: flex;
	justify-content: space-between;
}

#footer .cont dl {
	width: 400px;
}

#footer .cont dl dt {
	font-size: 25px;
	color: #808080;
	font-family: "SourceHanSansCN-Medium";
	margin-bottom: 16px;
	font-weight: bold;
}

#footer .cont dl dd{
	font-size: 19px;
	color: #808080;
	line-height: 40px;
}

#footer .cont dl dd a {
	font-size: 19px;
	color: #808080;
	line-height: 40px;
	cursor: pointer;
}

#footer .cont dl dd a:hover {
	color: #267737;
}

#footer .cont dl.contact dt,
#footer .cont dl.contact dd {
	text-align: right;
}

#footer .cont .logBox {
	padding-top: 65px;
}

#copyright {
	color: #555555;
	font-size: 14px;
	text-align: center;
	line-height: 100%;
	padding: 30px 0px 28px 0px;
}

/* 右侧浮动 */
/* 置顶 */
#rightTop {
	position: fixed;
	right: 0px;
	bottom: 10%;
	width: 60px;
	background: #808080;
	z-index: 999;
	border-radius: 10px 0px 0px 10px;
	overflow: hidden;
	display: none;
}

#rightTop ul li {
	height: 50px;
	width: 100%;
	overflow: hidden;
	cursor: pointer;
	font-size: 0px;
	line-height: 0px;
	display: flex;
	justify-content: space-between;
	padding: 0px;
	position: relative;
}

#rightTop ul li.hover {
	background: #267737;
}

#rightTop ul li i {
	width: 40px;
	height: 50px;
	display: block;
	position: absolute;
	left: 10px;
	top: 0px;
}

#rightTop ul li i.icon01 {
	background: url(/w_imgs/icon_right_01.png) no-repeat left center;
}

/*#rightTop ul li:hover i.icon01 {*/
/*	background: url(../img/icon_right_01_h.png) no-repeat left center;*/
/*}*/

/* swiper 点自定 */

.diySwiperPagination .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
	display: inline-block;
	border-radius: 5px;
	background: #fff;
	opacity: 1;
}

.diySwiperPagination .swiper-pagination-bullet-active {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
	display: inline-block;
	border-radius: 5px;
	background: #fff;
	opacity: 1;
}

.diySwiperPagination>.swiper-pagination-bullets {
	bottom: 15px;
}

.bj {
	text-align: center;
}

/* banner 效果开始 */
#banner {
	width: 100%;
	max-width: 1920px;
	margin: 0px auto;
}

#banner .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
	display: inline-block;
	border-radius: 5px;
	background: #fff;
	opacity: 1;
}

#banner .swiper-pagination-bullet-active {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
	display: inline-block;
	border-radius: 5px;
	background: #fff;
	opacity: 1;
}

#banner .swiper-button-next,
#banner .swiper-button-prev {
	background: rgba(207, 207, 207, .8);
	padding: 20px 10px;
	color: #9b9b9b;
	top: calc(50% - 40px);
}

#banner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 0px;
}

#banner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 0px;
}

#banner .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 45px;
}

#banner .swiper-slide img {
	/*border-bottom: 12px solid #267737;*/
	width: 100%;
	height: auto;
}

/* banner 效果结束 */

/* 公共小标题 */
.minTitleBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	border-bottom: 2px solid #a8a8a8;
	height: 51px;
	margin-bottom: 20px;
}

.minTitleBox h3 {
	font-size: 20px;
	color: #9b9b9b;
	line-height: 50px;
	height: 50px;
}

.minTitleBox h3 strong {
	color: #333333;
	display: inline-block;
	border-bottom: 3px solid #333333;
	height: 49px;
	font-weight: bold;
}

.minTitleBox a {
	font-size: 14px;
	color: #939393;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 60px;
	height: 50px;
	overflow: hidden;
	cursor: pointer;
}

.minTitleBox a:hover {
	color: #267737;
}

/*公共小标题2*/
.minTitle2Box h2 strong,
.minTitle2Box h2 span {
	line-height: 100%;
	display: inline-block;
	font-weight: normal;
	font-size: 30px;
	color: #9b9b9b;
}

.minTitle2Box h2 strong {
	color: #333333;
	font-weight: bold;
	font-size: 28px;
}

.minTitle2Box h2 p{
	font-size: 22px;
	color: #999999;
	margin-top: 20px;
}

.minTitle2Box h2 span {
	padding-left: 15px;
	margin-left: 15px;
	border-left: 2px solid #737373;
	text-transform: uppercase;
	font-size: 24px;
	color: #999999;
}

/* 小标题效果2 */
.subTitle2 {
	position: relative;
	/*height: 32px;*/
}

.subTitle2 h2 strong,
.subTitle2 h2 span {
	line-height: 100%;
}

.subTitle2 h2 strong {
	display: inline-block;
	font-weight: normal;
	font-size: 30px;
	color: #333;
	font-weight: bold;
}

.subTitle2 h2 span {
	display: inline-block;
	height: 32px;
	font-size: 32px;
	font-family: "DINCond-Bold";
	text-transform: uppercase;
	color: #9b9b9b;
	padding-left: 10px;
	margin-left: 18px;
	border-left: 2px solid #737373;
}

.subTitle2 .moreBtn {
	position: absolute;
	right: 0px;
	top: 2px;
	background: #e5e5e5;
	line-height: 25px;
	height: 25px;
	display: block;
	padding: 0px 17px;
	color: #333333;
	font-size: 15px;
}
/* 小标题效果3 */
.subTitle3 {
	position: relative;
	margin-left: 30px;
}

.subTitle3 h2 strong,
.subTitle3 h2 span {
	line-height: 100%;
}

.subTitle3 h2 strong {
	display: inline-block;
	font-weight: normal;
	font-size: 30px;
	color: #333;
	font-weight: bold;
}

.subTitle3 h2 span {
	display: inline-block;
	height: 32px;
	font-size: 32px;
	text-transform: uppercase;
	color: #9b9b9b;
	padding-left: 10px;
	margin-left: 18px;
	border-left: 2px solid #737373;
}

.subTitle3 .moreBtn {
	position: absolute;
	right: 0px;
	top: 2px;
	background: #e5e5e5;
	line-height: 25px;
	height: 25px;
	display: block;
	padding: 0px 17px;
	color: #333333;
	font-size: 15px;
}

/* 广告 */
.ad {
	width: 100%;
	height: 214px;
	overflow: hidden;
	text-align: center;
	line-height: 0px;
	font-size: 0px;
	position: relative;
}

.ad a {
	display: block;
	z-index: 1;
	width: calc(100% - 140px);
	position: absolute;
	left: 70px;
	right: 70px;
	bottom: 0px;
}

.ad img,
.ad2 img {
	display: block;
	margin: 0px auto;
	transition: all 500ms;
	/*width: 100%;*/
	cursor: pointer;
}

/*.ad:hover img,*/
/*.ad2:hover img {*/
/*	transform: scale(1.1);*/
/*}*/

.ad .bj {
	width: calc(100% - 70px);
	background: #9b9b9b;
	height: 214px;
	position: absolute;
	left: 70px;
}

/* 广告2样式 */
.ad2 {
	overflow: hidden;
	text-align: center;
	line-height: 0px;
	font-size: 0px;
}

.ad2 a {
	display: block;
	overflow: hidden;
}

/* 滚动条样式 */
.diyScrollbar::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.diyScrollbar::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 2px;
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
	background: #9b9b9b;
}

.diyScrollbar::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
	border-radius: 2px;
	background: #fff;
}

/* 优秀作品 */
#excellentWorks .minTitleBox {
	height: 56px;
}

#excellentWorks .minTitleBox h3 {
	font-size: 0px;
	line-height: 0px;
	height: 55px;
}

#excellentWorks .minTitleBox h3 strong {
	font-size: 30px;
	line-height: 55px;
	height: 55px;
	margin-right: 15px;
	overflow: hidden;
	font-weight: normal;
}

#excellentWorks .minTitleBox h3 a,
#excellentWorks .minTitleBox h3 span {
	font-size: 20px;
	color: #9b9b9b;
	line-height: 55px;
	display: inline-block;
	overflow: hidden;
	height: 55px;
}

#excellentWorks .minTitleBox h3 span {
	margin: 0px 10px;
}

#excellentWorks .minTitleBox h3 a.hover {
	color: #333333;
	font-family: "SourceHanSansCN-Medium";
}

#excellentWorks .subTitle {
	color: #9b9b9b;
	line-height: 100%;
	margin-bottom: 15px;
}

#excellentWorks ul {
	display: flex;
	justify-content: flex-start;
}

#excellentWorks ul li {
	position: relative;
	width: 235px;
	height: 373px;
	margin-right: 26px;
	overflow: hidden;
	cursor: pointer;
}

#excellentWorks ul li a {
	display: block;
}

#excellentWorks ul li:last-child {
	margin-right: 0px;
}

#excellentWorks ul li .imgBox {
	position: relative;
	z-index: 0;
}

#excellentWorks ul li .imgBox img {
	transition: all 500ms;
	width: 100%;
	height: 335px;
	display: block;
}
#excellentWorks ul li:hover .imgBox img{
	transform: scale(1.1);
}

#excellentWorks ul li .imgBox p {
	height: 39px;
	background: #CFCFCF;
	line-height: 39px;
	text-align: center;
	font-size: 16px;
	color: #333333;
}

#excellentWorks ul li .txtBox {
	overflow: hidden;
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, .8);
	transition: all 500ms;
}

#excellentWorks ul li .txtBox i.icon {
	width: 80px;
	height: 80px;
	display: block;
	margin: calc(100% - 105px) auto 26px auto;
}

#excellentWorks ul li .txtBox i.icon img {
	width: 100%;
	height: 100%;
	display: block;
}

#excellentWorks ul li .txtBox h6,
#excellentWorks ul li .txtBox p {
	color: #fff;
	font-size: 17px;
	text-align: center;
}

#excellentWorks ul li .txtBox p {
	font-size: 14px;
}

#excellentWorks ul li:hover .txtBox {
	height: 100%;
}

#excellentWorks .bj {
	text-align: center;
}

/* 通用分页 */
.pageBox {
	/* padding-top: 30px; */
}

.pageBox ol {
	display: flex;
	justify-content: center;
}

.pageBox ol li {
	line-height: 20px;
	/* height: 20px; */
	margin: 0px 5px;
}

.pageBox ol li a,
.pageBox ol li span {
	display: block;
	padding: 0px 10px;
	border: 1px solid #808080;
	color: #333333;
	font-size: 14px;
}

.pageBox ol li.int {}

.pageBox ol li.int span {
	display: inline-block;
	background: #333333;
	color: #267737;
	padding: 0px 10px;
	border: 1px solid #808080;
	font-size: 14px;
	line-height: 20px;
}

.pageBox ol li.int input {
	width: 50px;
	height: 20px;
	border: 1px solid #808080;
	margin-right: 3px;
	margin-left: 3px;
}

.pageBox ol li:hover a,
.pageBox ol li.hover a,
.pageBox ol li.active span {
	background: #333333;
	color: #267737;
}

/*.pageBox ol li.page_disabled span{*/
/*	cursor: not-allowed;*/
/*	background:#dddddd;*/
/*	!*pointer-events:none;*!*/
/*}*/

/* 当前位置 */
#position {
	padding-top: 2px;
	line-height: 52px;
	height: 52px;
	border-bottom: 2px solid #B7B7B7;
	overflow: initial;
}

#position a {
	font-size: 20px;
	color: #9b9b9b;
	cursor: pointer;
}

#position strong {
	font-size: 20px;
	font-weight: normal;
	font-family: "SourceHanSansCN-Medium";
	display: inline-block;
	border-bottom: 3px solid #333333;
	color: #333333;
	height: calc(100% - 2px);
}


/*头部*/
.head_top {
	width: 100%;
	height: 38px;
	line-height: 38px;
	background: #e5e5e5;
	font-size: 12px;
	position: relative;
	z-index: 10005;
}

.head_top .w1280,
.head_top .clearfix {
	overflow: inherit;
}

.head_top .topz span {
	background: url(../img/position01_icon.png) no-repeat 10px center #e5e5e5;
	display: inline-block;
	padding: 0px 10px;
	text-indent: 15px;
	height: 38px;
}

.topy ul li {
	float: left;
	margin-left: 10px;
	font-size: 12px;
}

.topy ul li a {
	font-size: 12px;
}

.topy ul li span {
	/*color: #0071ab;*/
	font-weight: bold;
	font-size: 12px;
}

.topy .layui-nav {
	padding: 0;
	background: none;
	color: #808080;
	display: flex;
}

.topy>.layui-nav>.layui-nav-item {
	position: relative;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	line-height: 38px;
}


.topy>.layui-nav>.layui-nav-item .layui-nav-child {
	top: 38px;
}

.topy>.layui-nav>.layui-nav-item .layui-nav-more {
	display: none;
}


.topy .layui-nav .layui-nav-item a {
	color: #0071bc;
	padding: 0 10px;
}


.topy .layui-nav .layui-this::after,
.layui-nav-bar,
.layui-nav-tree .layui-nav-itemed::after {
	background: none;
}

.topy .layui-nav .layui-nav-item:hover {
	background: #ffffff;
}

.select_city_box {
	position: absolute;
	left: 50%;
	top: 38px;
	margin-left: -600px;
	background: #fff;
	border: 1px solid #f3f3f3;
	background-color: #fff;
	z-index: 2;
	border-top: 0px;
	padding-top: 15px;
	padding-bottom: 35px;
	display: none;
	z-index: 10000;
}

.select_city_box .city_box {
	width: 1078px;
	margin: 15px auto 0px auto;
}

.select_city_box .all_city {
	margin-top: 0px;
}

.select_city_box .city_box h2 {
	color: #4d4d4d;
	font-size: 16px;
	font-weight: bold;
	line-height: 300%;
	border-bottom: 1px solid #ccc;
	text-indent: 35px;
}

.select_city_box .position_city h2 {
	color: #333;
	background: url(../img/position02_icon.png) no-repeat 5px center;
}

.select_city_box .position_city h2 a {
	color: #4d4d4d;
	font-size: 16px;
	font-weight: bold;
}

.select_city_box .position_city h2 a:hover {
	color: red;
}

.select_city_box .hot_city h2 {
	background: url(../img/hot_icon.png) no-repeat 5px center;
}

.select_city_box .all_city h2 {
	background: url(../img/city_icon.png) no-repeat 5px center;
}

.select_city_box .city_box ul {
	overflow: hidden;
	padding: 20px 0px 0px 0px;

}

.select_city_box .city_box ul li {
	float: left;
	width: 70px;
	margin-right: 42px;
	margin-bottom: 15px;
	text-align: center;
}

.select_city_box .city_box ul li a {
	color: #494949;
}

.select_city_box .city_box ul li a:hover {
	color: red;
}

.select_city_box .city_box ul li:nth-child(10n) {
	margin-right: 0px;
}

.fabulousActBtn {
	background: url(../img/icon_fabulous_02.png) no-repeat left center;
	text-indent: 25px;
}

/*.fabulousActBtnHover {*/
/*	background: url(../img/icon_fabulous_02_h.png) no-repeat left center;*/
/*}*/


/* 分页器设置 */
.layui-laypage span {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding: 10px 20px;
	height: 28px;
	line-height: 28px;
	margin: 0 10px 5px 0;
	background-color: #F1F1F1;
	color: #333;
	font-size: 16px;
}

.layui-laypage a {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding: 10px 20px;
	height: 28px;
	line-height: 28px;
	margin: 0 10px 5px 0;
	background-color: #F1F1F1;
	color: #333;
	font-size: 16px;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
	position: absolute;
	left: -1px;
	top: -1px;
	padding: 1px;
	width: 100%;
	height: 100%;
	background-color: #017234;
}
.recordCont{
    display: flex;
    flex-direction: column;
    background: #017234;
    padding-bottom: 20px;
    padding-left: 5px;
}
.recordCont .recordWorks{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.recordCont .recordWorksList{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.recordCont .recordWorksList img{
    width: 130px;
    height: 220px;
    cursor: pointer;
    margin: 10px 5px;
}
