.content{
    position: relative;
}
.content .hr{
    position: relative;
    top: 2px;
    left: -13%;
    height: 1px;
    width: 103vw;
    background-color: silver;
}
.content h1{
    font-size: 1.5em;
}
.content h1::after{
    content: '';
    display: block;
    margin-top: 10px;
    width: 45px;
    height: 3px;
    background: rgb(15, 119, 53);
}
.content .newslist{
    background: transparent;
}
.content .newslist a{
    height: auto;
    min-height: 240px;
    border-bottom: 1px solid rgb(15, 119, 53);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2%;
    transition: 0.5s;
}
.content .newslist a:nth-child(1){
    margin-top: 25px;
}
.content .newslist a:hover{
    border-radius: 15px;
    background: rgb(241,243,242);
}
.content .newslist .left{
    width: 60%;
    color: rgb(15, 119, 53);
}
.content .newslist .left span{
    font-size: small;
}
.content .newslist .left h2{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: rgb(15, 119, 53);
}
.content .newslist .left p{
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    width: 100%;
}
.content .newslist .img{
    width: 25%;
    max-height: 200px;
    overflow: hidden;
}
/*适配≥≥≥≥≥≥≥ 适配 */
@media screen and (min-width: 2000px) {
    .content .newslist a{
        padding: 1%;
    }
    .content .newslist .img{
        width: 20%;
    }
    .content .newslist .left span{
        font-size: 1.2em;
    }
    .content .newslist .left h2{
        font-size: 2em;
    }
    .content .newslist .left p{
        font-size: 1.4em;
    }
}


/*适配≥≥≥≥≥≥≥ 手机端适配 */
@media screen and (max-width: 1200px) {
    .content .newslist a{
        height: auto;
    }
    .content .newslist .left{
        width: 70%;
        color: rgb(15, 119, 53);
    }
    .content .newslist .left h2{
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 1.5em;
    }
    .content .newslist .left p{
        color: rgb(0, 0, 0);
        font-size: 1em;
    }
    .content .newslist .img{
        width: 30%;
    }
    .content .hr{
        left: 0%;
        width: 100%;
    }
}