.content{
    width: 65%;
    margin: auto;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(50, 50, 66, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(50, 50, 66, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(50, 50, 66, 0.2);
    padding-top: 1vh;
    margin-top: 5vh;
}
.content_head{
    width: 95%;
    height: 6vh;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 3px solid #E8E8E8;
}
.content_list ul{
    padding-top: 2vh;
    width: 95%;
    min-height: 60vh;
    margin: auto;
}
.content_list ul li{
    height: 5vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E8E8E8;

}
.content_list_item_img{
    width: 25vh;
    height: 15vh;
}
.content_list_item_img img{
    width: 100%;
    height: 100%;
}
.content_list_item_span{
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_list_item_spana{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.content_list_item_spana .icon{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: black;
}
.content_list_item_spana span a{
    font-size: 17px;
    /* line-height: 30px; */
    padding-left: 13px;
    color: black;
    text-decoration: none;
    display: -webkit-box;
    overflow: hidden;  
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.content_list_item_spana span a:hover {
    transition: all 0.2s;
    color: #C7000C;
}