.list {
    margin-top: 10px;
}
.list>li{
    height: 45px;
    box-sizing: border-box; 
    line-height: 44px;
    position: relative;
    border-bottom: dashed 1px #ddd;
}
.list>li>a{
    float: left;
    width: calc(100% - 110px);
    font-size: 16px;
    box-sizing: border-box;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
    position: relative;
}
.list>li>a::before{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #bd1b1b;
    position: absolute;
    left: 0; top: calc(50% - 2.5px);
    border-radius: 50%;
}
.list>li>span{
    float: right;
    width: 110px;
    text-align: right;
    font-size: 16px;
    color: #999;
}
.list>li:hover a,.list>li:hover>span{
    color:#bd1b1b;
}
  
  
  
.article{
    margin-top:45px;
}
.article .article-title{
    margin-bottom: 20px;
}
.article .article-title h1{
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}
.article .article-title .about{
    display: flex;
    justify-content: center;
    line-height: 50px;
    border-bottom: 1px solid #dddddd;
    color: #999;
    font-size: 14px;
}
.article .article-title .about .line{
    background-color: #dddddd;
    margin: 0 20px;
}
.article .content{
    min-height: 600px;
    margin-top: 10px;
}
.article  .content img {
    max-width: 100% !important;
}
