@charset "utf-8";

.list-category .div-tab.tabs { margin-bottom:0px; }

.list-board { margin-bottom:15px; }

/* Icon */
.list-board .wr-text { font-family:dotum; font-size:11px; letter-spacing:-1px; line-height:11px; font-weight:normal; }
.list-board .wr-icon { display:inline-block; padding:0px; margin:0px; overflow:hidden; vertical-align:middle; background-repeat: no-repeat; background-position: left top; }
.list-board .wr-notice { width:37px; height:19px; background-image: url('../../img/icon_notice.gif'); }
.list-board .wr-new { width:12px; height:12px; background-image: url('../../img/icon_new.gif'); }
.list-board .wr-secret { width:12px; height:12px; background-image: url('../../img/icon_secret.gif'); }
.list-board .wr-hot { width:12px; height:12px; background-image: url('../../img/icon_hot.gif'); }
.list-board .wr-video { width:12px; height:12px; background-image: url('../../img/icon_video.gif'); }
.list-board .wr-image { width:12px; height:12px; background-image: url('../../img/icon_image.gif'); }
.list-board .wr-file { width:12px; height:12px; background-image: url('../../img/icon_file.gif'); }
.list-board .wr-vicon { position:absolute; left:4px; bottom:3px; color: rgba(255,255,255,1); font-size:16px; z-index:1; }

