.annals {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.annals a {
    width: 100%;
    margin-bottom: 15px;
}
.annals a:nth-child(2n) {
    margin-right: 0;
}
.annals-item {
    width: 100%;
    display: flex;
    background-color: #FFFFFF;
    padding: 13px 16px 10px 13px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(66, 117, 255, 0.2);
    transition: all 0.3s ease-out;
}
.annals-img {
    width: 85px;
}
.annals-img img {
    width: 100%;
}
.annals-detail {
    padding-left: 11px;
    box-sizing: border-box;
    flex: 1;
}
.annals-label {
    background-image: linear-gradient(90deg, #d6e6ff 0%, #FFFFFF 100%);
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    color: #448fec;
}
.annals-title {
    color: #000000;
    margin: 5px 0;
    font-weight: bold;
    height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.annals-text {
    font-size: 13px;
    color: #878787;
    line-height: 19px;
    height: auto;
    max-height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
@media screen and (max-width: 550px){
    .annals {
        display: block;
        padding: 10px 10px;
        box-sizing: border-box;
    }
    .annals a{
        margin: 0;
    }
    .annals-item {
        margin-bottom: 15px;
    }
}