﻿/******************pennychen css***********************/



/*** 当浏览器的可视区域小于1200px ***/
    @media screen and (max-width: 1200px) {



/**********基本**********/
*{
	margin:0;
	padding:0;
	border: 0;
}

body {
	font-family:"微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: normal;
	overflow-x:hidden;
}
img {
	border: 0px;
	max-width: 100%;	
}
ul {
	padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px; list-style-type: none
}
li {
	padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px; list-style-type: none
}
h1 { 
    font-size:18px; 
}
h2 { 
    font-size:16px; 
}
h3 { 
    font-size:14px; 
}
p {
	line-height: 24px;
}
a {
	color: #666666;
	text-decoration: none;
}
a:hover {
	color: #00B3FF;
	text-decoration: none;
}
.clear { clear: both;}
input{
	color: #666666;
	outline: none;
}
input:hover{
	color: #333333;
}
select{
	border: 1px #CCCCCC solid;
}
small { font-size:10px; color:#999999; margin-left:15px;}

.red {
	color: #BE0000;
	font-size: 14px;
	font-weight: normal;
}
.blue {
	font-size: 30px;
	color: #007CC3;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
}
.green {
	color: #649F00;
	margin-right: 5px;
}

/**********基本  end**********/



.main {
	margin: 0px auto;
	width: 100%;
	height: 100%;
}


/**********header**********/
/**************头部*****************/
.header {
	float: left;
	width: 100%;
	position: fixed;

	*position: inherit;
	_position: inherit;
	z-index: 196;
	height: 42px;
	top: 0px;
	left: 0px;
	display:block;
	background-color: #055CB1;
}
.header_2 {
	display: none;
}
.header_box {
	width: 100%;
	margin: 0px auto;
	height: auto;
	padding-top: 0px;
}

.header_top {
	width: 100%;
	margin: 0px auto;
	height: 30px;
	background:url(../images/topbg.jpg) repeat left center;
}

.logo_box {
	height: auto;
	width: 155px;
	margin: 10px auto 10px 2%;
	z-index: 200;
	float: left;
}
.logo_box a {
}
.logo_box a img {
	width: 100%;
	height: auto;
	float: left;
}

.note {
	height: auto;
	width: auto;
	float: left;
	display: none;
}
.note p {
	height: 32px;
	width: auto;
	margin: 0px 20px 0px 20px;
	float: left;
	border-radius: 50px; /* css 3标准 */




    -moz-border-radius: 50px; /* mozilla */
    -webkit-border-radius: 50px;
	border: 1px #fff solid;
	line-height: 32px;
	font-size: 14px;
	text-align: center;
	color: #fff;
}



/*********/
.toplinks {
	width: 98%;
	color: #333333;
	height: 36px;
	text-align: right;
	line-height: 36px;
	background-color: #EEEEEE;
	float: left;
	padding: 0px 1%;
}
.toplinks a {
	color: #333333;
	height: 36px;
	text-align: center;
	line-height: 36px;
	padding: 0px 10px;
}


.navbg {
	height:42px;
	width:100%;
	position:absolute;
	z-index:99;
	left:0;
}
.menu_box {
	height: auto;
	clear: both;
	width: 96%;
	margin: 0px auto;
	position: relative;
}

.menu_box p {
	float: left;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 42px;
}

/**************menu****************/
.booNavigation {
	position: relative;
	float: right;
	padding: 0px 0px 0px 80px;
	width: 650px;
	display: none;
}


/*******set-icon*******/
.set-icon {
	float: right;
	width: 350px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	right: 1%;
	top: 0px;
	display: none;
}





/********移动端菜单**********/
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
	z-index: 2;
	padding-top: 0px;
	min-height: 100%;

    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	width: 100%;

}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 60px;
  }
}

header {
	position: absolute;
	top: 0;
	right: -5%;
	height: 42px;
	width: 40%;
	z-index: 210;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
	transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	display: block;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-160px);
  -moz-transform: translateX(-160px);
  -ms-transform: translateX(-160px);
  -o-transform: translateX(-160px);
  transform: translateX(-160px);
}
header.is-fixed {
  position: fixed;
}



#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
   display: block;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right: 0%;
  top: 0px;
  height: 100%;
  width: 40%;
  background-color: #055CB1;
  display: block;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
	/* this span is the central line in the menu menu */
  display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;

  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 18px;
	height: 2px;
	background-color: #FFF;
	z-index: 300;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #cd-menu-trigger {
    width: 110px;
    padding-left: 1.25em;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 60px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
	position: fixed;
	height: 100%;
	right: 0;
	top: 0;
	visibility: hidden;
	/* the secondary navigation is covered by the main element */
  z-index: 200;
	width: 160px;
	background-color: #055CB1;
	overflow-y: auto;

  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
	transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
  display: block;
}
#cd-lateral-nav .sub-menu {
	padding: 0px 10% 5% 15%;
	display: none;
	float: left;
	width: 75%;
}
#cd-lateral-nav a {
	display: block;
	line-height: 42px;
	padding: 0px 10% 0px 15%;
	font-size:15px;
	font-weight:normal;
	color: #fff;
	float: left;
	clear: both;
	width: 75%;
}
#cd-lateral-nav .sub-menu a {
	display: block;
	line-height: 32px;
	padding: 0 15px 0 0px;
	font-size:14px;
	font-weight:normal;
	color: #629C2E;
	float: left;
	clear: none;
	width: auto;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}


/**********header end**********/



/************/
.en_switch {
	float: left;
	position: absolute;
	right: -4%;
	top: 0px;
}
.en_switch a {
	float: left;
	color: #CAA382;
	border-radius: 0px; /* css 3标准 */

    -moz-border-radius: 0px; /* mozilla */
    -webkit-border-radius: 0px;
	background-color: #3C281A;
	font-size: 14px;
	line-height: 110px;
	padding: 0px 20px;
	letter-spacing: 2px;
}
.en_switch a:hover {
	color: #FFFFFF;
	background-color: #BD8B5D;
}

.en_switch_m {
	float: left;
	position: absolute;
	right: -6%;
	top: 0px;
	display: none;
}


/**** menu ****/


/*******移动端*******/
.remodal {
	display: none;
}

.nav {
	display: none;
}
.nav a {
	display: none;
}

button#showRightPush {
	display: none;
}
.cbp-spmenu {
	display: none;
}







/********************横幅*********************/
.index_banner {
	margin: 0px auto 0% auto;
	width: 100%;
	height: auto;
	min-height:100px;
	clear: none;
	float: left;
	padding: 0px 0% 36px 0%;
	position: relative;
}

#owl-demo {
	position: relative;
}
#owl-demo .item h1 {
	float: left;
	width: 90%;
	height: 48px;
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
	position: absolute;
	background: url(../images/bh_bg.png) repeat-x bottom center;
	bottom:0px;
	left: 0px;
	padding: 10% 5% 10% 5%;
	line-height: 28px;
	font-weight: normal;
	height:48px; 
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;


	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#owl-demo .item img {
	display: block;
	width: 100%;
	height: auto;
	float: left;
}



.banner_bg {
	padding: 50px 0% 20px 0%;
	width: 100%;
	height: 345px;
	clear: both;
	margin: -5px auto 0px auto;
	background:url(../images/banner_bg.jpg) no-repeat top center;
	float: left;
}
.banner_bg_2 {
	padding: 0px 0% 0px 0%;
	width: 100%;
	height: 280px;
	clear: both;
	margin: -5px auto 0px auto;
	background:url(../images/banner_bg_2.jpg) #7f92a4 no-repeat top center;
	float: left;
}
.banner_bg h1 {
	padding: 0px 0px 0px 0px;
	width: 100%;
	text-align: center;
	font-size: 32px;
	line-height: 64px;

	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000), to(#ccc));
	color: transparent;
	/*-webkit-text-fill-color: transparent;*/
	-webkit-background-clip: text;
	font-weight: normal;
	text-transform: none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
}
.tag_link {
	text-align: center;
	width: 360px;
	height: auto;
	margin: 0px auto;
	padding: 0px 0px 0px 0px;	
}
.tag_link a {
	font-size: 16px;
	color: #666666;
	font-weight: normal;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	line-height: 36px;
	text-align: center;
	height: 36px;
	text-align: center;
	width: auto;
	float: left;
	padding: 0px 10px;
	border-radius: 5px; /* css 3标准 */
    -moz-border-radius: 5px; /* mozilla */
    -webkit-border-radius: 5px;
	margin: 0px 2px;
}
.tag_link a:hover {
	color: #FFFFFF;
	background-color: #004CA0;
}


