main{
    margin-bottom: 16px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.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;
    padding-bottom: 1px;
    margin-bottom: 12px;
}

/* 产品信息 */
.app-head {
    padding: 12px;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.app-head .app-logo {
    height: 81px;
    width: 81px;
    border-radius: 18%;
    overflow: hidden;
    background: #fbfbfb;
    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: 81px;
    max-width: 81px;
    border-radius: 18%;
}

.app-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.app-info h1 {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 400;
}

.app-info h1 span {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    vertical-align: 2px;
    margin-left: -1px;
    display: inline-block;
    transform: translateY(1px);
}

.app-info p {
    margin: 7px 0 6px 0;
    color: #bbb;
    font-size: 13px;
}

/* 国家/公司行 */
.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 {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.app-rating .rating-score {
    font-size: 16px;
    color: #23c268;
}

.app-rating .rating-score span {
    padding-left: 3px;
    font-size: 14.5px;
    margin-top: 1px;
    display: block;
    float: right;
}

.app-rating .rating-stars i {
    font-size: 15px;
}

.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;
    /* 这里原来有 font-size: ？ 如果需要可加 */
}

/* ===== 下方操作区 ===== */
.app-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 12px 12px;
    flex-wrap: wrap;
    gap: 18px;
}

.app-left-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* ===== 链接按钮组 ===== */
.app-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.app-links a:hover {
    color: #fff !important;
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    gap: 6px;
    font-size: 13px;
    padding: 14px 0;
    border-radius: 4px;
    color: #fff;
    width: 100%; /* 一行一个 + 撑满 */
    box-sizing: border-box;
}

.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: inline-flex;
    align-items: center;
    font-size: 11px;
    color: #999;
    border: 1px solid #eee;
    padding: 3px 6px;
    border-radius: 3px;
}

.app-tags a i {
    font-size: 13px;
    margin-right: 1px;
    color: #23C268; /* 图标颜色，类似你图片那种绿色 */
}

/* ===== 正文 ===== */
.app-content {
    background: #fff;
    padding: 12px 12px 10px 12px;
    font-size: 14px;
    color: #444;
}

.app-content p {
    line-height: 1.9;
}

/* ===== 信息 ===== */
.info-section {
    padding: 0 12px 34px 12px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.info-desc {
    color: #666;
}

.info-desc p {
    margin: 10px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 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,
.info-value.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: #fff;
    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: #fff;
    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: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.entry-thumb img {
    width: 100%;
    height: 100%;
}

/* 右侧信息区 */
.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.entry-info .entry-name {
    font-size: 16px;
    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;
}


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

.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: -16px 0 18px 0;
    position: relative;
    justify-content: center;
}

.action-item {
    display: flex;
    align-items: center;
    padding: 7px 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: 12px;
}

.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: 40px;
    left: 81px;
    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 a {
    margin: 6px;
}

/* 分享图标控制 */
.share-popup .a2a_kit a {
    padding: 0 !important;
}


/* 留子评论 */
.comment-section {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
	margin-bottom: 12px;
}
.comment-title {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 12px 18px 12px;
}
.comment-tip-box {
	color: #999;
    font-size: 12px;
    padding: 12px;
    border-radius: 4px;
    margin: 0 16px;
    text-align: center;
    border: 1px solid #eee;
}
.comment-btn-row {
    display: flex;
    gap: 12px;
    margin: 26px 16px;
}
.comment-btn {
    flex: 1;
    height: 46px;
    border-radius: 23px;
    background: #f7f7f7;
    border: none;
    outline: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666;
}
.comment-btn i {
    line-height: 1;
}
.comment-btn:nth-child(1) i {
	font-size: 15px;
    transform: translateY(1px);
}
.comment-btn:nth-child(2) i {
    font-size: 14px;
}
.comment-bottom-text {
    margin-bottom: 22px;
    text-align: center;
    color: #888;
    font-size: 14px;
}
/* 用户评论列表 */
.cmt-list-page-wrap {
    margin: 0 16px;
}
.cmt-list-wrap {
    background: #fff;
}
/* 标题区域 */
.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: 16px;
    font-weight: 600;
}
.cmt-list-count {
    font-size: 12px;
    color: #999;
    transform: translate(2px, 1px);
}
/* 排序切换 */
.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;
    float: left;
    margin-right: 16px;
}
.cmt-list-content {
    flex: 1;
}
.cmt-list-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.cmt-list-time {
    font-size: 13px;
    color: #a7a8a7;
    margin: 4px 0 10px;
}
/* 三行限制 */
.cmt-list-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 6px 0;
    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: 10px;
}
.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: #777;
}
.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-view-more {
    display: flex;
    justify-content: center;
    margin: 21px 0;
}
.cmt-list-view-more a {
    color: #23c268;
    font-size: 14px;
}

/*用户评论内容星星*/
.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: 13px;
    transform: translateY(1px);
    margin-left: 2px;
}
.cmt-star-user-text span {
    color: #a7a8a7;
}

.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;
}


/* ===== 热门推荐 ===== */
.app-moud {
    background: #fff;
    padding: 12px 12px 14px 12px;
    margin: 12px 0;
    box-shadow: 0 0 0 1px #f1f1f1;
    overflow: hidden;
}

/* ===== 小标题区域 ===== */
.app-moud .sift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
}

.app-moud .sift-title {
    font-size: 14px;
}

.app-moud .sift-header a {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
}

.app-moud .sift-header a i {
    color: inherit;
    transition: all .2s;
}

.app-moud .sift-header a:hover {
    color: #22c55e;
}

.app-moud .sift-header a:hover i {
    transform: translateX(2px);
}

/* ===== 应用列表 横向滑动 ===== */
.app-moud .sift-list {
    list-style: none;
    margin: 0;
    padding: 12px 0 4px 0;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox 隐藏滚动条 */
}

.app-moud .sift-list::-webkit-scrollbar {
    display: none; /* Chrome / Safari 隐藏滚动条 */
}

.app-moud .sift-item {
    flex: 0 0 auto;
    text-align: center;
}

.app-moud .sift-item img {
    width: 70px;
    height: 70px;
    border-radius: 18%;
    border: 1px solid #efefef;
}

.app-moud .sift-name {
    line-height: 1;
	padding-top: 4px;
}

.app-moud .sift-name a {
    font-size: 12px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 正文样式优化 */
.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;
}

/* ===== Tabs 导航 ===== */
.app-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0 0;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    border-top: 12px solid #f6f6f6;
    margin-bottom: 5px;
}
.app-tab {
    position: relative;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    padding-bottom: 16px;
    flex: 1;
    text-align: center;
}
.app-tab.active {
    color: #22c55e;
    border-bottom: 2px solid #22c55e;
}
.app-tab span {
    color: #A7A8A7;
    font-size: 12px;
}