/* ================= Layout ================= */

.main-container {
	display: block;
	max-width: 100%;
	margin: 12px 12px 18px 12px;
}

/* ===================== 头部卡片 ===================== */
.mobile-banner-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
    margin-bottom: 12px;
}

.mobile-banner-card img {
    width: 100%;
    display: block;
    vertical-align: top;
}


/* ===================== 底部渐变 + 文本区域（左右结构） ===================== */
.mbc-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 14px 12px 14px;
    color: #fff;
    display: flex;
    align-items: flex-end;              /* 左右区块底部对齐 */
    justify-content: space-between;     /* 左右分散对齐 */
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}


/* ===================== 左侧 文本 ===================== */
.mbc-left {
    flex: 1;
    min-width: 0;   /* 防止文字撑破 */
}

.mbc-title {
    font-size: 19px;
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	text-shadow: 0 0 6px rgba(0,0,0,.45);
}

.mbc-desc {
    font-size: 12px;
    opacity: .8;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ===================== 右侧 评分 ===================== */
.mbc-right {
    margin-left: 10px;
    text-align: right;
    flex-shrink: 0;
    transform: translateY(-3px);
}

.mbc-score {
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.mbc-people {
    font-size: 10px;
    opacity: .8;
    line-height: 1;
}


.app-card {
}

.app-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.app-card li {
	background: #fff;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 10px;
	box-shadow: 0 0 0 1px #ececec;
}


/* ================= Top Section ================= */

.app-top {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}

.app-logo {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	margin-right: 12px;
	overflow: hidden;
	border-radius: 6px;
}

.app-logo img {
	width: 46px;
	height: 46px;
}

.app-mid {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.app-title a {
	font-size: 17px;
	font-weight: 700;
	color: #131715;
	text-decoration: none;
}


/* ================= Tags ================= */

.app-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 6px;
}

.app-tags a {
	height: 16px;
	line-height: 16px;
	padding: 0 4px;
	font-size: 10px;
	color: #8F8F8F;
	border: 1px solid #D8D8D8;
	border-radius: 4px;
}


/* ================= Score ================= */

.app-score {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.app-score i {
	font-size: 12px;
	color: #23c268;
	margin-right: 4px;
}

.app-score .score {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #23c268;
}


/* ================= Bottom Section ================= */

.app-bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.app-desc {
	font-size: 12px;
	color: #8F8F8F;
}

.app-score-top {
	display: flex;
	align-items: center;
}

/* comment info under score */
.app-reviews {
	display: flex;
	align-items: center;
	font-size: 10px;
	text-align: right;
	color: #8F8F8F;
}


/* ================= Video Card ================= */

.card-video {
	position: relative;
	margin: -16px -16px 12px -16px;
	aspect-ratio: 16 / 9;
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}

.card-video canvas {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,.42);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.play-btn i {
	font-size: 34px;
	color: #fff;
}

.xgplayer-container {
	width: 100%;
	height: 100%;
	display: none;
}
