/* list */
.bbs-list {}
.bbs-list .wrap {border-top:2px solid #333;}
.bbs-list .bbs-post {
    display:flex; align-items: center; color:#777; border-bottom:1px solid #ccc; padding:45px 0;
    background:#fff; transition:all 300ms;
}
.bbs-list .bbs-post > div {}
.bbs-list .bbs-post .date {flex:0 0 auto; width:10%; margin-right:20px;}
.bbs-list .bbs-post .date .fs-18{color: #E41D25;font-weight: 600;}
.bbs-list .bbs-post .subject {flex:1;}
.bbs-list .bbs-post .subject a {display:flex; justify-content:space-between;}
.bbs-list .bbs-post .subject div {word-break: keep-all;}
.bbs-list .bbs-post .subject div .fs-20{font-weight: 600;}
.bbs-list .bbs-post .arr {flex:0 0 auto; width:140px; display:flex; justify-content: center; align-items: center;}
.bbs-list .bbs-post .arr i {
    width:45px; height:45px; display:flex; justify-content: center; align-items: center;
    border-radius:100%; transition:all 300ms;
}
.bbs-list .bbs-post:hover {background:#fbfbfb;box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.10);}
.bbs-list .bbs-post:hover .arr i {background:#000; color:#fff;}
.bbs-list .bbs-post .arr {font-size:20px; color:#000; background: url(/images/content/main/view_btn.png) no-repeat center right; width:230px;transition:0.3s;}
.bbs-list .bbs-post:hover .arr{width:270px; transition:0.3s;}
.pp{font-family: Poppins;}
.bbs-list-footer{margin-bottom:100px;}
.btn-success{background-color:#E41D25;border-color:#E41D25;}


@media(max-width:820px){
    .bbs-list .bbs-post .date {width:100px;}
    .bbs-list .bbs-post .arr {display:none;}
}
@media(max-width:425px){
    .bbs-list .bbs-post {flex-wrap:wrap;}
    .bbs-list .bbs-post .date {
        width:100%; display:flex; flex-direction: row-reverse; justify-content: flex-end; margin-bottom:10px;
    }
    .bbs-list .bbs-post .date > div {font-size:18px;}
    .bbs-list .bbs-post .date > div:first-child {margin-left:4px; position:relative;}
    /*.bbs-list .bbs-post .date > div:first-child:before {content:'.'; width:1px; position:absolute; left:-4px;}*/
    .bbs-list .bbs-post .arr {display:none;}

}