/*=======評論區-2欄=======*/
.comment-section {
    min-height: 150px;
    margin-top: 20px;
}

.comment-slider .comment-card {
    display: flex !important;
    flex-wrap: nowrap;
    margin-top: 10px;
    justify-content: flex-start;
    width: 500px;
    padding: 10px;
    margin: 10px;
    display: flex;
    border-radius: 20px;
    /* text-align: center; */
    /* transition: transform 0.3s ease; */
}

.comment-slider .commentator-avatar{
    object-fit: cover;
    width: 135px;
    height: 135px;
    transition: transform 0.3s ease;
    border-radius: 20px;
    margin-left: 5px;
    margin-right: 5px;
}

.comment-slider .comment-item-info {
    margin-left: 10px;
    /* 新增：垂直置中 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comment-slider .commenter-identity h3 {
    font-size: 0.875rem;
    padding: 0px 12px;
    border-radius: 5px;
    text-align: center;
    max-width: 120px;
}

.comment-slider .comment-card .slider {
    width: 50%;
    margin: 100px auto;
}

.comment-slider .comment-card .slick-slide {
    margin: 0px 20px;
}

.comment-slider .comment-card .slick-slide img {
    width: 100%;
}

.comment-section .slick-prev,
.comment-section .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: black;
    border: none;
    outline: none;
    background: transparent;
}

.comment-section .slick-prev:before,
.comment-section .slick-next:before {
    color: black;
}

.comment-section .slick-prev {
    left: -25px;
}

.comment-section .slick-prev:before {
    content: '←';
}

.comment-slider .comment-card .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.comment-slider .comment-card .slick-active {
    opacity: .5;
}

.comment-slider .comment-card .slick-current {
    opacity: 1;
}

.comment-section .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 220px;
    margin-right: 20px;
}
.comment-section .slick-dots{
    display: none !important;
  }
/*商品文字*/
.comment-slider .commentator {
    margin-top: 10px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
.comment-slider .comment-content {
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
/* 增加媒體查詢，當螢幕寬度小於768px時切換到手機版 */
@media screen and (max-width: 768px) {
.comment-section {
     width: 100%;
}
.comment-slider .comment-card{
    width: 100%;
}
.comment-section.slider {
    height: auto;
}
.comment-slider .commentator-avatar {
    margin-right: 0px;
    margin-left: 0px;
}
}