
/* 评价轮播外层容器 深灰背景 */
.wall-printer-review-carousel {
    width: 100%;
    background: #333333;
    padding: 60px 15px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.review-carousel-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.review-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    margin: 0 0 40px;
    font-weight: 600;
}
/* 轮播可视窗口 */
.carousel-view {
    overflow: hidden;
    width: 100%;
}
/* 评价轨道 横向滑动 */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}
/* 单条评价卡片 自适应宽度 */
.review-item {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
@media (min-width:768px) {
    .review-item {
        flex: 0 0 50%;
    }
}
@media (min-width:1024px) {
    .review-item {
        flex: 0 0 33.333%;
    }
}
/* 评价卡片 */
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
}
/* 客户头部信息 */
.review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.review-user {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}
.review-country {
    font-size: 14px;
    color: #666;
}
.review-repeat-tag {
    background: #d48806;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
}
.review-date {
    margin-left: auto;
    font-size: 14px;
    color: #888;
}
/* 五星评分 */
.star-group {
    margin: 12px 0;
}
.star-orange {
    color: #ff7d00;
    font-size: 20px;
    letter-spacing: 3px;
}
/* 缩略图容器 */
.review-thumb-box {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #eee;
    overflow: hidden;
    cursor: pointer;
    background:#888;
}
.review-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
}
/* 弹窗遮罩 */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.zoom-overlay.active {
    display: flex;
}
/* 中等尺寸大图，不会过大，刚好看清文字 */
.zoom-big-img {
    max-width: 650px;
    max-height: 80vh;
    border: 3px #fff solid;
    border-radius: 8px;
}
/* 图文区域 */
.review-content {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.review-text-box {
    flex: 1;
}
.review-product-name {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
}
.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.review-more {
    color: #0066cc;
    cursor: pointer;
}
/* 轮播箭头 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,0.25);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}
.carousel-btn:hover {
    background: rgba(255,255,0.45);
}
.btn-prev {left: -20px;}
.btn-next {right: -20px;}
@media (max-width:768px) {
    .btn-prev {left: 5px;}
    .btn-next {right: 5px;}
    .review-content {flex-direction: column;}
    .review-thumb-box {width: 100%; height: 160px;}
    /* 手机禁用大图弹窗 */
    .zoom-overlay {display:none !important;}
}
/* 底部圆点 */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,0.3);
    border: none;
    cursor: pointer;
}
.dot-item.active {
    background: #fff;
}
