@charset "utf-8";
/*기본 프레임*/
.section_list{
    height:calc(100vh - 101px);
    background-color:#fafafa;
    overflow:hidden;
    box-sizing: border-box;
}
.list_field_wrap{
    border:1px solid #b0b0b0;
    border-radius:12px;
    padding:3px;
    position:relative;
    background-color: #6952ff;
    border: none;
    height: 95%;
}
.list_field{
    background-color:#fafafa;
    border-radius: 8px;
    height: 100%;
}
.section_cont{
    height:calc(100vh - 101px);
    background-color:#fafafa;
    overflow:hidden;
    box-sizing: border-box;
}
#right_frame{
    height: 100%;
}
/*리스트 영역*/
.list_field .board_list_head{
    padding: 8px;
    border:1px solid #b0b0b0;
    border-bottom:none;
    background-color: #fafafa;
    border-radius:8px 8px 0 0;
    box-shadow: none;
    min-height:60px;
    position:relative;
    height: 80px;
}
.list_field .board_list_head .list_btn_area{
    position:absolute;
    top:0px;
    right:0px;
    padding:8px;
}
.list_field .board_list_head select{
    border-radius: 5px;
    border:1px solid #b0b0b0;
}
.list_field .board_list_head select:focus{
    outline: none;
    background: linear-gradient(to right, #e0f7fa 50%, white 100%);
}
/* 리스트 페이징*/
.list_field #paging_div{
    height:40px;
    border-radius: 0 0 8px 8px;
    border:1px solid #b0b0b0;
    border-top:none;
    background-color:#fafafa;
}
.list_field .pageing{
    height:40px;
    padding:8px 0;
}
.list_field .pageing .page_bar{
    height:24px;
}
.list_field .pageing .page_bar a{
    width:24px;
    height:24px;
    line-height: 18px;
    border-radius:10px;
    padding:0;
    margin:0 2px;
    overflow:hidden;
    border:1px solid #b0b0b0;
    position: relative;
}
.list_field .pageing .page_bar a img{
    margin-top:-3px;
}
.list_field .pageing .page_bar a:hover:after{
    content:'';
    position: absolute;
    left:0px; top:0px;
    background-color:rgba(0,0,0,0.1);
    width:25px; height:25px;
}
.list_field .list_bot_btn{
    position:absolute;
    left:20px; bottom:-30px;
    width:100%; height:30px;
}
.list_field .list_bot_btn .bot_btn{
    display: block;
    width:100px; height:30px;
    border-radius:0 0 10px 10px;
    background-color: #6952ff;
    cursor:pointer;
    text-align: center;
    line-height: 28px;
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.2), inset 2px 2px 3px rgba(255,255,255,0.1);
    color:white;
    text-shadow:0 0 2px rgba(0,0,0,0.1);
    font-weight:700;
}
.list_field .list_bot_btn .bot_btn:hover{
    height:28px;
    line-height: 26px;
    background-color:#3a28b2;
    box-shadow: inset -1px -1px 3px rgba(0,0,0,0.4), inset 1px 1px 3px rgba(255,255,255,0.2);
}

@media screen and (min-width:1600px){
    .section_list{
        width:530px;
        padding:20px;
        padding-right:10px;
        padding-top:2px;
        padding-bottom: 0px;
    }
    .section_cont{
        width:calc(100% - 530px);
        padding:20px;
        padding-left:10px;
        padding-top:2px;
        padding-bottom: 0px;
    }
}
@media screen and (min-width:1440px) and (max-width:1600px){
    .section_list{
        width:452px;
        padding:16px;
        padding-right:8px;
        padding-top:2px;
        padding-bottom: 0px;

    }
    .section_cont{
        width:calc(100% - 530px);
        padding:16px;
        padding-left:8px;
        padding-top:2px;
        padding-bottom: 0px;
    }
}
@media screen and (max-width:1440px){
    .section_list{
        width:384px;
        padding:12px;
        padding-right:6px;
        padding-top:2px;
        padding-bottom: 0px;
    }
    .section_cont{
        width:calc(100% - 384px);
        padding:12px;
        padding-left:6px;
        padding-top:2px;
        padding-bottom: 0px;
    }
}

#write_data_area{
    /* overflow: scroll; */
    overflow-x: hidden;
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}
/* #write_data_area::-webkit-scrollbar{
    display: none;
} */

#write_form{
    border-radius: 8px;
    overflow: hidden;
}
.board_list_second select{
    border-radius: 5px;
    border: 1px solid #b0b0b0;
}

