.listItem {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin-top: 40px;
    padding: 22px 44px;
    background-color: #F8F8F8;
    border-radius: 8px;
}
.listItem .row-1 {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666666;
    line-height: 21px;
}
.listItem .row-1 button {
    width: 85px;
    height: 24px;
    margin-left: 20px;
    color: #666666;
    font-size: 12px;
    border: 1px solid #0d4aa6;
    border-radius: 4px;
    background-color: transparent;
}
.listItem .row-2 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
    margin: 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listItem .row-2 a:hover {
    color: #0d4aa6;
    text-decoration: underline !important;
}
.listItem .row-3 {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666666;
    line-height: 21px;
}
.listItem .row-4 {
    margin-top: 12px;
    display: flex;
}
.listItem .row-4 .right p {
    margin-top: 0;
}

.listItem .row-4 .right .more {
    position: absolute;
    right: 78px;
    bottom: 22px;
    display: block;
    cursor: pointer;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    color: #0d4aa6;
    z-index: 10;
}
.listItem .row-4 .right .more span:hover {
    text-decoration: underline;
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
}