﻿
.notice-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 150px 0;
}

.notice-title-wrap {
    width: 100%;
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.notice-title {
    font-size: 40px;
    color: #111;
    font-weight: bold;
}

.notice-subtitle {
    font-size: 17px;
    color: #999;
    letter-spacing: 10px;
}

.list-wrap {
    width: 100%;
    max-width: 1170px;
    margin-top: 50px;
    padding: 20px;
}

.list-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.list-title-wrap .title {
    color: #555;
    font-size: 14px;
}

.table-wrap {
    width: 100%;
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead tr {
    background: #fafafa;
    border-top: 2px solid #555;
}

.table tr {
    border-bottom: 1px solid #ddd;
}

.table th,
.table td {
    text-align: center;
    height: 50px;
    vertical-align: middle;
    padding: 0 10px;
}

.table th {
    font-weight: bold;
}

.table td .left {
    font-size: 18px;
    text-align: left;
    font-weight: 600;
}

.notice-wrap .list-wrap .table-wrap .table tr td .result {
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border-radius: 10px;
}

.notice-wrap .list-wrap .table-wrap .table tr td .result.on {
	background: #8ecbcf;
}


.paging {
    width: 100%;
    max-width: 1170px;
    margin-top: 50px;
}

.navigation {
    padding: 20px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li:hover,
.pagination li.active {
    background: #65b6bc;
}

.pagination li a {
    color: #333;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li.active a,
.pagination li:hover a {
    color: #fff;
}

.pagination li.disabled {
    cursor: not-allowed;
    background: unset;
}

.pagination li.disabled a {
    color: #bbb;
}

.font40 { font-size: 40px; }
.font17 { font-size: 17px; }
.color111 { color: #111; }
.color999 { color: #999; }
.weight-bold { font-weight: bold; }



@media screen and (max-width: 767px) {
	.notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li {
		width: 30px;
		height: 30px;
		margin-right: 3px;
	}
}
