.container{
	background: white;
}
.navbar{
	width: 100%;
	height: 3rem;
	background: #FF6093;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.navbar>ul{
	width: 100%;
	height: 100%;
}
.navbar>ul>li{
	width: 10%;
	height: 100%;
	display: flex;
	align-items: center;     /* 垂直居中 */
	justify-content: center; /* 水平居中 */
	float: left;
	color: white;
}
.navbar>ul>li:nth-child(2){
	width: 80%;
	font-size: 16px;
}
.navbar>ul>li:nth-child(1)>a>img{
	width: 1.5rem;
}
.navbar>ul>li:nth-child(3)>a{
	color: white;
	font-size: 14px;
	text-decoration: none;
}
.newslst{
	width: 100%;
	height: auto;
	margin: 3rem auto 0.5rem auto;
	display: inline-block;
	box-shadow: -1px -1px 10px 1px #f2f2f2,
				1px 1px 10px 1px #f2f2f2;
}
.newslst>div{
	width: 100%;
	height: 3rem;
	box-sizing: border-box;
	padding: 0.5rem;
	font-size: 12px;
	border-bottom: 1px solid #EEEEEE;
	display: flex;
	align-items: center;     /* 垂直居中 */
}
.list>ul>li:nth-child(10){
	border: none;
}
.newslst>div>a{
	width: calc(100% - 4.2rem);
	float: left;
}
.newslst>div>span{
	width: 4.2rem;
	float: right;
}

.pagination{
	width: 15rem;
	height: 2rem;
	margin: 0 auto;
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center;     /* 垂直居中 */
	margin-bottom: 8rem;
	font-size: 12px;
}
.pagination>li{
	float: left;
    border-radius: 3px;
    border: 1px solid #dfdfdf;
    margin: 0 1px;
}
.pagination .disabled {
    color: #aaa;
}
.pagination span {
    border-radius: 3px;
    display: inline-block;
    padding: 2px 5px;
}
.pagination .active {
    background: #09F;
    color: #FFF;
    border-color: #09F;
    margin: 0 2px;
}
.pagination a {
    border-radius: 3px;
    display: inline-block;
    padding: 2px 5px;
}


.detail{
	margin: 3rem auto 0.5rem auto;
}
.detail>h6{
	font-size: 20px;
	text-align: center;
}
.detail>h5{
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	color: #666;
	margin: 0.5rem;
}
.detail p{
	font-size: 14px;
	color: #323;
}