/* 评论轮播容器 */
.tb-testimonial-slider-container {
    padding: 0;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: transparent !important;
}

/* 标题样式 */
.tb-testimonial-slider-title {
    font-size: 32px;
    font-weight: 700;
    color: #243E2C;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

/* 轮播容器 */
.tb-testimonial-slider-wrapper {
    position: relative;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent !important;
    overflow: hidden;
}

/* 轮播区域 */
.tb-testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 轮播内部容器 */
.tb-testimonial-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: auto;
}

/* 评论项样式 - 调整为更小的尺寸 */
.tb-testimonial-slide {
    box-sizing: border-box;
    padding: 15px;
    width: 410px !important; /* 缩小宽度 */
    height: 180px !important; /* 缩小高度 */
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* 评分星星容器 */
.tb-testimonial-rating {
    margin-bottom: 10px;
    text-align: center;
}

/* 星星样式 */
.tb-star {
    color: #fc6e20; /* 橙色星星 */
    font-size: 20px;
    display: inline-block;
    margin: 0 2px;
}

/* 空星样式 */
.tb-star.empty {
    color: #ccc;
}

/* 评论标题 */
.tb-testimonial-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

/* 评论内容 */
.tb-testimonial-content {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
    min-height: 40px;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 评论作者 - 确保显示 */
.tb-testimonial-author {
    font-weight: 600;
    font-style: italic;
    color: #777;
    margin-top: 8px;
    display: block !important;
    visibility: visible !important;
}

/* 导航按钮 */
.tb-testimonial-prev,
.tb-testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fc6e20;
    font-size: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.tb-testimonial-prev {
    left: 0;
}

.tb-testimonial-next {
    right: 0;
}

/* 箭头样式 */
.tb-testimonial-prev::before {
    content: '←';
}

.tb-testimonial-next::before {
    content: '→';
}

/* 响应式调整 */
@media (max-width: 992px) {
    .tb-testimonial-slide {
        width: 350px !important;
        height: 160px !important;
    }
}

@media (max-width: 768px) {
    .tb-testimonial-slide {
        width: 300px !important;
        height: 160px !important;
    }
    
    .tb-testimonial-slider-wrapper {
        padding: 0 30px;
    }
}