.sc_view .link_back{
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    cursor: pointer;
}
.sc_view .link_back::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    background: url(../img/arrow_left.svg) no-repeat center / contain;
}


/* 글 박스 */
.sc_view .head_box{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 100px 0 20px;
    border-bottom: 2px solid #000;
}
.sc_view .head_box .cate, .sc_view .head_box .info_area .col_left .date{
    color: #888;
}
.sc_view .content_area{
    padding-bottom: 60px;
    border-bottom: 1px solid #bbb;
}
.sc_view .head_box .title{
    font-size: 36px;
    font-weight: 500;
    padding: 25px 0;
    line-height: 1.4;
}
.sc_view .head_box .info_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc_view .head_box .info_area .col_left{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sc_view .head_box .info_area .col_right .share{
    padding: 8px 20px;
    font-size: 15px;
    border: 1px solid #000;
    cursor: pointer;
}


/* 텍스스 스타일 */
.sc_view .content_box{
    width: 100%;
    padding: 60px 30px;
}
.sc_view .content_box p{
    font-size: 17px;
    line-height: 1.6;
}
.sc_view .content_box .img_wrap{
    position: relative;
    width: 680px;
    margin: 30px auto;
    overflow: hidden;
    transition: all 0.1s;
}
.sc_view .content_box .img_wrap:hover::after{
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: #464646;
    font-weight: 500;
    background: url(../img/zoom.svg) no-repeat center/contain;
    border-radius: 50px;
}
.sc_view .content_box .img_wrap.zoom:hover::after{
    background: url(../img/out.svg) no-repeat center/contain;
}
.sc_view .content_box .img_wrap.zoom{
    width: 100%;
}
.sc_view .content_box img{
    object-fit: contain;
}


.sc_view .file_box{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8f8;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 0 30px;
    color: #666;
}
.sc_view .file_box .file_download{
    position: relative;
    padding-right: 20px;
}
.sc_view .file_box .file_download::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../img/download.svg) no-repeat center / contain;
    cursor: pointer;
}
.sc_view .file_box .file_txt {
    text-decoration: underline;
}


/* 글목록 */
.list_area{
    margin-top: 100px;
}
.list_area h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.list_area table tr{
    height: 45px;
    border-bottom: 1px solid #ddd;
}
.list_area table tr:first-child{
    border-top: 1px solid #000;
}
.list_area table tr td:nth-child(1){width: 6%; text-align: center;}
.list_area table tr td:nth-child(2){width: 10%; text-align: center;}
.list_area table tr td:nth-child(3){flex: 1;}
.list_area table tr td:nth-child(4){width: 10%; text-align: center;}
.list_area table tr td:nth-child(5){width: 10%; text-align: center;}




