img {
	width: 100%;
	height: auto;
	display: block;
}
.topic-box {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.topic-box li {
	position: relative;
	padding: 28px 5px 10px;
	background-color: #342e26;
	border-radius: 1px;
	box-sizing: border-box;
}
.topic-box li .topic-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 28px;
	line-height: 28px;
	color: #f8f1d9;
	font-size: 12px;
	box-sizing: border-box;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-white-space: nowrap;
	-webkit-text-overflow: ellipsis;
}
.topic-box li .topic-title.active {
	color: #bc090c;
}
.topic-prompt {
	width: 100%;
	text-align: center;
	padding-top: 20px;
	font-size: 12px;
}
.load-text-box {
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    font-size: .24rem;
    z-index: 10;
}
.load-text-box a {
    color: #f6f6f6;
}

@media all and (orientation : landscape) {
	/*横屏*/
	.topic-box {
		padding: 2% 0 0 1%;
	}
	.topic-box li {
		width: 31%;
		margin: 5px 1%;
	}
}

@media all and (orientation : portrait) {
	/*竖屏*/
	.main {
		padding-bottom: 60px;
	}
	.topic-box {
		padding: 2% 2% 0;
	}
	.topic-box li {
		width: 48%;
		margin: 5px 1%;
	}
}