.hotTopic {
	font-size: 0;
	text-align: left;
	margin-top: 40px;
	border: 1px solid #eee;
	padding-bottom: 12px;
}

.hotTopic .hotTopic-title {
	font-size: 18px;
	color: #333;
	font-weight: normal;
	padding: 8px 0;
	border-bottom: 1px dashed #ddd;
	position: relative;
}

.hotTopic .hotTopic-title:before {
	content: "";
	width: 4px;
	height: 18px;
	display: inline-block;
	margin-right: 8px;
	background: #EC232F;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.hotTopic ul {
	width: 100%;
	padding: 0 12px;
	display: flex;
	flex-wrap: wrap;
}

.hotTopic ul li {
	flex: 0 0 30%;
	padding-left: 8px;
	position: relative;
	margin-top: 12px;
}

.hotTopic ul li a {
	display: block;
	width: 70px;
	font-size: 12px;
	color: #333;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
}

.hotTopic ul li:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	background-color: #c0c0c0;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.hotTopic ul li:hover:before {
	background-color: #ec232f;
}

.hotTopic ul li a:hover {
	color: #ec232f;
}
