.home_map_content{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home_map_content ul{
  position: absolute;
  width: 800px;
  top: 0;
  height: 45px;
  display: flex;
  padding: 10px 0;
  overflow-x: scroll;
  background-color: #f3f3f3;
}
.home_map_content ul li{
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  margin-left: 10px;
  margin-right: 5px;
  background: #dedede;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.maptab {
  background-color: #999!important;
}
.home_map_content ul::-webkit-scrollbar {
	width: 3px;
	/*设置滚动条的宽度*/
}
/* 滚动区域的样式 */
.home_map_content ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	/*设置滚动条的圆角*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	/*设置内阴影*/
	background: rgb(181, 193, 238, 0.2);
	/*设置滚动条的颜色*/
}
/* 滚动条的背景样式 */
.home_map_content ul::-webkit-scrollbar-track {
	border-radius: 0;
}
.ulspan{
  visibility: hidden;
  width: 0;
}