/* ===== 布局 ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    column-gap: 32px;   /* 横向间距 */
    row-gap: 20px;      /* 纵向间距，自己改成你想要的 */
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-head {
    flex-basis: 100%;
}
.main-left {
	width: 808px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* ===== 左栏内容 ===== */
.app-card {
    background: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
    border-radius: 8px;
}
.app-card-two {
    background: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
}
/* 产品信息 */
.app-head {
    padding: 24px;
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.app-logo {
    height: 104px;
	width: 104px;
    border-radius: 18%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}
.app-logo img {
    max-height: 104px;
    max-width: 104px;
    border-radius: 8px;
}
.app-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.app-info h1 {
    margin: 3px 0 10px;
    font-size: 22px;
    font-weight: 700;
}
.app-info h1 span {
	font-size: 16px;
    color: #999;
    font-weight: normal;
    vertical-align: 2px;
    margin-left: -1px;
    display: inline-block;
    transform: translateY(2px);
}
.app-info p {
    margin: 0 0 13px;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
/* 国家/公司行 */
.app-meta-line {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}
.app-meta-line .label {
    color: #999;
}
.app-meta-line a {
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: color .25s;
}
.app-meta-line a:hover {
    color: #111827;
}
.app-meta-line .divider {
    width: 1px;
    height: 13px;
    background: #edebeb;
    margin: 0 14px;
}
.app-meta-line .bi-chevron-right {
    font-size: 12px;
    color: #d1d5db;
}
.app-meta-line a:hover .bi-chevron-right {
    color: #111827;
    transform: translateX(2px);
}
/* 评分 */
.app-rating {
    position: relative;
    margin-left: auto;
    text-align: center;
    padding: 0 20px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    border-radius: 5px;
    z-index: 0;
    background-color: rgb(0 0 0 / 0.8%);
    gap: 1px;
}
.app-rating::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/liu123/img/ignbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.3;
    z-index: -1;
    border-radius: inherit;
}
.app-rating .rating-score {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}
.app-rating .rating-score span {
    padding-left: 3px;
    font-size: 23px;
    margin-top: 1px;
    display: block;
    float: right;
}
.app-rating .rating-stars i {
    font-size: 18px;
}
.app-rating .rating-stars {
  position: relative;
  display: inline-block;
  font-size: 8px;
  color: #e4e5e9; /* 未激活灰色 */
}
.app-rating .rating-stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: calc(var(--rating) * 1%);
  color: #23c268; /* 激活绿色 */
  pointer-events: none;
}
.app-rating .rating-stars i {
  margin-right: 2px;
}
.app-rating .rating-count {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}
.app-rating .rating-count .bi-r-circle::before {
    font-weight: bold!important;
    padding-left: 2px;
}
/* ===== 下方操作区 ===== */
.app-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 24px 24px 24px;
    flex-wrap: wrap;
    gap: 18px;
    position: relative;
}
.app-left-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
/* ===== 链接按钮组 ===== */
.app-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.app-links a:hover {
	color: #fff!important;
}
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 13px 33px;
    border-radius: 4px;
    color: #fff;
}
.btn-link i {
    font-size: 16px;
    line-height: 1;
}
.btn-link.btn-website i {
    position: relative;
    top: 1.5px;
}
.btn-link.btn-windows i {
    position: relative;
    font-size: 13px;
    margin-top: 0.5px;
}
.btn-link.btn-android i {
    position: relative;
    font-size: 15px;
}
.btn-link.btn-iphone i,.btn-link.btn-mac i {
    position: relative;
    top: -1px;
}
.btn-link:hover {
    opacity: 0.9;
}
/* 平台专属颜色 */
.btn-website {
    background: #0095F6;
} /* 官网 */
.btn-android {
    background: #34a853;
} /* 安卓绿色 */
.btn-iphone {
    background: #6E6E6E;
} /* 苹果深灰 */
.btn-windows {
    background: #005A9E;
} /* Windows蓝 */
.btn-mac {
    background: #3f3f3f;
    color: #fff;
} /* Mac银灰 */
/* 标签 */
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.app-tags a {
    display: block;
    font-size: 12px;
    color: #7A7D7A;
    border: 1px solid #CFD1D0;
    padding: 4px 8px;
    border-radius: 3px;
}
.app-tags a:hover {
    border-color: #23C268;
    color: #0AAC3C;
}

