/* 导航 */
.list-menu{
	background: #fff;
	border-radius: 0.1rem 0 0 0.1rem;
	margin: 0px 0px 0px auto;
	width: calc(100% - 0.1rem);
	overflow: hidden;
}
.list-menu .swiper-slide{
	width: 1.78rem;
	height: .6rem;
	border: .02rem solid #ededed;
	border-left: 0px;
}
.list-menu .swiper-slide:first-child{
	border: .02rem solid #ededed;
	border-radius: .1rem 0 0 .1rem;
}
.list-menu .swiper-slide a{
	display: block;
	height: 100%;
	line-height: .6rem;
	text-align: center;
	color: #909090;
	font-size: .25rem;
	font-family: "SourceHanSansCN-Medium";
}

.list-menu .swiper-slide.hover a{
	background: #ffd200;
	color: #333;
}

/* 列表 */
.listBox{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: .4rem;
	padding-bottom: .4rem;
	background: #ffffff;
	border-radius: .1rem;
	margin-bottom: .5rem;
}

.listBox .item{
	width: calc(50% - .5rem);
	background: #E6E6E6;
	border: 1px solid #f2f2f2;
	/*border-radius: .1rem;*/
	overflow: hidden;
	margin-bottom: .38rem;
	margin-left: .2rem;
	margin-right: .2rem;
}

.listBox .item:nth-last-of-type(-n+2){
	margin-bottom: 0px;
}

.listBox .item .imgBox{
	position: relative;
	width: 100%;
	height: 1.97rem;
	overflow: hidden;
}
.listBox .item .title, .listBox .item .actBox, .listBox .item .imgBox .timeBox{
	width: calc(100% - 0.4rem);
	padding: 0px 0.2rem;
}
.listBox .item .imgBox .timeBox{
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: .05rem;
	left: 0px;
	z-index: 1;
	height: .35rem;
	line-height: .35rem;
}
.listBox .item .imgBox .timeBox span{
	color: #ffffff;
	font-size: .25rem;
	font-family: "DINPro-Regular";
}

.listBox .item .title{
	padding-top: .13rem;
	padding-bottom: .13rem;
	/*border-bottom: .02rem solid #dadada;*/
}

.listBox .item .title a{
	font-size: .28rem;
	color: #333;
	font-family: "SourceHanSansCN-Medium";
	/*line-height: .32rem;*/
	padding-top: .1rem;
	padding-bottom: .1rem;
}

.listBox .item .title p{
	font-size: .22rem;
	color: #9B9B9B;
	font-family: "SourceHanSansCN-Medium";
}

.listBox .item .actBox{	
	height: 0.35rem;
	display: flex;
	justify-content: flex-start;
}
.listBox .item .actBox span{
	color: #9b9b9b;
	display: block;
	margin-right: .14rem;
	text-indent: .34rem;
	height: .35rem;
	line-height: .35rem;
	font-size: .18rem;
	font-family: "DINPro-Regular";
}

.listBox .item .actBox span.see{
	background: url(../../img/see_black.png) no-repeat left center;
	background-size: .3rem;
}

.listBox .item .actBox span.comment{
	background: url(../../img/comment_black.png) no-repeat left center;
	background-size: .3rem;
}

.listBox .item .actBox span.fabulous{
	background: url(../../img/fabulous_black.png) no-repeat left center;
	background-size: .3rem;
}
.listBox .item .actBox span.time{
	margin-left: auto;
}

/*头部导航*/
.m-header {
	width: 100%;
	height: 1rem;
	background-color: #fff;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.24);
	z-index: 999;
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0px;
	right: 0px;
}

.m-header .menu {
	display: inline-block;
	padding: 0 0.3rem;
	height: 100%;
	line-height: 1rem;
	position: absolute;
	left: 0;
	top: 0;
}

.m-header .menu i {
	/*font-size: 18px;*/
	color: rgba(51, 51, 51, 0.6);
	font-size: 2em;
	line-height: 1rem;
}

.m-header .menu i.open {
	display: block;
}

.m-header .menu i.close {
	display: none;
}

.m-header .menu.active i.open {
	display: none;
}

.m-header .menu.active i.close {
	display: block;
}

.m-header .logo {
	display: flex;
	align-items: center;
}

.m-header .logo img {
	width: auto;
	height: .7rem;
}

.m-header .logo span {
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	font-family: 'syhtB';
	display: none;
}

.m-header .tel {
	padding: 0 0.3rem;
	height: 100%;
	line-height: 1rem;
	position: absolute;
	right: 0;
	top: .1rem;
}

.m-header .tel .icon {
	display: inline-block;
	width: 0.3rem;
	height: 0.3rem;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
}

/* 悬浮菜单效果 */
.floatMenu_bj{
	width: 100%;
	height: 0%;
	position: fixed;
	background: rgba(0, 0, 0, .6);
	z-index: 9999;
	left: 0px;
	right: 0px;
	top: 1rem;
	transition: all 500ms;
	overflow: hidden;
}

.floatMenu_bj.floatMenu_bjShow{
	height: 100%;
}

.floatMenu_bj .floatMenu{
	width: 2.5rem;
	position: relative;
}

.floatMenu .item{
	line-height: .8rem;
	height: .8rem;
}