*{
	margin: 0;
	padding: 0;
}
html{
	background: #f1f2f3;
	width: 100%;
	min-height: 100vh;
}
[v-cloak]{
	display: none;
}
.container{
	width: 1200px;
	margin: auto;
}
.container .title{
	text-align: center;
	font-size: 22px;
	color: #333;
	margin: 15px auto;
	overflow: hidden;
}
.container .des{
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
	padding: 10px;
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.container .box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}
.container .box::after{
	content: '';
	width: 32.33%;
	
}
.container .box .li{
	box-sizing: border-box;
	width: 32.33%;
	margin: 10px 0;
	float: left;
	padding: 10px;
	background: #fff;
	box-shadow: 0px 0px 20px -5px rgb(158 158 158 / 20%);
}
.box .li h3{
	padding-bottom: 5px;
	line-height: 30px;
	color: #333;
	font-size: 16px;
	border-bottom: 1px solid #eee;
}
.box .li .list{
	margin-top: 15px;
	height: 300px;
	overflow: auto;
}
.box .li .list a{
	display: block;
	color: #333333;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 15px;
	padding: 0 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box .li .list a:hover .tit{
	color: #f1404b;
}
.box .li .list a .left{
	display: flex;
}
.box .li .list a .tit{
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}
.box .li .list a .rank{
	width: 20px;
	height: 20px;
	font-size: 13px;
	border-radius: 4px;
	background: rgba(124,124,124,.3);
	display: inline-block;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-right: 5px;
}
.box .li .list a:nth-child(1) .rank{
    color: #fff;
	background: #f1404b;
}
.box .li .list a:nth-child(2) .rank{
    color: #fff;
	background: #c56831;
}
.box .li .list a:nth-child(3) .rank{
    color: #fff;
	background: #b89e2c;
}
.box .li .list a .hot{
	font-size: 12px;
	color: #999;
	min-width: 91px;
	text-align: right;
}
.box .li .list::-webkit-scrollbar-thumb {
	background-color:rgba(130,130,130,.5);
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.box .li .list::-webkit-scrollbar-thumb:hover {
	background-color: #f1404b;
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.box .li .list::-webkit-scrollbar {
	width: 5px;
	height: 5px
}
.box .li .list::-webkit-scrollbar-thumb:active {
	background-color: #f1404b;
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.box .li .list::-webkit-scrollbar-corner {
	background: rgba(0,0,0,0);
	border-radius: 0 0 8px 0
}
.box .li .list::-webkit-scrollbar-button {
	background-color: rgba(0,0,0,0);
	height: 2px;
	width: 2px
}