/* Board Search */
.search form {
	max-width: 960px;
	width: 100%;
	margin:0 auto;
}

.search .search-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border:1px solid #bbbbbb;
	border-radius:50px;
}

.search .search-select {
	position: relative;
	width: 180px;
} 

.search .search-select::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:14px;
	background-color: #c6c6c6;
}

.search .search-input {
	position: relative;
	width: calc(100% - 180px);
}

.search select,
.search input {
	width: 100%;
	height:70px;
	background-color: transparent;
	border:0px;
	font-size:2rem;
}

.search select {
	background-repeat: no-repeat;
	background-position:right 20px center;
	background-image: url('/image/icon/ico_select.png');
	padding:0px 20px 0px 30px;
}

.search input {
	padding:0px 100px 0px 20px;
}

.search button {
	position: absolute;
	top: 50%;
	right:0;
	transform: translateY(-50%);
	width:70px;
	height:70px;
	background: url('/image/icon/ico_search.png') no-repeat center;
}

@media screen and (max-width:1200px) {
	.search select,
	.search input {
		height:64px;
		font-size:1.8rem;
	}

	.search button {
		width:64px;
		height:64px;
	}
}
@media screen and (max-width:1024px) {
	.search select {
		height:60px;
		background-position: right 16px center;
		padding: 0px 16px 0px 22px;
	}

	.search input {
		height:60px;
		padding:0px 80px 0px 16px;
	}

	.search button {
		width:60px;
		height:60px;
	}
}
@media screen and (max-width:768px) {
	.search select,
	.search input {
		height:56px;
		font-size:1.6rem;
	}

	.search select {
		background-size: auto 8px;
	}

	.search input {
		padding:0px 60px 0px 16px;
	}

	.search button {
		width:56px;
		height:56px;
		background-size: auto 24px;
	}
}
@media screen and (max-width:576px) {
	.search .search-inner {
		flex-wrap: wrap;
		border-radius: 10px;
	}

	.search .search-select {
		width: 100%;
	}

	.search .search-select::after {
		top:unset;
		transform: none;
		bottom:0;
		width: 100%;
		height:1px;
	}

	.search .search-input {
		width: 100%;
	}

	.search select,
	.search input {
		height:42px;
		font-size:1.4rem;
	}

	.search select {
		padding:0px 12px;
		background-size: auto 6px;
	}

	.search input {
		padding:0px 50px 0px 12px;
	}

	.search button {
		width:42px;
		height:42px;
		background-size: auto 20px;
	}
}



/* Board Pagination */
.pagination {
  display: flex;
  justify-content: center;
	margin-top:40px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:40px;
  height:40px;
	margin:0px 3px;
	border-radius:5px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
	font-family: "Pretendard", sans-serif;
  font-size:2rem;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#fff;
	background-color: #0081c7;
}

.pagination a.pagination-prev {
  background-image: url('/image/icon/pg_prev.png');
}

.pagination a.pagination-next {
  background-image: url('/image/icon/pg_next.png');
}

.pagination a.pagination-backward {
  background-image: url('/image/icon/pg_backward.png');
}

.pagination a.pagination-forward {
  background-image: url('/image/icon/pg_forward.png');
}

@media screen and (max-width:1200px) {
	.pagination a {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.pagination {
		margin-top:28px;
	}

	.pagination a {
		width:36px;
		height:36px;
	}
}
@media screen and (max-width:768px) {
	.pagination a {
		width:30px;
		height:30px;
		font-size: 1.6rem;
		background-size:auto 12px;
	}
}
@media screen and (max-width:576px) {
	.pagination {
		margin-top:20px;
	}

	.pagination a {
		width:26px;
		height:26px;
		margin:0px 2px;
		font-size: 1.4rem;
		background-size:auto 10px;
	}
}


/* Board List */
.bbs .total {
	font-size:1.4rem;
	margin:24px 0px 20px;
}

.bbs .list {
	border-top: 2px solid #0081c7;
	border-bottom: 1px solid #aaaaaa;
}

.bbs .list li {
	position: relative;
}

.bbs .list li:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	height:1px;
	background-color:#d8d8d8;
}

