/*评论列表页公共css样式 适用于店详页和商详页*/
a{
    display: block;
}
.comment-list-wrap{
    padding: 0 .09rem;
}
.comment-list-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-list-wrap .comment-none{
    display: none;
}
.comment-list-wrap .comment-none img{
    width: .72rem;
    height: .72rem;
    margin: .3rem auto .09rem;
}
.comment-list-wrap .comment-none p{
    font-size: 0.1rem;
    font-weight: 400;
    color: #333333;
    line-height: 0.14rem;
    text-align: center;
}
.comment-list-wrap .navbar{
    padding: .13rem 0 .09rem;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    /*隐藏滚动条，当IE下溢出，仍然可以滚动*/
    -ms-overflow-style:none;
    /*火狐下隐藏滚动条*/
    overflow:-moz-scrollbars-none;
}
.comment-list-wrap .navbar::-webkit-scrollbar{
    display:none;
}
.comment-list-wrap .navbar .nav-box{
    font-size: 0.1rem;
    font-weight: 500;
    color: #333333;
    line-height: 0.1rem;
    padding: 0 .09rem;
    height: .24rem;
    line-height: .24rem;
    background: #FFFFFF;
    border-radius: 0.12rem;
    margin-right: .09rem;
    flex-shrink: 0;
}
.comment-list-wrap .navbar .nav-box.cur{
    color: #EE2D1B;
    background: #FFEDED;
}
.comment-list .comment-card{
    width: 100%;
    background: #fff;
    border-radius: 0.07rem;
    padding: .09rem;
    box-sizing: border-box;
    margin-bottom: .09rem;
    position: relative;
}
.comment-list .isQualityEvaluation::before{
    content: '';
    width: .29rem;
    height: .29rem;
    display: block;
    background: url(//mued2.jia.com/image/wangpu/qualityEvaluation.png) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.comment-list .comment-card .comment-author{
    display: flex;
    align-items: center;
}
.comment-list .comment-card .author-img{
    width: .22rem;
    height: .22rem;
    border-radius: 50%;
    overflow: hidden;
}
.comment-list .comment-card .author-info{
    height: .22rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: .07rem;
}
.comment-list .comment-card .author-info .author-name{
    font-size: 0.1rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.1rem;
}
.comment-list .comment-card .author-info .create-time{
    font-size: 0.09rem;
    font-weight: 400;
    color: #999999;
    line-height: 0.09rem;
}
.comment-list .comment-card .comment-star{
    display: flex;
    align-items: center;
    margin: .1rem -.015rem .05rem;
}
.comment-list .comment-card .comment-star .star{
    width: .1rem;
    height: .1rem;
    background: url(//mued2.jia.com/image/wangpu/comment-star.png) no-repeat;
    background-size: 100%;
    margin: 0 .015rem;
    box-sizing: border-box;
}
.comment-list .comment-card .comment-star .star.grey{
    background: url(//mued2.jia.com/image/wangpu/comment-grey-star.png) no-repeat;
    background-size: 100%;
}
.comment-list .comment-card .comment-content{
    font-size: 0.11rem;
    font-weight: 400;
    color: #333333;
    line-height: 0.16rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.comment-list .comment-card .comment-imgs{
    display: flex;
    align-items: center;
    margin: .07rem -.03rem 0;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.comment-list .comment-card .comment-imgs .col3{
    width: 33.33%;
    padding: 0 .03rem;
    box-sizing: border-box;
    margin-bottom: .06rem;
}
.comment-list .comment-card .comment-imgs .col4{
    width: 33.33%;
    padding: 0 .03rem;
    box-sizing: border-box;
    margin-bottom: .06rem;
}
.comment-list .comment-card .comment-imgs .col4:nth-child(2){
    margin-right: .5rem;
}
.comment-list .comment-card .comment-imgs .img-box{
    box-sizing: border-box;
    position: relative;
    border-radius: 0.03rem;
    border: 1px solid #ECECEC;
    overflow: hidden;
    height: 100%;
    padding-top: 100%;
}
.comment-list .comment-card .comment-imgs .img-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.commemt-reply .reply-list{
    margin-top: .07rem;
    width: 100%;
    background: #F5F6F9;
    border-radius: 0.03rem;
    padding: .07rem;
    box-sizing: border-box;
}
.commemt-reply .reply-list .reply-item{
    max-height: .45rem;
    line-height: .15rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: .07rem;
}
.commemt-reply .reply-list .reply-item:first-child{
    margin-top: 0;
}
.commemt-reply .reply-list .reply-item .name, .commemt-reply .reply-list .reply-item .content{
    font-size: 0.11rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.15rem;
}
.commemt-reply .reply-list .reply-item .name{
    font-weight: 500;
}
.commemt-reply .reply-list .reply-item .content{
    margin-left: -7px;
}
