.boardList {
    table-layout: fixed;
	width:100%;
	border-top:2px solid #000;
}

.boardList__head {
	display:flex;
	width:100%;
	height:60px;
}

.boardList__head tr {
	display:flex;
	width:100%;
	height:100%;
    border-bottom: 1px solid #cccccc;
}

.boardList__head tr th {
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:17px;
	font-weight:800;
	border-right: 1px solid #cccccc;
}

.boardList__head tr th:last-child {
	border-right:none;
}

.boardList__body {
	display:flex;
	flex-direction:column;
	width:100%;
}

.boardList__body tr {
	display:flex;
	width:100%;
	height:60px;
	border-bottom: 1px solid #cccccc;
	transition:all .5s;
}

.boardList__body tr.active {
	background-color:#f3f3f3;
}

.boardList__body .nodata {
	height:auto;
    padding: 50px 0;
}

.boardList__body tr > td {
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:17px;
	font-weight:800;
	transition:all .5s;
	border-right: 1px solid #cccccc;
}

.boardList__body tr td:last-child {
	border-right:none;
}

.boardList__body .nodata td {
    width: 100%;
    font-size: 20px;
}

.boardList__body tr .number .notification {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 25px;
    font-size: 15px;
    font-weight: 500;
    color:#fff;
    border-radius: 5px;
    border: 1px solid #003071;
	background-color:var(--green);
}

.boardList__body tr > .title a {
	display:flex;
	justify-content:flex-start;
	align-items:center;
	font-size:15px;
	font-weight:500;
	width:100%;
	height:100%;
	padding:0 35px;
	transition:all .5s;
}

.boardList__body tr > .title a span {
	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;
    font-size: 17px;
    font-weight: 800;
}

.boardList__body tr > .title a span.notification {
	color:var(--green);
}

.board__secret {
	margin-right:10px;
}

.board__reply {
	margin-bottom:10px;
	margin-right:5px;
}

.title .board__file {
	margin-left:5px;
}

.nodata {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.writebtn {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.writebtn a {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background-color: #10193A;
    transition:all 0.5s;
}

.writebtn a:hover {
	background-color:#000;
}

/* 반응형 */
@media screen and (max-width:1250px) {

}

@media screen and (max-width:1025px) {
	
}

@media screen and (max-width:769px) {

}



















