@charset "utf-8";

.list-search { border:1px solid #ddd; background:#fafafa; padding:20px 15px 3px; margin-bottom:15px; }

.list-category .div-tab.tabs { margin-bottom:0px; }

.list-board { margin-bottom:15px; }

/* Icon */
.list-board .wr-text { font-family:dotum; font-size:1px; 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'); }

/* Width */
.list-board .wr-num { width:32px; text-align:left; letter-spacing:-1px;}
.list-board .wr-thumb { width:60px; }
.list-board .wr-nick { width:100px; text-align:left; }
.list-board .wr-name { width:100px; }
.list-board .wr-grade { width:100px; }
.list-board .wr-point { width:80px; }
.list-board .wr-join { width:100px; }
.list-board .wr-login { width:100px; }
.list-board .wr-date { width:100px; }
.list-board .wr-none { padding:50px 0px; text-align:center; color:#888; }

/* List */
.list-board .list-body {  border: 0.5px solid; list-style:none; padding:0px; margin:10px; border-radius:5px; }
.list-board .list-body li { border-bottom:1px solid #ddd; display:table; table-layout:fixed;}
.list-board .list-body li:hover { color:#000; background-color:#F8F8F8; }
.list-board .list-body li > div { display:table-cell; height:60px; line-height:22px; padding:6px 0px; text-align:center; color:#666; vertical-align:middle; }
.list-board .list-body .wr-nick { 
  white-space: nowrap; /* 한 줄로만 표시 */
  overflow: hidden; /* 넘칠 경우 숨김 처리 */
  text-overflow: ellipsis; /* 생략 부호(...) 추가 */
  max-width: 100px; /* 최대 너비 설정 */
  text-align:left; padding-left:3px; font-weight:bold;
    letter-spacing: -1px;
}
.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; }
.list-board .list-body .wr-point { 
  white-space: nowrap; /* 한 줄로만 표시 */
  overflow: hidden; /* 넘칠 경우 숨김 처리 */
  text-overflow: ellipsis; /* 생략 부호(...) 추가 */
  max-width: 90px; /* 최대 너비 설정 */
  text-align:right; 
  padding-right:10px;
  letter-spacing: -1px;
}
.list-board .list-body .wr-exp { padding-left:10px; padding-right:10px; }
.div-head {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 15px 0;
	height:10px;
    border-top-width: 2px;
    border-top-style: solid;
    border-bottom: 1px solid #c3c3c3;
    border-collapse: separate;
}

.parent {
  font-size:12px;
  display: flex;
  flex-wrap: nowrap;
}

.list-board {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  flex: 1; /* 아이템들이 화면 전체를 차지하도록 함 */
}

.list-board > div {
  flex: 1;
}

@media only screen and (max-width: 768px) {
  .parent {
    flex-direction: column;
  }
	.list-board {
	  width: 100%;
	  display: flex;
	  flex-wrap: wrap;
	  flex: 1; /* 아이템들이 화면 전체를 차지하도록 함 */
	}
	.list-board .list-body li { border-bottom:1px solid #ddd; display:table;	table-layout:fixed; width:100% }
}

.list-board .list-body li > div {
	height:10px;
}