.article .a {
    margin: 20px auto;
}

.article .a .a-a {
    width: 220px;
    height: 220px;
    border: 1px solid #f5f5f5;
    float: left;
    overflow: hidden;
}

.article .a .a-b {
    padding-left: 235px;
}

.article .a .a-b .a-b-a {
    font-size: 20px;
    font-weight: bold;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.a-b-b {
    line-height: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.a-b-c {
    float: right;
    color: #02a73a;
    position: absolute;
    right: 5px;
    bottom: 0;
    margin-right: 20px;
}

.a-b-c::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #04a53b;
    border-right: 2px solid #04a53b;
    transform: rotate(45deg);
    position: absolute;
    right: -10px;
    top: 7px;
}

@media only screen and (max-width: 480px) {
    .article .a{
        margin: 15px auto;
    }
    .article .a .a-a{
        width: 26.66vw;
        height:26.66vw;
    }
    .article .a .a-b {
        padding-left: 31vw;
    }

    .article .a .a-b .a-b-a {
        font-size: 3.73vw;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .a-b-b {
        font-size: 3.2vw;
        -webkit-line-clamp: 2;
        line-height: 1.6;
    }
    .a-b-c{
        font-size: 3.2vw;
    }
    .a-b-c::after{
        width: 6px;
        height: 6px;
        border-top: 1px solid #04a53b;
        border-right: 1px solid #04a53b;
        transform: rotate(45deg);
        position: absolute;
        right: -9px;
        top: 7px;
    }
}