﻿body{
	margin:0px;
	padding:0px;
	text-align:center;
	font-family:'微软雅黑 Microsoft YaHei';
}

.inline-block{
	display:inline-block;
}
.flex-vertical{
	flex-direction:column;
}
.flex-between{
	display:flex;
	justify-content:space-between;
}
.flex-around{
	display:flex;
	justify-content:space-around;
}
.flex-center{
	display:flex;
	justify-content:center;
}
.flex-start{
	display:flex;
	justify-content:flex-start;
}
.flex-end{
	display:flex;
	justify-content:flex-end;
}

.flex-v-center{
	display:flex;
	flex-direction:column;
	justify-content:space-around;
}
.flex-v-start{
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
}
.flex-v-end{
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
}

.flex-noshrink{
	flex-shrink:0
}
.flex-nogrow{
	flex-grow:0;
}
.flex-shrink{
	flex-shrink:1
}
.flex-grow{
	flex-grow:1;
}
.flex-wrap{
	flex-wrap:wrap;
}

.bg-img{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}



.bg-red{
	background-color:red;
}
.bg-green{
	background-color:red
}
.bg-yellow{
	background-color:yellow
}
.bg-blue{
	background-color:blue
}
.bg-pink{
	background-color:pink
}


/* 页码区域样式开始 */
.page-area{
	font-size:14px;
}
.page-area div{
	display:inline-block;
	min-width:20px;
	padding:5px 8px;
	cursor:pointer;
	color:#a0a0a0;
	border:solid 1px #cccccc;
}
.page-area div.eclipse{
	cursor:initial;
	background-color:transparent!important;
}
.page-area div:hover{
	color:#555555;
	background-color:rgb(200,200,200);
}
/* 页码区域样式结束 */
