.smallnav ul{
	justify-content: space-around !important;
}
.main{
	text-align: center;
	box-sizing: border-box;
	padding: 0.5rem;
	position: relative;
	overflow: auto;
}
.main h4{
	font-size: 1.5rem;
	font-weight: bold;
	color: #0882c4;
	margin: 1rem 0;
}
.main ul li{
	overflow: hidden;
	box-sizing: border-box;
	padding:1rem 0.5rem;
	border-bottom: 1px dashed #eee;
	height: 10rem;
}
.main ul li img{
	width: 35%;
	height:7.27rem;
	float: left;
}
.main ul li .word{
	width: 63%;
	height: 100%;
	float: right;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
}
.main ul li .word h5{
	font-size: 1.2rem;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.main ul li .word h6{
	font-size: 1rem;
	line-height: 1.5rem;
	color: #858585;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.main ul li .word p{
	font-size: 1rem;
	color: #999;
	text-align: right;
}
.main ul li:active h5{
	color: #0882c4;
}
.main .page{
	display: flex;
	justify-content: space-around;
	margin: 1.5rem 0;
}
.main .page span{
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	line-height: 2.5rem;
	border: 1px solid #eee;
	font-size: 1.5rem
}
.main .page span:active{
	background: #0882c4;
	color: #fff;
}
/*当前页加上这个class*/
.main .page span.active{
	background: #0882c4;
	color: #fff;
}