* {
	margin: 0;
	padding: 0;
	list-style: none;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}

body {
	background-color: rgb(240, 241, 242);
}

a {
	background-color: transparent;
	text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

/* 滚动条样式 */

::-webkit-scrollbar {
	width: 2px;
	height: 8px;
	background-color: #bfbfbf;
}

/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
	background-color: #f5f5f5;
}

/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(190, 188, 188, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(190, 188, 188, 0.3);
	background-color: rgb(190, 188, 188);
}

.categorys {
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
}

.center-content {
	width: 1275px;
	margin: 0 auto;
}

.row {
	margin-bottom: 10px;
}

.category-name {
	color: #666;
	padding-right: 15px;
}

.category-item {
	display: inline-block;
	line-height: 20px;
	text-align: center;
	color: #222;
	margin-right: 20px;
	padding: 2px 5px;
	cursor: pointer;
}

.category-item-active {
	color: #fff;
	background-color: rgb(24, 144, 255);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.map-items {
	width: 1300px;
	display: flex;
	flex-wrap: wrap;
	padding-top: 35px;
	padding-bottom: 30px;
}

.map-item {
	display: inline-block;
	width: 300px;
	margin-bottom: 30px;
	margin-left: 10px;
	margin-right: 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	cursor: pointer;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.map-item:hover {
	box-shadow: 0 0 10px #aaa;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.map-item img {
	width: 300px;
	height: 200px;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-ms-border-radius: 5px 5px 0 0;
	-o-border-radius: 5px 5px 0 0;
}

.map-item .item-info {
	padding: 20px;
}

.map-item .item-title {
	font-weight: bold;
	color: #222;
}

.map-item .item-size {
	color: #666;
}
