.hotTopic {
	font-size: 0;
	text-align: left;
	margin-top: 20px;
	padding-bottom: 15px;
}

.hotTopic .hotTopic-title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	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 .hotTopic-title:after {
    content: '';
    width: 180px;
    height: 1px;
    display: inline-block;
    background-color: #ddd;
    vertical-align: middle;
}
.hotTopic ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.hotTopic ul li {
	flex: 0 0 30%;
	padding-left: 8px;
	position: relative;
	margin-top: 10px;
}

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