.reviewx-slide {
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviewx-img-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 8px;
}
.reviewx-img-gallery img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
}
.reviewx-rating {
    font-size: 1.2em;
    color: #f5a623;
    margin-bottom: 6px;
}
.reviewx-content {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 5px;
}
.reviewx-author {
    font-size: 0.8em;
    color: #888;
}
.toggle-more {
    display: inline-block;
    color: #0073aa;
    cursor: pointer;
    margin-left: 5px;
    font-size: 0.85em;
}
/* 手机端优化 */
@media (max-width: 600px) {
    .reviewx-slide {
        font-size: 0.9em;
    }
    .reviewx-img-gallery img {
        max-width: 50px;
        max-height: 50px;
    }
}
