﻿/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/
/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
.bgFull {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-ms-behavior: url(../images/cover.htc);
	behavior: url(../images/cover.htc);
}
.vcenter {
	display: block;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.tHide {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.blockFull {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.block {
	display: block;
	position: relative;
}
.centerBlock {
	margin-left: auto;
	margin-right: auto;
}
.clearfix {
	clear: both;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-loading .slick-list {
	background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}
.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir="rtl"] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-prev, .slick-next {
	z-index: 20;
	position: absolute;
	display: block;
	height: 60px;
	width: 30px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	margin-top: -30px;
	padding: 0;
	border: none;
	outline: none;
	border: 1px solid red;
}
.slick-prev {
	left: 30px;
}
[dir="rtl"] .slick-prev {
	left: auto;
	right: 30px;
}
.slick-next {
	right: 30px;
}
[dir="rtl"] .slick-next {
	left: 30px;
	right: auto;
}
.slick-dots {
	position: absolute;
	bottom: 20px;
	height: auto;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	width: 100%;
	line-height: 0;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	display: block;
	height: 10px;
	width: 10px;
	padding: 0;
	margin: 0;
	outline: none;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: #cccccc;
	border-radius: 0px;
}
.slick-dots li.slick-active button {
	background: #333333;
}
body {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
.w1260 {
	width: 1260px;
	margin: 0 auto;
}
img {
	max-width: 100%;
}
.title {
	text-align: center;
}
.title p {
	color: #333333;
	font-size: 28px;
	text-transform: uppercase;
}
.title p span {
	color: #009242;
}
.title h3 {
	color: #333333;
	font-size: 28px;
	font-weight: normal;
}
.page {
	text-align: center;
}
.page a {
	display: inline-block;
	border: 2px solid #dfdfdf;
	line-height: 34px;
	min-width: 34px;
	color: #333333;
	font-size: 14px;
	font-family: arial;
}
.page a:hover, .page a.cur {
	background: #009242;
	color: #fff;
	border-color: #fff;
}
.bread {
	text-align: right;
	color: #999999;
	font-size: 14px;
	padding-top: 30px;
}
.bread a {
	color: #999;
}
.bread a:hover {
	color: #17b05b;
}
.header_box .top {
	border-bottom: 1px solid #eeeeee;
	line-height: 32px;
	text-align: right;
	font-size: 12px;
}
.header_box .top a {
	color: #999999;
	display: inline-block;
	padding: 0 10px;
	position: relative;
}
.header_box .top a:before {
	content: "";
	position: absolute;
	right: 0;
	top: 11px;
	width: 1px;
	height: 10px;
	background: #999999;
}
.header_box .top a:last-child {
	padding-right: 0;
}
.header_box .top a:last-child:before {
	display: none;
}
.header_box .top a:hover {
	color: #009242;
}
.header_box .header {
	height: 75px;
}
.header_box .header .logo {
	margin-top: 15px;
	display: block;
	width: 300px;
	line-height: 0;
}
.header_box .header .nav {
	float: left;
	margin-left: 70px;
}
.header_box .header .nav ul li {
	float: left;
	font-size: 15px;
	margin-right: 48px;
	position: relative;
}
.header_box .header .nav ul li > a {
	border-top: 2px solid transparent;
	line-height: 73px;
	display: block;
	color: #333333;
}
.header_box .header .nav ul li .navbox {
	display: none;
	background: #fff;
	position: absolute;
	z-index: 8;
	left: -20px;
	top: 100%;
	width: 125px;
	text-align: left;
	padding: 10px 20px;
}
.header_box .header .nav ul li .navbox > a {
	display: block;
	line-height: 36px;
	font-size: 14px;
	color: #333;
}
.header_box .header .nav ul li .navbox > a:hover {
	color: #f08200;
}
.header_box .header .nav ul li:hover > a {
	border-top-color: #f08200;
	color: #f08200;
}
.header_box .header .nav ul li:hover .navbox {
	display: block;
}
.header_box .header .nav ul li.cur > a {
	border-top-color: #f08200;
	color: #f08200;
}
.header_box .header .nav ul li:last-child {
	margin-right: 0;
}
.header_box .header .dh {
	float: right;
	line-height: 75px;
}
.header_box .header .dh span {
	color: #333333;
	font-size: 15px;
	font-weight: bold;
	background: url(../images/dh.jpg) no-repeat left center;
	padding-left: 40px;
	display: block;
}
.links {
	background: #eeeeee;
	line-height: 36px;
	position: relative;
	z-index: 99;
}
.links span {
	float: left;
	color: #999999;
	font-size: 14px;
	font-weight: initial;
}
.links .t {
	margin-left: 5px;
	float: left;
	max-width: 90%;
}
.links .t a {
	display: block;
	float: left;
	color: #999999;
	font-size: 14px;
	margin-right: 8px;
}
.links .t a:hover {
	color: #009242;
}
.footer {
	/* padding: 60px 0 110px; */
	padding: 60px 0 50px;
	background: #383434;
	position: relative;
	z-index: 2;
}
.footer .left {
	padding-top: 10px;
	float: left;
}
.footer .left .foot_nav {
	border-bottom: 1px solid #4c4c4c;
	padding-bottom: 20px;
	float: left;
}
.footer .left .foot_nav a {
	color: #ffffff;
	font-size: 16px;
	float: left;
	margin-left: 25px;
}
.footer .left .foot_nav a:first-child {
	margin-left: 0;
}
.footer .left .foot_bottom {
	padding-top: 18px;
}
.footer .left .foot_bottom a {
	display: block;
	float: left;
	color: #727272;
	font-size: 14px;
	margin-left: 30px;
}
.footer .left .foot_bottom a:first-child {
	margin-left: 0;
}
.footer .left .banquan {
	margin-top: 15px;
	color: #727272;
	font-size: 12px;
}
.footer .right {
	float: right;
}
.footer .right .img {
	float: left;
	width: 126px;
	display: block;
	line-height: 0;
}
.footer .right .text {
	margin-left: 30px;
	float: left;
}
.footer .right .text h3 {
	color: #ffffff;
	font-size: 20px;
	font-weight: normal;
}
.footer .right .text .t {
	margin-top: 15px;
	color: #ffffff;
	font-size: 14px;
	line-height: 26px;
}
.bottom_fixed {
	background: #009242;
	position: fixed;
	z-index: 99;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
}
.bottom_fixed .img {
	float: left;
	width: 111px;
	margin-top: 12px;
}
.bottom_fixed h3 {
	float: left;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	line-height: 60px;
	margin-left: 18px;
}
.bottom_fixed .foot_dh {
	margin-left: 40px;
	float: left;
	line-height: 60px;
}
.bottom_fixed .foot_dh span {
	display: block;
	background: url(../images/footer_dh.jpg) no-repeat left center;
	padding-left: 43px;
	color: #ffffff;
	font-size: 30px;
}
.bottom_fixed .foot_input {
	margin-left: 40px;
	float: left;
	height: 37px;
	background: #fff;
	width: 322px;
	margin-top: 12px;
}
.bottom_fixed .foot_input .t {
	float: left;
	width: 219px;
	height: 37px;
	background: none;
	border: none;
	padding: 0 15px;
}
.bottom_fixed .foot_input .b {
	background: #e77a19;
	width: 103px;
	height: 37px;
	border: none;
	color: #fff;
	font-size: 15px;
}
.bottom_fixed .foot_zx {
	float: left;
}
.bottom_fixed .foot_zx a {
	display: block;
	float: left;
	width: 103px;
	height: 37px;
	background: #e77a19;
	margin-top: 12px;
	margin-left: 5px;
	text-align: center;
	line-height: 37px;
	color: #fff;
	font-size: 15px;
}
.bottom_fixed .guanbi {
	float: right;
	width: 35px;
	height: 35px;
	line-height: 0;
	margin-top: 13px;
	cursor: pointer;
}
.banner {
	position: relative;
	width: 100%;
}
.banner img {
	width: 100%;
}
.banner .slick-dots {
	bottom: 55px;
}
.banner .slick-dots li {
	margin: 0 5px;
}
.banner .slick-dots li button {
	width: 35px;
	height: 2px;
	background: #fff;
}
.banner .slick-dots li.slick-active button {
	background: #009944;
}
.home_rental {
	padding: 80px 0;
}
.home_rental ol {
	margin-top: 15px;
	margin-left: -30px;
}
.home_rental ol li {
	float: left;
	width: 400px;
	height: 255px;
	margin-top: 30px;
	overflow: hidden;
	margin-left: 30px;
	position: relative;
}
.home_rental ol li .img {
	line-height: 0;
}
.home_rental ol li .text {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 40px 25px 0;
}
.home_rental ol li .text .t {
	color: #009242;
	font-size: 39px;
}
.home_rental ol li .text .t span {
	font-size: 20px;
}
.home_rental ol li .text h3 {
	color: #009242;
	font-size: 28px;
	font-weight: normal;
}
.home_rental ol li .text .d {
	color: #ff9000;
	font-size: 14px;
	margin-top: 10px;
}
.home_rental ol li .text a {
	margin-top: 18px;
	display: inline-block;
	background: #ff9000;
	line-height: 36px;
	padding: 0 20px;
	color: #fff;
	font-size: 16px;
}
.home_rental ol li .text a:hover {
	background: #009242;
	transition: all .4s;
}
.home_odds {
	background: url(../images/home_bg2.jpg) no-repeat center center;
	height: 538px;
	padding-top: 73px;
}
.home_odds .title p {
	color: #fff;
}
.home_odds .title p span {
	color: #fff;
}
.home_odds .title h3 {
	color: #fff;
}
.home_odds ol {
	margin-top: 46px;
}
.home_odds ol li {
	float: left;
	width: 25%;
	text-align: center;
	color: #fff;
	padding: 0 40px;
}
.home_odds ol li .icon {
	line-height: 0;
}
.home_odds ol li .text {
	padding-top: 30px;
}
.home_odds ol li .text h3 {
	font-size: 23px;
	font-weight: normal;
}
.home_odds ol li .text p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
}
.home_case {
	padding: 80px 0;
}
.home_case ol {
	margin-top: 15px;
	margin-left: -30px;
	margin-bottom: 36px;
}
.home_case ol li {
	float: left;
	width: 400px;
	height: 420px;
	margin-left: 30px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}
.home_case ol li .img {
	width: 400px;
	height: 420px;
}
.home_case ol li .text {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 360px;
	background: rgba(0, 146, 66, 0.9);
	padding: 14px 60px;
	text-align: center;
	color: #fff;
	transform: translateY(100%);
	opacity: 0;
	transition: all .3s;
}
.home_case ol li .text h3 {
	font-size: 18px;
}
.home_case ol li .text p {
	font-size: 14px;
	line-height: 24px;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.home_case ol li .text .bottom {
	margin-top: 28px;
}
.home_case ol li .text .bottom a {
	display: inline-block;
	border: 1px solid #fff;
	line-height: 30px;
	border-radius: 50px;
	padding: 0 20px;
	color: #fff;
	margin: 0 5px;
}
.home_case ol li .text .bottom a:hover {
	background: #e77a19;
	border-color: #e77a19;
}
.home_case ol li:hover .text {
	transform: translateY(0);
	opacity: 1;
}
.home_case .bottom_btn {
	text-align: center;
}
.home_case .bottom_btn a {
	display: inline-block;
	background: #e77a19;
	line-height: 34px;
	border-radius: 50px;
	padding: 0 25px;
	color: #fff;
	font-size: 14px;
}
.home_gzt {
	
	/*height: 271px;*/
	text-align: center;
	color: #fff;
	padding-top: 10px;
}
.home_gzt p {
	font-size: 26px;
	text-transform: uppercase;line-height: 52px;
}
.home_gzt h3 {
	margin-top: 10px;
	color: #ffffff;
	font-size: 26px;
	font-weight: normal;
}
.home_customers {
	padding: 80px 0;
	background: #f5f5f5;
}
.home_customers ol {
	margin-top: 45px;
	border-left: 1px solid #e3e3e3;
	border-top: 1px solid #e3e3e3;
}
.home_customers ol li {
	float: left;
	width: 20%;
	height: 205px;
	border-right: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	background: #fff;
	position: relative;
}
.home_customers ol li:nth-child(16) {
	display: none;
}
.home_customers ol li:hover {
	box-shadow: 0 0 3px 3px #e3e3e3;
	z-index: 9999;/* 	transition: all .5s; */
}
.home_customers ol li img {
	display: block;
	max-width: 50%;
	max-height: 87%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.home_service {
	background: #009242;
}
.home_service .img {
	float: left;
	width: 1119px;
	margin-left: -330px;
	line-height: 0;
}
.home_service .text {
	float: right;
	width: 380px;
	padding-top: 80px;
}
.home_service .text .title {
	text-align: left;
}
.home_service .text .title p {
	color: #fff;
}
.home_service .text .title p span {
	color: #fff;
}
.home_service .text .title h3 {
	color: #fff;
}
.home_service .text ol {
	margin-top: 60px;
}
.home_service .text ol li {
	float: left;
	width: 100%;
	margin-bottom: 35px;
}
.home_service .text ol li .icon {
	float: left;
	width: 76px;
	height: 76px;
	line-height: 0;
}
.home_service .text ol li .t {
	float: right;
	width: 280px;
	color: #ffffff;
	padding-top: 8px;
}
.home_service .text ol li .t h3 {
	font-size: 26px;
	font-weight: normal;
}
.home_service .text ol li .t p {
	margin-top: 5px;
	font-size: 16px;
}
.home_class {
	padding: 80px 0 40px;
}
.home_class ol {
	margin-top: 45px;
}
.home_class ol li {
	float: left;
	margin-bottom: 35px;
	width: 612px;
}
.home_class ol li:nth-child(2n) {
	float: right;
}
.home_class ol li .img {
	line-height: 0;
	widows: 612px;
	height: 385px;
	position: relative;
	overflow: hidden;
}
.home_class ol li .img img {
	transition: all 2s;
	-o-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
	-webkit-transition: all 2s;
}
.home_class ol li:hover .img img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.home_class ol li .img span {
	position: absolute;
	right: 0;
	top: 0;
	background: #e77a19;
	line-height: 54px;
	min-width: 135px;
	padding: 0 20px;
	text-align: center;
	color: #fff;
	font-size: 20px;
}
.home_class ol li .text {
	padding-top: 15px;
	background: #fff;
}
.home_class ol li .text h3 {
	color: #333333;
	font-size: 20px;
	font-weight: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.home_class ol li .text p {
	margin-top: 5px;
	color: #999999;
	font-size: 16px;
}
.nybanner {
	text-align: center;
	margin-top: 107px;
}
.nybanner span {
	line-height: 0;
	display: block;
}
.mian_box {
	padding: 80px 0;
}
.mian_box .mian_top {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 25px;
}
.mian_box .mian_top h3 {
	float: left;
	color: #333333;
	font-size: 26px;
	font-weight: normal;
}
.mian_box .mian_top p {
	float: right;
	color: #666666;
	font-size: 16px;
	padding-top: 24px;
}
.mian_box .mian {
	margin-top: 45px;
}
.mian_box .mian .left {
	float: left;
	width: 350px;
}
.mian_box .mian .left .tit {
	border-bottom: 1px solid #999999;
	color: #999999;
	font-size: 16px;
}
.mian_box .mian .left .tit h3 {
	font-weight: normal;
	color: #333333;
	font-size: 16px;
	display: inline-block;
	margin-right: 12px;
	border-bottom: 2px solid #17b05b;
	padding-bottom: 12px;
}
.mian_box .mian .left .menu ul li {
	float: left;
	width: 100%;
	background: #f8f8f8;
	line-height: 66px;
	font-size: 16px;
	border-bottom: 1px solid #ffffff;
}
.mian_box .mian .left .menu ul li a {
	display: block;
	color: #333333;
	padding: 0 40px;
	position: relative;
}
.mian_box .mian .left .menu ul li a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 5px;
	height: 46px;
	background: #17b05b;
	display: none;
}
.mian_box .mian .left .menu ul li:hover a:before, .mian_box .mian .left .menu ul li.cur a:before {
	display: block;
}
.mian_box .mian .left .khzx {
	margin-top: 40px;
}
.mian_box .mian .left .khzx .m-zx {
	margin-top: 20px;
	background: url(../images/zx_img1.jpg) no-repeat center center;
	width: 100%;
	height: 206px;
	color: #fff;
	padding: 70px 0 0 40px;
}
.mian_box .mian .left .khzx .m-zx .t {
	background: url(../images/dh2.png) no-repeat left center;
	padding-left: 68px;
}
.mian_box .mian .left .khzx .m-zx .t h3 {
	font-size: 22px;
	font-weight: normal;
}
.mian_box .mian .left .khzx .m-zx .t p {
	font-size: 22px;
}
.mian_box .mian .left .khzx .m-zx2 {
	margin-top: 20px;
	background: #17b05b;
	text-align: center;
	height: 70px;
	line-height: 70px;
	border-radius: 5px;
}
.mian_box .mian .left .khzx .m-zx2 a {
	display: block;
	color: #ffffff;
	font-size: 22px;
}
.mian_box .mian .left .khzx .m-zx2 a i {
	display: inline-block;
	background: url(../images/zx2.png) no-repeat center center / cover;
	width: 40px;
	height: 40px;
	position: relative;
	top: 11px;
	margin-right: 10px;
}
.mian_box .mian .left .khzx .ewm {
	margin-top: 20px;
	padding-left: 20px;
}
.mian_box .mian .left .khzx .ewm span {
	float: left;
	width: 90px;
	line-height: 0;
}
.mian_box .mian .left .khzx .ewm .t {
	padding-top: 6px;
	float: right;
	width: 220px;
	color: #333333;
	font-size: 14px;
	line-height: 24px;
}
.mian_box .mian .left .jdal {
	margin-top: 40px;
}
.mian_box .mian .left .jdal ol {
	margin-top: 5px;
}
.mian_box .mian .left .jdal ol li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #999999;
	padding: 15px 0;
}
.mian_box .mian .left .jdal ol li:last-child {
	border-bottom: none;
}
.mian_box .mian .left .jdal ol li .img {
	float: left;
	width: 116px;
	height: 75px;
	line-height: 0;
}
.mian_box .mian .left .jdal ol li .text {
	float: right;
	width: 210px;
	word-wrap: break-word;
}
.mian_box .mian .left .jdal ol li .text h3 {
	color: #333333;
	font-size: 16px;
	line-height: 24px;
}
.mian_box .mian .left .jdal ol li .text p {
	margin-top: 5px;
	text-align: right;
	font-size: 14px;
	display: none;
}
.mian_box .mian .left .sjzx {
	margin-top: 40px;
}
.mian_box .mian .left .sjzx .imgbox {
	margin-top: 20px;
}
.mian_box .mian .right {
	float: right;
	width: 868px;
}
.mian_box2 {
	padding-top: 30px;
}
.lease_box ul {
	margin-left: -9px;
	margin-bottom: 25px;
}
.lease_box ul li {
	float: left;
	width: 210px;
	margin-left: 9px;
	margin-bottom: 30px;
	text-align: center;
}
.lease_box ul li .img {
	width: 210px;
	height: 158px;
	line-height: 0;
	overflow: hidden;
}
.lease_box ul li .img img {
	transition: all 2s;
	-o-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
	-webkit-transition: all 2s;
	height: 150px;
}
.lease_box ul li:hover .img img {
	transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.lease_box ul li h3 {
	background: #fff;
	padding-top: 15px;
	color: #333333;
	/* font-size: 18px; */
	font-size: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-weight: normal;
}
.liucheng_box {
	margin-top: 60px;
}
.liucheng_box ol {
	margin-left: -60px;
}
.liucheng_box ol li {
	float: left;
	width: 270px;
	margin-left: 60px;
}
.liucheng_box ol li .bt {
	background: #17b05b;
	border-radius: 50px;
	padding: 10px;
	color: #fff;
	line-height: 46px;
	font-size: 21px;
}
.liucheng_box ol li .bt span {
	float: left;
	width: 46px;
	height: 46px;
	background: #fff;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
	line-height: 46px;
	color: #333333;
	font-size: 24px;
	margin-right: 30px;
}
.liucheng_box ol li .text {
	width: 206px;
	padding: 15px 0;
	margin: 0 auto;
	background: #f8f8f8;
	text-align: center;
	color: #333333;
	font-size: 16px;
	line-height: 34px;
}
.leaseshow_box h1 {
	text-align: center;
	color: #333333;
	font-size: 24px;
	font-weight: normal;
}
.leaseshow_box .detail {
	margin-top: 30px;
	color: #666666;
	font-size: 14px;
	line-height: 28px;
}
.leaseshow_box .detail p span {
	color: #000;
}
.offer_top {
	margin-top: 45px;
	margin-bottom: 60px;
}
.offer_top ul {
	border-left: 1px solid #dedede;
}
.offer_top ul li {
	float: left;
	width: 16.66666667%;
	border-bottom: 1px solid #dedede;
	transition: all .2s;
}
.offer_top ul li .tab {
	text-align: center;
	background: #ff9000;
	padding: 30px 0;
	border-right: 1px solid #fff;
}
.offer_top ul li .tab .icon {
	height: 57px;
}
.offer_top ul li .tab p {
	margin-top: 15px;
	color: #ffffff;
	font-size: 18px;
}
.offer_top ul li .text {
	border-right: 1px solid #dedede;
	padding: 20px;
}
.offer_top ul li .text .bt {
	color: #999999;
	font-size: 24px;
}
.offer_top ul li .text .bt span {
	font-size: 18px;
}
.offer_top ul li .text .t {
	margin-top: 5px;
	color: #999999;
	font-size: 14px;
	line-height: 24px;
}
.offer_top ul li:hover, .offer_top ul li.cur {
	background: #17b05b;
}
.offer_top ul li:hover .text .bt, .offer_top ul li:hover .text .t, .offer_top ul li.cur .text .bt, .offer_top ul li.cur .text .t {
	color: #fff;
}
.ctqd .ctqd_text {
	padding-top: 20px;
}
.ctqd .ctqd_text p {
	float: left;
	width: 50%;
	color: #666666;
	line-height: 32px;
	font-size: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.ctqd .ctqd_text p:hover {
	color: #17b05b;
}
.ctqd .box {
	margin-top: 28px;
	background: #f8f8f8;
	padding: 20px 20px 20px 60px;
	color: #666666;
	font-size: 18px;
	line-height: 36px;
}
.ctqd .box .money {
	margin-top: 10px;
	color: #ff9000;
	font-size: 34px;
	font-family: arial;
}
.ctqd .box .money span {
	color: #666666;
	font-size: 18px;
	position: relative;
	bottom: 2px;
	font-family: " ";
}
.plant_box {
	padding: 80px 0;
}
.plant_box .box {
	margin-top: 45px;
}
.plant_box .box .img {
	float: left;
	width: 594px;
	line-height: 0;
}
.plant_box .box .text {
	float: right;
	width: 620px;
}
.plant_box .box .text .name {
	color: #666666;
	font-size: 16px;
	line-height: 30px;
}
.plant_box .box .text .t {
	margin-top: 30px;
	color: #666666;
	font-size: 16px;
	line-height: 28px;
}
.plant_box .box .text .t p {
	background: url(../images/plant_icon1.jpg) no-repeat left 7px;
	padding-left: 20px;
	margin-bottom: 12px;
}
.plant_box2 {
	background: #f8f8f8;
	padding: 80px 0;
}
.plant_box2 .left {
	width: 821px;
	float: left;
}
.plant_box2 .left ol li {
	float: left;
	line-height: 0;
	height: 315px;
}
.plant_box2 .left ol li span {
	display: block;
}
.plant_box2 .left ol li.li1 {
	width: 413px;
}
.plant_box2 .left ol li.li2 {
	width: 408px;
}
.plant_box2 .left ol li.li3 {
	width: 821px;
}
.plant_box2 .right {
	float: right;
	width: 435px;
	height: 630px;
	line-height: 0;
	overflow: hidden;
}
.plant_box3 {
	padding: 80px 0;
}
.plant_box3 .box {
	margin-top: 45px;
	background: #f8f8f8;
}
.plant_box3 .box .img {
	float: left;
	width: 625px;
	line-height: 0;
}
.plant_box3 .box ol {
	float: right;
	width: 635px;
	padding: 90px 0 90px 95px;
}
.plant_box3 .box ol li {
	float: left;
	width: 100%;
	margin-bottom: 70px;
}
.plant_box3 .box ol li:last-child {
	margin-bottom: 0;
}
.plant_box3 .box ol li .icon {
	width: 70px;
	float: left;
}
.plant_box3 .box ol li .t {
	margin-left: 30px;
	float: left;
	width: 305px;
}
.plant_box3 .box ol li .t h3 {
	color: #333333;
	font-size: 22px;
	font-weight: normal;
}
.plant_box3 .box ol li .t p {
	margin-top: 10px;
	color: #666666;
	font-size: 18px;
}
.plant_box4 {
	padding-bottom: 20px;
}
.plant_box4 ol {
	margin-top: 45px;
}
.plant_box4 ol li {
	float: left;
	width: 100%;
	margin-bottom: 70px;
}
.plant_box4 ol li:last-child {
	margin-bottom: 0;
}
.plant_box4 ol li .img {
	float: left;
	width: 630px;
	position: relative;
}
.plant_box4 ol li .img .img1 {
	display: block;
	width: 630px;
	height: 425px;
}
.plant_box4 ol li .img .img2 {
	display: block;
	position: absolute;
	right: -15px;
	bottom: -20px;
	width: 252px;
	height: 198px;
	border: 1px solid #fff;
}
.plant_box4 ol li .text {
	float: right;
	width: 630px;
	padding: 120px 75px 20px;
}
.plant_box4 ol li .text h3 {
	color: #333333;
	font-size: 22px;
	font-weight: normal;
}
.plant_box4 ol li .text .t {
	margin-top: 25px;
	color: #666666;
	font-size: 18px;
	line-height: 36px;
}
.plant_box4 ol li:nth-child(2n) .img {
	float: right;
}
.plant_box4 ol li:nth-child(2n) .img .img2 {
	right: auto;
	bottom: -20px;
	left: -15px;
}
.plant_box4 ol li:nth-child(2n) .text {
	float: left;
	padding-left: 30px;
	padding-right: 60px;
}
.plant_box5 {
	padding: 80px 0;
}
.plant_box5 ol {
	margin-top: 45px;
	margin-left: -9px;
}
.plant_box5 ol li {
	float: left;
	width: 308px;
	text-align: center;
	margin-left: 88px;
}
.plant_box5 ol li .img {
	width: 308px;
	height: 230px;
}
.plant_box5 ol li h3 {
	margin-top: 22px;
	color: #000000;
	font-size: 22px;
	font-weight: normal;
}
.garden_box {
	padding-top: 80px;
}
.garden_box .img {
	float: right;
	width: 630px;
}
.garden_box .text {
	float: left;
	width: 630px;
	color: #666666;
	font-size: 16px;
	line-height: 34px;
	padding: 180px 60px 0;
}
.garden_box2 .img {
	float: left;
}
.garden_box2 .text {
	float: right;
}
.garden_box3 {
	background: #f8f8f8;
	margin-top: 80px;
}
.garden_box3 .text {
	float: left;
	width: 630px;
	padding-top: 200px;
	padding-right: 90px;
	padding-left: 70px;
}
.garden_box3 .text h3 {
	color: #333333;
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
}
.garden_box3 .text .t {
	margin-top: 20px;
	color: #666666;
	font-size: 18px;
	line-height: 34px;
}
.garden_box3 .text .name {
	margin-top: 50px;
	color: #333333;
	font-size: 12px;
	line-height: 34px;
}
.garden_box3 .img {
	float: right;
	width: 960px;
	height: 733px;
	margin-right: -330px;
	line-height: 0;
}
.case_box ul {
	margin-left: -14px;
}
.case_box ul li {
	float: left;
	margin-left: 14px;
	width: 280px;
	margin-bottom: 30px;
}
.case_box ul li .img {
	width: 280px;
	height: 210px;
	overflow: hidden;
}
.case_box ul li .img img {
	transition: all 1.2s;
	-o-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-webkit-transition: all 1.2s;
}
.case_box ul li:hover .img img {
	transform: scale(1.2);
	-o-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}
.case_box ul li h3 {
	color: #333333;
	/* font-size: 18px; */
	font-size: 16px;
	font-weight: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 12px;
}
.case_box ul li p {
	margin-top: 5px;
	color: #999999;
	font-size: 16px;
	display: none;
}
.rmwz {
	margin-top: 40px;
}
.rmwz ol {
	margin-top: 5px;
}
.rmwz ol li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #999999;
	padding: 15px 0;
}
.rmwz ol li:last-child {
	border-bottom: none;
}
.rmwz ol li .img {
	float: left;
	width: 116px;
	height: 75px;
	line-height: 0;
}
.rmwz ol li .text {
	float: right;
	width: 210px;
}
.rmwz ol li .text h3 {
	color: #333333;
	font-size: 16px;
	line-height: 24px;
}
.rmwz ol li .text p {
	margin-top: 5px;
	text-align: right;
	font-size: 14px;
}
.rmwz ol li .text p span {
	float: left;
	display: inline-block;
}
.xgss {
	margin-top: 25px;
}
.xgss ol li {
	float: left;
	font-size: 16px;
	margin-top: 20px;
	width: 48%;
}
.xgss ol li:nth-child(2n) {
	float: right;
}
.xgss ol li a {
	color: #333333;
	display: block;
	text-decoration: underline;
}
.gjcy {
	margin-top: 40px;
}
.gjcy .text {
	margin-top: 16px;
}
.gjcy .text a {
	display: block;
	float: left;
	color: #333333;
	font-size: 12px;
	margin-right: 10px;
	line-height: 24px;
}
.news_box ul {
	margin-bottom: 60px;
}
.news_box ul li {
	float: left;
	width: 100%;
	border-bottom: 1px dashed #dbdbdb;
	padding: 20px 0;
}
.news_box ul li:first-child {
	padding-top: 0;
}
.news_box ul li .img {
	float: left;
	width: 200px;
	height: 126px;
	overflow: hidden;
}
.news_box ul li .text {
	float: right;
	width: 640px;
}
.news_box ul li .text h3 {
	color: #333333;
	font-size: 16px;
	font-weight: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.news_box ul li .text p {
	color: #666666;
	font-size: 14px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	margin-top: 10px;
}
.news_box ul li .text .bottom {
	margin-top: 10px;
	color: #999999;
	line-height: 24px;
	font-size: 12px;
}
.news_box ul li .text .bottom .f-l {
	background: url(../images/yj.jpg) no-repeat left center;
	padding-left: 20px;
}
.feye_btn {
	margin-top: 40px;
	border-top: 1px solid #cecece;
	padding-top: 40px;
}
.feye_btn ol {
	float: left;
	max-width: 80%;
}
.feye_btn ol li {
	float: left;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: 36px;
	color: #666666;
	font-size: 16px;
	margin-bottom: 15px;
}
.feye_btn ol li a {
	color: #666666;
}
.feye_btn ol li a span {
	line-height: 36px;
	display: inline-block;
	border: 1px solid #666666;
	padding: 0 10px;
	margin-right: 20px;
}
.feye_btn a.Back {
	float: right;
	color: #666666;
	font-size: 14px;
	line-height: 36px;
	display: inline-block;
	border: 1px solid #666666;
	padding: 0 10px;
}
.contact_map {
	width: 100%;
	height: 432px;
	margin-top: 40px;
}
.contact {
	padding-top: 50px;
	position: relative;
}
.contact h3 {
	color: #333333;
	font-size: 24px;
	font-weight: normal;
}
.contact .t {
	margin-top: 30px;
	color: #333333;
	line-height: 34px;
	font-size: 16px;
}
.contact .fx_btn {
	position: absolute;
	right: 0;
	bottom: 10px;
}
.contact .fx_btn a {
	float: left;
	display: block;
	height: 32px;
	margin-left: 50px;
}
.contact .fx_btn a.fx_weixin_a1 .fx_weixin {
	position: absolute;
	top: -110px;
	left: 12px;
	display: none;
}
.contact .fx_btn a.fx_weixin_a1:hover .fx_weixin {
	display: block;
}
.contact .fx_btn a.fx_weixin_a2 .fx_weibo {
	position: absolute;
	top: -110px;
	right: -30px;
	display: none;
}
.contact .fx_btn a.fx_weixin_a2:hover .fx_weibo {
	display: block;
}
.scene_box {
	padding: 80px 0;
}
.scene_box .name {
	color: #333333;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
}
.scene_box .scene_list {
	margin-top: 45px;
}
.scene_box .scene_list ol {
	margin-left: -15px;
}
.scene_box .scene_list ol li {
	float: left;
	width: 410px;
	height: 308px;
	margin-left: 15px;
	margin-bottom: 15px;
	line-height: 0;
}
.scene_box2 {
	padding-bottom: 80px;
}
.scene_box2 .img {
	float: left;
	width: 630px;
}
.scene_box2 .text {
	float: right;
	width: 630px;
	color: #666666;
	font-size: 18px;
	line-height: 34px;
	padding: 160px 60px 0;
}
.fixed-head {
	z-index: 999;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background: #fff;
	transition: All .4s ease;
	-webkit-transition: All .4s ease;
	-moz-transition: All .4s ease;
	-o-transition: All .4s ease;
	-webkit-animation: headerFix 1s ease 1;
	animation: headerFix 1s ease 1;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
 @-webkit-keyframes headerFix {
 from {
 -webkit-transform: translateY(-100%);
}
to {
	-webkit-transform: translateY(0);
}
}
@keyframes headerFix {
 from {
 transform: translateY(-100%);
}
to {
	transform: translateY(0);
}
}
.xz_ewm {
	position: relative;
}
.xz_ewm_img {
	position: absolute;
	top: 26px;
	right: -11px;
	display: none;
}
.xz_ewm:hover .xz_ewm_img {
	display: block;
}
/**2019-4-28**/
.mian_box3 {
	background: #f8f8f8;
}
.mian_box3 .banquan {
	margin-top: 30px;
	font-size: 14px;
	line-height: 24px;
}
.mian_box3 .tiaokuan {
	margin-top: 30px;
	font-size: 14px;
	line-height: 24px;
}
.mian_box3 .about_t {
	margin-top: 30px;
	font-size: 14px;
	line-height: 24px;
}
.BMapLabel {
	display: none;/* opacity:0; */
	
}
.t_ditu {
	position: relative;
}
.t_ditu .biaozhi {
	position: absolute;
}
.t_ditu .biaozhi img {
	animation: mapicon 1s 1s infinite;
	-webkit-animation: mapicon 1s 1s infinite;
}
 @keyframes mapicon {
 0% {
 transform: translateY(0px);
 opacity: 0;
}
 100% {
 transform: translateY(20px);
 opacity: 1;
}
}
@-webkit-keyframes mapicon {
 0% {
 -webkit-transform: translateY(0px);
 opacity: 0;
}
 100% {
 -webkit-transform: translateY(20px);
 opacity: 1;
}
}
/**2019-5-15**/
.header_box {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	background: #fff;
}
.banner_fixe {
	position: relative;
	z-index: 1;
}
.banner {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
}
.banner_text {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.banner .img_bg {
	position: absolute;
	left: 0;
	top: 0;
	top: 107px;
	width: 100%;
	height:450px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.home_rental, .home_case, .home_class {
	background: #fff;
}
/*租赁banner*/
.zulin {
	position: relative;
}
/* .zulin img{
	width: 100%;
	max-width: 100%;
} */
.zulin .yezi {
	position: absolute;
	bottom: 0;
	right: 0;
}
.zulin .bounceInDown {
	position: absolute;
	right: 0;
	top: 0;
}
.zulin .fadeInUp {
	position: absolute;
	right: 0;
	top: 0;
}
.fl {
	float: left;
	font-size: 13px;
}
.tcxz {
	font-size: 16px;
	text-align: center;
}
.footxz {
	font-size: 16px;
}
/*右侧边栏样式*/
.sidebar-box {
	position: fixed;
	right: 0;
	top: 40%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%); /* IE 9 */
	-moz-transform: translateY(-50%);    /* Firefox */
	-webkit-transform: translateY(-50%); /* Safari 和 Chrome */
	-o-transform: translateY(-50%);
	z-index: 1000;
}
.sidebar li {
	width: 50px;
	height: 50px;
	background-color: #EAEAEA;
	/*padding: 15px;*/
	position: relative;
	text-align: right;
	border-bottom: 1px solid #DBDBDB;
	transition: all 0.5s ease-in-out;
}
.sidebar li+li {
}
.sidebar li i {
	width: 50px;
	height: 49px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1100;
	background-color: #EAEAEA;
	transition: all 0.5s ease-in-out;
}
.sidebar li a {
	display: block;
	width: 100%;
}
.sidebar li .text {
	width: 220px;
	font-size: 14px;
	color: #181818;
	font-weight: 600;
	position: absolute;
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%); /* IE 9 */
	-moz-transform: translateY(-50%);    /* Firefox */
	-webkit-transform: translateY(-50%); /* Safari 和 Chrome */
	-o-transform: translateY(-50%);
	text-align: left;
	z-index: 10;
}
.sidebar li .icon01 {
	background: url('../images/aside-img01.png') no-repeat center #EAEAEA;
}
.sidebar li .icon02 {
	background: url('../images/aside-img02.png') no-repeat center #EAEAEA;
}
.sidebar li .icon03 {
	background: url('../images/aside-img03.png') no-repeat center #EAEAEA;
}
.sidebar li .icon04 {
	background: url('../images/aside-img04.png') no-repeat center #EAEAEA;
}
.sidebar li .icon05 {
	background: url('../images/aside-img05.png') no-repeat center #EAEAEA;
}
.sidebar li .icon06 {
	background: url('../images/aside-img06.png') no-repeat center #EAEAEA;
}
.sidebar:hover li {
	width: 250px;
}
.sidebar:hover li .text {
	left: 30px;
}
.sidebar li:hover {
	background-color: #181818;
}
.sidebar li:hover .text {
	color: #FFFFFF;
}
.sidebar li:hover .icon01 {
	background: url('../images/aside-img001.png') no-repeat center #181818;
}
.sidebar li:hover .icon02 {
	background: url('../images/aside-img002.png') no-repeat center #181818;
}
.sidebar li:hover .icon03 {
	background: url('../images/aside-img003.png') no-repeat center #181818;
}
.sidebar li:hover .icon04 {
	background: url('../images/aside-img004.png') no-repeat center #181818;
}
.sidebar li:hover .icon05 {
	background: url('../images/aside-img005.png') no-repeat center #181818;
}
.sidebar li:hover .icon06 {
	background: url('../images/aside-img006.png') no-repeat center #181818;
}
.pop_box {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../images/pop_bg.png);
}
.pop_box .img {
	width: 296px;
	margin: 0 auto;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
