
.comments .header {
    display: flex;
    align-items: center;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.comments .header h3 {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin: 5px 0;
    padding: 0 10px;
}

.comments .header span {
    color: #bbbbbb;
    font-size: 12px;
}


.comments .list .item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #efefef;

}

.comments .list, .comments .empty {
    display: none;
}

.comments .parentComment {
    flex: 1;
}

.comments .list .item span {
    font-size: 15px;
    color: #999;
}

.comments .list .item p {
    font-size: 17px;
    line-height: 26px;
    color: #333333;
    margin: 10px 0;

}


.comments .list .item img {
    border-radius: 50%;
    margin-right: 10px;
    width: 36px;
    height: 36px;
}

.comments .list .item .postTime {
    font-size: 12px;
    color: #bbbbbb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comments .list .item .postTime img {
    width: 16px;
    height: 16px;
}

.publish .weui-cells {
    background-color: #e2e3e3;
}

.publish .weui-cell {
    padding: 5px;
}

.publish .weui-cells input {
    background-color: #FFFFFF;
    height: 40px;
    padding: 5px 0;
    border-radius: 5px;
}

.publish {
    width: 100%;
}

.publish a {
    margin-right: 0;
    margin-left: 5px;
}

.publish .inputWrapper {
    flex: 4;
}

.publish .weui-btn_primary {
    background-color: #009688;
}

.publish .inputWrapper input{
    text-indent: 5px;
}

.publish .weui-btn_primary:not(.weui-btn_disabled):active {
    color: hsla(0, 0%, 100%, .6);
    background-color: #009688;
}

.comments .list .item section {
    background-color: #fffdef;
    border: 1px dashed #EF4;
    padding: 5px;
    color: #999999;
    border-radius: 5px;
    font-size: 13px;
}

.comments .empty {
    text-align: center;
    margin-top: 10px;
}

#replyMask {
    background: #00000050;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

#replyDialog {
    width: 80%;
    background: #FFFFFF;
    border-radius: 10px;
    color: #777777;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    top:-15vh;
}

#replyDialog header {
    background: #f8f8f8;
    height: 44px;
    line-height: 44px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-content: center;
    padding-left: 10px;
}

#replyDialog header span:last-child {
    color: #53bcf5;
    margin-left: 5px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#replyDialog section {
    padding: 15px;
}

#replyDialog section textarea {
    border: 1px solid #efefef;
    background: #f8f8f8;
    width: 100%;
    min-height: 120px;
    padding: 5px;
    text-indent: 1em;
    box-sizing: border-box;
}


#replyDialog footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #efefef;
}

#replyDialog footer span, #replyDialog footer a {
    font-size: 16px;
    width: 80px;
    text-align: center;
    flex: 1;
    height: 50px;
    line-height: 50px;
}

#replyDialog footer a {
    color: #53bcf5;
}