* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.content {
	width: 100%;
}
.banner-main {
	overflow: hidden;
	position: relative;
	display: flex;
	height: 300px;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.banner-main::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height : 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
.banner {
	z-index: 666;
	position: relative;
	width: 100%;
	height: 350px;
	background-size: cover;
	background-position: center;
}
.banner-bg {
	top: 50px;
/* 	margin-top:0 ; */
	margin:0 auto;
	position: absolute;
	min-width: 100%;
	height: 300px;
	z-index: -1;
	background-image: url('../img/04-bg.jpg');
	background-size: cover;
	background-position: center;
	
}
.title {
	padding-top: 50px;
	height: 350px;
	color: #fafafa; 
/* 	padding-top: 150px; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.title h1 {
 font-size: 38px;
 letter-spacing: 10px;
	
}
.title p {
	font-size: 15px;
	padding-top: 14px;
	padding-left: 150px;
	padding-right: 150px;
	line-height: 30px;
	letter-spacing: 1px;
	max-width: 1200px;
}
@media (max-width:720px) {
	.title p {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/* 底部联系方式 */
.contact {
	height: 300px;
	background-color:#111;
	width: 100%;
	padding: 0 2rem;
	z-index: 999;
}
.info {
	width: 100%;
	height: 300px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.text div {
	margin: 30px 0;
	padding: 15px;
	display: flex;
	align-items: center;
	height: 40px;
	background-color: white;
	border-radius: 6.25rem;
}
.text span {
	font-size: 1.2em;
	padding-left: 0.5em;
}
.qrcode {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.qrcode img {
	height: 130px;
	width: 130px;
}
.qrcode span {
	padding-left: 10px;
	font-size: 1rem;
	padding-top: 10px;
	color: #ddd;
	letter-spacing: 10px;
	text-align: center;
}

@media (max-width:550px) {
	.info {
		padding-top: 20px;
		display: block;
		height: 400px;
	}
	.contact {
		height: 400px;	
	}
	.text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.text div{
		width: 100%;
		margin: 20px 0;
	}
	.qrcode {
		padding-top: 20px;
	}
}
/* 作品栏 */
.show {
	width: 100%;
	padding: 0 2rem;
	background-color: white;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.show .show-01 {
	width: 100%;
	max-width: 1200px;
}
.show-01 h1 {
}
.container{
	margin-top: -15px;
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.container img{
	margin-top: 15px;
    width: 23.9%;
	transition: 0.5s;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
.container img:hover {
	scale: 1.02;
	cursor: pointer;
}
.container2{
	column-count: 2;
	column-gap: 15px;
    width: 100%;
    margin: 0 auto;
    position: relative;
	break-inside: avoid;
}
.container2 img{
	transition: 0.5s;
	padding-bottom: 10px;
	width: 100%;
}
.container2 img:hover {
	scale: 1.02;
	cursor: pointer;
}
.container3{
	column-count: 1;
    width: 100%;
    margin: 0 auto;
    position: relative;
	break-inside: avoid;
	padding-bottom: 20px;
}
.container3 img{
	transition: 0.5s;
	margin-bottom: 10px;
	width: 100%;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
.container3 img:hover {
	scale: 1.02;
	cursor: pointer;
}
.show-01 div {
	background-color: white;
}
.sub_title {
	padding-top: 30px;
	padding-bottom: 25px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sub_title img {
	padding: 0 40px;
	height: 23px;
}

@media (max-width:600px) {
	.show {
		padding: 0 0.5rem;
	}
	.container {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		padding-bottom: 10px;
	}
	.container img{
		width: 48.5%;
	}
	.container2 {
		column-count: 1;
		column-gap: 0;
	}
	.container2 img {
		padding-bottom: 10px;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.container3 {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
}