 /* 검색바 */
.search {
  display: flex;
  justify-content: flex-end;
}
.search form{
  display: flex;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  overflow: hidden;
}
.search .search-select{
  width: 180px;
  height: 60px;
}
.search .search-select select{
  width: 100%;
  height: 100%;
  padding: 0 30px;
  background: url(/asset/img/sub/shop/ico-select.png)no-repeat center right 30px;
  border-radius: 5px;
  cursor: pointer;
}

.search .search-input{
  position: relative;
  width: 380px;
  height: 60px;
}
.search .search-input input{
  width: 100%;
  height: 100%;
  padding: 0 60px 0 20px;
  border-left: 1px solid #d2d2d2;
}
.search .search-input button{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  aspect-ratio: 1/1;
  background: #e6e6e6 url(/asset/img/sub/shop/ico-search.png)no-repeat center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  border-left: 1px solid #d2d2d2;
}

@media all and (max-width:1024px){
  .search .search-select{
    height: 45px;
  } 
  .search .search-input{
    height: 45px;
  }
.search .search-input button{
  background-size: 14px 15px
}
.search .search-input input{
  padding-right: 55px;
}

}
@media all and (max-width:768px){
  .search .search-select{
    width: 120px;
  } 
  .search .search-input{
    width: calc(100% - 120px);
    max-width: 300px;
  }
  .search .search-input input{
    padding: 0 45px 0 10px;
  }
  .search .search-select select{
    padding: 0 10px;
    background-position: center right 10px;
  }
.search .search-input button{
  background-size: 12px 13px;
}
}

@media all and (max-width:576px){
  .search .search-select{
    height: 40px;
  } 
  .search .search-input{
    height: 40px;
  }
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:29px;
  height:29px;
	margin:0px 3px;
	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 {
	font-weight:800;
}

.pagination a.pagination-prev,
.pagination a.pagination-backward,
.pagination a.pagination-next,
.pagination a.pagination-forward {
  border: 1px solid #d2d2d2;
}

.pagination a.pagination-backward {
  background-image: url('/asset/img/sub/shop/ico-page01.png');
}

.pagination a.pagination-prev {
	margin-right:10px;
  background-image: url('/asset/img/sub/shop/ico-page02.png');
}

.pagination a.pagination-next {
	margin-left:10px;
  background-image: url('/asset/img/sub/shop/ico-page03.png');
}

.pagination a.pagination-forward {
  background-image: url('/asset/img/sub/shop/ico-page04.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: 25px;
    height:25px;
    margin: 0px 2px;
  }
}
@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:24px;
    height:24px;
    background-size: auto 8px;
    font-size: 1.4rem;
  }
}

/* News List */
.bbs-news .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #959595;
}

.bbs-news .table thead tr{
  border-bottom: 1px solid #d2d2d2;
}
.bbs-news .table tr {
  border-bottom: 1px solid #d3d3d3;
  position: relative;
}

.bbs-news .table th{
  font-size: 2rem;
  padding: 22px 0;
}
.bbs-news .table td {
  padding: 22px 0;
  font-size: 2rem;
}
.bbs-news .table.td-py-18 td{
  padding: 18px 0;
}
.bbs-news .table td a {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bbs-news .table td.subject a:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bbs-news .table tr.tr-notice {
  background-color: #f2f3f6;
}



.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,
  .bbs-news .table.td-py-18 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,
  .bbs-news .table td.type::after,
  .bbs-news .table td.writer::after,
  .bbs-news .table td.country:after,
  .bbs-news .table td.sector: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;
    position: unset;
  }
  .bbs-news .table td.writer{
    order: 3;
  }
  .bbs-news .table td.data {
    order: 4;
  }
  .bbs-news .table td.type{
    order: 3;
  }
}
@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;
  }
}
/* Board View */
.bbs-view {
  border-top: 2px solid #001446 ;
}

.bbs-view-head {
  padding: 30px 20px;
  border-bottom: 1px solid #949494;
  background-color: #f5f5f5;
}

