/* ------------------------------------------以下为固定样式------------------------------------------ */
*{
	padding: 0px;
	margin: 0px;
}

html{
	width: 100%;
    height: 100%;
}

body {
	width: 100%;
    height: 100%;
    font-size: 16px;
	font-family: Microsoft YaHei;
	font-smoothing: antialiased;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-user-select: none; /*火狐*/
	-webkit-user-select: none; /*webkit浏览器*/
	-ms-user-select: none; /*IE10*/
	-khtml-user-select: none; /*早期浏览器*/
	user-select: none;
	background-color: #fff;
}

a { /*去除所有a标签的下划线*/
	cursor: pointer;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border: none;
}

ul, ol li{
	list-style-type: none;
}

div, input, textarea, select, button a{ /*点击去掉边框*/
	outline: none;
}

/* ------------------------------------------以下为鼠标(手指)悬浮样式(可扩展)------------------------------------------ */

.hover:hover {/* 悬停是背景灰色 */
	color: #dddddd;
}

.cursor:hover {/* 悬停光标是手势形 */
	cursor: pointer;
}

/* ------------------------------------------以下为响应式样式(可扩展)------------------------------------------ */

@media (min-width: 979px) {/* 大于979px的样式 */

}

@media (max-width: 320px) {/* 小于320px的样式 */

}

/* ------------------------------------------以下为自定义样式(请写注释)------------------------------------------ */
.con{
	padding: 5%;
}
.con h2{
	text-align: center;
	color: #333;
	margin: 10% 5% 8% 5%;
}
.con p{
	margin: 3%;
	color: #333;
	font-size: 15px;
}
.con .name{
	color: #1180FF;
	text-decoration:underline;
	font-weight: 700;
}
.con .sm{
	color: #999;
	font-size: 13px;
	margin-top: 5%;
}
