.comment-list{
    background: #FFF; border-radius: 16px; padding:24px; display: flex;
}
.comment-list:not(:last-of-type){
    margin-bottom: 12px;
}
.comment-list .user{
    line-height: 44px; font-size: 16px; font-weight: 600;
}
.comment-list>.avatar{
    height: 44px; width: 44px; border-radius: 50%; margin-right: 10px;
}
.comment-list .comment{
    font-size: 18px; color: #777; line-height: 31px; margin: 10px 0;
}
.comment-group{
    background: linear-gradient(90deg, rgba(213, 235, 210, 0.32) 47.2%, rgba(255, 255, 255, 0) 111.09%);  border-radius: 10px; padding:10px;
}
.comment-group>li{
    display: inline-flex;
}
.comment-group>li:not(:last-of-type){
    margin-right: 20px;
}
.comment-group>li{
    font-size: 14px; display: inline-flex; flex-direction: column; padding:4px; min-width: 108px; text-align: center;
}
.comment-group>li>p{
    line-height: 20px;
}
.comment-group>li>p:not(:last-of-type){
    margin-bottom: 4px;
}
.comment-group>li>.name{
    font-weight: 600;
}
.comment-group>li>.tips{
    color: #777;
}
.comment-service{
    margin-top: 15px; display: flex; margin-bottom: 20px;
}
.comment-service>li{
    display: inline-flex; color: #777; font-size: 14px; align-items: center; margin-right: 20px;
}
.comment-service>li>.score{
    font-weight: 600; font-size: 16px; color: #333;
}
.comment-group>li>.price{
    color: #FF7B51; font-size: 18px;
}
.comment-list .comment{
    font-size: 18px; color: #777; line-height: 31px; margin: 10px 0;
}
.comment-list .time-action{
    display: flex; justify-content: space-between; flex-wrap: wrap; line-height: 24px; font-size: 14px; color: #777;
}
.comment-list .time-action>.action>a{
    display: inline-block; margin-left: 8px; color: #777; background-repeat: no-repeat; background-position: left center; padding-left: 20px;
}
.comment-list .time-action>.action>a.replay{
    background-image: url("../../images/comment-replay.svg");
}
.comment-list .time-action>.action>a.zan{
    background-image: url("../../images/comment-zan.svg");
}
.comment-list .time-action>.action>a.collect{
    background-image: url("../../images/comment-collect.png");
}
.comment-list .comment-image{
    display: flex; flex-wrap: wrap;
}
.comment-list .comment-image>.photo{
    width: calc(20% - 8px); margin:4px; border-radius: 16px; overflow: hidden; height: 218px; display: flex; align-items: center; justify-content: center;
}
.comment-list .comment-image>.photo>img{
    max-width: 100%; object-fit: cover;
}
.comment-list .more-comment-wrap{
    text-align: right; margin-top: 30px;
}
.comment-list .more-comment-wrap>a{
    color: var(--green); font-weight: 500; line-height: 23px; display: inline-block;
}
.comment-list .comment-reply{
    background: #F5F5F5; border-radius: 16px; padding: 42px 47px; display: flex; position: relative; margin-top: 20px; width: 100%;
}
.comment-list .comment-reply:after{
    position: absolute;content: ''; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 15px solid #F5F5F5;
    top:-12px; right: 80px;
}
.comment-list .comment-reply>.avatar{
    width: 44px; height: 44px; margin-right: 16px;
}
.comment-list .comment-reply>.comment-reply-button{
    background: var(--green); border-radius: 24px; height: 48px; line-height: 38px; color: #fff; display: block; padding: 5px 28px; min-width: 150px; text-align: center; font-size: 16px;margin-left: 16px;
}
.comment-list .comment-reply .input{
    padding: 16px 8px 16px 24px; height: 48px; background: #FFF; border: 1px solid #E8E8E8; border-radius: 30px;
}
.more-comment{
    height: 86px; line-height: 86px; background: #F8F8F8; border: 1px solid #DCDCDC; border-radius: 18px; text-align: center; color: var(--green); display: block; margin-top: 10px; font-size: 14px; font-weight: 500;
}