.boardPage {
	display:flex;
	justify-content:center;
	align-items:center;
	margin-top:70px;
}

.boardPage a,
.boardPage button {
	display:flex;
	justify-content:center;
	align-items:center;
	width:40px;
	height:40px;
	font-size:15px;
	font-weight:500;
	border:1px solid #000;
	margin-right:10px;
	background-color:#fff;
	transition:all 0.5s;
}

.boardPage > a:last-child,
.boardPage > button:last-child {
	margin:0;
}

.boardPage .nonePage {
	border:1px solid #cdcdcd;
}

.boardPage .pageNumber {
	display:flex;
}

.boardPage .nowPage {
	color:#fff;
	background-color:#10193A;
	border:none;
}

@media screen and (max-width: 1025px) {
	.boardPage a,
	.boardPage button {
	    min-width: 35px;
	    width: 35px;
	    min-height: 35px;
	    height: 35px;
	}
}

@media screen and (max-width: 769px) {
	
	.boardPage {
	    width: 100%;
	    margin-top:50px;
	}
	
	.pageNumber {
		max-width:180px;
		flex-wrap:wrap;
		margin-right:10px;
	}
	
	.pageNumber a,
	.pageNumber button {
		margin-right:7px;
	}
	
	.pageNumber a:nth-child(n + 6),
	.pageNumber button:nth-child(n + 6) {
		margin-top:5px;
	}
	
	.pageNumber a:nth-child(5n),
	.pageNumber button:nth-child(5n) {
		margin-right:0;
	}
	
	.pageNumber a:last-child,
	.pageNumber button:last-child {
		margin-right:0;
	}

	.boardPage a, .boardPage button{
		min-width: 45px;
		width: 45px;
		min-height: 45px;
		height: 45px;
	}
}
	
}









