@charset "utf-8";
/*新闻部分总览*/
.content li{
    float: none;
    margin-top:10px;
    cursor: default;
    padding:20px 0;
    border-bottom:1px dotted #ccc;
}
.content li a{
    color: #000;
    text-transform: none;
}
.content li a:hover{
    color: #01948E;
}
.content li div p:nth-of-type(1){
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content li div p:nth-of-type(2){
    display: -webkit-box;
    max-height: 7.2em;
    overflow: hidden;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    line-height: 2rem
}
@media screen and (max-width: 768px) {
    .content li div p:nth-of-type(2){
        font-size:12px;
    }
    .content li div p:nth-of-type(1){
        font-weight: bold;
    }
}
.content li div>span:last-child{
    display: block;
    margin-top: 0.5em;
    float: right;
}
.content li div>span:last-child a{
    display: block;
    font-size: 1.1em;
    text-align: center;
    line-height:2em;
}
.content li div>span:last-child:hover{
    border-color: #01948E;
}
.content li div>span:last-child:hover a{
    color: #01948E;
}