/*通用内容规定*/
*{
	margin:0;
	padding:0;
	font-size:14px;
	font-family:"微软雅黑";
	color:#101235;
}
ul,li{
	list-style:none;
}
a{
	text-decoration:none;
}
a:hover{
	color:#1763d4;
	cursor:pointer;
}
body{
	background:#fff;
}
/*顶部导航部分*/
.nav{
	width:1200px;
	height:60px;
	margin:0 auto;
}
.nav_logo{
	margin:8px 38px 0 0;
	float:left;
}
.nav_mod{
	padding-top:12px;
}
.nav_mod a{
	float:left;
	line-height:32px;
	margin-right:42px;
	font-size:17px;
	cursor:pointer;
}
.nav_mod .mod_sel{
	color:#1763d4;
	border-bottom:2px solid #1763d4;
}
.nav_switch{
	display:block;
	float:right;
	width:50px;
	height:20px;
	padding:6px 0 0 28px;
	margin-left:40px;
	background:url(../img/nav_phone.png) bottom left no-repeat;
	font-size:16px;
	line-height:20px;
	cursor:pointer;
}
.nav_tel{
	float:right;
	width:128px;
	height:20px;
	padding:6px 0 0 28px;
	background:url(../img/nav_land.png) bottom left no-repeat;
	font-size:18px;
	font-weight:bold;
	line-height:20px;
}

/*站点地图*/
.map{
	width:100%;
	height:150px;
	background:#091f44;
}
.map_mid{
	width:1200px;
	height:100%;
	margin:0 auto;
	background:url(../img/map_mid.png);
	position:relative;
}
.map_nav{
	width:730px;
	height:14px;
	padding-top:36px;
}
.map_nav li{
	float:left;
	margin-right:34px;
}
.map_nav a{
	font-size:14px;
	line-height:14px;
	color:rgba(255,255,255,0.9);
}
.map_nav a:hover{
	color:#fff;
}
.map_contact{
	width:730px;
	height:14px;
	padding-top:20px;
}
.map_contact li{
	height:14px;
	float:left;
	margin-right:36px;
}
.map_contact img{
	width:14px;
	height:14px;
	float:left;
	margin-right:10px;
}
.map_contact p{
	font-size:12px;
	color:#a8b3c7;
	line-height:14px;
	float:left;
}
.map_record{
	font-size:12px;
	color:rgba(168,179,199,0.4);
	padding-top:32px;
}
.map_code{
	width:80px;
	height:100px;
	position:absolute;
	top:30px;
	right:40px;
}
.map_code img{
	width:74px;
	height:74px;
}
.map_code p{
	font-size:12px;
	color:rgba(255,255,255,0.9);
	text-align:center;
	letter-spacing:0.1em;
	padding-top:4px;
}

/*内页banner图*/
.inside_banner{
	width:100%;
	height:160px;
	margin-bottom:24px;
	background-size:cover;
	background-position:center;
}
.inside_banner_mid{
	display:block;
	width:1200px;
	height:160px;
	margin:0 auto;
}

/*清除浮动*/
.clear{
	height:0;
	clear:both;
}

/*设置显示为none*/
.none{
	display:none;
}

/*滚动条设置*/
::-webkit-scrollbar{
	/*整体滚动条*/
	width:10px;/*纵向滚动条轨道宽度*/
	height:10px;/*横向滚动条轨道高度*/
	background:#fff;/*轨道背景颜色*/
	border-radius:5px;/*轨道圆角*/
}
::-webkit-scrollbar-thumb{
	/*滚动条里面小方块*/
	border-radius:5px;
	background:#ddd;
}