.bbs .list li.list-message {
	padding: 200px 30px;
}

.bbs .list a {
	display: block;
	position: relative;
	padding:30px 0px;
	transition: all .4s ease;
}

.bbs .list dl {
	position: relative;
	padding-right:300px;
}

.bbs .list dd p {
	line-height:1.7;
}

.bbs .list .pin {
	position: absolute;
	top:50%;
	right:40px;
	transform: translateY(-50%);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width:120px;
	height:48px;
	border-radius:5px;
	background-color: #093170;
}

.bbs .list .pin::before {
	content: "공지사항";
	display: inline-block;
}

.bbs .list .mobile-pin {
	display: none;
}

.bbs--notice .list dt,
.bbs--data .list dt {
	width: 210px;
}

.bbs--notice .list dd {
	width: calc(100% - 210px);
}

.bbs--data .list dd:not(.icon) {
	width: calc(100% - 240px);
	padding-left:40px;
}

.bbs--data .list dd.icon {
	width: 22px;
	height:32px;
	background: url('/image/icon/ico_file.png') no-repeat center;
}

@media screen and (max-width:1366px) {
	.bbs .list dl {
		padding-right:240px;
	}
}
@media screen and (max-width:1200px) {
	.bbs .total {
		font-size:1.3rem;
	}

	.bbs .list dl {
		padding-right:180px;
	}

	.bbs--notice .list dt, .bbs--data .list dt {
		width:160px;
	}

	.bbs--notice .list dd {
		width: calc(100% - 160px);
	}

	.bbs--data .list dd:not(.icon) {
		width: calc(100% - 190px);
		padding-left:28px;
	}

	.bbs .list .pin {
		right:28px;
		width: 100px;
		height:40px;
	}
}
@media screen and (max-width:1024px) {
	.bbs .total {
		margin:20px 0px 16px;
	}

	.bbs .list a {
		padding:22px 0px;
	}

	.bbs .list dl {
		padding-right:140px;
	}

	.bbs--notice .list dt, .bbs--data .list dt {
		width:140px;
	}

	.bbs--data .list dd.icon {
		width:18px;
		height:26px;
		background-size:auto 26px;
	}

	.bbs--notice .list dd {
		width: calc(100% - 140px);
	}

	.bbs--data .list dd:not(.icon) {
		width: calc(100% - 170px);
		padding-left:20px;
	}

	.bbs .list .pin {
		right:20px;
		height:36px;
	}
}
@media screen and (max-width:768px) {
	.bbs .total {
		font-size:1.2rem;
	}

	.bbs .list a {
		display: flex;
		flex-direction: column;
		padding:20px 0px;
	}

	.bbs .list dl {
		padding-right:0px;
		order: 2;
	}

	.bbs--notice .list dt, .bbs--data .list dt {
		width:80px;
	}

	.bbs--data .list dd.icon {
		display: none;
	}

	.bbs--notice .list dd {
		width: calc(100% - 80px);
	}

	.bbs--data .list dd:not(.icon) {
		width: calc(100% - 80px);
		padding-left:0px;
	}

	.bbs .list .pin {
		display: none;
		position: relative;
		top:unset;
		right: unset;
		transform: none;
		width: 80px;
		order: 1;
		margin-bottom:16px;
	}

	.bbs .list .mobile-pin {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width:50px;
		height:26px;
		margin-bottom:4px;
		border-radius: 5px;
    background-color: #093170;
	}

	.bbs .list .mobile-pin::before {
		content: "공지";
		display: inline-block;
	}
}
@media screen and (max-width:576px) {
	.bbs .total {
		font-size:1.1rem;
		margin:16px 0px 10px;
	}

	.bbs .list a {
		padding:16px 0px;
	}

	.bbs .list .mobile-pin {
		width:40px;
		height: 22px;
	}
}


