 /* 검색바 */
.search {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.search form {
  display: flex;
  width: 460px;
  height: 50px;
  gap: 10px;
}

.search .search-select {
  width: 140px;
  height: 100%;
  border-radius: 200px;
  border: 1px solid #c9c9c9;
}
.search .search-inner{
  width: calc(100% - 150px);
  border: 1px solid #c9c9c9;
  position: relative;
  border-radius: 200px;
  overflow: hidden;
}
.search .search-input {
  width: 100%;
  height: 100%;
}

.search select {
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  font-size: 1.8rem;
  background: url('/asset/img/bbs/input-arw-icon.png') no-repeat right 30px center;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0px 50px 0 20px;
  font-size: 1.8rem;
}

.search button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #0051C7 url('/asset/img/bbs/search-icon.png') no-repeat center;
  border-radius: 50%;
  font-size: 0;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .search{
    margin-bottom: 28px;
  }
}
@media screen and (max-width:768px) {
  .search{margin-bottom: 20px;}
  .search select{
    font-size: 1.6rem;
    padding: 0 15px;
  }
  .search form{height: 36px;}
  .search select{background-position: center right 10px;}
  .search .search-select{
    width: 120px;
  }
  .search .search-inner{
    width: calc(100% - 130px);
  }
  .search button{
    height: 30px;
    width: 30px;
    right: 3px;
  }
  .search input{
    padding-right: 36px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
.search select{
  font-size: 1.4rem;
}
}


/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:35px;
  height:35px;
	margin:0px 8px;
	border-radius:50%;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:1.8rem;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#0051C7;
	font-weight:800;
  background-color: #F5F9FF;
}

/* .pagination a.pagination-prev,
.pagination a.pagination-next {
  background-color: #f5f5f5;
} */

.pagination a.pagination-prev {
  background-image: url('/asset/img/common/pg_prev.png');
}

.pagination a.pagination-next {
  background-image: url('/asset/img/common/pg_next.png');
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .pagination {
    margin-top: 60px;
  }

  .pagination a {
    width: 30px;
    height:30px;
    margin: 0px 4px;
  }
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
  }

  .pagination a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top:30px;
  }

  .pagination a {
    width:26px;
    height:26px;
    margin: 0px 2px;
    background-size: auto 8px;
    font-size: 1.4rem;
  }
}


/* News > 회사소식 */
.bbs-news .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #898989;
}

.bbs-news .table tr {
  border-bottom: 1px solid #D9D9D9;
}
.bbs-news .table th{
  background-color: #f5f5f5;
}
.bbs-news .table th,
.bbs-news .table td {
  height: 60px;
  padding: 10px;
  font-size: 1.8rem;
}

.bbs-news .table td a {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bbs-news .table tr.tr-notice {
  /* background-color: #EBEFF7; */
}

.bbs-news .table tr .no {
  font-weight: 700;
  color:#315CA8;
}

.bbs-news .table tr.table-message .txt {
  text-align: center;
  padding: 130px 20px;
}

.bbs-news .table tr.table-message .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width:1200px) {
  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news .table th, 
  .bbs-news .table td {
    height: 50px;
    padding: 6px;
  }
}
@media screen and (max-width:768px) {
  .bbs-news .table thead {
    display: none;
  }

  .bbs-news .table {
    display: block;
  }

  .bbs-news .table tbody {
    display: block;
  }

  .bbs-news .table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    position: relative;
    height: auto;
    padding: 4px 6px;
    font-size: 1.4rem;
  }

  .bbs-news .table td.no {
    order: 2;
  }

  .bbs-news .table td.no::after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    width: 1px;
    height:10px;
    background-color:#999;
  }

  .bbs-news .table td.subject {
    width: 100%;
    order: 1;
  }

  .bbs-news .table td.data {
    order: 3;
  }
  .bbs-news .table td.writer {
    order: 4;
  }

  .bbs-news .table td.writer::after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    left:0;
    transform: translateY(-50%);
    width: 1px;
    height:10px;
    background-color:#999;
  }
}
@media screen and (max-width:576px) {
  .bbs-news .table tr {
    padding: 4px 2px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.3rem;
  }
}

