@charset "UTF-8";
	
/*内容展示区*/
/*布局样式*/
/*左右布局*/
.showcase{
	width:100%;
	height:535px;
	top:462px;/*390+72*/
	margin:0;
}
.showcase img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.showcase-contect{
	padding-top:60px;
	padding-bottom:60px;
	margin-left:5%;
	margin-right:5%;
	width:90%;/*父元素宽度减去左右外边距*/
	height:415px;/*父元素高度减去上下外边距*/
	position:absolute;
}
/*左文右图布局奇数序列*/
.showcase-contect-left1{
	width:45%;
	height:415px;
	display:inline;
	float:left;
	position:absolute;
	overflow:hidden;
}
.showcase-contect-right1{
	left:45%;/*与同级块元素的宽度相同*/
	width:55%;/*与同级块元素的宽度相加得100%，此元素在右侧因此数值较大*/
	height:415px;/*高度与父元素相等*/
	display:inline;
	float:left;
	position:absolute;
}
/*左图右文布局偶数序列*/
.showcase-contect-left2{
	float:left;
	width:55%;
	height:415px;
	display:inline;
	position:absolute;
}
.showcase-contect-right2{
	left:55%;
	float:left;
	width:45%;
	height:415px;
	display:inline;
	position:absolute;
	overflow:hidden;
}