/* ===== Tabs 导航 ===== */
.app-tabs {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 15px 24px 0;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.app-tab {
    position: relative;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    padding-bottom: 16px;
}
.app-tab.active {
    font-weight: 700;
    font-size: 18px;
}
.app-tab.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 18px;
    height: 2px;
    background: #22c55e;
    border-radius: 3px;
    transform: translateX(-50%);
}
.app-tab span {
    color: #A7A8A7;
    font-size: 12px;
}
/* ===== 正文 ===== */
.app-content {
    background: #fff;
    padding: 24px 24px 18px 24px;
    font-size: 14px;
    color: #444;
}
.app-content p{
    line-height: 1.9;
}
/* ===== 信息 ===== */
.info-section {
    padding: 0 24px 34px 24px;
}
.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.info-title::before {
    content: "";
    width: 4px;
    height: 16px;
    background: #22c55e;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
    position: relative;
}
.info-desc {
    color: #555
}
.info-desc p {
    margin: 10px 0;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    padding: 20px 20px 30px;
    font-size: 14px;
    background: #fbfafa;
    margin-top: 14px;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-label {
    color: #A7A8A7;
    font-size: 13px;
}
.info-value {
    color: #444;
    font-size: 14px;
}
.info-value a {
    color: #555;
}
.info-value .app-leixing a,.app-kfz a {
    color: #0AAC3C;
}
.info-value a i {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.info-value a.shejiao-youtube i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-twitter i {
    font-size: 14px;
	margin-right: 8px;
}
.info-value a.shejiao-facebook i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-instagram i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-tiktok i {
    font-size: 14px;
	margin-right: 7px;
}
.info-value a.shejiao-reddit i {
    font-size: 15px;
}
.info-value a i::after {
	content: attr(data-original-title);
	position: absolute;
	transform: translateX(-50%);
	background-color: #444;
	color: white;
	padding: 4px 8px;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
	margin-bottom: 0;
	z-index: 1000;
}
.info-value a.shejiao-youtube i::after {
    bottom: 21px;
    right: -48px;
}
.info-value a.shejiao-twitter i::after {
    bottom: 21px;
    right: -57px;
}
.info-value a.shejiao-facebook i::after {
    bottom: 21px;
    right: -53px;
}
.info-value a.shejiao-instagram i::after {
    bottom: 21px;
    right: -56px;
}
.info-value a.shejiao-tiktok i::after {
    bottom: 21px;
    right: -38px;
}
.info-value a.shejiao-reddit i::after {
    bottom: 21px;
    right: -39px;
}
.info-value a i:hover::after {
	opacity: 0.9;
}


















.highlight {

}
.highlight span {
    color: #555;
}
.highlight span i {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.highlight span.pingtai-web i {
    font-size: 15px;
	margin-right: 9px;
}
.highlight span.pingtai-windows i {
    font-size: 14px;
	margin-right: 7px;
}
.highlight span.pingtai-android i {
    font-size: 15px;
	margin-right: 7px;
}
.highlight span.pingtai-apple i {
    font-size: 14px;
}
.highlight span i::after {
	content: attr(data-original-title);
	position: absolute;
	transform: translateX(-50%);
	background-color: #444;
	color: white;
	padding: 4px 8px;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
	margin-bottom: 0;
	z-index: 1000;
}
.highlight span.pingtai-web i::after {
    bottom: 21px;
    right: -29px;
}
.highlight span.pingtai-windows i::after {
    bottom: 21px;
    right: -54px;
}
.highlight span.pingtai-android i::after {
    bottom: 21px;
    right: -45px;
}
.highlight span.pingtai-apple i::after {
    bottom: 21px;
    right: -37px;
}
.highlight span i:hover::after {
	opacity: 0.9;
}
/* ===== 右栏 ===== */
/* === 通用模块容器 === */
.module-tags, .module-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #f1f1f1;
    padding: 0 20px 25px 20px;
}
/* === 顶部标题栏 === */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 18px;
    height: 56px;
    line-height: 56px;
}
.module-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    position: relative;
}
.module-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #22c55e;
    border-radius: 1px;
}
.module-header a {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.module-header a i {
    color: inherit;
    transition: all .2s;
}
.module-header a:hover {
    color: #22c55e;
}
.module-header a:hover i {
    transform: translateX(2px);
}

/* === 内容模块 === */
.module-block .module-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.module-block .module-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
}
/* 单个内容块 */
.block-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 9px 10px;
    margin: 0 -8px;
}
.block-entry:hover {
    background: #f2fbf6;
    border-radius: 8px;
}
.block-entry:first-child {
	margin-top: -7px;
}
.block-entry:last-child {
	margin-bottom: -9px;
}
.entry-thumb {
    width: 60px;
    height: 60px;
    border-radius: 18%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #efefef;
}
.entry-thumb img {
    width: 100%;
    height: 100%;
}
/* 右侧信息区 */
.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 186px;
}
.entry-info .entry-name {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
}
.entry-info p {
    font-size: 12px;
    color: #9d9d9d;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
}
/* 评分与热度 */
.entry-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #7a7d7a;
}
.entry-meta .score {
    color: #23c268;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
}
.entry-meta .score i {
    font-size: 10px;
    padding-right: 2px;
}