/* Board View */
.bbs-view-head {
	padding-bottom:40px;
	border-bottom: 2px solid #0081c7;
}

.bbs-view-head .pin {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width:120px;
	height:48px;
	border-radius:5px;
	background-color: #093170;
}

.bbs-view-head .subject {
	margin:20px 0px 40px;
}

.bbs-view-area {
	min-height:800px;
	border-bottom: 1px solid #d8d8d8;
}

.bbs-view-area .textarea {
	padding:40px;
}

.bbs-view-area .textarea p {
	font-size:1.8rem;
}

.bbs-view-file {
	padding:20px 40px;
	border-bottom: 1px solid #d8d8d8;
}

.bbs-view-file .icon {
	display: block;
	width:22px;
	height:32px;
	background: url('/image/icon/ico_file.png') no-repeat center;
}

.bbs-view-file p {
	/* width: calc(100% - 22px); */
	padding-left:20px;
}

.bbs-view-navi {
	padding:40px 0px;
}

.bbs-view-navi dd {
	max-width:500px;
	width: 100%;
}

.bbs-view-navi dd p {
	width: 100%;
	white-space: nowrap;
}

.bbs-view-btn {
	display:flex;
	justify-content: center;
	align-items: center;
}

.bbs-view-btn .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width:320px;
	width: 100%;
	height:64px;
	border-radius: 10px;
	background-color:#aaaaaa;
}

@media screen and (max-width:1200px) {
	.bbs-view-head .pin {
		height:40px;
	}

	.bbs-view-area .textarea p {
		font-size:1.6rem;
	}

	.bbs-view-btn .btn {
		max-width:240px;
		height:58px;
	}
}
@media screen and (max-width:1024px) {
	.bbs-view-head {
		padding-bottom:28px;
	}

	.bbs-view-head .subject {
		margin:16px 0px 28px;
	}

	.bbs-view-area {
		min-height:600px;
	}

	.bbs-view-area .textarea {
		padding:28px;
	}

	.bbs-view-file {
		padding:16px 28px;
	}

	.bbs-view-file .icon {
		width:20px;
		height:26px;
		background-size: auto 26px;
	}

	.bbs-view-file p {
		width: calc(100% - 20px);
		padding-left:16px;
	}

	.bbs-view-navi {
		padding:28px 0px;
	}

	.bbs-view-btn .btn {
		max-width:200px;
		height:54px;
	}
}
@media screen and (max-width:768px) {
	.bbs-view-head .pin {
		width:100px;
		height:36px;
	}

	.bbs-view-area {
		min-height:400px;
	}

	.bbs-view-area .textarea p {
		font-size:1.4rem;
	}

	.bbs-view-file .icon {
		width:18px;
		height:22px;
		background-size:auto 22px;
	}

	.bbs-view-file p {
		width: calc(100% - 18px);
	}

	.bbs-view-navi dl {
		gap:16px;
	}

	.bbs-view-btn .btn {
		max-width:160px;
		height: 50px;
	}
}
@media screen and (max-width:576px) {
	.bbs-view-head {
		padding-bottom:20px;
	}

	.bbs-view-head .pin {
		width: 80px;
		height:30px;
	}

	.bbs-view-head .subject {
		margin:12px 0px 20px;
	}

	.bbs-view-area .textarea {
		padding: 20px;
	}

	.bbs-view-area .textarea p {
		font-size:1.3rem;
	}

	.bbs-view-file {
		padding: 12px 20px;
	}

	.bbs-view-file .icon {
		width: 16px;
		height:20px;
		background-size: auto 20px;
	}

	.bbs-view-file p {
		width: calc(100% - 16px);
		padding-left:10px;
	}

	.bbs-view-navi {
		padding: 20px 0px;
	}

	.bbs-view-btn .btn {
		max-width:140px;
		height:46px;
	}
}