*{
	margin: 0;
	padding: 0;
}
body{
	width: 100%;
	height: 100%;
	background: #f1f2f3;
}
.container{
	width: 1200px;
	margin: auto;
}
.container .title{
	display: inline-block;
	margin:20px 0;
	padding: 10px 20px;
	border-bottom: 3px solid #CCF;
	background: #000;
	color: #fff;
	font-size: 20px;
}
.container .tab{
	box-sizing: border-box;
	background: #fff;
	box-shadow: 5px 10px 10px 0 #ecf0f3;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
}
.container .tab .type,.container .tab .refresh{
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 5px 16px;
	font-size: 16px;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 4px;
}
.container .tab .sel{
	background: #ffd100;
	color: #FFFFFF;
}
.container .tab .sbox{
	position: relative;
	float: right;
	height: 31px;
	width: 180px;
	background: #F1F2F3;  
	margin-left: 0;
	border-radius: 4px;
	padding: 0 10px;
	padding-right: 25px;
}
.container .tab .sbox input{
	box-sizing: border-box;
	height: 31px;
	border: 0;
	color: #666;
	outline: none;
	font-size: 13px;
	background: none;
	padding: 0;
	margin: 0;
}
.container .tab .sbox svg{
	position: absolute;
	width: 25px;
	height: 25px;
	top: 3px;
	right: 3px;
	color: #666;
}
.container .tab #sContent{
	position: relative;
	left: -10px;
	z-index: 99;
	width: 225px;
	background: #fff;
	max-height: 572px;
	overflow: auto;
	box-shadow: 0px 10px 40px -10px rgb(0 64 128 / 20%);
	border-bottom-left-radius:6px;
	border-bottom-right-radius: 6px;
}
.container .tab #sContent .sli{
	display: flex;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #F1f2f3;
	font-size: 13px;
	color: #999;
	cursor: pointer;
}
.container .tab #sContent .color{
	display: inline-block;
	height: 20px;
	width: 20px;
	margin-right: 10px;
	border-radius: 6px;
}
.container .tab #sContent .sli:hover{
	color: #111;
}
.container #results{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.container #results:after{
    content: '';
    width: 585px;
}
#results .li{
	width: 250px;
	margin: 15px 0;
	padding: 15px;
	box-shadow: 0px 10px 40px -10px rgb(0 64 128 / 20%);
	background: #FFFFFF;
	border-radius: 6px;
}
#results .li .box{
	border-radius: 6px;
	overflow: hidden;
	max-width: 100%;
}
#results .li .c4{
	position: relative;
	height: 85px;
}
#results .li .c3{
	position: relative;
	height: 65px;
}
#results .li .c2{
	position: relative;
	height: 45px;
}
#results .li .c1{
	position: relative;
	height: 35px;
}
#results .li .box span{
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 13px;
	text-align: center;
	display: block;
	color: #FFFFFF;
	background-color: rgba(0,0,0,0.1);
	padding: 3px 6px;
	border-top-right-radius: 6px;
}
#results .li .grad{
	position: relative;
	height: 230px;
}
#results .end{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}
#results .end span{
	color: #BDCDDE;
	font-size: 12px;
	flex: 1;
}
#results .end svg{
	cursor: pointer;
}
.container .foot{
	text-align: center;
	margin-bottom: 30px;
	margin-top: 15px;
}
.container .change{
	font-size: 16px;
	padding: 5px 20px;
	cursor: pointer;
	color: #999;
}
.container .change:hover{
	color: #111;
}