* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	background: url(../images/bg.png) no-repeat;
	background-size: cover;
	background-position: right bottom;
	position: relative;
	overflow: hidden;
}

.content {
	padding: 56px 15%;
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.logo {
	width: 475px;
	height: 167px;
	margin-bottom: 6%;
}

.goods {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 926px;
}

.intro {
	font-family: PingFang SC;
	color: #ffffff;
	font-size: 16px;
	line-height: 28px;
	width: 539px;
	position: relative;
	z-index: 2;
}

.about {
	width: 540px;
	height: 262px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid;
	border-color: #ffffff;
	border-radius: 14px;
	display: flex;
	padding: 22px 18px;
	margin-bottom: 4%;
	margin-top: 24px;
}

.about .left {
	padding: 0 18px 0 0;
	border-right: 2px dashed #fff;
}

.about .left .ewm {
	width: 164px;
	height: 164px;
}

.about .left .title {
	font-family: PingFang SC;
	color: #333333;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
}

.about .left .sontitle {
	color: #999999;
	font-family: PingFang SC;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
}

.about .right {
	padding: 0 0 0 22px;
}

.about .right .item {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.about .right .item:last-child {
	margin-bottom: 0;
}

.about .right .item img {
	width: 43px;
	height: 43px;
	margin-right: 12px;
}

.about .right .item p {
	font-family: PingFang SC;
	color: #333333;
	font-size: 17px;
	line-height: 26px;
}

.copyright {
	font-family: PingFang SC;
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	line-height: 26px;
	position: absolute;
	left: 15%;
	bottom: 45px;
}
/* 小屏幕适配 */
@media screen and (max-width: 1600px) {
	.content {
		padding: 15px 5%;
	}
	.goods {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 926px;
	}
	.copyright {
		left: 5%;
	}
	.logo {
		margin-bottom: 3%;
	}
}
@media screen and (min-width:1000px) and (max-width:1600px) {
	.content {
		padding: 15px 5%;
	}
	.goods {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 750px;
	}
	.copyright {
		left: 5%;
	}
	.logo {
		margin-bottom: 1.5%;
		width: 340px;
		height: auto;
	}
	
}








































