/* ================= Layout ================= */

.main-container {
	display: block;
	max-width: 100%;
	margin: 12px 12px 18px 12px;
}

/* ===================== 头部卡片 ===================== */
.mobile-banner-card {
    width: 100%;
    border-radius: 6px;
    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;
    font-weight: bold;
    margin-bottom: 5px;
    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: 15px;
	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: 18%;
    border: 1px solid #efefef;
}

.app-logo img {
	width: 46px;
	height: 46px;
}

.app-mid {
	flex: 1;
	display: flex;
	flex-direction: column;
    transform: translateY(-2px);
}

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

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

/* 幻灯增加切换 */
.mobile-banner-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.swiper {
    width: 100%;
}
.swiper-slide {
    position: relative;
}
.mobile-banner-card img {
    width: 100%;
    display: block;
}
.mbc-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 14px 12px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,0));
}
.mbc-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 5px;
}
.mbc-desc {
    font-size: 12px;
    opacity: .8;
}
.swiper-pagination {
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    width: auto !important;
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
    opacity: 1;
    width: 5px;
    height: 5px;
    margin: 0 3px;
}
.swiper-pagination-bullet-active {
    background: #fff;
    width: 7px;
    height: 7px;
}
/* 三个按钮通用样式 */
.mobile-snav {
    display: flex;
    gap: 12px;
	margin-bottom: 15px;
}
.mobile-snav a {
    flex: 1;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
}
.mobile-snav a:hover {
    color: #fff!important;
}
.mobile-snav a:nth-child(1) {
    background: linear-gradient(135deg, #23c268, #4fe59d);
}
.mobile-snav a:nth-child(2) {
    background: linear-gradient(135deg, #1a73e8, #5aa2ff);
}
.mobile-snav a:nth-child(3) {
    background: linear-gradient(135deg, #ff8c00, #ffb347);
}

/* 加载更多 */
.loadMore {
	margin-top: 20px;
	cursor: pointer;
}

.loadMore .it {
	display: block;
	width: 220px;
	height: 44px;
	overflow: hidden;
	text-align: center;
	line-height: 44px;
	font-size: 14px;
	background: #23c268;
	color: #fff;
	border-radius: 24px;
	margin: 0 auto
}

.loadMore .it:hover {
	opacity: .8;
	color: #fff!important;
}

.loadText {
	text-align: center;
	font-size: 14px;
	height: 44px;
	line-height: 44px;
	margin-top: 20px;
	color: #666
}