.header-item {
    display: inline-block;
    margin: 0 10px;
    height: 49px;
}

.header-item.active {
    color: #009944;
}

.header-item.active:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #009944;
}

.header-btn {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.comment-tag-list {
    max-height: 114px;
    overflow: hidden;
}

.comment-tags {
    padding: 10px 15px;
    margin-bottom: 10px;
}

.comment-tag-item {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px 5px 5px 0;
    /*height: 28px;*/
    line-height: 1;
    border: 1px solid #eee;
    border-radius: 14px;
}

.comment-tag-item.selected {
    border: 1px solid #009944;
    background: #009944;
    color: #fff;
}

.btn-toggle {
    margin-bottom: -7.5px;
    width: 100%;
    height: 15px;
    background: url(../../images/icon-triangle-t.png) no-repeat center;
    background-size: 15px 7.5px;
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.comment-tags.open .btn-toggle {
    transform: rotate(0deg);
}

.comment-tags.open .comment-tag-list {
    max-height: unset;
}

.comment-item-wrap {
    display: block;
    padding: 15px;
}

.comment-item-wrap + .comment-item-wrap {
    margin-top: 7.5px;
}

.comment-item-wrap .h-avatar {
    margin: 0;
    width: 46px;
    height: 46px;
}

.comment-info {
    margin: 0 15px;
}

.icon-star {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../../images/icon-star-default.png) no-repeat center;
    background-size: 100%;
    vertical-align: middle;
}

.icon-star.active {
    background: url(../../images/icon-star-selected.png) no-repeat center;
    background-size: 100%;
}

.comment-text {
    padding: 10px 0;
}

.comment-img-list {
    display: -webkit-flex;
    display: flex;
    margin-right: -7.5px;
    /*margin-bottom: -7.5px;*/
    flex-wrap: wrap;
}

.comment-img-item {
    width: 33.33333%;
    padding: 0 7.5px 7.5px 0;
}

.comment-img {
    padding-top: 100%;
}