/* 正式内容 */

/*************** pc端 ***************/

/* 背景图 */

.content_bg {
    width: 100%;
}

.content_bg img {
    width: 100%;
    height: 100%;
}

/* 距离底部高度 */

.container_buttom {
    padding: 0 15px;
    padding-bottom: 30px;
}

/* 最新动态内容 */

.state_content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    margin: 0px 20px;
    padding: 40px 0px;
    border-bottom: 1px solid #cccccc;
}

.state_content .content_img {
    width: 25%;
    display: flex;
}

.content_img img {
    width: 280px;
    height: 189px;
    border-radius: 3px;
}

.state_content .content_detail {
    display: flex;
    width: 70%;
    flex-direction: column;
    /* margin-left: 25px; */
    position: relative;
    height: 189px;
}

.content_detail .detail_title {
    font-size: 24px;
    color: #393939;
    /* 一行省略 */
    overflow: hidden;
    /*超出部分隐藏*/
    white-space: nowrap;
    /*不换行*/
    text-overflow: ellipsis;
    height: 25px;
}

.content_detail .detail_data {
    font-size: 12px;
    color: #4e4e4e;
    /* 多行省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-top: 25px;
    height: 85px;
}

.detail_footer {
    /* position: absolute;
    bottom: 10px; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #878787;
    font-size: 12px;
    margin-top: 26px;
}

.detail_footer .footer_left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.detail_footer .footer_left img {
    width: 20px;
    height: 20px;
}

.detail_footer .footer_left .left_sign {
    color: #878787;
    font-size: 12px;
    margin-top: 1px;
    margin-left: 10px;
}

@media (max-width: 1200px) {

    .state_content .content_detail {
        width:64%;
    }
}

/********* 手机端 *********/

@media (max-width: 960px) {
    /* 距离底部高度 */
    .container_buttom {
        padding: 0 15px;
        padding-bottom: 30px;
    }
    .state_content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        margin: 0;
        padding: 20px 0px;
        border-bottom: 1px solid #cccccc;
        margin: 0;
        margin-top: 10px;
    }
    .state_content .content_img {
        width: 100%;
        display: flex;
    }
    .content_img img {
        width: 100%;
        /* height: auto; */
        height: 100%;
        border-radius: 3px;
    }
    .content_detail .detail_title {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
        height: 24px;
    }
    .state_content .content_detail {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .content_detail .detail_data {
        font-size: 12px;
        color: #4e4e4e;
        /* 多行省略 */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        margin-top: 15px;
    }
    .detail_footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        color: #878787;
        font-size: 12px;
        margin-top: 20px;
        vertical-align: middle;
    }
}