.home-waterfall {
    position: absolute;
    /*height: 100%;*/
    left: 0;
    top: 0;
}

.home-waterfall-list {
    width: 100%;
}

.home-waterfall-item {
    padding: 30px 0;
    border-bottom: 1px dashed #DDD;
}

.home-waterfall-ask,
.home-waterfall-answer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 10px auto;
}

.home-waterfall-ask {

}

.home-waterfall-answer {

}

.home-waterfall-icon {
    width: 30px;
    height: 20px;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    margin: 0 20px;
}

.home-waterfall-ask .home-waterfall-icon {
    background-color: #34D5DA;
}

.home-waterfall-answer .home-waterfall-icon {
    background-color: #636363;
}

.home-waterfall-title,
.home-waterfall-content {
    width: 410px;
}

.home-waterfall-title {
    font-size: 16px;
}

.home-waterfall-content {
    color: #999;
    font-size: 15px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}