.content-level{
    margin-top: 75px !important;
}
.content-level h5{
    margin-bottom: 15px;
}
/* 评论卡片 */
.comment-card {
    background-image: url('../images/say-bg.png');
    background-size: 100% 100%; /* 确保背景图完全覆盖卡片 */
    background-position: center;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}
.comment-card:hover {
    box-shadow:
            0 0 10px #F69501,
            0 10px 30px #FEF9F4;
    transform: translateY(-5px);
    border-radius: 30px;
}
/* 评论头部 */
.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* 头像 */
.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 用户信息 */
.comment-user h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

/* 星级评分 */
.comment-rating {
    display: flex;
    align-items: center;
}

.comment-rating img {
    width: 45%;
    margin-top: 10px;
    /* 只设置宽度，高度会自动按比例缩放，避免变形 */
    height: auto;
    /* 确保图片不受容器限制 */
    max-width: none;
}

/* 评论内容 */
.comment-content{
    min-height: 90px;
}
.comment-content p {
    padding-left: 15%;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

/* 评论底部按钮 */
.comment-footer {
    padding-left: 15%;
    display: flex;
    gap: 15px;
}

.comment-btn {
    background-color: transparent;
    color: #FF9800;
    padding: 3px 12px;
    border: 1px solid #FF9800;
    border-radius: 64px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-btn:hover {
    background-color: #FF9800;
    color: white;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .comment-footer {
        flex-direction: column;
    }
}
.rotate-shake:hover {
    animation: rotateShake 0.5s ease-in-out;
}

@keyframes rotateShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(10deg);
    }
    80% {
        transform: rotate(-10deg);
    }
}