@CHARSET "UTF-8";
/*==============基本样式==================*/
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, input, textarea, p {
	margin: 0px;
	padding: 0px;
	font: 16px Arial, Helvetica, sans-serif;
	color: #262626;/*其它页面可以用字体的百分比em写。1em就是16px*/
	/*outline:none;点击文本框没有边框了*/
	/*overflow:hidden;/*超出范围的内容自动隐藏，这里要设置范围，例如一个宽100px高100px的区域，内的文字如果超出了，则自动隐藏，这里是总设置，可以在后面单独设置成auto或者其他等效果*/
}
 
input {
	-webkit-appearance: none;/*禁止苹果手机浏览器的默认UI渲染，这句非常重要，不然iphone上css3没有效果*/
	/*这样一做，但是单选框等，会显示错误，要加上-webkit-appearance: radio;日期文本框修正：   -webkit-appearance: button;相关的值，见下面*/
	/*http://www.css88.com/webkit/-webkit-appearance/ */
}

li {
	list-style: none;
}
i, em, b {
	font-style: normal;
	font-weight: normal;
}
a, a:visited, a:hover {
	text-decoration: none;
	border: 0px;
	color: black;
}
img, img:active {
	border: none;
	text-decoration: none;
	outline: none;
}

h1 {
	font-size: 1.2em;/*16px的1.5倍*/
	font-weight: bold;
}

h2 {
	font-size: 1.1em;/*16px的1.5倍*/
	font-weight: bold;
}
a[title='站长统计'] {
	font-size: 0.1px;
	color: white;
}

body {
	width: 100%;
}

.auto {/*模块居中，必须配合width:100px和display：block块模块使用才有效果。*/
	width: 100%;
	margin: 0 auto;
}
.clear {/*清除浮动，重启一行*/
	clear: both;/*height:0;line-height:0;font-size:0;display:hidden;overflow:hidden;*/
}

/*配合js/common.js中的loadTip方法，来实现jqury弹出对话框样式*/
#loadTip {
	position: fixed;
	top: 35%;
	left: 35%;
	background: rgba(228,135,20,0.7);
	padding: 6px 8px;
	border-radius: 4px;
	color: #fff;
	max-width: 80%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
	font-weight: 600;
}
#loading {
	text-align: center;
	position: absolute;
	top: 45%;
	width: 100%;
}

/*==============顶部(包括轮播)==================*/

.top {
	position: fixed;
	top: 0px;
	z-index: 10000;
	width: 100%;
	height: 100px;
	background: url("/Public/Home/img/top_background.png");
}

.top .ct {
	width: 1200px;
	margin: 0 auto;
	height: 100px;
	vertical-align: middle;
}
.top .ct ul.topLeft, .top .ct ul.topRight {
	
 
	width: 700px;
	height: 100px;
	float: left;
}
 .top .ct ul.topLeft{
 	padding-left:130px;
 }
  .top .ct ul.topRight{
 	 
 }
.top .ct ul.topLeft li {
	margin-right:30px;
	line-height: 100px;
	float: left;
}

.top .ct ul.topRight li {
 
	margin-right:30px;
	line-height: 100px;
	float: left;
}
.top .ct ul.topLeft li a,.top .ct ul.topRight li a{
    font-family: 微软雅黑;
	color:#c7ab65; font-weight:bold;
}
.top .ct ul.topLeft li a:hover{
    font-family: 微软雅黑;
	color:#ffffff; font-weight:bold;
}
.top .ct div.logo {
	float: left;
	width: 240px;
	height: 100px;
	margin-top:19px;
}


/*
 轮播开始
 */

.slider {
	  position: relative;

	width: 100%;
	height: 565px;
	overflow: hidden;
 
}
/*盒子带容器*/
.slides {
	height: 565px;
	/* Simple clear fix */
	overflow: hidden;
	/**
	 * Prevent blinking issue
	 * Not tested. Experimental.
	 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	/**
	 * Here is CSS transitions
	 * responsible for slider animation in modern broswers
	 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slide {
	height: auto;
	float: left;
	clear: none;
}
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 2em;
	background-color: #333;
	background-color: rgba(50,50,50,.3);
	border-radius: 50%;
}/*左右按钮样式及放置位置*/
.slider-arrow--right {
	bottom: 50%;
	right: 30px;
}
.slider-arrow--left {
	bottom: 50%;
	left: 30px;
}
/*
 background:url(img/.png) no-repeat;
 */

.slider-nav {
	position: absolute;
	bottom: 30px;
}
.slider-nav__item {/*nva样式*/
	width: 12px;
	height: 12px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background: black;
	border-radius: 100%;
}
.slider-nav__item:hover {
	background: #ccc;
}
.slider-nav__item--current {
	background: #ccc;
}/*被选中后的样式*/

/*
 轮播结束
 */

/*==============================================*/
/*==============底部==================*/

footer {
	width: 100%;
	height: 340px;
	background: #021207;
}
footer .up, footer .down {
	width: 1200px;
	height: 120px;
	text-align: center;
	margin: 0 auto;
	padding: 30px 0 10px 0;
}
footer .up {
	border-bottom: 2px solid #413E3D;
}
footer .up img {
	margin-right: 11px;
}
footer .down p {
	line-height: 23px;
}


/*地图导航（高德）*/
#zhezhao{
    width:100%;
    height:4000px;
    background:black;
    position:absolute;
    top:0px;
    left:0px;
    opacity: 0.7;
    z-index:10001;
    display:none;
}

#ifrPage {
    width: 95%;
    height: 600px;
    margin: 0 auto;
    background: #0F0C2B;
    border-radius: 125px;
    color: white;
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 20000;/*层叠关系，只要比这个高就可以在它的上面显示了。*/
   display:none;
}

#ifrPage img {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 0px;
    right: 40px;
    z-index: 12000;/*层叠关系，只要比这个高就可以在它的上面显示了。*/
}

/*地图导航（高德）end*/ 

