.board>.search{
  display:flex;
  width:100%;
  max-width:460px;
  height:40px;
  float: right;
  justify-content:flex-end;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
}
.board>.search select{
  height:40px;
  padding-left:10px;
  max-width:100px;
  font-size:1rem;
  line-height:40px;
  border-radius:5px;
  border:1px solid #ccc;
}
.board>.search select option{
  font-size:1rem;
  line-height:40px;
}
.board>.search input[type="text"]{
  width:calc(100% - 100px);
  height:40px;
  margin-left:10px;
  padding-right:40px;
  font-size:1rem;
  line-height:40px;
  border-radius:5px;
  border:1px solid #ccc;
  

}
.board>.search button[type="submit"]{
    position:absolute;
    top:0;
    right:10px;
    width:35px;
    height:40px;
    background: url(../../img/common/searchBg.png) right center no-repeat;
    background-size:22px;
    
    cursor: pointer;
}
@media only screen and (max-width : 1024px){
  .board>.search{
    max-width:none;
    width:100%;
    float:none;
    margin-top:25px;
  }
}


.board .gallery{
    display:inline-block;
    width:100%;
    text-align:left;
    margin-top:40px;
}
.board .gallery>li{
    display: inline-block;
    width: 22.75%;
    margin-left: 3%;
    margin-top: 50px;
    text-align: left;
    vertical-align: top;
}
.board .gallery>li:nth-child(4n-3){
    margin-left:0;
}
.board .gallery>li:nth-child(-n+4) {
    margin-top:0;
}
.board .gallery>li .thumb{
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
}
.board .gallery>li .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.board .gallery>li:hover .thumb img{
    transform: scale(1.1);
}
.board .gallery>li .cont{
    margin-top:20px;
}
.board .gallery>li .cont i, .board .gallery>li .cont strong, .board .gallery>li .cont p{
    display: inline-block;
}
.board .gallery>li .cont i{
    padding-left:15px;
    padding-right:15px;
    border-radius:30px;
    font-size:0.875rem;
    line-height:30px;
    font-style:normal;
    border:1px solid #ddd;
}
.board .gallery>li .cont strong{
    width:100%;
    margin-top:10px;
    font-size:1.25rem;
    line-height:1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board .gallery>li .cont p{
    margin-top:10px;
    font-size:0.938rem;
    line-height:1.25rem;
    font-weight:300;
    letter-spacing:-0.02rem;
    overflow : hidden;
    white-space: normal;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.board button[type="submit"].add{
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #333;
    background: url(../../img/iconArrowB.png) center no-repeat;
    background-size: 20px;
    opacity: 0.3;
}
@media only screen and (max-width : 860px){
  .board .gallery>li{
        width:48.5%;
        margin-top:30px;
    }
    .board .gallery>li:nth-child(4n-3){
    margin-left:3%;
    }
    .board .gallery>li:nth-child(2n-1){
    margin-left:0%;
    }
     .board .gallery>li:nth-child(3), .board .gallery>li:nth-child(4){
    margin-top:40px !important;
    }
}
.board .view{
    
}
.board .view>.title{
  position: relative;
  width:100%;
  display:flex;
  align-items:flex-start;
  justify-content: flex-start;
  padding-left:20px;
  padding-right:170px;
  text-align: left;
  border:1px solid #ccc;
  border-radius:5px;
  padding-top:18px;
  padding-bottom:18px;
}
.board .view>.title i, .board .view>.title strong, .board .view>.title .etc{
  display:inline-block;
  vertical-align:top;
}
.board .view>.title i{
    flex-shrink: 0;
  height:32px;
  padding-left:15px;
  padding-right:15px;
  border-radius:5px;
  border:1px solid #eee;
  font-size: 0.875rem;
  line-height: 30px;
  font-style: normal;
}
.board .view>.title strong{
  padding-left:15px;
  padding-top:5px;
  font-size:1.125rem;
  line-height:1.375rem;
  text-align: left;
}
.board .view>.title .etc{
  position:absolute;
  top:50%;
  right:15px;
  transform: translate(0,-50%);
}
.board .view>.title .etc span{
  display:inline-block;
  font-size:0.75rem;
  line-height:0.75rem;
}
.board .view>.title .etc span>font{
  padding-left:3px;
  font-size:inherit;
  line-height:inherit;
}
.board .view>.title .etc span.bar{
  padding-left:5px;
  padding-right:5px;
}
.board .view .util{
  width:100%;
  text-align: left;
}
.board .view .util strong, .board .view .util a{
  display:inline-block;
  vertical-align:top;
}
.board .view .util .file{
  padding-top:30px;
  padding-bottom:30px;
}
.board .view .util .file strong{
  width:110px;
  padding: 0 15px ;
  font-size:1rem;
  line-height:1rem;
  font-weight:500;
}
.board .view .util .file a{
  width:calc(100% - 110px);
  padding-left:10px;
  font-size:1rem;
  line-height:1rem;
  font-weight:300;
  letter-spacing:-0.02rem;
}
.board .view .cont{
  margin-top:50px;
  padding-bottom:50px;
  border-bottom:1px solid #ccc;
  
}
.board .view .cont p{
    text-align: left;
    font-size:1rem;
    line-height:1.5rem;
}
.board .viewList{
  margin-top:50px;
  border-top:1px solid #ccc;
}
.board .viewList>div{
  padding-top:20px;
  padding-bottom:20px;
  border-bottom:1px solid #ccc;
}

.board .viewList strong, .board .viewList a, .board .viewList span{
  display:inline-block;
  vertical-align:top;
  text-align: left;
}
.board .viewList strong{
  width:130px;
  font-size:1rem;
  line-height:1rem;
  text-align:center;

}
.board .viewList a{
  width:calc(100% - 130px - 80px);
  
  font-size:1rem;
  line-height:1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board .viewList>div:nth-child(1) strong{
  background: url(../../img/common/iconArrowUp.png)  no-repeat;
  background-position: 20px center;
  background-size:12px;
}
.board .viewList>div:nth-child(2) strong{
  background: url(../../img/common/iconArrowDown.png)  no-repeat;
  background-position: 20px center;
  background-size:12px;
}
.board .viewList span{
  width:80px;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:600;
}

.board .btnBox{
   margin-top:50px;
}
.board .btnBox a{
  width:100px;
  background-color:#fff;
  border:1px solid #ccc;
  color:#333;
}
.board .view.ver2>.title{
    padding-left:20px;
    padding-right:20px;
    text-align:center;
}
.board .view.ver2>.title strong{
    text-align:center;
}
.board .view.ver2>.etc{
    text-align:right;
    margin-top: 20px;
}
.board .view.ver2>.etc span{
  display:inline-block;
  font-size:0.75rem;
  line-height:0.75rem;
}
.board .view.ver2>.etc span>font{
  padding-left:3px;
  font-size:inherit;
  line-height:inherit;
}
.board .view.ver2>.etc span.bar{
  padding-left:5px;
  padding-right:5px;
}
.board .view.ver2 .util{
    border-bottom:1px solid #ccc;
}
.board .view.ver2>.cont{
    margin-top:0;
    padding-top:50px;
    
}
.board .view.ver2>.cont:first-child{
    border-top:1px solid #ccc;
}
.board .view.ver2>.cont>i.icon{
    display:block;
    width: 60px;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    background-color:#f08200; 
    color:#fff;
}
.board .view.ver2>.cont>.etc{
    text-align:left;
    margin-top:10px;
    margin-bottom:20px;
}
.board .view.ver2>.cont>.etc span{
  display:inline-block;
  font-size:0.75rem;
  line-height:0.75rem;
}
.board .view.ver2>.cont>.etc span>font{
  padding-left:3px;
  font-size:inherit;
  line-height:inherit;
}
.board .view.ver2>.cont>.etc span.bar{
  padding-left:5px;
  padding-right:5px;
}




@media only screen and (max-width : 860px){
  .board .view>.title{
    flex-flow: column;
    align-items: center;
    padding-left:15px;
    padding-right:15px;
    text-align:center;
  }
  .board .view>.title i, .board .view>.title .etc{
    position:relative;
    top:auto;
    left:auto;
    transform: translate(0,0);
  }
  .board .view>.title strong{
    padding-left:0;
    padding-top:15px;
    padding-bottom:15px;
    text-align:center;
  }
  .board .viewList strong{
    width:100px;
    background-position: 10px center !important;
    
  }
  .board .viewList a{
    width:calc(100% - 100px);
  }
  .board .viewList span{
    display:none;
  }
  .board .view.ver2>.title strong{
    padding-top:0;
    padding-bottom:0;
  }
  .board .view.ver2>.etc{
    text-align:center;
  }
}

.board{
  position:relative;
}

.board>strong.title{
  display:inline-block;
  position:absolute;
  top:0;
  left:0;
  font-size:2rem;
  line-height:2rem;
}
@media only screen and (max-width : 860px){
  .board>strong.title{
    display:inline-block;
    width:100%;
    position:relative;
    top:auto;
    left:auto;
  }
}

.board table.list{
    width:100%;
}
.board table.list thead>tr>th.no{
    width:5%;
    
}
.board table.list thead>tr>th.sign{
    width:10%;
}
.board table.list thead>tr>th.title{
    width:55%;
    
}
.board table.list thead>tr>th.name{
    width:15%;
}
.board table.list thead>tr>th.date{
    width:15%;
}

.board table.list thead>tr>th{
    border-top:1px solid #333;
    border-bottom:1px solid #333;
}

.board table.list thead>tr>th, .board table.list tr td{
    padding-top:20px;
    padding-bottom:20px;
    font-size:1rem;
    line-height:1.25rem;
    word-break: keep-all;
}
.board table.list tr td{
    border-bottom:1px solid #ddd;    
}
.board table.list tr td>a, .board table.list tr td>font{
    font-size:inherit;
    line-height:inherit;
    word-break: keep-all;
}
.board table.list tr td i{
    display:inline-block;
    width:60px;
    border-radius:5px;
    font-size:0.875rem;
    line-height:30px;
    text-align:center;
    font-style:normal;
}
.board table.list tr td i.green{
    background-color:#18943b;
    color:#fff;
}
.board table.list tr td i.orange{
    background-color:#f08200;
    color:#fff;
}
.board table.list tr td.title{
    text-align: left;
}
.board table.list tr  td.lock a::before{
    content: '';
    display:inline-block;
    width:13px;
    height:15px;

    margin-right:3px;
    background: url(../../img/common/iconLock.png) center 2px no-repeat;
    background-size:13px;
    vertical-align:top;
}
.board table.list tr  td.lock a{
    position: relative;
    display:inline-block;
    padding-right:70px;
}
.board table.list tr td.lock i{
    position:absolute;
    top:50%;
    right:0;
    transform: translate(0,-50%);

}
@media only screen and (max-width : 860px){
  .board table.list thead>tr>th, .board table.list tr td{

    font-size:0.875rem;
    line-height:1.25rem;
    word-break: keep-all;
  }
  .board table.list tr td i{
   width:40px;
  }
  .board table.list tr td.lock a{
    padding-right:55px;
  }
}
@media only screen and (max-width : 460px){
    .board{
        overflow-x:scroll;
    }
    .board table.list{
        width:560px;
    }
}

.board div.table {
  display: table;
  width: 100%;
  border-collapse: collapse; /* 테두리 겹침 방지 */
}
.board div.table .row {
  display: table-row;
  width: 100%;
  
}
.board div.table .row>.cell {
  display: table-cell;
  
}
.board div.table .row>.cell{
    
    padding-top:20px;
    padding-bottom:20px;
    font-size:1rem;
    line-height:1.25rem;
    word-break: keep-all;
    vertical-align:middle;
}
.board div.table .row.head>.cell{
   
    border-top:1px solid #333;  
    border-bottom:1px solid #333;    
}
.board div.table .row.middle>.cell{
    border-bottom:1px solid #ddd;    
}
.board div.table .row>.cell>a, .board div.table .row>.cell>font{
    font-size:inherit;
    line-height:inherit;
    word-break: keep-all;
}

.board div.table .row>.cell.no{
    width:5%;
}
.board div.table .row>.cell.sign{
    width:10%;
    
}
.board div.table .row>.cell.title{
    width:55%;
    padding-left:5px;
}
.board div.table .row>.cell.name{
    width:15%;
}
.board div.table .row>.cell.date{
    width:15%;
}

.board div.table .row.middle>.cell.title{
    text-align:left;
}
.board div.table .row i{
    display:inline-block;
    width:50px;
    border-radius:5px;
    font-size:0.875rem;
    line-height:30px;
    text-align:center;
    font-style:normal;
    background-color: rgba(0, 0, 0, 0.4);
    color:#fff;
}
.board div.table .row i.green{
    border:none;
    background-color:#18943b;
    color:#fff;
}
.board div.table .row i.orange{
    border:none;
    background-color:#f08200;
    color:#fff;
}


.board div.table .row .cell.lock a::before{
    content: '';
    display:inline-block;
    width:13px;
    height:15px;

    margin-right:3px;
    background: url(../../img/common/iconLock.png) center 2px no-repeat;
    background-size:13px;
    vertical-align:top;
}
.board div.table .row .cell.lock a{
    position: relative;
    display:inline-block;
    /* padding-right:70px; */
}
.board div.table .row .cell.lock i{
    position:absolute;
    top:50%;
    right:0;
    transform: translate(0,-50%);

}
.board div.table .row.middle.noti .cell.title a{
    font-weight:700;
    /* color:#18943b; */
}
@media only screen and (max-width : 860px){
  .board div.table .row>.cell{
    font-size:0.875rem;
    line-height:1.25rem;
    word-break: keep-all;
  }
  .board div.table .row i{
    font-size:0.75rem;
   width:40px;
  }
  .board div.table .row>.cell.lock a{
    padding-right:55px;
  }
}
@media only screen and (max-width : 460px){
    .board div.table{
        display:block;
        text-align: left;
        border-top:1px solid #333;
    }
    .board div.table .row.head{
        display:none;
    }
    .board div.table .row.middle{
        display: block;
        padding:15px 15px;
        
        border-bottom:1px solid #333;
   }
   .board div.table .row.middle>.cell{
        display:inline-block;
        border-bottom:none;
        padding-top:0;
        padding-bottom:0;
   }
   .board div.table .row>.cell.no, .board div.table .row>.cell.sign, .board div.table .row>.cell.title, .board div.table .row>.cell.name, .board div.table .row>.cell.date{
        width:100%;
    }
    .board div.table .row>.cell.title{
        padding-top:5px;
        padding-bottom:5px;
        padding-left:0;
        font-weight:600;
        font-size:1rem;
        line-height:1.313rem;
    }
    .board div.table .row.middle .cell.sign i {
        margin-top:5px;
        margin-bottom:5px;
    }
    .board div.table .row.middle.noti{
        background-color:#f1f1f1;
    }

}







.pagination {
  min-width:300px;
  width:100%;
  margin-top:50px;
  text-align: center;
}
.pagination>a{
  display: inline-block;
  width:30px;
  padding-top:5px;
  height:30px;
 

  box-sizing: border-box;
}
.pagination>a>img{
    width:20px;
}
.pagination>a:hover{

  color:#fff;
}
.pagination>ul{
  display: inline-block;
  width:200px;
  vertical-align:top;
}
.pagination>ul>li{
  display: inline-block;
  width:30px !important;
  height:30px !important;
  margin-bottom:0 !important;
  margin-left: 2px;

  box-sizing: border-box;
  vertical-align:top;
}
.pagination>ul>li:first-child{
  margin:0;
}
.pagination>ul>li>a{
  display:inline-block;
  width:100%;
  height:100%;
  line-height:26px;
  color:#333;
  font-size: 1rem
}
.pagination>ul>li:hover a, .pagination>ul>li.active a{
  border-bottom:1px solid #aaa;
  color:#111;
}




/**/
.board2{

}
.board2 ul, .board2 ul>li{
  font-size:0;
  line-height:0;
}
.board2 ul.list{
  display:inline-block;
  width:100%;
  text-align: left;
}
.board2 ul.list>li{
  width:31.33%;
  margin-left:3%;
  margin-top:3%;
  border:1px solid #ceccca;
  box-sizing: border-box;
  background-color:#fff;

  -webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	     -o-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}
.board2 ul.list>li:nth-child(3n-2){
  margin-left:0;
}
.board2 ul.list>li:nth-child(1), .board2 ul.list>li:nth-child(2), .board2 ul.list>li:nth-child(3){
  margin-top:0;
}
.board2 ul.list>li:hover, .board2 ul.list>li.active{
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  border:1px solid #aaa;

}

.board2 ul.list>li>a{
  display:inline-block;
  width:100%;
  height:100%;
  padding:30px;
  box-sizing: border-box;
}

.board2 ul.list>li b.name, .board2 ul.list>li strong.tit, .board2 ul.list>li p.txt{
  display:inline-block;
  width:100%;
}
.board2 ul.list>li b.name{
  display:inline-block;
  width:100%;
  margin-bottom:5px;
  font-size:1rem;
  font-weight:600;
  line-height: 1.35rem;
  color:#393232;

}
.board2 ul.list>li strong.tit{
  height: 40px;
  margin-bottom:15px;
  font-size:1rem;
  font-weight:600;
  line-height: 1.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break:keep-all;
}

.board2 ul.list>li strong.tit>i{
  display:inline-block;
  width:14px;
  height:14px;
  padding-right:1px;
  margin-left:5px;
  margin-top:2px;
  font-weight:600;
  font-size:0.6rem;
  line-height:14px;
  color:#fff;
  font-style: normal;
  text-align:center;
  background-color:#ff0000;
  vertical-align:top;
}
.board2 ul.list>li p.txt{
  height: 65px;
  font-size:0.875rem;
  font-weight:500;
  line-height: 1.3rem;
  color:#666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break:keep-all;
}
.board2 ul.list>li div.info{
  display:inline-block;
  width:100%;
  margin-top:15px;
  padding-top:15px;
  border-top:1px solid #eee
}
.board2 ul.list>li div.info strong, .board2 ul.list>li div.info span{
  display:inline-block;
  font-size:0.875rem;
  line-height:0.875rem;
  color:#909497;font-weight:500;
}
.board2 ul.list>li div.info span{
  padding-left:5px;
}
@media only screen and (max-width : 1024px){
  .board2 ul.list>li{
    width:100%;
    margin-left:0;
    border:1px solid #ceccca;

  }
  .board2 ul.list>li:nth-child(2), .board2 ul.list>li:nth-child(3){
    margin-top:3%;
  }
  .board2 ul.list>li strong.tit{
    height: auto;
    margin-bottom:15px;
    font-size:1rem;
    font-weight:600;
    line-height: 1.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: auto;
    -webkit-box-orient: vertical;
    word-break:keep-all;
  }
  .board2 ul.list>li p.txt{
    height: 60px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break:keep-all;
  }
}

.board .btnBox{
    min-height:60px;
}





.content{
  max-width:1200px;
  width:100%;
}



#ui-datepicker-div{
    margin-top:10px;
    font-size:1rem;
    line-height:1.5rem;
}
#ui-datepicker-div *{
    font-size:inherit;
    line-height:inherit;
}