﻿* {
	margin: 0;
	padding: 0;
}

a {
	cursor: pointer;
	display: block;
}

/*包含以下四种的链接*/
a {
	text-decoration: none;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接*/
a:active {
	text-decoration: none;
}


/* PC端 */
.banner {
	width: 100%;
	min-width: 1300px;
	height: auto;
}

.banner img {
	width: 100%;
	height: auto;
}

.content-item {
	width: 1200px;
	margin: 0 auto;
}

.content-title {
	width: 100%;
	margin: 36px auto;
}

.content-title img {
	width: 100%;
}

.content-item01 {
	width: 100%;
	overflow: hidden;
}

.content-item01 a {
	margin: auto;
}

.content-item01 a img {
	width: 100%;
}


.content-item02 {
	width: 100%;
	overflow: hidden;
}

.content-item02 a {
	float: left;
	width: 48%;
	margin: 0px 0px 30px 20px;
}

.content-item02 a img {
	width: 100%;
}


/*媒体查询*/
@media screen and (min-width: 1100px) {
	#mobile-banner {
		display: none;
	}

	#mobile-footer {
		display: none;
	}

	.phone-footer {
		height: 0;
	}

	.pc-footer {
		height: 142px;
	}

}

@media screen and (max-width: 1100px) {
	#pc-banner {
		display: none;
	}

	#pc-footer {
		display: none;
	}

	.phone-footer {
		height: 89px;
	}

	.pc-footer {
		height: 0;
	}

	#container {
		min-height: 100%;
		box-sizing: border-box;
	}

	.content {
		width: 100%;
	}

	.content-item {
		width: 100%;
		margin: 0 auto;
		overflow: hidden;
		padding-bottom: 0;
	}

	.content-item01 a {
		width: 80%;
		float: none;
		margin: auto;
	}

	.content-item02 a {
		width: 70%;
		float: none;
		margin: 5px auto;
	}
}