/*HANSSAK > 인증자료*/
.bbs-gallery-area{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.bbs-gallery-area .item-btn{
  display: block;
  width: calc(33.333% - 26.666px);
}
.bbs-gallery-area .img-box{
  aspect-ratio: 1/0.682;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #cacaca;
}
.bbs-gallery-area .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.bbs-gallery-area .txt-box{
  margin: 20px 0 10px;
}

@media all and (max-width:1024px){
  .bbs-gallery-area{
    gap: 20px;
  }
  .bbs-gallery-area .item-btn{
    width: calc(33.333% - 13.333px);
  }
}
@media all and (max-width:768px){
  .bbs-gallery-area .item-btn{
    width: calc(50% - 10px);
  }
  .bbs-gallery-area .txt-box{
    margin: 10px 0 5px;
  }
}


@media all and (max-width:576px){
  .bbs-gallery-area{
    gap: 10px;
  }
  .bbs-gallery-area .item-btn{
    width: calc(50% - 5px);
  }
}


/* Board View */
.bbs-view {
  border-top: 3px solid #0051C7 ;
}

.bbs-view-head {
  padding: 30px 0px 20px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-view-head .data {
  position: relative;
  padding-left: 30px;
}
.bbs-view-head .people {
  position: relative;
  padding-left: 30px;
}


.bbs-view-head .data::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
  background: url('/asset/img/icon/ico_time.png') no-repeat center;
}

.bbs-view-head .people::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url('/asset/img/icon/ico-people.png') no-repeat center;
}

.bbs-view-head .sub--txt{
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.bbs-view-area {
  min-height: 380px;
  padding: 30px 0px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-view-area.news ul li {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 20px;
}

.bbs-view-area.news ol li {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 20px;
}

.bbs-view-file {
  padding:20px 0px 0;
}

.bbs-view-file .file {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.bbs-view-file .file a {
  display: flex;
  align-items: center;
  gap:10px;
}
.bbs-view-file .file a + a{
  margin-top: 10px;
}
.bbs-view-file .file i {
  display: block;
  width: 19px;
  height:18px;
  background: url('/asset/img/icon/ico_file02.png') no-repeat center/cover;
}

.bbs-view-file .file span {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 40px);
}

.bbs-view-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.bbs-view-nav .nav-prev,
.bbs-view-nav .nav-next {
  max-width: 430px;
  width: 100%;
}

.bbs-view-nav .nav-prev i,
.bbs-view-nav .nav-next i {
  display: inline-block;
  width: 34px;
  height: 16px;
  background-repeat: no-repeat;
}

.bbs-view-nav .nav-prev i {
  background-position:left center;
  background-image: url('/asset/img/bbs/view_btn_prev.png');
}

.bbs-view-nav .nav-next i {
  background-position:right center;
  background-image: url('/asset/img/bbs/view_btn_next.png');
}

.bbs-view-nav .nav-prev span,
.bbs-view-nav .nav-next span {
  display: block;
  margin: 15px 0px;
}

.bbs-view-nav .nav-prev p,
.bbs-view-nav .nav-next p {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  white-space: nowrap;
}

.bbs-view-nav .nav-prev {
  left: 0;
}

.bbs-view-nav .nav-next {
  right: 0;
  text-align: right;
}

.bbs-view-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 10px;
  width: 300px;
  height: 70px;
  background-color: #0051C7;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
  transition: var(--transition-basic);
}

@media screen and (max-width:1200px) {
  .bbs-view-nav .nav-prev,
  .bbs-view-nav .nav-next {
    max-width: 320px;
  }

  .bbs-view-nav .nav-back {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-view-head {
    padding: 20px 0px;
  }

  .bbs-view-head .data,
  .bbs-view-head .people {
    padding-left: 20px;
  }

  .bbs-view-head .data::before {
    width: 16px;
    height: 14px;
    background-size: auto 14px;
  }
  .bbs-view-head .people::before{
    width: 16px;
    height: 16px;
    background-size: cover;
  }
  .bbs-view-area {
    min-height: 300px;
    padding: 20px 0px;
  }

  .bbs-view-file {
    padding: 14px 0px;
  }

  .bbs-view-file .file {
    padding: 14px 20px;
  }

  .bbs-view-file .file i {
    width: 14px;
    height: 13px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 26px);
  }

  .bbs-view-nav {
    margin-top: 30px;
  }

  .bbs-view-nav .nav-prev, .bbs-view-nav .nav-next {
    max-width: 260px;
  }

  .bbs-view-nav .nav-prev i, .bbs-view-nav .nav-next i {
    width: 24px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view-nav .nav-prev span, .bbs-view-nav .nav-next span {
    margin: 14px 0px;
  }

  .bbs-view-nav .nav-back {
    max-width: 240px;
    height: 60px;
  }
}
@media screen and (max-width:768px) {
  .bbs-view-head .sub--txt{
    gap: 10px;
  }
  .bbs-view-head .data::before {
    width: 14px;
    height: 12px;
    background-size: auto 12px;
  }
  .bbs-view-head .people::before{
    width: 14px;
    height: 14px;
  }

  .bbs-view-file .file a {
    gap:8px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 22px);
  }

  .bbs-view-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
  }

  .bbs-view-nav .nav-prev, .bbs-view-nav .nav-next {
    max-width: none;
    width: calc(50% - 10px);
    order: 1;
  }

  .bbs-view-nav .nav-back {
    order: 3;
    position: relative;
    left: unset;
    bottom: unset;
    transform: none;
    max-width: 200px;
    height: 54px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-view-head {
    padding: 14px 0px;
  }

  .bbs-view-head .data,
  .bbs-view-head .people {
    padding-left: 14px;
  }

  .bbs-view-head .data::before {
    width: 12px;
    height: 10px;
    background-size: auto 10px;
  }
  .bbs-view-head .people::before{
    width: 12px;
    height: 12px;
  }
  .bbs-view-area {
    padding: 14px 0px;
  }

  .bbs-view-file {
    padding: 10px 0px;
  }

  .bbs-view-file .file {
    padding: 10px 14px;
  }

  .bbs-view-file .file a {
    gap:6px;
  }

  .bbs-view-file .file i {
    width: 12px;
    height: 11px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 18px);
  }

  .bbs-view-nav {
    margin-top: 20px;
  }

  .bbs-view-nav .nav-prev i, .bbs-view-nav .nav-next i {
    height: 8px;
    background-size: auto 8px;
  }

  .bbs-view-nav .nav-prev span, .bbs-view-nav .nav-next span {
    margin: 10px 0px;
  }

  .bbs-view-nav .nav-back {
    max-width: 140px;
    height: 40px;
    font-size: 1.4rem;
  }
}


