/* 移动端 */
@media (max-width : 767px) {
	/* 列表banner */
	.banBox{
		min-width: 370px;
		height: 80px;
	}
	
	/* 列表内容 */
	.listBox {
		min-width: 370px;
	}
	
	.listBox>.listCont {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	
	/* 左侧边栏 */
	.listBox>.listCont>.contLeft {
		width: calc(100% - 40px);
		min-height: 380px;
		background-size: cover;
	}
	
	/* 右侧边栏 */
	.listBox>.listCont>.contRight {
		width: 100%;
		min-height: 400px;
		box-sizing: border-box;
		padding: 0px 15px 15px 0px;
		/* background-color: rgba(0, 255, 0, .1); */
		/* border: 1px #e5e5e5 solid; */
		box-shadow: 0px 0px 5px #e5e5e5;
		border-radius: 8px 8px 0 0;
	}
	
	/* 文章详情 */
	.articleDetail{
		padding: 10px 5px 15px 15px;
		box-shadow: 0px 0px 5px #e5e5e5;
		margin-bottom: 15px;
	}

}