.bidding .bidding-items{
    padding: 30px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.bidding .bidding-items:after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: '';
    background-color: #f5f5f5;
    transition: all 0.5s;
}

.bidding .bidding-items .data{
    float: left;
}

.bidding .bidding-items .data p{
    font-size: 22px;
    line-height: 34px;
    color: #777;
}

.bidding .bidding-items .article{
    padding-left: 156px;

}

.bidding .article h3{
    margin: 0;
    font-size: 24px;
    line-height: 36px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s;
}

.bidding .article p{
    font-size: 16px;
    line-height: 26px;
    color: #777;
    margin-top: 10px;
}

.bidding a:hover .bidding-items:after{
    width: 100%;
    background-color:#00937D;
}

.bidding a:hover .data p{
    color: #00937D;
}

.bidding a:hover .article h3{
    color: #00937D;
}
@media (max-width: 992px) {
    .bidding .bidding-items{
        padding: 15px;
    }
    .bidding .bidding-items .article{
        padding-left: 0;
    }
    .bidding .article h3{
        font-size: 18px;
        line-height: 1.6;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }
    .bidding .bidding-items .data{
        width: 100%;
        float: none;
    }
    .bidding .bidding-items .data p{
        padding-left: 22px;
        background: url("../img/icon_15.png") no-repeat left center;
        margin: 5px 0 10px;
        font-size: 14px;
        line-height: normal;
    }
    .bidding .article p{
        font-size: 14px;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        white-space: normal;
        line-height: 1.6;
    }
}