@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

.bbs-gallery-area.custom{
  gap:60px;
}
.bbs-gallery-area.custom .item-btn{
  width: 100%;
  display: flex;
  gap: 80px;
}
.bbs-gallery-area.custom .txt-box{
  margin: 0;
  width: calc(100% - 520px);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bbs-gallery-area.custom .img-box{
  width: 440px;
  aspect-ratio: 1/0.682;
}
.bbs-gallery-area.custom .date{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222222;
}
@media screen and (max-width:1024px) {
  .bbs-gallery-area.custom{
    gap: 40px;
  }
  .bbs-gallery-area.custom .item-btn{
    gap: 40px;
    align-items: center;
  }
  .bbs-gallery-area.custom .txt-box{
    width: calc(100% - 290px);
  }
  .bbs-gallery-area.custom .img-box{
    width: 250px;
  }

}
@media screen and (max-width:768px) {
  .bbs-gallery-area.custom{
    gap: 10px;
  }
  .bbs-gallery-area.custom .item-btn{
    gap: 10px;
  }
  .bbs-gallery-area.custom .txt-box{
    width: calc(100% - 140px);
  }
  .bbs-gallery-area.custom .txt-box .txt{
    margin-top: 10px;
    -webkit-line-clamp:2;
  }
  .bbs-gallery-area.custom .img-box{
    min-width: 130px;
    width: 130px;
    }
  .bbs-gallery-area.custom .date{
    gap: 5px;
    margin-top: 5px;
  }
  .bbs-gallery-area.custom .date img{
    max-height: 13px;
  }
}