/*****************con*****************/
.content {
	clear: both;
	width: 100%;
	margin: 50px auto 0px auto;
	height: auto;
	float: left;
	padding: 0px 0px 50px 0px;
	background-color: #FFFFFF;
}
.content_2 {
	clear: both;
	width: 100%;
	margin: 70px auto 0px auto;
	height: auto;
	float: left;
	padding: 0px 0px 0px 0px;
	background-color: #FFFFFF;
}
.conbox {
	clear: both;
	width: 100%;
	margin: 0px auto 0px auto;
	height: auto;
	padding: 0px 0px 0px 0px;
}
.conbox_2 {
	clear: both;
	width: 1240px;
	margin: 10px auto 0px auto;
	height: auto;
	padding: 0px 0px 0px 0px;
}

/*********左侧导航**********/
.left {
	width: 90%;
	margin: 0px 5% 0px 5%;
	height: auto;
	float: left;
	border-right: none;
	padding-bottom: 20px;
	background-color: #FFFFFF;
	position: relative;
	
}
#logo {
	width: 50%;
	height: 100px;
	background: url(../images/logo.jpg) no-repeat 0px top;
	background-size: 75px 100px;
	padding-left: 0px;
	float: left;
}
#logo a {
	width: 100%;
	height: 100px;
	float: left;
}
#logo2 {
	width: 100px;
	height: 130px;
	background: url(../images/logo2.jpg) no-repeat top right;
	padding-left: 0px;
	display: none;
}
#logo2 a {
	width: 100px;
	height: 130px;
	float: left;
}

/************* menu *****************/
.menubox {
	float: left;
	width: 100%;
	height: auto;
	margin-top: 8px;
	clear: both;
}
.menu {
	width: 100%;
	height: auto;
}
.menu ul {
	clear: both;
	width: 100%;
	float: left;
}
.menu ul li {
	clear: none;
	width: auto;
	text-align: left;
	padding: 0px 8% 0px 0px;
	border-bottom: none;
	float: left;
}
.menu ul li:last-child {
	padding: 0px 0% 0px 0px;
}
.menu ul li.li_about {
	display: none;
}
.menu ul li.wx img {
	width: 120px;
	padding: 20px 10px 10px 10px;
}
.menu ul li a {
	font-size:15px;
	line-height: 36px;
	color:#000000;
	padding: 0px 0px 0px 0px;
	text-decoration:none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.menu ul li a:hover {
	color: #00B3FF;
	font-weight: bold;
}
.menu ul li.hover a {
	color:#00B3FF;
}
.menu ul li a.home {
	background: url(../images/home.jpg) no-repeat center left;
	padding-left: 0px;
}
.menu ul li a.ds {
	background: url(../images/ds.jpg) no-repeat center left;
	padding-left: 28px;
}
.menu ul li a.red {
	color:#FF3300;
}



/***********布局***************/
.layout_left {
	width: 160px;
	float: left;
	height: auto;
	padding: 20px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	box-shadow: 0px 0px 8px #EBEBEB;
	background-color: #FFFFFF;
}
.banner_center {
	width: 100%;
	float: left;
	height: auto;
	padding: 0px 0% 0px 0%;
	margin: 0px 0px 10px 0px;
}
.layout_center {
	width: 90%;
	float: left;
	height: auto;
	padding: 0px 5% 60px 5%;
	margin: 0px 0% 0px 0%;
	position: relative;
	z-index: 50;
}
.layout_right {
	width: 90%;
	float: left;
	position: relative;
	z-index: 10;
	padding: 0px 5%;
}
.layout_tag {
	width: 280px;
	min-height:480px;
	float: left;
	padding: 10px 10px 40px 10px;
	box-shadow:0px 0px 8px #EBEBEB;
	background-color: #FFFFFF;
}




/********左侧导航**********/
#nav {
	width: 100%;
	padding: 0px 0px 0px 0px;
	height: 510px;
}
#nav li {
	text-align: center;
	border-bottom: 1px #fff solid;
	float: left;
	width: 88%;
	margin: 0px 6% 2px 6%;
}
#nav li:hover {
	border-bottom: 1px #57C5F8 solid;
}
#nav li a {background: ;
	color: #333333;
	display: block;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 38px;
	height: 38px;
	width: 100%;
}
#nav li a:hover {color: #57C5F8;}

/*****二维码******/
.code {
	clear: both;
	width: 80%;
	margin: 0px 10%;
	float: left;
}
.code h1 {
	font-size: 14px;
	color: #666666;
	line-height: 24px;
	padding: 0px 0px 10px 0px;
	text-align: center;
	clear: both;
	font-weight: normal;
	width: 100%;
}
.code img {
	clear: both;
	max-width: 100%;
	float: left;
	margin-bottom: 0px;
}





