@charset "utf-8";
/* CSS Document */

.body-container .page-title img {
  bottom: 18px;
}

/* 게시판 UI */
.board-table {
  border-top: 3px solid #5283e0;
}
.board-table .row {
  padding: 15px 0;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #eee;
}
.board-table .row ul li {
  position: relative;
  float: left;
  margin-right: 20px;
  font-size: 1.3rem;
  color: #aaa;
  letter-spacing: -0.025em;
}
.board-table .row ul li:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 1px;
  background: #eee;
  left: -10px;
  top: 5px;
}
.board-table .row ul li:nth-child(1) {
  float: none;
  font-size: 1.5rem;
  color: #555;
  margin: 0;
  margin-bottom: 10px;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.board-table .row ul li:nth-child(1):after {
  display: none;
}

/* board-table-detail */
.board-table-detail {
  margin-bottom: 20px;
  border-top: 3px solid #5283e0;
}
.board-table-detail .title-wrap {
  padding: 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}
.board-table-detail .cont-wrap {
  padding: 20px;
  font-size: 1.4rem;
  color: #404040;
  letter-spacing: -0.025em;
  border-bottom: 1px solid #eee;
  background: #fff;
  line-height: 23px;
}
.board-table-detail .file-wrap {
  padding: 10px 20px;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  border-bottom: 1px solid #eee;
}
.board-table-detail .file-wrap i {
  padding-right: 5px;
}
.board-table-detail .file-wrap a:hover {
  text-decoration: underline;
}
.board-table-detail ul li {
  float: left;
  position: relative;
  margin-right: 30px;
  color: #777;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}
.board-table-detail ul li:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: #ddd;
  top: 5px;
  right: -15px;
}
.board-table-detail ul li.title:after,
.board-table-detail ul li:last-child:after {
  width: 0;
  height: 0;
}
.board-table-detail ul li.title {
  float: none;
  font-size: 1.8rem;
  padding-bottom: 15px;
  color: #333;
}
.board-table-detail .list-wrap {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.4rem;
  background: #555;
  margin-top: 20px;
  margin-left: calc(100% - 150px);
  border-radius: 3px;
}
.board-table-detail .list-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.board-table-detail .navi-wrap {
  padding: 20px;
  font-size: 1.4rem;
  color: #666;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.board-table-detail .navi-wrap a {
  color: #666;
}
.board-table-detail .navi-wrap a:hover {
  text-decoration: underline;
}
.board-table-detail .navi-wrap > div {
  width: 100%;
}
.board-table-detail .navi-wrap > div a {
  width: calc(100% - 66px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  position: relative;
  top: 4px;
  color: #888;
}
.board-table-detail .navi-wrap .prev i {
  padding: 0 10px 10px 0;
}
.board-table-detail .navi-wrap .next i {
  padding-right: 10px;
}
.board-table-detail .sources-wrap {
  color: #b91e12;
  font-size: 1.3rem;
  padding-top: 20px;
  margin-top: 50px;
}
.board-table-detail .sources-wrap i {
  margin-right: 3px;
  position: relative;
  top: 1px;
  font-size: 1.5rem;
}

.section .cont .search-area .filter-box {
  float: right;
}

.section .cont .search-area .search-input {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.section .cont .search-area .search-input input {
  background: #fff;
  border: 0;
  border: 1px solid #e8e8e8;
  width: 100%;
  height: 40px;
  padding: 0 50px 0 20px;
}
.section .cont .search-area .search-input img {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -11px;
  width: 22px;
}

.search-area .filter-box {
  float: right;
}

.search-area .filter-box p {
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
  line-height: 27px;
  color: #aaa;
  font-size: 13px;
}

.search-area .filter-box .selectbox {
  position: relative;
  border-style: none;
  z-index: 1;
  display: inline-block;
  height: 30px;
  width: 80px;
  vertical-align: top;
  transition: background 0.25s ease;
  background: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
}
.search-area .selectbox:hover {
  background: #f8f8f8;
}
.search-area .selectbox label {
  position: absolute;
  color: #222;
  font-size: 13px;
  line-height: 28px;
}
.search-area .selectbox select {
  height: 28px;
}
.search-area .selectbox select option {
  padding-left: 10px;
  font-size: 14px;
}
