    @charset "UTF-8"; 


/* sec02 */
.con_wrap01 {
    display: flex;
    gap: 30px;
}
.section_wrap_l{
    width: 800px;
}
.back_to_bbs{
    width: 66px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dia-gray-300);
    background-color: var(--dia-white);
    border-radius: 12px;
    font-size: 14px;
    letter-spacing: -0.28px;
    color: var(--dia-gray-800);
    cursor: pointer;
    margin-bottom: 16px;
}

.bbs_detail_container{
    width: 100%;
    border: 1px solid var(--dia-gray-300);
    border-radius: 12px;
    background-color: var(--dia-box-bg);
    padding: 26px;
    box-sizing: border-box;
    margin-bottom: 10px;
    position: relative;
}

.bbs_detail_con_title{
    margin-bottom: 16px;
}
.bbs_detail_con_title .copy_bt {
    position: absolute;
    top: 16px;
    right: 16px;
}
.bbs_detail_con_title .title {
    font-size: 16px;
    color: var(--dia-gray-900);
    font-weight: 700;
}
.bbs_detail_con_title .type span {
    width: 54px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dia-gray-300);
    color: var(--dia-gray-800);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    /* padding: 6px 8px; */
}

.coc_list li.type span{
    background-color: var(--dia-itemactive);
    color: var(--dia-primary);
}

.bbs_detail_con_top{
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    box-sizing: border-box;
    justify-content: space-between;
}
.bdc_top_l {
    display: flex;
    align-items: center;
    gap: 10px 24px;
    flex-wrap: wrap;
}
.bbs_user_detail{
    display: flex;
    align-items: center;
    gap: 8px;
}
.bbs_user_img{
    width: 32px;
    height: 32px;
}
.bbs_user_img img{
    width: 100%;
}
.bbs_user_nikname {
    font-size: 14px;
    color: var(--dia-gray-700);
}
.bbs_info{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--dia-gray-600);
}
.bbs_detail_con_top .btn_wrap {
    gap: 6px;
}


.bbs_detail_con_bot{
    border-top: 1px solid var(--dia-gray-300);
    padding-top: 20px;
}
.bbs_detail_con_bot img{
    max-width: 100%;
    display: inline;
    /* margin: 0 auto; */
}
.bbs_detail_con {
    word-break: break-all;
    font-size: 14px;
}
.btn_like {
    width: 60px;
    height: 60px;
    font-size: 12px;
    background-color: var(--dia-gray-300) ;
    text-align: center;
    line-height: 1.2;
    margin: 70px auto;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    position: relative;
}

.btn_like:hover {
    background-color: var(--dia-itemhover);
}
.btn_like.active {
    background-color: var(--dia-primary);
    color: white;
}

.btn_like img{
    width: 24px;
}
.btn_like.active img.likeicon {
    content: url(/img/like_w.svg);
}
.btn_like_active {
    width: 100px;
    height: 40px;
    position: absolute;
    bottom: 0;
    transform: scale(0);
    z-index: -1;
    display: none;
    /* opacity: 0; */
    z-index: 9;
}
.btn_like.active .btn_like_active {
    display: block;
}

.section_wrap_r{
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 70px;
    height: 100%;
    max-height: calc(100vh - 80px);
}
.section_wrap_r h5{
    height: 42px;
    line-height: 64px;
    font-size: 15px;
    letter-spacing: -0.26px;
    color: var(--dia-gray-800);
}


/* 댓글 */
#div_comment{
    width: 100%;
    background-color: var(--dia-gray-200);
    padding: 26px;
    box-sizing: border-box;
    border: 1px solid var(--dia-gray-200);
    border-radius: 12px;
    /* margin-bottom: 100px; */
    overflow-y: auto;
}
#div_comment .text_btn {
    font-size: 13px;
}
#btn_comment_regist{    
    position: absolute;
    bottom: 14px;
    right: 14px;
}
.comment{ 
    font-size: 14px;
    color: var(--dia-gray-900);
}

.frm_comment{ /* 댓글달기 */
    width: 100%;
    position: relative;
}
.textarea {
    position: relative;
}
.textarea .count_reply {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 13px;
    color: var(--dia-gray-600);
}
.comment_Desc{ /* 댓글 textarea */
    width: 100%;
    height: 100px;
    max-height: 200px;
    border-radius: 12px;
    border: none;
    padding: 10px 16px 20px 16px;
    box-sizing: border-box;
}


.comment_sec {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 20px;
    padding-bottom: 10px;
    /* margin-bottom: 10px; */
    border-top: 1px solid var(--dia-gray-400);
}
.comment_sec:first-child {
    padding-top: 0;
    border-top: 0;
}
.cmt_area{
    margin-bottom: 8px;
}
.cmt_area:last-child{
    border: none;
}
.cmt_area p a{
    font-size: 13px;
    letter-spacing: -0.26px;
    color: var(--dia-gray-900);
}
.cmt_top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.cmt_user_detail {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
}
.cmt_user_detail .cmt_user_img {
    width: 32px;
    height: 32px;
}
.cmt_user_detail .cmt_user_img img {
    width: 100%;
}
.cmt_user_detail .name {
    font-size: 13px;
    color: var(--dia-gray-700);
}
.cmt_info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--dia-gray-600);
    flex-wrap: wrap;
}
.cmt_info span {
    margin-right: 6px;
}
.view_user_info{
    display: flex;
}

/* .user_index_num{
    font-size: .75rem !important;
    padding: 10px;
    line-height: normal;
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    background-color: var(--dia-gray-300);
    border-radius: 4px;
    z-index: 9999;
    width: auto;
} 
.user_index_num li{
    cursor: pointer;
    transition: color .3s;
}
.user_index_num li:hover{
    color: var(--dia-white);
    transition: color .3s;
}
*/


/* 대댓글 */
.recomment_sec {
    position: relative;
    /* margin-top: 20px; */
    padding-left: 24px;
    padding: 20px 0 20px 24px;
    border-top: 1px solid var(--dia-gray-300);
}
.downarrow {
    position: absolute;
    left: 0;
}
.downarrow img {
    width: 18px;
    margin-top: 2px;
}

.comment_sec .btn_wrap,
.recomment_sec .btn_wrap {
    justify-content: flex-start;
    gap: 4px;
}

.div_recomment_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* etc */

.bigPictureWrapper {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top:50%;
    transform: translateY(-50%);
    width:100%;
    height:100%;
    background-color: gray; 
    z-index: 9999;
    background:rgba(255,255,255,0.5);
}
.bigPicture {
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.bigPicture img{
    max-width: 1300px;
}
.null_sec {
    color: var(--dia-gray-700);
    font-size: 14px;
}
@media all and (max-width:1320px) {
    
}
@media all and (max-width:1000px) {
    .con_wrap01{
        flex-direction: column;
    }
    .section_wrap_l,.section_wrap_r{
        width: 100%;
    }
    .section_wrap_r {
        position: unset;
        max-height: unset;
    }
}   
@media all and (max-width:760px) {
    .bbs_detail_con_top {
        flex-wrap: wrap;
        gap: 10px 0;
        align-items: flex-start;
    }
    .bigPicture img{
        max-width: 95vw;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #div_comment {
        overflow-y: unset;
    }
    .bbs_detail_container {
        padding: 16px;
    }
}