.col-xs-6 {
    padding: 0;
}

.hnImage-container {
    margin: 30px auto;
}

.hnImage {
    position: relative;
    height: 100%;
}

.hnImage-content {
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

.image-subcard {
    position: relative;
    display: block;
    margin: 15px auto;
    width: 290px;
    height: 390px;
    overflow: hidden;
    background-color: #f5f7f8;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.atvimg {
    position: relative;
    width: 200%;
    height: 193px;
}

.atvimg img {
    width: 50%;
    height: 100%;
}

.image-subcard .caption {
    position: absolute;
    top: 193px;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 24px;
    margin: 24px;
    padding: 0;
    font-size: 1.8rem;
    color: rgb(51, 51, 51);
}

.caption .image-title {
    font-size: 1.8rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.caption .text {
    margin-top: 15px;
    font-size: 1.4rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.share {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.share span {
    font-size: 1.4rem;
    color: rgb(153, 153, 153);
}

.share-img {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
}

.image-subcard .share img {
    width: 20px;
    transition: all .3s;
}

.image-subcard:hover {
    background-color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.image-subcard:hover .image-title {
    color: #0054A7;
}

.image-subcard:hover .text {
    color: #0054A7;
}

@media(max-width:1200px) {
    .hnImage-container {
        margin: 20px 0;
    }

    .hnImage {
        padding: 0 15px;
    }
}

@media(max-width:992px) {
    html {
        font-size: 8px
    }

    .hnImage {
        margin: 20px;
    }

}

@media(max-width:620px) {
    .hnImage {
        margin: 20px;
    }

    .image-subcard {
        width: 160px;
        height: 200px;
    }

    .image-subcard .atvimg {
        height: 96px;
    }

    .image-subcard .caption {
        top: 96px;
        margin: 5px;
    }

    .image-subcard .caption .text {
        /* 超出两行显示。。。 */
        margin: 0;
        -webkit-line-clamp: 2;
    }
}