/* 强制主容器宽度为 1300px */
.main-content {
    max-width: 1300px !important;
    margin: 0 auto !important;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.Game-Detail {
    padding-bottom: 60px;
}

/* 左右布局容器 */
.CommentPage-layout {
    position: relative;
}

/* 左侧：品牌信息卡（悬浮跟随） */
.CommentPage-left {
    flex-shrink: 0;
    width: 326px;
    position: sticky;
    top: 99px;
    /* 用户指定的样式 */
    border-radius: 13px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px 0px rgba(51, 98, 255, 0.1608);
    opacity: 1;
}



/* 上半部分：品牌Logo与信息 */
.BrandInfo-top {
    display: flex;
    gap: 15px;
    padding: 18px 0 22px 16px;
}

.BrandInfo-logo {
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.BrandInfo-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.BrandInfo-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.BrandInfo-name {
    font-size: 18px;
    color: #000;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.BrandInfo-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

/* 顶部评分行：星星与数字为橙色，突出评分 */
.stat-star {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
    color: #ff5e17;
}

.stat-star .star2 {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(/buffhub/images/star.svg) no-repeat center/contain;
}

.stat-star .star2.grey {
    background: url(/buffhub/images/star1.svg) no-repeat center/contain;
}

.stat-sold {
    color: #666;
}

.BrandInfo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.tag-item i {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tag-item i.icon-fast {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C853'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}

.tag-item i.icon-safe {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C853'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.tag-item i.icon-247 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C853'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

/* 分隔线 */
.BrandInfo-divider {
    height: 1px;
    background: #eee;
    margin: 0 -25px 33px;
}

/* 下半部分：评分统计 */
.BrandInfo-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 0 16px 18px 16px;
    /* 与顶部左侧对齐，避免内容贴边或超出 */
    box-sizing: border-box;
}

.BrandInfo-score-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 80px;
    /* 左侧评分列占固定宽度，避免撑爆整体宽度 */
}

.big-score {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.score-label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

.score-stars {
    display: flex;
    gap: 4px;
    margin: 5px 0;
}

.score-stars .star2 {
    width: 18px;
    height: 18px;
    background: url("/buffhub/images/star.svg") no-repeat center/contain;
}

.score-stars .star2.grey {
    background: url("/buffhub/images/star1.svg") no-repeat center/contain;
}

.total-orders {
    font-size: 14px;
    color: #333;
}

.BrandInfo-progress-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.progress-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
}

.star-label {
    width: 26px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-mini {
    width: 12px;
    height: 12px;
    background: url("/buffhub/images/star.svg") no-repeat center/contain;
    display: inline-block;
}

.progress-bar {
    width: 113px;
    flex: 0 0 113px;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #FFBF00;
    ;
    border-radius: 3px;
}

.percent-label {
    width: 30px;
    text-align: right;
}

/* 右侧：评论内容区 */
.CommentPage-right {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    max-width: none;
}

/* 评论卡片整体 */
.ReviewsPage-card {
    background: #fff;
    position: relative;
}

/* 评论分类 */
.ReviewsPage-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    border: 1px solid #f2f2f2;
    border-radius: 4px 4px 0 0;
}

.ReviewsPage-title-wrapper #sortTab {
    display: flex;
    gap: 38px;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.ReviewsPage-title-wrapper #sortTab li {
    padding: 0 8px 5px 8px;
    color: #000000;
    line-height: 28px;
    font-size: 22px;
    white-space: nowrap;
}

.ReviewsPage-title-wrapper #sortTab li.active {
    border-bottom: #EE7115 3px solid;
}


.ReviewsPage-title-top h1 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin: 0;
}

/* 排序下拉 */
.sort-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.ReviewsPage-sort select {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    padding: 8px 30px 8px 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.ReviewsPage-sort select:hover {
    background: #e5e5e5;
}

.sort-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
}

/* 评论单项 */
.comment {
    padding: 14px 56px 16px 64px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #FBFCFD;
}

.comment:last-child {
    border-bottom: none;
}

.comment-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 1. 用户名与星级日期行 */
.comment-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-avatar {
    width: 60px;
    /* 头像尺寸与旧版保持一致 */
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 24px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.username {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.user-rating {
    display: flex;
    gap: 2px;
    align-items: center;
}

.user-rating b.star2 {
    background: url("/buffhub/images/star.svg") no-repeat center/contain;
    width: 19px;
    height: 19px;
}

.user-rating b.star2.grey {
    background: url("/buffhub/images/star1.svg") no-repeat center/contain;
}

.separator {
    color: #ddd;
    font-size: 14px;
    font-weight: 300;
    display: none;
}

.comment-date {
    font-size: 12px;
    color: #90949A;
}

/* 2. 购买信息行 */
.purchased-line {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    margin: 12px 0 10px 0;
}

.purchased-line strong {
    font-weight: 500;
}

/* 3. 评论内容及翻译 */
.comment-content-wrapper {
    font-size: 16px;
    color: #90949A;
    line-height: 19px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.comment-text {
    display: inline;
    word-break: break-word;
}

/* 4. 翻译按钮 */
.comment-action-row {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 18px;
    color: #EE7115;
    text-decoration: none;
    vertical-align: middle;
}

.comment-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #ccc;
    text-decoration: none;
}

.comment-toggle:hover {
    color: #ff5e17;
    text-decoration-color: #ff5e17;
}

.comment-translate-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* 5. 图片网格 */
.comment-pics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}

.comment-pic-item {
    width: 150px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    cursor: pointer;
    transition: opacity 0.2s;
}

.comment-pic-item:hover {
    opacity: 0.9;
}

.comment-pic {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* 6. 点赞行 */
.comment-footer-row {
    display: flex;
    align-items: center;
    justify-content: right;
}

.comment-helpful {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #90949A;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-radius: 20px;
    padding: 4px 12px;
}


/* pc显示 */
@media (hover: hover) and (pointer: fine) {
    .comment-helpful:hover {
        color: #EE7115;
        background: #FFF2E9;
    }
}

.love1 {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    z-index: 2;
    /* 默认空心灰色爱心 */
    background: url(../images/pic21.svg);
    background-size: 100% 100%;
    transition: transform 0.2s;
}

.comment-helpful.comment-helpful-clicked {
    color: #EE7115;
}

.comment-helpful.comment-helpful-clicked .love1 {
    /* 点赞完成后：实心红色爱心 */
    background: url(../images/pic23.svg);
    transform: scale(1);
    animation: love1-pop 560ms cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1);
}

.comment-helpful.love1-animate-wrap:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    background: rgba(255, 94, 23, 0.12);
    border: 2px solid rgba(255, 94, 23, 0.35);
    pointer-events: none;
    animation: love1-burst 560ms ease-out;
}

.love1.love1-animate {
    animation: love1-pop 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes love1-pop {
    0% {
        transform: scale(0.85);
    }

    40% {
        transform: scale(1.25);
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes love1-burst {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0.6;
    }

    60% {
        opacity: 0.25;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}

.helpful-count {
    font-size: 18px;
    font-weight: 500;
}

/* 加载更多 */
.load-more-indicator {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff5e17;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-more-comments {
    text-align: center;
    padding: 30px;
    color: #ccc;
    font-size: 14px;
}

.no-comments-placeholder {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.image-viewer-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer-inner {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    background: #111;
    border-radius: 10px;
    padding: 40px 40px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.image-viewer-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.image-viewer-close {
    position: absolute;
    right: 14px;
    top: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.image-viewer-download {
    position: absolute;
    left: 20px;
    top: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.sort-loading-mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* 移动端顶部返回+标题条（默认隐藏，移动端显示） */
.ReviewsPage-mobile-bar {
    display: none;
}

.ReviewsPage-mobile-bar .mobile-back-btn {
    border: none;
    background: transparent;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
}

.ReviewsPage-mobile-bar .mobile-back-btn svg {
    width: 22px;
    height: 22px;
}

.ReviewsPage-mobile-bar .mobile-bar-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #1f1f1f;
}

body {
    background: #FBFCFD !important;
}

.userReview {
    height: 82px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    padding-left: 31px;
    background: #fff;
    border: 1.5px solid #F5F5F5;
    border-bottom: 3px solid #EE7115;
    border-radius: 4px 4px 0 0;
}

.progress ul li {
    display: flex;
    align-items: center;
}

.CommentPageGame-content {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    gap: 27px;
    border-bottom: 1.5px solid #F5F5F5;
    border-left: 1.5px solid #F5F5F5;
    border-right: 1.5px solid #F5F5F5;
    border-radius: 0 0 4px 4px;
    background: #FBFCFD;
    margin-bottom: 24px;
}

.CommentPageGame-content .star2 {
    width: 19px;
    height: 19px;
    background: url(../images/pic20.png);
}

.CommentPageGame-content .progress li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    color: #000000;
    margin: 3px 0 0 0;
}
.CommentPageGame-content .progress li:first-child {
    margin: 0;
}
.CommentPageGame-content .progress li span{
    min-width: 12px;
    text-align: center;
}
.CommentPageGame-content .progress li .star {
    width: 19px;
    height: 19px;
    display: inline-block;
    background: url(../images/star.svg) no-repeat center/contain;
}

.CommentPageGame-content .progress li .progressbox {
    flex: 1;
    height: 14.45px;
    background: #f0f0f4;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.CommentPageGame-content .progress li .progressbox em {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #FFBE00 0%, #FF5622 100%);
    border-radius: 999px;
}

.CommentPageGame-content .progress li b {
    display: block;
    width: 40px;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-img {
    width: 122px;
    flex-shrink: 0;
    text-align: center;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-img img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .h1 {
    line-height: 33px;
    font-weight: 900;
    font-size: 32px;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    color: #90949A;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score .summary-score-value {
    font-size: 18px;
    padding: 0 6px;
    height: 28px;
    line-height: 28px;
    color: #000;
    background: #FFBE00;
    border-radius: 2px;
    font-weight: 500;
    font-family: Heavy;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score .user-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score .user-rating .star2 {
    width: 24px;
    height: 24px;
    background: url(../images/star.svg) no-repeat center/contain;
}

.CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-count {
    margin: 0;
    font-size: 18px;
    line-height: 21px;
    color: #90949A;
}

.CommentPageGame-content .CommentPageGame-right-col {
    flex: 1;
}

/* 移动端适配 */
@media screen and (max-width: 950px) {
    body {
        background: #fff !important;
    }

    .h68 {
        height: 0px !important;
    }

    .ReviewsPage-mobile-bar {
        display: flex;
        align-items: center;
        height: 1.16rem;
        background: transparent;
        position: sticky;
        top: 0;
        z-index: 5;
        border-bottom: #EE7115 3px solid;
    }

    .ReviewsPage-mobile-bar .mobile-back-btn {
        position: absolute;
        margin: 0;
        padding: 0 0.32rem;
        left: 0;
    }

    .ReviewsPage-mobile-bar .mobile-back-btn svg {
        width: 0.44rem;
        height: 0.44rem;
    }

    .ReviewsPage-mobile-bar .mobile-bar-title {
        font-size: 0.36rem;
        font-weight: 700;
        color: #000000;
    }

    .userReview {
        display: none;
    }

    .CommentPageGame-content {
        padding: 0.48rem 0.64rem;
        margin-bottom: 0;
        gap: 0.48rem;
    }

    .CommentPageGame-content .star2 {
        width: 0.24rem;
        height: 0.24rem;
        background: url(../images/pic20.png);
    }

    .CommentPageGame-content .progress li {
        gap: 0.08rem;
        font-size: 0.24rem;
        margin: 0.16rem 0 0 0;
    }

    .CommentPageGame-content .progress li:first-child {
        margin: 0;
    }

    .CommentPageGame-content .progress li span {
        font-size: 0.24rem;
    }

    .CommentPageGame-content .progress li .star {
        width: 0.28rem;
        height: 0.28rem;
    }

    .CommentPageGame-content .progress li .progressbox {
        height: 0.24rem;
    }

    .CommentPageGame-content .progress li b {
        width: 0.6rem;
        font-size: 0.24rem;
    }

    .CommentPageGame-content .CommentPageGame-left-col {
        flex: none;
        min-width: 1.32rem;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left {
        display: block;
        padding-top: 0;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-img {
        width: 1.42rem;
        margin: 0 auto;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-img img {
        width: 1.42rem;
        height: 1.42rem;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary {
        gap: 0.16rem;
        padding-top: 0.16rem;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .h1 {
        display: none;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score {
        gap: 0.08rem;
        justify-content: center;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score .summary-score-value {
        height: .24rem;
        line-height: .24rem;
        padding: 0 .04rem;
        font-size: .2rem;
    }
    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-score .user-rating .star2{
        width: .2rem;
        height: .2rem;
    }

    .CommentPageGame-content .CommentPageGame-left-col .CommentPageGame-left .CommentPageGame-summary .summary-count {
        font-size: 0.2rem;
        line-height: 0.24rem;
        text-align: center;
    }

    .CommentPageGame-content .CommentPageGame-right-col {
        width: auto;
        max-width: 100%;
    }

    /* 评论分类 */
    .ReviewsPage-title-wrapper #sortTab {
        gap: 0.58rem;
        padding: 0 0.14rem;
    }

    .ReviewsPage-title-wrapper #sortTab li {
        padding: 0 0.48rem;
        color: #000000;
        line-height: 0.88rem;
        font-size: 0.24rem;
    }

    .ReviewsPage-body .comment {
        margin: 0;
        padding: 0.32rem;
    }

    .ReviewsPage-body .comment .comment-avatar {
        width: 0.8rem;
        height: 0.8rem;
        margin-right: 0.16rem;
        flex-shrink: 0;
    }

    .ReviewsPage-body .comment .comment-main {
        gap: 0;
    }

    .ReviewsPage-body .comment .comment-main .comment-header-row {
        gap: 0.08rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-header-row .username {
        font-size: 0.24rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-header-row .user-rating .star2 {
        width: 0.24rem;
        height: 0.24rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-header-row .separator {
        display: none;
    }

    .ReviewsPage-body .comment .comment-main .comment-header-row .comment-date {
        font-size: 0.2rem;
    }

    .ReviewsPage-body .comment .comment-main .purchased-line {
        font-size: 0.24rem;
        line-height: 0.3rem;
        margin: 0.16rem 0 0.04rem 0;
        padding: 0;
    }

    .ReviewsPage-body .comment .comment-main .comment-content-wrapper {
        font-size: 0.2rem;
        line-height: 0.48rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-action-row {
        gap: 0.04rem;
        font-size: 0.24rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-action-row .comment-toggle {
        font-size: 0.24rem;
        gap: 0.04rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-action-row .comment-toggle .comment-translate-icon {
        width: 0.24rem;
        height: 0.24rem;
    }

    .ReviewsPage-body .comment .comment-main .comment-pics-grid {
        margin-top: 0.12rem;
        gap: 0.12rem;
        margin: 0;
    }

    .ReviewsPage-body .comment .comment-main .comment-pics-grid .comment-pic-item {
        width: 2.14rem;
        height: 1.2rem;
    }

    .breadcrumb-bg {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    .CommentPage-layout {
        flex-direction: column;
        gap: 20px;
    }

    .CommentPage-left {
        width: 100%;
        position: static;
        /* 取消吸顶 */
        margin-bottom: 0;
        order: -1;
        padding: 0 15px;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .BrandInfo-card {
        padding: 18px 16px 16px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        margin: 0;
        background: #fff;
    }

    .BrandInfo-divider {
        display: none;
    }

    .BrandInfo-bottom {
        display: none;
    }

    .BrandInfo-top {
        gap: 16px;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }

    .BrandInfo-logo {
        flex: 0 0 100px;
        flex-shrink: 0;
    }

    .BrandInfo-logo img {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }

    .BrandInfo-meta {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        text-align: right;
    }

    .BrandInfo-name {
        font-size: 22px;
        line-height: 1.25;
        word-break: break-word;
        color: #121212;
        font-weight: 800;
    }

    .BrandInfo-stats {
        gap: 10px;
        font-size: 15px;
        flex-wrap: wrap;
        align-items: center;
        color: #6a6a6a;
        font-weight: 600;
    }

    .BrandInfo-stats .stat-star {
        color: #ff5e17;
        font-weight: 800;
        gap: 6px;
        font-size: 17px;
    }

    .BrandInfo-stats .stat-sold {
        color: #6a6a6a;
        font-weight: 600;
        font-size: 14px;
    }

    .BrandInfo-sold {
        color: #6a6a6a;
        font-weight: 600;
    }

    .BrandInfo-tags {
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 6px;
    }

    .BrandInfo-score-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .big-score {
        font-size: 36px;
    }

    .ReviewsPage-card {
        padding: 0;
    }


    .ReviewsPage-title-top {
        display: none;
    }

    .ReviewsPage-sort {
        width: auto;
    }

    .sort-dropdown-wrapper {
        width: auto;
    }

    .ReviewsPage-sort select {
        width: auto;
        min-width: 140px;
    }



    .comment-header-row {
        gap: 6px;
        align-items: center;
        flex-wrap: nowrap;
        min-width: 0;
        white-space: nowrap;
    }

    .username {
        font-size: 16px;
        font-weight: 800;
        color: #1d1d1f;
        display: inline-flex;
        align-items: center;
        margin-right: 6px;
        white-space: nowrap;
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .user-rating {
        gap: 3px;
        font-size: 14px;
        color: #ff6a00;
        display: inline-flex;
        align-items: center;
        margin-right: 6px;
        white-space: nowrap;
    }

    .user-rating b.star2 {
        width: 15px;
        height: 15px;
    }


    .purchased-line {
        font-weight: 500;
        font-size: 18px;
        color: #000000;
        line-height: 22px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }



    .comment-translate-icon {
        width: 18px;
        height: 18px;
    }


    .comment-helpful {
        gap: 0.02rem;
    }

    .comment-footer-row {
        margin-top: 4px;

        .love1 {
            width: .32rem;
            height: .32rem;
            margin: 0;
        }
    }

    .comment-helpful.comment-helpful-clicked {
        color: #ff5e17;
    }

    .comment-helpful .helpful-count {
        font-weight: 700;
        font-size: .24rem;
    }

    .progress-bar {
        width: auto;
        flex: 1 0 auto;
    }
}

/* NEWS mobile block (hide desktop) */
.ReviewsPage-news-mobile {
    display: none;
}

@media screen and (max-width: 950px) {
    .ReviewsPage-news-mobile {
        display: block;
        margin: 22px 15px 10px;
        padding: 16px;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0px 3px 6px 0px rgba(51, 169, 255, 0.0627);
    }

    .ReviewsPage-news-mobile .news-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .ReviewsPage-news-mobile .news-title {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.2px;
        color: #1f1f1f;
        position: relative;
        padding-left: 12px;
    }

    .ReviewsPage-news-mobile .news-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 4px;
        height: 18px;
        background: linear-gradient(180deg, #ff7a1a 0%, #ff5e17 100%);
        border-radius: 3px;
    }

    .ReviewsPage-news-mobile .news-all {
        font-size: 14px;
        font-weight: 700;
        color: #1f1f1f;
        text-decoration: none;
    }

    .ReviewsPage-news-mobile .news-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .ReviewsPage-news-mobile .news-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
        border-radius: 12px;
        background: #f9f9fb;
        text-decoration: none;
        color: #1f1f1f;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .ReviewsPage-news-mobile .news-thumb {
        flex: 0 0 96px;
        height: 64px;
        border-radius: 10px;
        overflow: hidden;
        background: #eaeaea;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ReviewsPage-news-mobile .news-thumb img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        display: block;
    }

    .ReviewsPage-news-mobile .news-meta {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .ReviewsPage-news-mobile .news-title-text {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
        color: #1f1f1f;
        max-height: 2.7em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .ReviewsPage-news-mobile .news-date-row {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #666;
    }

    .ReviewsPage-news-mobile .news-date-icon {
        width: 16px;
        height: 16px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Ccircle cx='8' cy='15' r='1'/%3E%3Ccircle cx='12' cy='15' r='1'/%3E%3Ccircle cx='16' cy='15' r='1'/%3E%3C/svg%3E") no-repeat center/contain;
    }

    .ReviewsPage-news-mobile .news-empty {
        padding: 12px 0;
        font-size: 14px;
        color: #888;
        text-align: center;
    }
}
