.scene {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 calc(50vw - 470px);
	/*margin-top: 82.5px;*/
  	margin-top: 25px;
	position: relative;
	z-index: 99;
}

* {
	padding: 0;
	margin: 0;
	/*font-family: PingFangSC-Regular,PingFang SC;*/
	box-sizing: border-box;
	color: #222;
	color: var(--textDeepColor);
}

:root {
	--colorPrimary: #099dfd;
	--borderColorBase: #ebeef5;
	--textDeepColor: #222;
	--textShallowColor: #5c5f61;
}

.scene-lable {
    
	width: auto;	
	height: 40px;
	line-height: 40px;
	overflow:hidden;

	border: none;

	margin: 25px;
    color: var(--colorPrimary);
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;	/**/
}



.scene .scene-item {
	width: 200px; /*219.16667px;*/
	height: 128px; /*219.16667px;*/
	border-radius: 8.33333px;
	border: 1px solid #DCDCDC;
	box-shadow: -1px 4px 19px -3px rgba(26,134,192,.16);
	padding: 16.66667px;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*margin-bottom: 16.66667px;*/
  	margin: 25px;
	background: #fff;
	background-image: url(/images/texture3.png);
	/*margin-right: 12.5px;*/
	cursor: pointer;
}

.scene .scene-item:hover {
	border: 1px solid rgb(9,157,252);
	background: rgb(246, 248, 251);
	background-image: url(/images/texture3.png);
}

.scene .scene-item .title {
	color: var(--colorPrimary);
	font-size: 16.66667px;
	margin-bottom: 16.66667px;
}

.scene .scene-item {
	cursor: pointer;
}

.scene .scene-item img {
	/*width: 95px;*/
	width: 160px;
  	transition:all .3s ease 0s;
  	transform:scale(1);/**/
}

.scene .scene-item:hover img {
  	transform:scale(1.1);/**/
}

.scene .scene-item .icon-right {
	margin-top: 33.33333px;
	width: 12.5px;
	cursor: pointer;
}

