.banner-text {
    margin: 20px;
    width: 220px;
}

.item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #bababa;
}

/* .item:not(:first-child):hover {
    background: #c3edeb;
} */
.item:hover {
    background: #c3edeb;
}

.item:hover .hexagon-image-border {
    background-image: url(../img/hexagon_hover.png);
}

/* .item:first-child .item-img {
    background-image: url(../img/detail.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 70%;
    height: 100%;
    margin: 0 30px 0 auto;
}

.item:first-child {
    padding: 30px 0;
} */

.item:last-child {
    border-bottom: none;
}

.item-img {
    margin: 20px 20px 20px 60px;
}

.item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    padding: 50px 50px 50px 36px;
    position: relative;
    margin-top: -20px;
}

.item-info {
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: inherit;
    font-size: 12px;
    color: #707070;
    margin-top: 10px;
}

.item-info .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.item-title {
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 20px;
}

.item-title:after {
    content: '';
    width: 42px;
    height: 3px;
    background-color: #68d3cd;
    display: block;
    margin-top: 18px;
}

.item-info .bottom {
    margin-bottom: -20px;
}

.item .detail-btn {
    color: #fff;
    background-color: #68d3cd;
    padding: 4px 20px;
    font-size: 12px;
    border-radius: 20px;
}

.item-title-href:active, .item-title-href:hover, .item-title-href:focus {
    color: #000;
}