.bbs-view-head .data {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bbs-view-head .data .ico-time{
  width: 16px;
  height: 16px;
  background: url(/asset/img/common/ico-time.svg)no-repeat center center / cover;
}

.bbs-view-area {
  min-height: 380px;
  padding: 30px 20px;
  border-bottom: 1px solid #949494;
}

.bbs-view-file {
  border-bottom: 1px solid #949494;
  padding: 20px;
}

.bbs-view-file .file {
}

.bbs-view-file .file a {
  display: flex;
  align-items: center;
  gap:10px;
}

.bbs-view-file .file i {
  display: block;
  width: 18px;
  height:20px;
  background: url('/asset/img/common/ico-download.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;
  justify-content: center;
}

.bbs-view-nav .nav-prev,
.bbs-view-nav .nav-next {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid #d9d9d9;
  gap: 15px;
}

.bbs-view-nav .nav-prev i,
.bbs-view-nav .nav-next i {
  display: inline-block;
  width: 15px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bbs-view-nav .nav-prev i {
  background-image: url('/asset/img/common/ico-arw01.svg');
}

.bbs-view-nav .nav-next i {
  background-image: url('/asset/img/common/ico-arw02.svg');
}

.bbs-view-nav .nav-prev span,
.bbs-view-nav .nav-next span {
  display: block;
}

.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;
  width: 300px;
  height: 60px;
  background-color: #002259;
  border-radius: 10px;
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-view-head{
    padding: 20px 15px;
  }
  .bbs-view-file{
    padding: 15px;
  }
  .bbs-view-area{
    padding: 20px 15px;
  }
  .bbs-view-nav{
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .bbs-view-nav .nav-prev,
  .bbs-view-nav .nav-next{
    height: 45px;
    order: 1;
    width: 100px;
    gap: 5px;
  }

  .bbs-view-nav .nav-back{
    height: 45px;
    order: 3;
    width: 100%;
  }
}
@media screen and (max-width:576px) {

}

/* 납품실적 */
.project-area .table-box table{
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #959595;
}
.project-area .table-box tr{
  border-bottom: 1px solid #d2d2d2;
}
.project-area .table-box th{
  padding: 25px;
  text-align: center;
  font-weight: 700;
  background-color: #f5f5f5;
}
.project-area .table-box td{
  padding: 25px;
}

@media all and (max-width:768px){
  .project-area .table-box th,
  .project-area .table-box td{
    padding: 15px 10px;
  }

}
@media all and (max-width:576px){
  .project-area .table-box table,
  .project-area .table-box table tbody{
    display: block;
  }
  .project-area .table-box table tr{
    display: flex;
    flex-wrap: wrap;
  }
  .project-area .table-box table th,
  .project-area .table-box table td{
    width: 100%;
    padding: 10px;
    text-align: center;
  }
}

/* 문의하기 */
.contact-form {
  border-top: 2px solid #959595;
  margin-left: 30px;
}
.contact-form .form-flex{
  display: flex;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
}
.contact-form .input-tit{
  min-width: 165px;
  padding-left: 25px;
}
.contact-form .input-tit.align-start{
  align-self: flex-start;
  margin-top: 10px;
}
.contact-form .input-box{
  width: 100%;
  height: 50px;
}
.contact-form .input-box .input{
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.contact-form .textarea-box{
  height: 180px;
}
.contact-form .textarea-box textarea{
  resize: none;
  outline: none;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.contact-form .form-agree{
  padding: 22px;
  border-bottom: 1px solid #d2d2d2;
}
.contact-form .agree-label{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-form .agree-i{
  width: 18px;
  height: 18px;
  border: 1px solid #191919;
  border-radius: 50%;
}
.contact-form .agree-input{
  display: none;
}
.contact-form .agree-input:checked ~ .agree-i{
  background: #002259 url(/asset/img/common/ico-agree.png)no-repeat center center;
}
.contact-form .form-submit{
  display: flex;
  justify-content: center;
}

.contact-form .form-submit .submit-btn{
  width: 300px;
  height: 60px;
  border-radius: 10px;
  background-color: #002259;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width:1024px){
  .contact-form{
    margin-left: 0;
  }
}

@media all and (max-width:768px){
  .contact-form .form-flex{
    padding: 5px 0;
  }
  .contact-form .input-tit{
    padding-left: 10px;
    min-width: 100px;
  }
  .contact-form .form-agree{
    padding: 10px;
  }
  .contact-form .input-box{
    height: 35px;
  }
  .contact-form .textarea-box{
    height: 100px;
  }
  .contact-form .agree-label{
    gap: 5px;
  }
  .contact-form .agree-i{
    width: 15px;
    height: 15px;
    background-size: 8px auto;
  }
  .contact-form .form-submit .submit-btn{
    width: 180px;
    height: 45px;
  }
}

.product-sminfo ul{
    list-style: disc;
    margin: 1em 0;
    padding-left: 40px;
    display: block;
}


.product-sminfo ul{
    list-style: disc;
    margin: 1em 0;
    padding-left: 40px;
    display: block;
}

.product-tab ul{
    list-style: disc;
    margin: 1em 0;
    padding-left: 40px;
    display: block;

}

.bbs-view-area ul{
  list-style: disc;
  margin: 1em 0;
  padding-left: 40px;
  display: block;
}