/* Width */
.list-board .wr-chk { width:40px; }
.list-board .wr-num { width:60px; }
.list-board .wr-thumb { width:60px; }
.list-board .wr-category { width:80px; }
.list-board .wr-name { width:120px; }
.list-board .wr-date { width:90px; }
.list-board .wr-hit { width:60px; }
.list-board .wr-down { width:50px; }
.list-board .wr-visit { width:50px; }
.list-board .wr-good { width:50px; }
.list-board .wr-nogood { width:50px; }
.list-board .wr-none { padding:50px 0px; text-align:center; color:#888; }
.list-board .wr-comment { margin:0px 10px; }
.list-board .wr-hidden { display:none; }

/* List */
.list-board .list-body { list-style:none; padding:0px; margin:0px; }
.list-board .list-body li { border-bottom:1px solid #ddd; display:table; width:100%; table-layout:fixed; }
.list-board .list-body li:hover { color:#000; background-color:#F8F8F8; }
.list-board .list-body li > div { display:table-cell; height:34px; line-height:22px; padding:6px 0px; text-align:center; color:#666; vertical-align:middle; }
.list-board .list-body .wr-subject { padding-left:10px; text-align:left; }
.list-board .list-body .wr-subject .item-subject { display:block; word-break:break-all; }
.list-board .list-body .wr-name { text-align:left; padding-left:10px; font-weight:bold; }
.list-board .list-body .wr-name a { display:block; text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden;  }
.list-board .list-body .thumb-img { position:relative; width:46px; height:46px; margin:0px auto; }
.list-board .list-body .thumb-icon { position:relative; width:46px; height:46px; display:table; margin:0px auto; }
.list-board .list-body .thumb-icon a { display:table-cell; width:1%; background:#eee; color:#fff; vertical-align:middle; font-size:30px; }
.list-board .list-body .thumb-icon img { width:46px; height:46px; margin:0px auto; }

@media all and (max-width:768px) {
	.responsive .list-board .wr-hidden { display:inline-block !important; }
	.responsive .list-board .item-subject { text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden; }
	.responsive .list-board .item-details { margin-right:-15px }
	.responsive .list-board .item-details > span { margin-right:15px; font-weight:normal; }
	.responsive .list-board .item-details > span:last-child { margin-right:0px; }
}

/* 모달창 */
.list-board .list-body .map_modal {
	position:fixed;
	background:rgba(0,0,0,0.5);
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:5000;
	display:block;
	display:none;
}

.list-board .list-body .map_modal .map_modal_cont {
	background:#dde1e3;
	border-radius:25px;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	padding:80px 60px;
	width:1000px;
	max-width:95%;
}

.list-board .list-body .map_modal .map_modal_cont .close_modal {
	position:absolute; 
	top:35px;
	right:35px;
	width:14px;
	height:14px;
	cursor:pointer;
}

.list-board .list-body .map_modal .map_modal_cont .close_modal::before,
.list-board .list-body .map_modal .map_modal_cont .close_modal::after {
	content:"";
	width:2px;
	height:17px;
	position:absolute;
	background:#999999;
	top:0;
	left:50%;
	transform:translateX(-50%);
}

.list-board .list-body .map_modal .map_modal_cont .close_modal::before {
	transform:rotate(45deg)
}

.list-board .list-body .map_modal .map_modal_cont .close_modal::after {
	transform:rotate(-45deg)
}

.list-board .list-body .map_modal .modal_container {
	display:flex;
	gap:85px;
}

.list-board .list-body .map_modal .modal_container .modal_img {
	width:260px;
	max-height: 260px;
	aspect-ratio:1;
	border-radius:20px;
	overflow:hidden;
	display:block;
}

.list-board .list-body .map_modal .modal_container .modal_img img {
	width:100%;
	height:100%;
	object-fit:cover;
}

.list-board .list-body .map_modal .modal_container > div {
	width:60%;
	text-align:left;
	display: flex;
    flex-direction: column;
    align-items: stretch;
}

.list-board .list-body .map_modal .modal_container h5 {
	font-size:25px;
	color:#162e39;
	font-weight:700;
	padding-bottom:35px;
	border-bottom:1px solid #79878e;
	margin-bottom:20px;
}

.list-board .list-body .map_modal .modal_container p {
	color:#557181;
	font-size:16px;
	font-weight:300;
}

.list-board .list-body .map_modal .modal_container ul {
	margin-top:40px;
}

.list-board .list-body .map_modal .modal_container ul li {
	border:none;
	color:#557181;
	font-size:16px;
	display:flex;
	align-items:center;
    margin-bottom: 12px;
}

.list-board .list-body .map_modal .modal_container ul li .img_box {
	width:40px;
	text-align:left;
}

.list-board .list-body .map_modal .modal_container ul li span {
	font-size:16px;
	font-weight:600;
	color:#162e39;
	display:inline-block;
	width:95px;
}
@media (max-width:991px) {
	.list-board .list-body .map_modal .modal_container {
		flex-direction:column;
		gap:18px;
	}
	.list-board .list-body .map_modal .modal_container div {
		line-height:1;
		height:auto;
	}
	.list-board .list-body .map_modal .map_modal_cont {
		max-height: 80%;
		overflow-y: auto;
		width:calc(100% - 30px);
		max-width:unset;
		border-radius:12.5px;
		padding:50px 20px;
	}
	.list-board .list-body .map_modal .map_modal_cont .close_modal {
		width:12px;
		height:12px;
		top:20px;
		right:20px;
	}
	.list-board .list-body .map_modal .map_modal_cont .close_modal::before, 
	.list-board .list-body .map_modal .map_modal_cont .close_modal::after {
		width:15px;
		height:1px;
		        top: 5px;
        left: -1px;
	}
	.list-board .list-body .map_modal .modal_container .modal_img {
		width:100%;
		height:auto;
		max-height:unset;
		border-radius:10px;
	}
	.list-board .list-body .map_modal .modal_container > div {
		width:100%;
	}
	.list-board .list-body .map_modal .modal_container h5 {
		font-size:17px;
		padding-bottom:12px;
		margin-bottom:12px;
	}
	.list-board .list-body .map_modal .modal_container p {
		max-width:177px;
		word-break:keep-all;
		font-size:13px;
		line-height:20px;
	}
	.list-board .list-body .map_modal .modal_container ul {
		margin-top:18px;
	}
	.list-board .list-body .map_modal .modal_container ul li {
		font-size:12px;
		margin:0;
		word-break: keep-all;
        line-height: 16px;
	}
	.list-board .list-body .map_modal .modal_container ul li .img_box {
		width:15px;
		padding:0;
	}
	.list-board .list-body .map_modal .modal_container ul li .img_box img {
		transform:scale(0.5) translateX(-10px);
	}
	.list-board .list-body .map_modal .modal_container ul li span {
		font-size:12px;
		width:55px;
		flex-shrink: 0;
	}
}

.at-body > .container_fix {padding-bottom:20px;}
footer.footer {margin-top:60px;}