/* 响应式 */
@media(max-width:900px) {
.main-container {
    flex-direction: column;
}
.main-right {
    width: 100%;
}
.app-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.info-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
/* 评论块 */
/* === 整个评分+评论白块 === */
.rating-comment-wrap {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    padding: 24px;
}
/* ===== 顶部快爆评分部分 ===== */
.rating-comment-wrap .rating-section {
    display: flex;
    flex-direction: column;
    padding: 20px 32px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
}
.rating-comment-wrap .rating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.rating-comment-wrap .rating-left {
    flex: 1;
    min-width: 220px;
}
.rating-comment-wrap .rating-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.rating-comment-wrap .rating-title .bi-r-circle::before {
    font-weight: bold!important;
    padding-left: 2px;
    font-size: 13px;
}
.rating-comment-wrap .rating-score {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.rating-comment-wrap .rating-stars {
    color: #d0d0d0;
    font-size: 16px;
    margin-bottom: 18px;
}
.rating-comment-wrap .rating-stars i {
    margin-right: 3px;
}
/* 右侧评分条（星星右对齐 + 横条） */
.rating-comment-wrap .rating-right {
    width: 51%;
    min-width: 300px;
    margin-top: 18px;
}
.rating-comment-wrap .rating-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rating-comment-wrap .rating-line {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-line .stars-text {
    width: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rating-comment-wrap .rating-line .stars-text i {
    color: #d0d0d0;
    font-size: 12px;
    margin-left: 2px;
}

.rating-comment-wrap .rating-line .bar {
    flex: 1;
    height: 6px;
    background: #f2f2f2;  /* 灰条 */
    border-radius: 3px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #23c268;   /* 你的留子绿 */
    border-radius: 3px;
}

/* 下方一行：extra + users */
.rating-comment-wrap .rating-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-footer .rating-extra span {
    color: #666;
}
.rating-comment-wrap .rating-footer .rating-users {
    color: #999;
}
/* ===== 评论区 ===== */
.rating-comment-wrap .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.rating-comment-wrap .comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 20px;
    margin-right: 10px;
}
.rating-comment-wrap .comment-avatar img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rating-comment-wrap .comment-label {
    font-size: 16px;
    color: #a7a8a7;
    margin-right: 10px;
}
.rating-comment-wrap .comment-stars {
    font-size: 20px;
    color: #d0d0d0;
}
.rating-comment-wrap .comment-stars i {
    margin-right: 4px;
    cursor: pointer;
}
.rating-comment-wrap .comment-stars i.star-active {
    color: #23c268;
}
/* 糟糕 较差 一般 不错 力荐 */
.cmt-star-text span {
    font-size: 14px;
    margin-left: 4px;
    color: #999;
    display: none;
    transform: translateY(2px);
}
.cmt-star-text span.cmt-star-text-active {
    display: block;
}
/*用户评论内容星星*/
.comment-user-stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 10px;
}
.comment-user-stars i {
    cursor: pointer;
}
.comment-user-stars i.star-user-active {
    color: #23c268;
}
.cmt-star-user-text {
    font-size: 12px;
    transform: translateY(1px);
    margin-left: 2px;
}
.cmt-star-user-text span {
    color: #a7a8a7;
}
.rating-comment-wrap .comment-all {
    margin-left: auto;
}
.rating-comment-wrap .comment-all a {
    color: #a7a8a7;
    font-size: 14px;
}
/* 输入框 */
.rating-comment-wrap .comment-box {
    background: #fafbfc;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}
.rating-comment-wrap .comment-text {
    width: -webkit-fill-available;
    height: 100px;
    line-height: 24px;
    border: none;
    resize: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    padding: 14px 16px;
}
.rating-comment-wrap .comment-text::placeholder {
color:#999;
}
/* 发表评论按钮（靠右） */
.rating-comment-wrap .comment-submit {
    display: inline-block;
    background: #56d27c;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 36px;
    border: none;
    border-radius: 30px;
    margin-top: 16px;
    cursor: pointer;
    transition: .2s;
    float: right;
}
.rating-comment-wrap .comment-submit:hover {
    background: #3fc468;
}
/* ===== 底部提示块 ===== */
.comment-bottom {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    margin-top: 20px;
    padding: 70px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.comment-bottom span {
    color: #666;
}
.starput {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* ———————————— 新增：视频封面（第几秒作为封面） ———————————— */
.card-video{
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:#fff;
}

.card-video canvas{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    background:rgba(0,0,0,.55);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
}
.play-btn i{
    font-size:36px;
    color:#fff;
}

.xgplayer-container{
    width:100%;
    height:100%;
    display:none;
}

.xgplayer-cssfullscreen{
    display:none !important;
}

/* 点赞收藏分享 */
.action-btns {
    display: flex;
    gap: 12px;
    margin: -13px 0 27px 0;
	position: relative;
	justify-content: center;
}
.action-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    color: #444;
    font-size: 12px;
    user-select: none;
    transition: .2s;
}
.action-item i {
    font-size: 13px;
    margin-right: 4px;
}
.action-item:nth-child(1) i {
    margin-top: 1px;
}
.action-item:nth-child(2) i {
    font-size: 14px;
    margin-top: -2px;
}
.action-item:nth-child(3) i {
    font-size: 11px;
}
.action-item:hover {
    background: #f5f5f5;
}
.liked {
	border: 1px solid #ff4d4f;
}
.liked a {
    color: #ff4d4f !important;
}
.liked i {
    color: #ff4d4f !important;
}
.favorited i {
    color: #f7c600 !important;
}
.shared {
    color: #23c49d !important;
    border-color: #23c49d !important;
}
.shared i {
    color: #23c49d !important;
}
/* 小弹窗 */
.share-popup {
    position: absolute;
    top: 50px;
    left: 4px;
    padding: 2px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 9999;
}
.share-popup .a2a_kit {
    display: flex;
}
.share-popup .a2a_kit a {
    margin: 6px;
}
/* 分享图标控制 */
.share-popup .a2a_kit a {
    padding: 0!important;
}

/* 用户评论列表 */
.cmt-list-page-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.cmt-list-wrap {
    width: 808px;
    padding: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}
/* 标题区域 */
.cmt-list-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.cmt-list-title-left {
    display: flex;
    align-items: center;
}
.cmt-list-title {
    font-size: 17px;
    color: #333;
}
.cmt-list-count {
    font-size: 14px;
    color: #999;
    transform: translate(2px, 0);
}
/* 排序切换 */
.cmt-list-sort {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.cmt-list-sort span {
    padding: 0 14px;
    color: #999;
    cursor: pointer;
}
.cmt-list-sort span.active {
    color: #17c964;
    font-weight: 500;
}
.cmt-list-sort span:last-child {
    padding: 0 0 0 14px;
}
.cmt-list-sort i {
    width: 1px;
    height: 14px;
    background: #ddd;
    display: inline-block;
}
/* 评论项 */
.cmt-list-item {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.cmt-list-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #eee;
}
.cmt-list-content {
    margin-left: 14px;
    flex: 1;
}
.cmt-list-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.cmt-list-time {
    font-size: 13px;
    color: #a7a8a7;
    margin: 4px 0;
}
/* 三行限制 */
.cmt-list-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.cmt-list-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
/* 展开按钮 */
.cmt-list-expand-btn {
    font-size: 14px;
    color: #0aac3c;
    cursor: pointer;
    user-select: none;
    display: none;
    margin-bottom: 6px;
    text-align: right;
}
/* 操作区 */
.cmt-list-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 12px;
}
.cmt-list-report {
    font-size: 12px;
    color: #bbb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transform: translate(0, 2px);
}
.cmt-list-report:hover {
    color: #e5533d;
}
.cmt-list-actions-right {
    display: flex;
    gap: 22px;
}
.cmt-list-actions-right a {
    color: #999;
}
.cmt-list-actions-right span {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.cmt-list-actions-right i {
    margin-right: 4px;
    position: relative;
    top: 1px;
}
.cmt-list-actions-right a:nth-child(3) {
    font-size: 12px;
}
.cmt-list-actions-right a:nth-child(3) i {
    font-size: 14px;
}
/* 查看全部 */
.cmt-list-view-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.cmt-list-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4cd964, #17c964);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(23,201,100,.25);
}
.cmt-list-view-more a:hover {
    color: #fff!important;
    background: linear-gradient(135deg, #3bdd57, #08c158);
}

.ecomment {
	margin: 0;
	padding: 0;
}

.ecomment {
    margin-bottom: 10px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 3px;
    background: #FFFFEE;
    padding: 10px;
    border: solid 1px #eee;
    font-size: 14px;
}

.ecommentauthor {
	float: left;
	color: #F96;
}

.ecommenttext {
	clear: left;
	margin: 0;
	padding: 0;
    color: #777;
}


/* 正文样式优化 */
.info-desc h3 {
    color: #333;
    margin: 14px 0;
    position: relative; /* 让伪元素定位基于 h3 */
    padding-bottom: 8px; /* 给横线留空间 */
    font-size: 15px;
}

.info-desc h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;      /* 横线长度，可调 */
    height: 2px;      /* 横线粗细 */
    background: #23c268; /* 横线颜色 */
    border-radius: 2px;
}
.info-desc p strong {
    font-size: 13px;
}

/* 头部点赞收藏 */
.app-fscx {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 15px;
    padding-top: 1px;
}

.lz-app-actions-wrapper {
    position: relative;
}
.lz-app-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
/* 通用按钮 */
.lz-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}
/* 视觉微调 */
.lz-action-btn i {
    font-size: 12px;
    color: #666;
}
/* ⭐ 收藏 */
.lz-action-fav a {
    font-size: 0;
}
.lz-action-fav.active {
    background: #fff7d6;
    border-color: #f2c94c;
}
.lz-action-fav.active i {
    color: #ffc107;
}
/* 👍 点赞 */
.lz-action-like a  {
    font-size: 0;
}
.lz-action-like.active {
    background: #e7f1ff;
    border-color: #5b8ff9;
}
.lz-action-like.active i {
    color: #2b6ff3;
}
/* 🧾 二维码 hover */
.lz-action-qr.hovering {
    background: #e9f8ef;
    border-color: #48c774;
}
.lz-action-qr.hovering i {
    color: #2e9e55;
}
/* 📤 分享 */
.lz-action-share.active {
    background: #f3e8ff;
    border-color: #b26bff;
}
.lz-action-share.active i {
    color: #8b3df5;
}
/* 二维码弹层 */
.lz-action-qr-popup {
    display: none;
    margin-top: 14px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 999;
    position: absolute;
    right: 14px;
}
.lz-action-qr-popup img {
    height: 80px;
    width: 80px;
}
.lz-action-qr-popup i {
    font-size: 40px;
    color: #333;
}
.lz-action-qr-text {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.hot-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fcf9f9;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    color: #555;
}
.hot-view i {
    color: #ff6a00;
    font-size: 16px;
}
