/* adBFQ - APP图标广告位样式（首页“本周更新”上方） */
.appads-box {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px 15px;
	margin: 0 0 25px
}
.appads-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none
}
.appads-icon {
	display: block;
	width: 100%;
	position: relative;
	padding-top: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: #f3f5f7
}
.appads-icon img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.appads-name {
	margin-top: 6px;
	width: 100%;
	font-size: 12px;
	color: rgba(0, 0, 0, .62);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
@media(max-width:559px) {
	.appads-box {
		grid-template-columns: repeat(6, 1fr);
		gap: 12px 8px;
		margin: 0 0 15px
	}
	.appads-icon {
		border-radius: 10px
	}
	.appads-title {
		margin-top: 4px !important
	}
}