/****** 推荐 1*******/
.recommend {
	width: 100%;
	float: left;
}
.rec_box {
	width: 100%;
	text-align:center;
	position: relative;
	margin-bottom: 10px;
	float: left;
	overflow: hidden;
	height: auto;
}
.rec_img {
	width: 100%;
	float: left;
	overflow: hidden;
}
.rec_img a img {
	width: 100%;
	float: left;
	height: auto;
}
.rec_box .n_t {
	width: 92%;
	height: 80px;
	float: left;
	padding: 15px 4% 10px 4%;
	position: absolute;
	bottom:0px;
	left:0px;
	background:url(../images/nt_bg.png) repeat-x bottom center; 
}
.rec_box h1 {
	clear: both;
	text-align: left;
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	line-height: 36px;
	height: 70px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.rec_box:hover h1 {
	color: #fff;
}
.rec_box h1 a {
	color: #fff;
}


/****** 推荐 2*******/
.rec_box_2 {
	width: 95%;
	text-align:center;
	position: relative;
	float: left;
	overflow: hidden;
	padding: 0% 0px;
	margin: 0% 2% 4% 0%;
}
.rec_2_img {
	width: 100%;
	float: left;
	overflow: hidden;
}
.rec_2_img a img {
	width: 100%;
	float: left;
}
.rec_box_2 .n_t {
	width: 92%;
	height: 60px;
	float: left;
	padding: 20px 4% 0px 4%;
	position: absolute;
	bottom:0px;
	left:0px;
	background:url(../images/nt_2_bg.png) repeat bottom center; 
}
.rec_box_2 h1 {
	clear: both;
	text-align: center;
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	line-height: 36px;
	height:36px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	-webkit-box-orient:vertical;
}
.rec_box_2:hover h1 {
	color: #fff;
}
.rec_box_2 h1 a {
	color: #fff;
}


/***/
.more {
	clear: both;
	margin: 0px auto 0px auto;
	width: 250px;
	height: 48px;
	padding: 30px auto 20px auto;
}
.more a {
	width: 220px;
	color: #666666;
	line-height: 24px;
	font-size: 14px;
	font-weight: normal;
	border: 1px #ccc solid;
	border-radius: 8px; /* css 3标准 */

    -moz-border-radius: 8px; /* mozilla */
    -webkit-border-radius: 8px;
	text-align: center;
	padding: 12px 15px;
	float: left;
	margin-top: 20px;
	background: none;
}
.more a:hover {
	background-color: #055CB1;
	color: #FFFFFF;
	border: 1px #055CB1 solid;
}



/*********图片放大效果***********/
img.zoom-img:hover {
	-webkit-transform: scale(1.15);
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 750ms;
	-moz-transform: scale(1.15);
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 750ms;
	overflow: hidden;
}
img.zoom-img {
	-webkit-transform: scale(1, 1);
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 250ms;
	-moz-transform: scale(1, 1);
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 250ms;
}

/*************/
.review_box {
	padding: 0% 0% 0% 0%;
	width: 100%;
	height: 38px;
	clear: both;
	margin: 1% 0% 0% 0px;
	background:url(../images/menu_bg.png) repeat center center;
	border-bottom: 1px #ccc solid;
}
.de_t {
	padding: 0% 0% 0% 0%;
	width: 96%;
	margin: 0px 4% 2px 0px;
}
.review_box_h {
	padding: 0% 0% 2% 0%;
	width: 100%;
	height: 60px;
	clear: both;
	margin: 0px auto;
	float: left;
}
.review_box h1 {
	padding: 0px 0px 0px 0px;
	width: auto;
	text-align: left;
	font-size: 16px;
	line-height: 38px;
	font-weight: normal;
	text-transform: none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	border-bottom: 3px #333 solid;
	float: left;
	color: #666666;
	letter-spacing: 2px;
}
.review_box h1 a {
	color: #000000;
}
.review_box h1 a:hover {
	color: #57C5F8;
}
.review h2 {
	font-size: 16px;
	color: #666666;
	font-weight: normal;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	line-height: 36px;
	text-align: center;
	height: 36px;
	text-align: center;
	width: 80%;
	margin: 0px 10%;
}
.review h2 span {
	color: #CCCCCC;
	padding: 0px 20px;
}



/********分类***********/
.sorting {
	padding: 0px 0px 30px 0px;
	width: 100%;
	float: left;
	margin: 0px 0% 10px 0%;
	background: url(../images/sort_bg.jpg) no-repeat bottom left;
}
.sorting a {
	font-size: 16px;
	font-weight: normal;
	color: #999999;
	border-radius: 10px; /* css 3标准 */

    -moz-border-radius: 10px; /* mozilla */
    -webkit-border-radius: 10px;
	padding: 3px 0px;
	width: auto;
	float: left;
	line-height: 32px;
	margin: 0px 10px 0px 0px;
	height:32px;
}
.sorting a.hover {
	color: #000000;
}
.sorting a:hover {
	color: #00B3FF;
}



/************* 项目 *****************/
.pro {
	float: left;
	width: 103%;
	height: auto;
	padding: 0px 0px 8% 0px;
	margin-left: -3%;
}
.pro a {
	font-size:15px;
	float: left;
	width: 25%;
	font-weight: normal;
	color:#666666;
	height:auto;
	text-align:center;
	text-decoration:none;
	padding: 0px 0%;
	line-height: 32px;
}
.pro a.on {
	width: 105px;
	color: #666666;
}
.pro a:hover,.pro a:active {
	color:#E10000;
}
.pro a img {;
	width: 40%;
	height:auto;
	margin: 0px 30%;
}




/*********列表**********/
.layout_list {
	width: 100%;
	float: left;
	height: auto;

	padding: 0px 0% 0px 0%;
	margin: 0px 0% 0px 0px;
	background-color: #FFFFFF;
}

.article {
	border-radius: 3px; /* css 3标准 */
    -moz-border-radius: 3px; /* mozilla */
    -webkit-border-radius: 3px;
	float: left;
	height: auto;
	width: 88%;
	padding: 8% 6% 8% 6%;
	margin: 2% 0px 4% 0px;
	background: url(../images/sort_bg.jpg) #fff no-repeat bottom left;
	-moz-box-shadow: 0px 0px 10px #ebebeb;/*firefox*/
    -webkit-box-shadow: 0px 0px 10px #ebebeb;/*safari或chrome*/
	box-shadow:0px 0px 10px #ebebeb;/*opera或ie9*/
	color: #F0F0F0
}
.article:hover {
	background-color: #F5F5F5;
}
.article .nimg {
	float: left;
	height: auto;
	width: 100%;
	overflow: hidden;
	margin-top: 0px;
}
.article .nimg img {
	border-radius: 3px; /* css 3标准 */

    -moz-border-radius: 3px; /* mozilla */
    -webkit-border-radius: 3px;
	object-fit: cover;
	height: 150px;
	width: 100%;
	float: left;
}
.article .text {
	float: left;
	height: auto;
	width: 100%;
	padding-left: 0%;
	text-align: left;
	margin: 5% 0px 5% 0px;
}
.article .text h1 {
	color: #333333;
	font-size: 18px;
	line-height: 32px;
	font-weight: normal;
	height: 60px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-box-orient:vertical;
	margin-bottom: 8%;
}
.article .text h1 a {
	color: #000000;
}
.article:hover .text h1 a, .article .text h1 a:hover {
	color: #00B3FF;
}
.article .text p {
	color: #666666;
	font-size: 14px;
	padding-top: 0px;
	line-height: 24px;
	height: 45px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;


	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-box-orient:vertical;
}
.article .text p.time {
	color: #CCCCCC;
	font-size: 14px;
	line-height: 24px;
	padding: 4px 0px 4px 0px;
	width: 100%;
	clear: both;
	height: 24px;
	display: none;
}
.article:hover .text p, .article:hover .text p.time {
	color: #666666;
}
.article .text p.time span {
	color: #CCCCCC;
	padding: 0px 10px 0px 0px;
	font-size: 14px;
}

.article h1 .sort {
	clear: both;
	color: #FFFFFF;
	font-size: 12px;
	border-radius: 3px; /* css 3标准 */






    -moz-border-radius: 3px; /* mozilla */
    -webkit-border-radius: 3px;
	padding: 0px 2%;
	text-align: center;
	line-height: 32px;
	float: left;
	width: auto;
	margin: 4px 10px 4px 0px;
	background-color: #055CB1;
	font-weight: normal;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	letter-spacing: 0px;
	display: none;
}
.article:hover h1 .sort {
	color: #FFFFFF;
	background-color: #00B3FF;
}
.article h1 .sort a {
	color: #fff;
}
.article:hover .text h1 .sort a {
	color: #fff;
}
.article .text p.tag {
	color: #666666;
	font-size: 14px;
	line-height: 32px;
	padding: 6% 0px 0px 0px;
	height: 32px;
}
.article .text p.tag span.fa {
	color: #CCCCCC;
	font-size: 14px;
	padding: 0px 10px 0px 0px;
}
.article .text p.tag span a {
	color: #999999;
	padding: 0px 10px;
}
.article .text p.tag span a:hover {
	color: #055CB1;
}


/***********************翻页************************/
.page{
	height:40px;
	font-family:"微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	width: 100%;
	clear: both;
	line-height: 40px;
	padding: 50px 0px 2% 0%;
	text-align: center;
	float: left;
}
.page2 {
	height:40px;
	font-family:"微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	width: 100%;
	clear: both;
	line-height: 40px;
	padding: 50px 0px 6% 0px;
	text-align: left;
}
.page a{
	margin:10px 3px 0 3px;
	width:auto;
	height:20px;
	line-height:20px;
	color:#999999;
	text-align:center;
	text-decoration:none;
	padding: 8px 15px 8px 15px;
	font-weight: bold;
	font-size: 14px;
	border-radius: 0px; /* css 3标准 */

    -moz-border-radius: 0px; /* mozilla */
    -webkit-border-radius: 0px;
	background-color: #FFFFFF;
	float: left;
}
.page a:hover{
	position:relative;
	width:auto;
	color:#FFFFFF;
	border-radius: 0px; /* css 3标准 */
    -moz-border-radius: 0px; /* mozilla */
    -webkit-border-radius: 0px;
	background-color: #C2B186;
}
.page span{
	line-height:140%;
	padding:8px 15px 8px 15px;
	margin:10px 3px 0px 3px;
	border-radius: 0px; /* css 3标准 */

    -moz-border-radius: 0px; /* mozilla */
    -webkit-border-radius: 0px;
	color:#FFF;
	font-weight:bold;
	background-color: #333333;
	font-size: 12px;
	float: left;
}
.page span.sl{
	line-height:140%;
	padding:7px 12px 9px 12px;
	margin:10px 1px 0px 1px;
	color:#666666;
	font-weight:bold;
	border: none;
	background-color: #FFFFFF;
}



/*****************更多***************/
.links {
	width: 100%;
	height: auto;
	padding: 10px 0px 20px 0px;
	float: left;
}
.links a {
	width: 86%;
	height: auto;
	text-align: center;
	font-size: 16px;
	color: #FFFFFF;
	padding: 8px 5% 8px 5%;
	line-height: 28px;
	font-weight: normal;
	border-radius: 8px; /* css 3标准 */


    -moz-border-radius: 8px; /* mozilla */
    -webkit-border-radius: 8px; /* webkit */
	float: left;
	margin: 0px 2%;
	background-color: #C2B186;
	border: 1px #C2B186 solid;
}
.links a:hover {
	color: #C2B186;
	background-color: #FFFFFF;
	border: 1px #C2B186 solid;
}

.links_2 {
	width: 100%;
	height: auto;
	padding: 10px 0px 0px 0px;
	float: left;
}
.links_2 a {
	width: 86%;
	height: auto;
	text-align: center;
	font-size: 16px;
	color: #FFFFFF;
	padding: 8px 5% 8px 5%;
	line-height: 28px;
	font-weight: normal;
	border-radius: 8px; /* css 3标准 */


    -moz-border-radius: 8px; /* mozilla */
    -webkit-border-radius: 8px; /* webkit */
	float: left;
	margin: 0px 2%;
	background-color: #80D740;
	border: 1px #80D740 solid;
}
.links_2 a:hover {
	color: #80D740;
	background-color: #FFFFFF;
	border: 1px #80D740 solid;
}


/******/
.t_box {
	padding: 0px 0% 0% 0%;
	width: 98%;
	height: 50px;
	clear: both;
	margin: 0px 1% 10px 1%;
	border-bottom: 1px #ccc solid;
	float: left;
}
.t_box_h {
	padding: 0% 0% 2% 0%;
	width: 100%;
	height: 60px;
	clear: both;
	margin: 0px auto;
	float: left;
}
.t_box h1 {
	padding: 0px 0px 0px 0px;
	width: auto;
	text-align: left;
	font-size: 16px;
	line-height: 50px;
	color: #000000;
	font-weight: bold;
	text-transform: none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	border-bottom: 1px #333 solid;
	float: left;
	letter-spacing: 2px;
}
.t_box a {
	padding: 0px 10px 0px 10px;
	width: auto;
	text-align: left;
	font-size: 14px;
	line-height: 30px;
	color: #666666;
	font-weight: normal;
	text-transform: none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	float: left;
	margin: 9px 0px 9px 110px;
	border-radius: 4px;

    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px;
	border: 1px #ccc solid;
}
.t_box a:hover {
	color: #57C5F8;
}
.t_box h1 a {
	color: #000000;
}
.t_box h1 a:hover {
	color: #57C5F8;
}



/**********右侧***********/
.layout_right_box {
	width: 100%;
	min-height:500px;
	float: left;
	padding: 10px 0% 40px 0%;
	background-color: #FFFFFF;
}

/********右侧第一个广告位*******/
.layout_right .dp_1 {
	width: 100%;
	float: left;
	padding: 0px 0% 15px 0%;
	clear: both;
}
.layout_right .dp_1 img {
	float: left;
	width: 100%;
	height: auto;
}

/******一周最热******/
ul.week_hot  {
	display:block;
	font-weight: normal;
	font-size: 14px;
	color: #333333;
	float: left;
	width: 100%;
	margin: 0px 0% 20px 0%;
}
ul.week_hot li {
	display:block;
	padding:7px 0px;
	font-weight: normal;
	font-size: 14px;
	color: #333333;
	background-color: #fff;
	line-height: 28px;
	height:28px;
	float: left;
	width: 100%;
}

ul.week_hot li a {
	width: 90%;
	float: left;
	height:24px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	-webkit-box-orient:vertical;
}
ul.week_hot li span.ran {
	margin:2px 2% 0px 0px;
	border-radius: 4px;

    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px;
	width:7%;
	height:24px;
	line-height:24px;
	text-align:center;
	font-weight:normal;
	color:#FFF;
	background-color: #CCCCCC;
	float: left;
	font-size: 14px;
}
ul.week_hot li span.top {
	color:#FFF;
	background-color: #FFCC00;
}
ul.week_hot li span.date {
	width:16%;
	height:24px;
	line-height:24px;
	text-align:right;
	font-weight:normal;
	color:#999;
	float: left;
	font-size: 12px;
}


/**********右侧 最新游戏项目***********/

/*******换一批********/
.slideGroup{
	width:100%;
	text-align:left;
	float: left;
	position: relative;
}
.slideGroup .control {
	float: left;
	position: absolute;
	top: -45px;
	right: -10px;
}
.slideGroup .parHd{ height:30px; line-height:30px; background:#f4f4f4; padding:0 20px; border-bottom:1px solid #ddd;  position:relative;  }
.slideGroup .parHd ul{ float:left; position:absolute; left:20px; top:-1px; height:32px;   }
.slideGroup .parHd ul li{ float:left; padding:0 15px; cursor:pointer;  }
.slideGroup .parHd ul li.on{ height:30px;  background:#fff; border:1px solid #ddd; border-bottom:2px solid #fff; }
.slideGroup .parBd{ padding:0px; zoom:1;  }
.slideGroup .slideBox{ overflow:hidden; zoom:1; }

.slideGroup .sPrev,.slideGroup .sNext{ display:block; width:40px; height:24px; float:left; background:url(../images/pre.png) center center no-repeat; }
.slideGroup .sNext{ background:url(../images/next.png) center center no-repeat;  }
.slideGroup .sPrev:hover,.slideGroup .sNext:hover{ border-color:#f60;  }
.slideGroup .parBd .tempWrap{ float:left;  }
.slideGroup .parBd ul{ overflow:hidden; zoom:1; float:left;  }
.slideGroup .parBd ul li{
	margin:0 0px;
	float:left;
	_display:inline;
	overflow:hidden;
	text-align:left;
	width: 100%;
}
.slideGroup .parBd ul li .pic{
	text-align:center;
	float: left;
	width: 30%;
}
.slideGroup .parBd ul li .pic img{ width:100%; height:auto; display:block;  padding:2px; }
.slideGroup .parBd ul li .pic a:hover img{ border-color:#999;  }
.slideGroup .parBd ul li .title{
	line-height:24px;
	width: 60%;
	padding: 5px 4% 0px 6%;
	float: left;
}
.slideGroup .parBd ul li .tag {
	line-height:24px;
	width: 66%;
	padding: 5px 4% 0px 0%;
	text-align: left;
	float: left;
	font-size: 14px;
	color: #999999;
}

.r_vr_box {
	width: 96%;
	float: left;
	margin: 0px 0px 0px 0px;
	height: auto;
	text-align: center;
	padding: 15px 2% 10px 2%;
	border-bottom: 1px #EBEBEB solid;
}
.r_vr_box .cimg {
	width: 30%;
	height: auto;
	text-align: center;
	float: left;
}
.r_vr_box .cimg img {
	width: 100%;
	height: auto;
	min-height: 70px;
	margin: 0px auto;
	text-align: center;
	background: url(../images/default.png) no-repeat center center;
	border: 1px #ccc solid;
}
.r_vr_box:hover .cimg img {
	filter: alpha(opacity=90);
	-moz-opacity:0.9;
	opacity: 0.90;
}

.r_vr_box h1 {
	font-size:16px;
	font-family:"微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	background:url(../images/marker1.jpg) no-repeat 0px 6px;
	margin-bottom:5px;
	color: #4D4D4D;
	line-height: 18px;
	clear: both;
	text-align: left;
	font-weight: normal;
}
.r_vr_box#short h1 {
	font-size:12px;
	font-family:"宋体", Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	background:url(../images/marker1.jpg) no-repeat 0px 3px;
	padding-left:17px;
	margin-bottom:0px;
	color: #333;
	line-height: 20px;
	clear: both;
	font-weight: normal;
}
.r_vr_box h1 a {
	color:#333333;
}

.r_vr_box h1 a:hover, .r_vr_box:hover h1 a {
	color:#055CB1;
}
.r_vr_box .star {
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
	color: #999999;
	width: 100%;
	float: left;
	padding: 0px 0px;
	clear: both;
}
.r_vr_box .star img {
	float: left;
	width: 12px;
	height: auto;
	padding: 0px 2px 0px 0px;
}
.r_vr_box .inner {
	background:none;
	padding:5px 4% 0px 6%;
	float: left;
	width: 60%;
}
.r_vr_box .inner p {
	color: #999999;
	text-align: left;
	font-size: 12px;
	line-height: 20px;
}
.r_vr_box:hover .inner p {
	color: #333;
}
.r_vr_box .inner p a {
	color: #999;
}
.r_vr_box:hover .inner p a {
	color: #333;
}
.r_vr_box .inner p a:hover {
	color: #055CB1;
}

/**********右侧 最新招聘***********/
.job {
	width: 100%;
	float: left;
	margin: 0px 0px 10px 0px;
	height: auto;
}
.job_box {
	width: 96%;
	float: left;
	margin: 0px 0px 0px 0px;
	height: auto;
	text-align: center;
	padding: 7px 2% 5px 2%;
	border-bottom: 1px #EBEBEB solid;
}
.job_box .cimg {
	width: 20%;
	height: auto;
	text-align: center;
	float: left;
}
.job_box .cimg img {
	width: 100%;
	height: auto;
	margin: 0px auto;
	text-align: center;
}
.job_box:hover .cimg img {
	filter: alpha(opacity=90);
	-moz-opacity:0.9;
	opacity: 0.90;
}

.job_box h1 {
	font-size:14px;
	font-family:"微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	background:url(../images/marker1.jpg) no-repeat 0px 6px;
	margin-bottom:5px;
	color: #4D4D4D;
	line-height: 18px;
	clear: both;
	text-align: left;
	font-weight: normal;
}
.job_box h1 a {
	color:#333333;
}

.job_box h1 a:hover, .job_box:hover h1 a {
	color:#055CB1;
}
.job_box .date {
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
	color: #999999;
	width: 100%;
	float: left;
	padding: 0px 0px;
	clear: both;
}
.job_box .inner {
	background:none;
	padding:5px 4% 0px 2%;
	float: left;
	width: 73%;
}


/*********************tab***************************/
.Menubox {
	width:100%;
	background:url(../images/nav.jpg) repeat-x center bottom;
	height:48px;
	line-height:48px;
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;
	clear: both;
	border: 1px #EBEBEB solid;
}
.Menubox li {
	float:left;
	display:block;
	cursor:pointer;
	min-width:15.6%;
	text-align:center;
	font-weight:normal;
	height: 46px;
	line-height: 46px;
	border-right: 1px #EBEBEB solid;
	margin-bottom: 5px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 14px;
	padding: 0px 2%;
	position: relative;
}
.Menubox li .j_triangle {
	width: 0;
	height: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	z-index: 50;
	left: 47%;
	bottom: -1px;
}
.Menubox li:hover .j_triangle, .Menubox li.hover .j_triangle {
	width: 0;
	height: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 8px solid #055CB1;
	position: absolute;
	z-index: 50;
	left: 47%;
	bottom: -1px;
}
.Menubox li.hover {
	min-width:16%
	color:#FFFFFF;
	font-weight:normal;
	height:48px;
	line-height:48px;
	font-size: 14px;
}
.Menubox li#one5 {
    border-right: none;
}
.Menubox li:hover {
	color:#055CB1;
}
.Menubox li.hover {
	color:#055CB1;
}
#con_one_1,#con_one_2,#con_one_3,#con_one_4,#con_one_5,#con_one_6 {
	height: auto;
	width: 100%;
	clear: both;
	display: none;
}
ul.tabconbox {
	width: 100%;
	float: left;
	height: auto;
	padding: 0px 0px 10px 0px;
}
ul.tabconbox li {
	float: left;
	padding: 0px 2%;
	font-size: 14px;
	width: 96%;
	line-height: 36px;
	height: 36px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	-webkit-box-orient:vertical;
}
ul.tabconbox li a {
	color: #666666;
}
ul.tabconbox li a:hover {
	color: #055CB1;
}



/**************QQ群***************/
.qq {
	width: 100%;
	height: auto;
	float: left;
	background-color: #FFFFFF;
	border-top: none;
	margin-bottom: 20px;
}
.qq p {
	padding: 5px 0px 0px 30px;
	width: 100%;
	height: auto;
	float: left;
	line-height: 28px;
	background:url(../images/qqq.jpg) no-repeat center left;
	background-size: 20px 20px;
	margin-left: 5px;
	font-size: 14px;
}




/*******************详情***********************/
.de_con {
	clear: both;
	width: 98%;
	margin: 0px 2% 0px 0%;
	height: auto;
	padding: 30px 0px 0px 0px;
	float: left;
}

/*******动态标题********/
.newshead {
	clear: both;
	padding: 0px 0px 0px 0px;
	margin-bottom: 0px;
	margin: 0px 0px;
}
.newshead h1 {
	text-align: center;
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-weight: normal;
	padding: 10px 5% 2% 5%;
}
.newshead p {
	text-align: center;
	font-size: 14px;
	color: #999999;
	line-height: 36px;
}
.newshead p span {
	padding: 0px 5px;
}
.newshead p span a {
	padding: 0px 3px;
}
.newshead p span.cc a {
	background:url(../images/comments.jpg) no-repeat top left;
	color: #0096D7;
	font-size: 12px;
	padding-left: 20px;
}

.info_p {
	clear: both;
	padding: 40px 2% 40px 2%;
	margin-bottom: 20px;
	width: 96%;
	float: left;
	line-height: 36px;
}
.info_p h1 {
	font-size: 16px;
	line-height: 36px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
}
.info_p h2 {
	font-size: 18px;
	line-height: 36px;
	color: #333333;
	text-indent: 0px;
	float: none;
}
.info_p p {
	font-size: 15px;
	line-height: 32px;
	color: #333333;
	text-indent: 0px;
	float: none;
	min-height: 32px;
}
.info_p img {
	max-width:100%;
	height: auto;
}


.video_box {
	clear: both;
	padding: 0px 0px 0px 0px;
	z-index: 0;
	width: 100%;
	margin: 0px auto;
	background-color: #333333;
	position: relative;
}
.video_box video {
	width: 100%;
	height: 496px;
	float: left;
}



/******关注 干货******/
.focus {
	clear: both;
	height: auto;
	padding: 5% 0px 5% 0px;
	margin: 0px 0px;
	float: left;
	width: 100%;
	text-align: center;
}
.info_p .focus img {
	float:none;
	margin: 20px auto 20px auto;
	max-width:100%;
	display: table;
}
.focus h1 {
	font-size: 20px;
	line-height: 28px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #999;
}
.focus h2 {
	padding: 2% 10% 5% 10%;
	margin: 0px 0px;
	float: left;
	width: 80%;
	font-size: 14px;
	line-height: 22px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #B9B9B9;
}


/**********关联 推荐 评论留言**************/
.addition {
	clear: both;
	height: auto;
	padding: 10px 0px 20px 0px;
	border-top: 1px #ccc solid;
	margin: 0px 0px;
}
.addition h2 {
	font-size: 18px;
	color: #0887D7;
	line-height: 30px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
}
.jiathis_style {
	float: left;
	color: #333333;
}
.pan {
	clear: both;
	height: auto;
	padding: 10px 0px 10px 0px;
	width: 100%;
	float: left;
}
.pan p {
	clear: both;
	padding: 0px 0px 0px 0px;
	line-height: 28px;
	font-size: 14px;
	float: left;
	height: auto;
	width: 100%;
	text-align: left;
}
.pan p.pre {
	background: none;
}
.pan p.next {
	background: none;
}
.pan p a {
	color: #666666;
	background: none;
	background-color: #FFFFFF;
}
.pan p a:hover {
	color: #57C5F8;
	background-color: #FFFFFF;
}


.comments {
	width: 80%;
	float: left;
	padding: 40px 10% 40px 10%;
}


/*********感兴趣文章************/
.interest {
	width: 100%;
	padding: 5% 0% 0% 0%;
	margin: 0% 0px 0px 0px;
	text-align:justify;
	clear: both;
}

.article_2 {
	border-radius: 3px; /* css 3标准 */
    -moz-border-radius: 3px; /* mozilla */
    -webkit-border-radius: 3px;
	float: left;
	background-color: #FFFFFF;
	height: auto;
	width: 31.3%;
	padding: 2% 0% 2% 0%;
	margin:0px 1%;
	display:inline-block;
	height:auto;
	text-align:center;
	text-decoration:none;
	position: relative;
}
.article_2:after{
     display:inline-block;
     overflow:hidden;
     width:100%;
     height:0;
     content:'';
     vertical-align:top;
}
.article_2:hover {
	
}
.article_2 .nimg {
	float: left;
	height: auto;
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}
.article_2 .nimg img {
	border-radius: 3px; /* css 3标准 */

    -moz-border-radius: 3px; /* mozilla */
    -webkit-border-radius: 3px;
	height: auto;
	width: 100%;
	float: left;
}
.article_2 .text {
	float: left;
	height: auto;
	width: 100%;
	text-align: left;
}
.article_2 .text h1 {
	color: #666;
	font-size: 15px;
	line-height: 24px;
	font-weight: normal;
	height: 45px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;

	-o-text-overflow:ellipsis;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.article_2 .text h1 a {
	color: #666;
}
.article_2:hover .text h1 a, .article_2 .text h1 a:hover {
	color: #055CB1;
}




/********首页 合作机构**********/
.coop {
	width: 100%;
	height: auto;
	padding: 10% 0px 5% 0px;
	margin: 0px auto;
	clear: both;
	float: left;
}
.coop_con {
	width: 100%;
	height: auto;
	margin: 0px auto;
	clear: both;
}
.coop a {
	padding: 0px 20px 0px 0px;
	width: auto;
	height: auto;
	margin: 0px auto;
	float: left;
	font-size: 14px;
	line-height: 36px;
	color: #B2B2B2;
}
.coop a:hover {
	color: #C2B186;
}

/******/
.ct_box {
	padding: 0px 0% 0% 0%;
	width: 100%;
	height: 40px;
	clear: both;
	margin: 0px auto 0px auto;
	float: left;
}
.ct_box_h {
	padding: 0% 0% 0% 0%;
	width: 100%;
	clear: both;
	margin: 0px auto;
	float: left;
}
.ct_box h1 {
	padding: 0px 20px 0px 20px;
	width: auto;
	text-align: left;
	font-size: 12px;
	line-height: 32px;
	color: #CCCCCC;
	font-weight: normal;
	text-transform: none;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	float: left;
	border-radius: 4px; /* css 3标准 */
    -moz-border-radius: 4px; /* mozilla */
    -webkit-border-radius: 4px; /* webkit */
	background-color: #A48D53;
	position: relative;
}



/***********关于我们***************/
.about_main{
	margin: -210px auto 0px auto;
	width: 100%;
	float: left;
	background-color: #EBEBEB;
}
.about_con {
	margin: 0px auto;
	width: 1300px;
}
.about_me_banner {
	height: auto;
	color: #ffffff;
	float: left;
	width: 100%;
	position: relative;
	z-index: 102;
}
.about_me_banner label {
	display: block;
	padding-top: 15px;
	font-size: 28px;
	padding-left: 170px;
}
.about_me_banner h1 {
	margin: 0px 0px 60px 0px;
	font-size: 48px;
	text-indent: 80px;
	letter-spacing: 10px;
}
.about_me_banner .b_p {
	padding: 8% 5%;
	width: 90%;
	height: auto;
	border-radius: 10px;



	-webkit-border-radius: 10px;
	-ms-border-raidus: 10px;
	-o-border-radius: 10px;
	-moz-border-raidus: 10px;
	background-color: #ffffff;
	float: left;
	margin-bottom: 50px;
}
.about_me_banner h2 {
	height: auto;
	line-height: 64px;
	font-size: 24px;
	color:#055CB1;
	font-weight: normal;
}
.about_me_banner p {
	height: auto;
	line-height: 32px;
	font-size: 16px;
	color: #38485a;
}
.about_development{
	margin-top: 0px;
	padding-top: 1px;
}

.about_development h4.no_frist{
	margin-top: 50px;
	clear: both;
	float: left;
	width: auto;
}
.about_development .text{
	height: 26px;
	background: url(../images/about/icon.png) no-repeat;
}
.about_development .line{
	margin-top: 6px;
	margin-bottom: 6px;
	margin-left: 12px;
	border-left: 1px #bebebe solid;
	height: 20px;
}
.about_development_main{
	margin-left: 80px;
	margin-top: 45px;
	font-size: 16px;
	float: left;
	width: 100%;
}
.about_development_main label{
	float: left;
	margin-left: 50px;
	line-height: 26px;
	font-weight: bold;
}
.about_development_main span{
	margin-left: 30px;
	line-height: 26px;
}

.about_development .a_content {
	clear: both;
	width: 100%;
	margin: 0px auto 0px auto;
	height: auto;
	float: left;
	padding: 0px 0px 50px 0px;
}
.about_development .a_content p {
	font-size:14px;
	color:#333333;
	line-height: 24px;
}
.online_service_list{
	margin: 25px 0px;
	padding: 0px;
	float: left;
	width: 100%;
	clear: both;
}
.online_service_list li{
	float: left;
	margin-right: 4%;
	padding: 15px 1% 15px 0px;
	border-right: 1px #dedede solid;
	width: 29.3%;
	height: 90px;
	list-style: none;
}
.online_service_list li.last{
	margin-right: 0px;
	border-right: 0px none;
	width: 30.3%;
	padding: 15px 0% 15px 0px;
}
.online_service_list li a{
	color: #000000;
	text-decoration: none;
}
.online_service_list li img{
	float: left;
}
.online_service_list_mery_main{
	margin-left: 105px;
}
.online_service_list_mery_main h5{
	margin: 0px;
}
.online_service_list_mery_main p{
	margin: 8px 5px 0px 0px;
	line-height: 20px;
}
.line_service_panel{
	padding-bottom: 30px;
	border-bottom: 1px #dedede solid;
	float: left;
	width: 100%;
}
.line_service p{
	margin: 80px 15px 0px 20px;
	line-height: 22px;
}
.line_service a{
	display: block;
	padding-top: 1px;
	width: 100%;
	height: 100%;
	color: #38485a;
	text-decoration: none;
}
.syzdr{ 
	float: left;
	margin-top: 32px;
	margin-right: 3%;
	width: 31.3%;
	height: 176px;
	background: url(../images/about/syzdr.png) #fff no-repeat top center;
}
.etjlb{ 
	float: left;
	margin-top: 32px;
	margin-right: 3%;
	width: 31.3%;
	height: 176px;
	background: url(../images/about/etjlb.png) #fff no-repeat top center;
}
.sqtlhkf{
	float: left;
	margin-top: 32px;
	margin-right: 0%;
	width: 31.3%;
	height: 176px;
	background: url(../images/about/sqtlhkf.png) #fff no-repeat top center;
}
.about_werec{
	margin: 20px auto 50px;
	display: block;
}
.about_werec_text{
	line-height: 24px;
}
.contact_us_list{
	margin: 0px 0px 50px 0px;
	padding: 20px 0px 50px;
	height: 270px;
	border-bottom: 1px #b8b8b8 solid;
	float: left;
	width: 100%;
}
.contact_us_list.last{
	border-bottom: 0px none;
}
.contact_us_list li{
	float: left;
	margin:0px 2%;
	width: 21%;
}
.contact_us_list li h6{
	margin: 5px 0px 10px;
	text-align: center;
	font-size: 20px;
}
.contact_us_list li img{
	display: block;
	margin: 0px auto;
	width: 120px;
	height: 120px;
	border: 0px none;
}
.contact_us_list li p{
	margin: 5px 0px;
	font-size: 14px;
	line-height: 18px;
}
.contact_us_list2 li{
	width: 156px;
}
section.map{
	margin: 30px 0px 50px 0px;
}

/*********/
.about_development{
	float: left;
	width: 76%;
	margin: 0px 4% 0px 0px;
	color: #333333;
}
main .sidebar{
	float: left;
	width: 20%;
	min-height: 300px;
	margin: 250px 0px 0px 0px;
}
section.map{
	margin: 30px 0px 50px 0px;
}
section.map img {
	width:100%;
}
main .sidebar section header{
	height: 31px;
	line-height: 30px;
	border-bottom: 2px #dedede solid;
	color: #808080;
	font-size: 16px;
	font-weight: bold;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
main .sidebar section header div{
	float: left;
	width: 0px;
	height: 30px;
	background: #e9e9e9;
}
main p img {
	max-width: 680px;
	height: auto;
}
.activity_erweima_main{
	margin: 30px auto;
	height: 110px;
	width: 245px;
}

.activity_erweima1{
	margin-left: 25px;
	float: left;
	width: 110px;
	height: 110px;
	background: url(../images/about/ewm.jpg);
}

.activity_erweima {
	text-align: center;
	font-size: 14px;
	line-height: 28px;
}
.activity_erweima p {
	text-align: center;
	font-size: 14px;
	line-height: 28px;
}
.activity_erweima aside{
	text-align: center;
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
.erweima{
	text-align: center;
}

.erweima img{
	margin-top: 15px;
	width: 140px;
}
.tencent{
	position: relative;
	float: left;
	margin-top: 20px;
	margin-left: 18px;
	width: 48px;
	height: 48px;
	
	-moz-transform: rotate(45deg); /* FF3.5+ */
	-ms-transition: rotate(45deg);
	-o-transform: rotate(45deg); /* Opera 10.5 */
	-webkit-transform: rotate(45deg); /* Saf3.1+, Chrome */
	transform: rotate(45deg);
	 /*filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’);
	-ms-filter: “progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’)”; IE8 */
	
	
	-moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	
	background: url(../images/about/tencent.png) center center no-repeat #666;
}
.tencent:hover{
	z-index: 5;
	border-radius: 30px;
	-moz-transform: rotate(0deg); /* FF3.5+ */
	-o-transform: rotate(0deg); /* Opera 10.5 */
	-webkit-transform: rotate(0deg); /* Saf3.1+, Chrome */
	/* filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’);
	-ms-filter: “progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’)”; IE8 */
	
	background: url(../images/about/tencent.png) center center no-repeat #4295c7;
}
.sina_2{
	position: relative;
	float: left;
	margin-top: 20px;
	margin-left: 18px;
	width: 48px;
	height: 48px;
	
	-moz-transform: rotate(45deg); /* FF3.5+ */
	-ms-transition: rotate(45deg);
	-o-transform: rotate(45deg); /* Opera 10.5 */
	-webkit-transform: rotate(45deg); /* Saf3.1+, Chrome */
	transform: rotate(45deg);
	 /*filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’);
	-ms-filter: “progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’)”; IE8 */
	
	
	-moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	
	background: url(../images/about/sina.png) center center no-repeat #666;
}
.sina_2:hover{
	z-index: 5;
	border-radius: 30px;
	-moz-transform: rotate(0deg); /* FF3.5+ */
	-o-transform: rotate(0deg); /* Opera 10.5 */
	-webkit-transform: rotate(0deg); /* Saf3.1+, Chrome */
	/* filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’);
	-ms-filter: “progid:DXImageTransform.Microsoft.Matrix(M11=0.9914,M12=-0.1305,M21=0.1305,M22=0.9914,SizingMethod=’auto expand’)”; IE8 */
	
	background: url(../images/about/sina.png) center center no-repeat #4295c7;
}
.sina {
	position: relative;
	float: left;
	margin-top: 20px;
	margin-left: 18px;
	width: 48px;
	height: 48px;
	
	-moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	
	-moz-transform: rotate(45deg); /* FF3.5+ */
	-ms-transition: rotate(45deg);
	-o-transform: rotate(45deg); /* Opera 10.5 */
	-webkit-transform: rotate(45deg); /* Saf3.1+, Chrome */
	transform: rotate(45deg);
	
	background: url(../images/about/sina.png) center center no-repeat #666;
}
.sina:hover{
	z-index: 5;
	border-radius: 30px;
	-moz-transform: rotate(0deg); /* FF3.5+ */
	-o-transform: rotate(0deg); /* Opera 10.5 */
	-webkit-transform: rotate(0deg); /* Saf3.1+, Chrome */
	
	background: url(../images/about/sina.png) center center no-repeat #d1423c;
}



/*********服务商展示***********/
.provider {
	width: 103%;
	float: left;
	padding: 5% 0% 2% 0%;
	background-color: #FFFFFF;
	margin-left: -2%;
}
.provider .list {
	width: 100%;
	text-align: center;
	margin: 0px auto;
}

.provider .list .item{
	color:#333;
	font-size:16px;
	text-align:center;
	display: inline-block;
	width: 28%;
	margin: 1% 1% 1% 1%;
	background-color: #F5F5F5;
	padding: 2% 1% 2% 1%;
}
.provider .list .item span{
	width:60px;
	height:60px;
	line-height:60px;
	box-sizing:border-box;
	border: none;
	border-radius:100%;
	display:block;
	position:relative;
	perspective:300px;
	margin: 0px auto;
}
.provider .list .item span:after{width:100%;height:100%;content:"";display: block;}
.provider .list .item span.ico1:after{background:url(../images/prov_1.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico2:after{background:url(../images/prov_2.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico3:after{background:url(../images/prov_3.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico4:after{background:url(../images/prov_4.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico5:after{background:url(../images/prov_5.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico6:after{background:url(../images/prov_6.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico7:after{background:url(../images/prov_7.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico8:after{background:url(../images/prov_8.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico9:after{background:url(../images/prov_9.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico10:after{background:url(../images/prov_10.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico11:after{background:url(../images/prov_11.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico12:after{background:url(../images/prov_12.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico13:after{background:url(../images/prov_13.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico14:after{background:url(../images/prov_14.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico15:after{background:url(../images/prov_15.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico16:after{background:url(../images/prov_16.png) center center no-repeat;background-size:auto 60%;}

.provider .list .item span.ico17:after{background:url(../images/prov_17.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico18:after{background:url(../images/prov_18.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico19:after{background:url(../images/prov_19.png) center center no-repeat;background-size:auto 60%;}
.provider .list .item span.ico20:after{background:url(../images/prov_20.png) center center no-repeat;background-size:auto 60%;}

.provider .list .item:hover span:after{transform:rotateY(-360deg);-webkit-transform:rotateY(-360deg);
transition:all 0.5s ease-out 0s;-webkit-transition:all 0.5s ease-out 0s;}

.provider .list .item strong{
	margin-top:0px;
	display:inline-block;
	line-height: 42px;
	font-weight: normal;
}




/************联系我们************/
.module_index {
	width: 100%;
	padding: 7% 0% 8% 0%;
	margin: 0px auto;
	float: left;
}
.cont_box {
	padding: 0% 0% 0% 0%;
	width: 100%;
	height: auto;
	clear: both;
	margin: 0% auto 0% auto;
}
.cont_contact {
	padding: 2% 0% 2% 0%;
	float: left;
	width: 100%;
	height: auto;
	margin: 0% 0px 0px 0px;
}


.cont_img {
	height: auto;
	float:left;
	width: 44%;
	margin: 0px 1% 0px 0px;
	padding: 0px 0px 0px 0px;
}
.cont_img img{
	width: 100%;
	height: auto;
	border: none;
}

/*******************/
.call {
	width: 100%;
	height: auto;
	float: left;
	margin: 0px 0% 0px 0%;
	padding: 3% 0% 5% 0%;
	text-align: center;
	font-family:"微软雅黑", Arial, Helvetica, sans-serif;
}
.call h1 {
	padding: 10px 0px 10px 0px;
	font-size: 24px;
	line-height: 42px;
	color: #FFC037;
	font-weight: normal;
	float: left;
	clear: both;
	width: 100%;
}
.call h2 {
	padding: 0px 0px 0px 0px;
	font-size: 32px;
	line-height: 72px;
	color: #999999;
	font-weight: normal;	
	width: 100%;
}
.call p {
	padding: 5px 15% 10px 15%;
	font-size: 15px;
	line-height: 32px;
	color: #999999;
	font-weight: normal;	
	width: 70%;
}
.c_line {
	width: 20%;
	height: 50px;
	margin: 0px auto;
	text-align: center;
	border-bottom: 1px #ccc solid;
}

.cont_text {
	width: 100%;
	height: auto;
	float: left;
	margin: 0px 0% 0px 0%;
	padding: 2% 0% 2% 0%;
	text-align: center;
}
.cont_text h1 {
	padding: 0px 1%;
	font-size: 22px;
	line-height: 100px;
	color: #333333;
	font-weight: normal;
	text-transform: none;
	float: left;
	clear: both;
	width: 98%;
	letter-spacing: 0px;
	text-align: center;
}
.cont_text p {
	padding: 0px 0px 0px 0%;
	font-size: 14px;
	line-height: 28px;
	color: #666666;
	font-weight: normal;
	font-family:"微软雅黑", Arial, Helvetica, sans-serif;
	letter-spacing: 0px;
	width: 90%;
}
.cont_text h2 {
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	line-height: 64px;
	color: #666666;
	font-weight: bold;
	text-transform: none;
	float: left;
	clear: both;
	width: 100%;
}

.cont_text a {
	text-align: center;
	font-size: 18px;
	color: #facd89;
	line-height: 32px;
	border-radius: 12px; /* css 3标准 */

    -moz-border-radius: 12px; /* mozilla */
    -webkit-border-radius: 12px;
	width: 18%;
	height: 32px;
	float: left;
	margin: 20px 0%;
	border: 1px #facd89 solid;
}
/**********/
.cont_text ul {
	width: 100%;
	height: auto;
	float: left;
	padding: 3% 0px 3% 0px;
}
.cont_text ul li {
	width: 84%;
	height: auto;
	min-height: 90px;
	float: left;
	margin: 0px 0% 5% 0%;
	padding: 40% 8% 15% 8%;
	font-size: 16px;
	color: #333333;
	background-color: #F5F5F5;
	line-height: 36px;
}
.cont_text ul li.email {
	background: url(../images/email.png) no-repeat #F5F5F5 center 30% ;
	background-size: 60px 60px;
}
.cont_text ul li.tel {
	background: url(../images/tel.png) no-repeat #F5F5F5 center 30% ;
	background-size: 60px 60px;
}
.cont_text ul li.add {
	background: url(../images/add.png) no-repeat #F5F5F5 center 30% ;
	background-size: 60px 60px;
}
.cont_text ul li h3 {
	font-size: 20px;
	color: #000000;
	font-weight: normal;
}
.cont_text ul li p {
	font-size: 20px;
	color: #666666;
}






/*********底部导航*********/
#tree {
	height: auto;
	padding: 25px 0px 25px 0px;
	width: 100%;
	float: left;
	border-top: 1px #E0E0E0 solid;
	box-shadow:1px 0px 5px #ccc;
	background-color: #FFFFFF;
}
.tree_box {
	height: auto;
	padding: 0px;
	width: 1240px;
	margin: 0px auto;
}
#tree ul {
	float: left;
	width: 150px;
	border-right: 1px #EEEEEE solid;
	padding: 0px 10px 0px 0px;
	height: 160px;
}
#tree ul.us {
	width: 120px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 10px 0px 80px;
}
#tree ul.fw {
	width: 130px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 10px 0px 80px;
}
#tree ul.wx {
	width: 120px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: -5px;
	border-right: none;
	padding: 0px 0px 0px 70px;
}
#tree ul.last {
	width: 130px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 10px 0px 80px;
}
#tree ul h1 {
	font-size: 20px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	color: #999999;
	line-height: 32px;
	padding: 0px 0px 0px 0px;
	margin-bottom: 8px;
	font-weight: normal;
}
#tree ul h1 a {
	font-size: 14px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	line-height: 16px;
}
#tree ul h1 a:hover {
	color: #FFFFFF;
}
#tree ul h1 img {
	padding: 0px 6px 0px 0px;
}
#tree ul li {
	line-height: 28px;
	color: #77758A;
	clear: both;
}
#tree ul.wx li {
	line-height: 20px;
	color: #666666;
	clear: both;
	text-align: center;
}
#tree ul li strong {
	color: #FFFFFF;
	text-align: center;
}
#tree ul li a {
	font-size: 14px;
	color: #666666;
}
#tree ul li a:hover {
	color: #57C5F8;
}
#tree ul.wx img {
	width: 120px;
}




/***************footer********************/
.footer {
	clear: both;
	margin: 0px auto 0px auto;
	width: 90%;
	height: auto;
	float: left;
	background: url(../images/footer_bg.jpg) no-repeat #000000;
	padding: 0px 5%;
}
.floatbox {
	float: left;
	padding: 5% 0px 10% 0px;
	width: 100%;
	clear: both;
}

.foot_right {
	height: auto;
	width: 100%;
	text-align: left;
	margin: 0px auto;
	position: relative;
	background-color: #333333;
	border-top: 1px #333 solid;

}
.logo_2 {
	height: auto;
	padding: 20px 50px 0px 0px;
	float: left;
	width: 70px;
	display: none;
}
.logo_2 img {
	height: auto;
	width: 100%;
}
.logo_2 p {
	color: #7B7B7B;
	line-height: 16px;
	font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding: 0px 0px 0px 10px;
}
.logo_line {
	height: 48px;
	padding: 0px 0px 0px 0px;
	float: left;
	width: 1px;
	background-color: #3A3A3A;
	margin-top: 25px;
}
.copyright {
	height: auto;
	color: #FFFFFF;
	padding: 5% 0px 5% 0px;
	float: left;
	width: 100%;
}
.copyright h1 {
	color: #333333;
	line-height: 28px;
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 5px;
	float:left;
	width: 100%;
}
.copyright h1 span {
	line-height: 14px;
	padding: 0px 15px 0px 0px;
	margin-right: 15px;
	border-right: 1px #ccc solid;
}
.copyright h1 span.last {
	padding: 0px 0px 0px 0px;
	margin-right: 0px;
	border-right: none;
}
.copyright a {
	color: #7B7B7B;
	padding: 0px 0px 0px 0px;
}
.copyright a.icp {
	padding: 0px 15px 0px 25px;
	background: url(../images/ic.png) no-repeat left center;
	display: none;
}
.copyright a:hover {
	color: #C2B186;
}
.copyright p {
	color: #7B7B7B;
	line-height: 22px;
	font-size: 14px;
	font-weight: normal;
	padding-left: 0px;
}
.copyright p span {
	font-weight: normal;
	padding: 0px 5px 0px 0px;
}


/***********************返回顶部*****************************/
#rightButton{
	position:fixed;
	top:320px;
	right:0px;
	z-index:999999;
	display:block;
}
#right_ul{
	position:relative;
	float: left;
}

#ww,#qq,#tel,#tip,#backToTop,#code{
	width:50px;
	height:auto;
	border-radius: 4px;
    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px;
	background:url(../images/icon.png) no-repeat;
}

/**********返回*************/
#backToTop { background-position:-305px -163px; z-index:999999; width:50px; height:59px; display:none;}
a.backToTop_a { width:50px; height:60px; display:block; }
a.backToTop_a:active { background-position:-255px -162px; }


}