    .news_block_pl{
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 1.1;
    }
    .news_place{
        display: block;
        margin: 10px auto;
        margin-bottom: 15px;
        background: #333;
        box-shadow: 0 0 5px #222;
        position: relative;
    }
    .news_name{
        display: block;
        text-align: Left;
        padding: 10px 20px;
        width: calc(100% - 40px);
        border-top: 1px solid orange;
        border-bottom: 1px solid orange;
        font-size: 18px;
        color: #FAB544;
        background: rgb(220, 155, 50, .1);
        position: relative;
    }
    .news_report_count{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 38px;
        height: 38px;
        border: 1px solid rgb(231, 76, 60);
        color: rgb(231, 76, 60);
        background: rgb(231, 76, 60, .4);
    }
    .news_text{
        display: block;
        padding: 10px 20px;
        width: calc(100% - 40px);
    }
    .news_bar{
        display: block;
        padding: 5px 20px;
        width: calc(100% - 40px);
        font-size: 14px;
    }
    .news_time{
        display: inline-block;
        width: 30%;
        text-align: left;
        vertical-align: top;
        padding: 0;
        margin: 5px 0;
        line-height: 1;
        color: #FAB544;
        font-size: 14px;
    }
    .news_likes{
        display: inline-block;
        width: 65%;
        text-align: right;
        vertical-align: top;
        padding: 0;
        margin: 0;
        line-height: 1;
    }
    .news_likes button{
        display: inline-block;
        margin: 1px;
        font-size: 14px;
        padding: 5px 10px;
        border: 1px solid #ccc;
        color: #ccc;
        background: none;
    }
    .news_likes button:hover{
        color: #FAB544;
        border-color: #FAB544;
        transition-duration: .5s;
    }
    #newsButtonSend{
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: right;
    }
    #newsButtonSend div{
        display: inline-block;
        padding: 7px 14px;
        font-size: 14px;
        background: orange;
        color: #000;
        border-radius: 5px;
        border: none;
        margin: 10px;
        line-height: 1;
        cursor: pointer;
    }
    #newsButtonSend div:hover{
        background: yellow;
        transition-duration: .5s;
    }
    .news_coment{
        display: block;
        width: calc(95% - 12px);
        margin: 0 auto;
        margin-bottom: 5px;
        padding: 5px;
        position: relative;
        background: #333;
        border: 1px solid #666;
        text-align: left;
    }
    .coment_info{
        display: block;
        margin: 0 auto;
        width: calc(95% - 12px);
        background: #444;
        font-size: 12px;
        color: #999;
        padding: 5px;
        border: 1px solid #666;
        text-align: left;
    }