﻿ /*排序按钮*/
    .commentBox .sortBtnBox {
        display: flex;
        justify-content: space-around;
        width: 180px;
        margin: 23px 0 30px;
        padding: 5px;
        border-radius: 5px;
        background: #f5f7f8;
    }
        .commentBox .sortBtnBox > div {
            position: relative;
            padding: 8px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 5px;
            color: #000;
        }
            .commentBox .sortBtnBox > div.active {
                background: #fff;
                box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.10); 
            }
        /*.commentBox .sortBtnBox > div.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            display: block;
            margin-left: -11px;
            width: 22px;
            height: 4px;
            border-radius: 20px;
            background-color: #ff609d;
        }*/

    /*评论列表*/
    .commentBox .commentListBox {
        margin-bottom: 30px;
    }
        .commentBox .commentListBox .commentItemBox {
            position: relative;
            padding-left: 58px;
        }
        .commentBox .commentListBox .commentItemBox + .commentItemBox {
            margin-top: 20px;
        }
            /*头像*/
            .commentBox .commentListBox .commentItemBox .headImgBox {
                position: absolute;
                top: 0;
                left: 0;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                cursor: pointer;
            }
                .commentBox .commentListBox .commentItemBox .headImgBox img {
                    border-radius: 50%;
                }
            .commentBox .commentListBox .commentItemBox .rightCommentBigBox {
                padding-bottom: 20px;
                border-bottom: 1px solid #e8eaeb;
            }
            /*评论上部分 用户名 时间 关注 采纳 等*/
            .commentBox .commentListBox .commentItemBox .commentTopBox {
                height: 24px;
            }
                .commentBox .commentListBox .commentItemBox .commentTopBox .commentUesrNameAndDate {
                    float: left;
                    margin-top: 4px;
                }
                    .commentBox .commentListBox .commentItemBox .commentTopBox .commentUesrNameAndDate > h4 {
                        line-height: 1;
                        margin: 0 0 6px;
                        font-size: 14px;
                        font-weight: 700;
                        color: #000;
                    }
                        .commentBox .commentListBox .commentItemBox .commentTopBox .commentUesrNameAndDate > h4 .levelSytle {
                            margin-left: 4px;
                            font-weight: 400;
                            font-size: 14px;
                            color: #ee727a;
                        }
                        .commentBox .commentListBox .commentItemBox .commentTopBox .commentUesrNameAndDate > h4 .hostUserTag {
                            padding: 4px;
                            margin-left: 4px;
                            border-radius: 5px;
                            font-size: 12px;
                            background-color: rgba(255,156,41,0.2);
                            color: #ff9c29;
                            box-sizing: border-box;
                        }
                        .commentBox .commentListBox .commentItemBox .commentTopBox .commentUesrNameAndDate > p {
                            line-height: 1;
                            color: #aeaeae;
                            font-size: 12px;
                            font-weight: normal;
                        }
                .commentBox .commentListBox .commentItemBox .commentTopBox .commentTopBtnBox {
                    float: right;
                }
                    .commentBox .commentListBox .commentItemBox .commentTopBox .commentTopBtnBox > div {
                        display: inline-block;
                        padding: 3px 8px;
                        border: 1px solid #ff609d;
                        border-radius: 6px;
                        text-align: center;
                        font-size: 12px;
                        color: #ff609d;
                        box-sizing: border-box;
                        cursor: pointer;
                    }
                    .commentBox .commentListBox .commentItemBox .commentTopBox .commentTopBtnBox .anyRate {
                        background-color: transparent;
                    }
                    .commentBox .commentListBox .commentItemBox .commentTopBox .commentTopBtnBox > div.followed {
                        border: none;
                        background: #f5f7f8;
                        color: #8f9294;
                    }
                    .commentBox .commentListBox .commentItemBox .commentTopBox .commentTopBtnBox > div:hover {
                        /*color: #ff609d;*/
                    }
            /*评论内容*/
            .commentBox .commentListBox .commentItemBox .commentContentBox .imgViewerBox {
                margin-bottom: 0;
            }
                .commentBox .commentListBox .commentItemBox .commentContentBox .imgViewerBox .bigImgBox {
                    margin-bottom: 10px;
                }
                .commentBox .commentListBox .commentItemBox .commentContentBox .imgViewerBox .thumbnailsBox {
                    margin-bottom: 6px;
                }
                .commentBox .commentListBox .commentItemBox .commentContentBox > p {
                    line-height: 20px;
                    margin-bottom: 13px;
                    font-size: 14px;
                    color: #2c2c2c;
                    word-break:break-all;
                }
                .commentBox .commentListBox .commentItemBox .commentContentBox .imgViewerBox > .previewPictureBox > li {
                    margin-right: 10px!important;
                    margin-bottom: 10px!important;
                    width: 74px;
                    height: 74px;
                }
                .commentBox .commentListBox .commentItemBox .commentContentBox .imgViewerBox > .previewPictureBox > li:last-child {
                    margin-right: 0!important;
                }
            .commentBox .commentListBox .commentItemBox .rightCommentBigBox .scoreTag {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                font-size: 12px;
                color: #5e6061;
            }
                .commentBox .commentListBox .commentItemBox .rightCommentBigBox .scoreTag span {
                    margin: 0 10px 10px 0;
                    padding: 3px 5px;
                    border: 1px solid #5e6061;
                    border-radius: 6px;
                }
            /*评论按钮 回复 点赞*/
            .commentBox .commentListBox .commentItemBox .commentBtnBox {
                display: flex;
                align-items: center;
                line-height: 1;
                text-align: right;
                font-size: 12px;
            }
                .commentBox .commentListBox .commentItemBox .commentBtnBox > li {
                    /*display: inline-block;*/
                    display: flex;
                    align-items: center;
                    color: #8f9294;
                    cursor: pointer;
                }
                    .commentBox .commentListBox .commentItemBox .commentBtnBox > li:last-child {
                        margin-left: 20px;
                    }
                    .commentBox .commentListBox .commentItemBox .commentBtnBox > li .iconfont {
                        margin-right: 4px;
                    }
                .commentBox .commentListBox .commentItemBox .commentBtnBox > li + li {
                    /*margin-left: 23px;*/
                    margin-left: auto;
                }
                .commentBox .commentListBox .commentItemBox .commentBtnBox > li.active {
                    color: #ff609d;
                }
                    .commentBox .commentListBox .commentItemBox .commentBtnBox > li > img {
                        margin-top: -2px;
                    }
                    .commentBox .commentListBox .commentItemBox .commentBtnBox > li .el-rate {
                        height: 12px;
                        margin-top: 0;
                    }
                    .commentBox .commentListBox .commentItemBox .commentBtnBox > li .el-rate__icon {
                        font-size: 14px;
                    }
            /*一级评论回复框*/
            .commentBox .commentListBox .commentItemBox .replyBox {
                position: relative;
                margin: 10px 0 0;
            }
                .commentBox .commentListBox .commentItemBox .replyBox .replyButton {
                    width: 64px;
                    text-indent: 0;
                    letter-spacing: 0;
                }

            /*二级评论*/
        .commentBox .commentListBox .secondReplyBox {
            position: relative;
            margin-top: 20px;
            padding: 20px;
            border-radius: 5px;
            background: #f5f7f8;
        }
            .commentBox .commentListBox .commentItemBox .commentItemBox.commentItemBox2 {
                margin-top: 0;
            }
        .commentBox .commentListBox .secondReplyBox .splitLine {
            height: 1px;
            margin: 20px 0;
            background: #e8eaeb;
        }
        .commentBox .commentListBox .secondReplyBox .replyBox {
            margin-bottom: 20px;
        }
        .commentBox .commentListBox .secondReplyBox .textareatWrap {
            width: 572px;
            background: #edeff0;
        }
            .commentBox .commentListBox .commentItemBox .commentItemBox {
                margin-top: 20px;
            }
            /*展开二级回复*/
            .commentBox .commentListBox .commentItemBox .expandSecondCommentBox {
                margin-top: 20px;
                padding-left: 58px;
                font-size: 14px;
                color: #2c2c2c;
            }
                .commentBox .commentListBox .commentItemBox .expandSecondCommentBox > span {
                    color: #0fa8eb;
                }
                .commentBox .commentListBox .commentItemBox .expandSecondCommentBox > a {
                    color: #0fa8eb;
                    text-decoration: none;
                }

                .textareatWrap {
                    position: relative;
                    width: 678px;
                    border-radius: 5px;
                    background: #f5f7f8;
                }
                    .textareatWrap .textareatBox {
                        min-height: 36px;
                        padding: 8px 15px;
                        color: #5e6061;
                        box-sizing: border-box;
                    }
                        .textareatWrap .textareatBox[contenteditable="true"]:empty:before {
                            color: #44a6dd;
                        }
    
     .commentBox .textareatCount{
        color: #aeaeae;
        background: #f8f8f8;
        position: absolute;
        font-size: 12px;
        right: 20px;
        bottom: 12px;
    }
     .commentBox  .el-pagination.is-background .btn-next,.commentBox  .el-pagination.is-background .btn-prev,.commentBox  .el-pagination.is-background .el-pager li{
        margin: 0 5px;
        background-color: #fff;
        color: #606266;
        min-width: 30px;
        border-radius: 2px;
        border: 1px solid #c0ccda;
        padding: 0 6px;
     }
     .el-pagination.is-background .btn-next:disabled{
        display: none;
     }
     .el-pagination.is-background .btn-prev:disabled{
         display: none;
     }
    .commentBox .el-pagination.is-background .el-pager li:not(.disabled).active{
        background-color: #ff609d;
        border:0;
        color: #fff;
    }
    .commentBox .el-pagination.is-background .el-pager li:not(.disabled).active:hover {
        color: #fff;
    }
    .commentBox .el-pagination.is-background .el-pager li:not(.disabled):hover {
        color: #ff609d;
    }
    .commentBox .sofaWrap{
        text-align: center;
        color: #aeaeae;
    }
    .commentBox .sofaWrap img{
        width: 70px;
        margin-bottom: 20px;
    }
.commentBox .el-rate {
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}
.commentContentBox a {
    color: rgb(15, 168, 235);
}
    .commentContentBox a:hover {
        color: rgb(15, 168, 235);
    }