@charset "UTF-8";
/* 评论模块样式 */
.comments-container {
    padding: 30px;
    background: #fff;
    border: 1px solid #dadfe6;
    border-radius: 10px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.comments-container .comments-wrapper .comments-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.comments-container .comments-wrapper .comments-header .comments-title {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
}
.comments-container .comments-wrapper .comments-header .comments-tabs {
    display: flex;
    gap: 10px;
}
.comments-container .comments-wrapper .comments-header .comments-tabs .tab-btn {
    padding: 8px 16px;
    background: #f2f2f2;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.comments-container .comments-wrapper .comments-header .comments-tabs .tab-btn.active {
    background: #3eb96f;
    color: #fff;
    border-color: #3eb96f;
}
.comments-container .comments-wrapper .comments-header .comments-tabs .tab-btn:hover {
    border-color: #3eb96f;
    color: #3eb96f;
}
.comments-container .comments-wrapper .comments-header .comments-tabs .tab-btn.active:hover {
    color: #fff;
    background: #21a154;
}
.comments-container .comments-wrapper .comments-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comments-container .comments-wrapper .comments-list .comment-item {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}
.comments-container .comments-wrapper .comments-list .comment-item .user-info {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}
.comments-container .comments-wrapper .comments-list .comment-item .user-info .user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.comments-container .comments-wrapper .comments-list .comment-item .user-info .user-name {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-header .rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-header .rating .score {
    display: inline-block;
    background: #3eb96f;
    color: #fff;
    padding: 2px 12px;
    border-radius: 10px 10px 10px 0px;
    font-size: 16px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-header .rating .label {
    color: #9e9e9e;
    font-size: 14px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-header .date {
    font-size: 14px;
    color: #9e9e9e;
    font-family: Arial, Helvetica, sans-serif;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-content {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-images {
    display: flex;
    gap: 10px;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-images .comment-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.comments-container .comments-wrapper .comments-list .comment-item .comment-wrapper .comment-images .comment-img:hover {
    transform: scale(1.05);
}

.comments-container .comments-wrapper .page-list {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}