/**
 * 桌布页前台：data.css 中 .top_data_wrap 全局 height:555px 会把下方列表顶到首屏外。
 * 通过 wp_enqueue 在 wp_head 注入，排在静态 data.css 之后，便于覆盖。
 */
.container.wallpaper > .top_data_wrap.wallpaper {
	height: auto !important;
	min-height: 0;
	box-sizing: border-box;
	padding-top: 80px;
	padding-bottom: 40px;
}

.container.wallpaper > .content {
	position: relative;
	z-index: 1;
}
