body {
    background: #f7f7f7;
}

/* 左 */
.con_left {
    width: 300px;
    float: left;
    margin: 80px 0px;
}


.so_class_item {
    background: white;
    text-align: center;
    height: 60px;
    line-height: 59px;
    box-sizing: border-box;
    border-bottom: 1px solid #f7f7f7;
}

.so_class_item:hover {
    background: #de201f;
    color: #ffffff;
}

/* 右 */

.con_right {
    margin: 80px 0px;
    box-sizing: border-box;
    padding-left: 40px;
    overflow: hidden;
}

.so_list {
    background: white;
    box-sizing: border-box;
    padding: 15px;
}

.so_title {
    width: 100%;
}

.so_title img {
    width: 100%;
}

.so_item {
    height: 80px;
    line-height: 79px;
    box-sizing: border-box;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s linear;
}

.dot {
    width: 8px;
    height: 8px;
    margin-top: 36px;
    margin-right: 15px;
    border-radius: 50%;
    background: #f40401;
}

.so_time {
    font-size: 14px;
    color: #888;

}

.so_text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.so_item:hover {
    transform: translateY(-10px);
}

.so_item:hover .so_text {
    color: #de201f;
}

/* 分页 */

.so_page {
    width: 50%;
    margin: 40px auto;
}

.so_page img {
    width: 100%;
}

@media screen and (max-width:800px) {

    /* 左 */
    .con_left {
        width: 100%;
        float: none;
        margin: 20px 0px;
    }


    .so_class_item {
        width: 50%;
        float: left;
        height: 50px;
        line-height: 49px;
        border-bottom: 0px solid #f7f7f7;
    }

    .so_class_item1 {
        border-right: 1px solid #eeeeee;
    }


    /* 右 */

    .con_right {
        margin: 0px 0px;
        padding-left: 0px;
    }

    .so_list {
        background: white;
        box-sizing: border-box;
        padding: 10px;
    }

    .so_title {
        width: 100%;
    }

    .so_title img {
        width: 100%;
    }

    .so_item {
        height: 70px;
        line-height: 69px;
    }

    .so_time {
        font-size: 12px;
        color: #888;

    }

    .so_text {
        font-size: 14px;

    }
    /* 分页 */

    .so_page {
        width: 90%;
        margin: 20px auto;
    }



}