* {
	padding: 0;
	margin: 0;
}

/* 顶部 */
.top {
	background-image: url("../img/1.jpg");
	height: 260px;
	width: 100%;
	margin-left: 0;
}

.topTitle,
.topIntor {
	color: #FFFFFF;
	text-align: center;
	padding: 10px 0;
}

.topTitle {
	font-size: 56px;
}

.topIntor {
	font-size: 36px;
}

/* 中间 */
.middle {
	margin-top: -50px;
}


/* 主要内容 */
.main {
	background-color: #029688;
	margin-top: 5px;
	width: auto;
	padding: 10px 20%;
}

.mainTitle {
	font-size: 35px;
	font-weight: bold;
	background-image: -webkit-linear-gradient(bottom, rgb(166, 101, 58), rgb(252, 239, 147));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-family: FangSong;
	
}

.mainBlank {
	height: 2px;
	background-color: white;
	margin: 10px 0;
}
.tabs {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tabOne,.tabTwo {
	width: 100%;
	overflow: hidden;
}

.tabOne-label,.tabTwo-label {
	display: flex;
	justify-content: space-between;
	padding: 1em;
	background-color: #7AC7B7;
	font-weight: bold;
	cursor: pointer;
	border-bottom: #FFFFFF 1px solid;
}

.tabOne-label:hover {
	background-color: #008781;
	color: #FFFFFF;
}
.tabTwo-label:hover {
	background-color: #008781;
	color: #FFFFFF;
}
.tabOne-label::after {
	content: "❯";
	width: 1em;
	height: 1em;
	text-align: center;
	transition: all 0.2s;
}
.tabTwoLabel::after {
	content: "❯";
	width: 1em;
	height: 1em;
	text-align: center;
	transition: all 0.2s;
}

.tabOne-content,.tabTwo-content {
	/*max-height: 0;*/
	padding: 0 2em;
	background-color: #7AC7B7;
	transition: all 0.2s;
	cursor: pointer;
	height: 0;
}
.tabTwo-content{
	background-color: #008781;
	margin: 0 2em;
	cursor: pointer;
	color: #FFFFFF;
}

.tabOne>input,.tabTwo>input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.tabOne>input:checked+.tabOne-label {
	background-color: #008781;
	color: #FFFFFF;
}

.tabOne>input:checked+.tabOne-label::after {
	transform: rotate(90deg);
}

.tabOne>input:checked~.tabOne-content {
	/*max-height: 100vh;*/
	height: auto;
}
.tabTwo>input:checked+.tabTwo-label {
	background-color: #008781;
	color: #FFFFFF;
}

.tabTwo>input:checked+.tabTwo-label::after {
	transform: rotate(90deg);
}

.tabTwo>input:checked~.tabTwo-content {
	/*max-height: 100vh;*/
	height: auto;
	line-height: 50px;
}

