@charset "utf-8";
/*****************************
			初始化
*****************************/
html,
body {
	margin: 0px;
	padding: 0px;
	font-family: "微软雅黑";
	font-size: 14px;
	color: #323232;
}
p{padding:0;margin:0;}
input,
textarea,
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: inherit;
	font-size: inherit;
	*color: #323232;
	font-family: "微软雅黑";
}

ul {
	padding-left: 0px;
	margin: 0px;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: inherit;
	*color: #323232;
}
a:hover{color:#f60;}
img {
	border: none;
}

table tbody,
table tr,
table tr th,
table tr td {
	box-sizing: content-box;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
}

img {
	vertical-align: top;
}

/*****************************
			页内css
*****************************/
body {
	min-width: 1200px;
}

#header {
	position: relative;
}

#header .inner {
	padding: 0 0 0 30px;
	margin: 0;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	box-sizing: border-box;
	background: rgba(255,255,255,.9);
}

#header h1 {
	width: 340px;
	margin: 12px 50px 0 0;
	float: left;
}

#header h1 img {
	width: 100%;
}

#header .tel {
	padding: 0 30px;
	height: 100px;
	float: right;
	font-size: 23px;
	color: #fff;
	background: #1b7ff2;
}

#header .tel span {
	padding: 0 0 0 45px;
	display: block;
	font-weight: bold;
	line-height: 100px;
	background: url(../images/tel_bg02.png) no-repeat left center;
	background-size: 30px;
}

#header .menu {
	display: none;
}

#gNavi {
	float: left;
}

.sp {
	display: none;
}

@media all and (min-width: 768px) {

	#gNavi {
		display: block !important;
	}
	
}

#gNavi ul {
}

#gNavi li {
	width: 120px;
	float: left;
}

#gNavi li a {
	height: 100px;
	line-height: 100px;
	display: block;
	color: #000;
	font-size: 16px;
	position: relative;
	text-align: center;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#gNavi li a:hover {
	color: #fff;
	background: #1b7ff2;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

@media all and (min-width: 1200px) and (max-width: 1600px) {
	#header h1 {
		margin-right: 30px;
	}
	
	#gNavi li {
		width: 95px;
	}
	
	#header .tel {
		padding: 0 20px;
	}
}

@media all and (min-width: 0) and (max-width: 767px) {
		body {
		min-width: inherit;
	}

	.pc {
		display: none !important;
	}
	
	.sp {
		display: block !important;
	}

	#header {
		margin-bottom: 30px;
		position: relative;
	}
	
	#header .inner {
		padding: 0;
		margin: 0;
		width: 100%;
		position: relative;
		left: inherit;
		top: inherit;
		z-index: 100;
		box-sizing: border-box;
		background: rgba(255,255,255,1);
	}
	
	#header h1 {
		padding: 15px;
		width: 200px;
		margin: 0;
		float: left;
	}
	
	#header h1 img {
		width: 100%;
	}
	
	#header .tel {
		display: none;
	}
	
	#header .menu {
		margin-top: -10px;
		position: absolute;
		right: 15px;
		top: 50%;
		display: block;
	}

	#header .menu img {
		width: 30px;
	}
	
	#gNavi {
		display: none;
		width: 100%;
		float: none;
		position: absolute;
		left: 0;
		top: 73px;
		z-index: 100;
		background: rgba(0,0,0,.7);
	}
	
	#gNavi ul {
	}
	
	#gNavi li {
		width: auto;
		float: none;
		border-bottom: 1px solid #fff;
	}
	
	#gNavi li a {
		padding: 15px 20px;
		height: auto;
		line-height: 1.8;
		display: block;
		color: #fff;
		font-size: 16px;
		position: relative;
		text-align: left;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}
	
	#gNavi li a:hover {
		color: #fff;
		background: none;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}

}

@-webkit-keyframes opener {
    100% {
        top: 15px
    }
}

@keyframes opener {
    100% {
        top: 15px
    }
}

.scrollbtn {
	height: 50px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 30px;
	z-index: 100;
}

.scrollbtn a {
	margin-left: -25px;
	top: 0;
	position: absolute;
	left: 50%;
	width: 50px;
	cursor: pointer;
    -webkit-animation: opener .5s ease-in-out alternate infinite;
    animation: opener .5s ease-in-out alternate infinite;
    -webkit-transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
    transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
}

.scrollbtn a img {
	width: 40px;
}

.pageLead {
	margin-bottom: 50px;
	height: 800px;
	background: url(../images/mainimg01.jpg) no-repeat center center;
}

.pageLead .sub  {
	margin: 0 auto;
	padding-top: 230px;
	height: 414px;
	width: 1200px;
	position: relative;
}

.pageLead .sub ul {
	padding: 0;
}

.pageLead .slick-prev {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0;
	top: 70%;
	background: url(../images/prev.jpg) no-repeat left top;
	border: 0;
	text-indent: -9999px;
}

.pageLead .slick-next {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: 70%;
	background: url(../images/next.jpg) no-repeat left top;
	border: 0;
	text-indent: -9999px;
}

.pageLead li {
	margin-right: 30px;
	width: 144px;
	float: left;
}

.pageLead li a {
	display: block;
}

.pageLead li .photo {
	width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #b6b6b6;
}

.pageLead li .photo img {
	width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.pageLead li a:hover .photo {
	opacity: 0.9;
}

.pageLead li p {
	margin-top: 10px;
	font-size: 16px;
	color: #fff;
	line-height: 30px;
	text-align: center;
	height: 30px;
	border-radius: 40px;
	background: #018935;
}

.pageLead li a:hover p {
	background: #FF9900;
}

.mainImg {
	margin-bottom: 50px;
}

.mainImg li {
	width: 100%;
	height: 850px;
	float: left;
	background-size: cover !important;
}

.mainImg li img {
	display: none;
}

.mainImg .pic01 {
	background: url(../images/mainimg01.jpg) no-repeat center center;
}

.mainImg .pic02 {
	background: url(../images/mainimg02.jpg) no-repeat center center;
}

.mainImg .pic03 {
	background: url(../images/mainimg03.jpg) no-repeat center center;
}

.mainImg li .textBox {
	padding-top: 10%;
	text-align: center;
}

.mainImg li .textBox img {
	margin: 0;
	display: inline-block;
    -webkit-animation: opener .5s ease-in-out alternate infinite;
    animation: opener .5s ease-in-out alternate infinite;
    -webkit-transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
    transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
}

.slick-dots {
	position:absolute;
	right: 20px;
	top: 45%;
	text-align: center;
}

.slick-dots li {
	margin: 0 0 10px;
	width: 14px;
	height: 14px;
	float: none;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 11px;
	opacity: 0.9;
	cursor: pointer;
}
	
.slick-dots li button {
	display: none;
}
	
.slick-dots .slick-active {
	background: #1B7FF2;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.pageLead {
		margin-bottom: 0;
	}
	
	.mainImg {
		margin-bottom: 50px;
	}
	
	.mainImg li {
		width: 100%;
		height: auto;
		float: left;
		background-size: cover !important;
	}
	
	.mainImg .pic01 {
		background: none !important;
	}
	
	.mainImg .pic02 {
		background: none !important;
	}
	
	.mainImg .pic03 {
		background: none !important;
	}
	
	.mainImg li img {
		width: 100%;
		display: block;
	}
	
	.mainImg .slick-dots li {
		margin-bottom: 5px;
		display: block;
		float: none;
		width: 10px;
		height: 10px;
		border-radius: 5px;
		border: none;
	}

	.scrollbtn {
		height: 30px;
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 10px;
		z-index: 90;
	}
	
	.scrollbtn a {
		margin-left: -15px;
		top: 0;
		position: absolute;
		left: 50%;
		width: 50px;
		cursor: pointer;
		-webkit-animation: opener .5s ease-in-out alternate infinite;
		animation: opener .5s ease-in-out alternate infinite;
		-webkit-transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
		transition: opacity .2s ease-in-out, transform .5s ease-in-out .2s;
	}
	
	.scrollbtn a img {
		width: 20px;
	}


}

#main {
	margin-bottom: 50px;
}

.section {
	margin: 0 auto;
	width: 1200px;
}

#main .topBox {
	margin: 0 auto;
	padding: 30px 0;
	width: 1200px;
}

#main .topBox p {
	margin-top: 15px;
	float: left;
	color: #FF7000;
	font-size: 50px;
	font-family: Impact;
	font-weight: bold;
}

#main .topBox p span {
	margin-top: 2px;
	display: block;
	color: #666;
	font-size: 15px;
	font-weight: normal;
}

#main .topBox ul {
	width: 600px;
	float: right;
	border-left: 1px solid #ccc;
}

#main .topBox li {
	width: 33.3333333%;
	float: left;
	text-align: center;
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}

#main .topBox li img {
	width: 45%;
	transform-style: preserve-3d;  
    -webkit-transform-style: preserve-3d;  
    -ms-transform-style: preserve-3d;  
    -moz-transform-style: preserve-3d;  
    transition: 0.5s;  
    -webkit-transition: 0.5s;  
    -ms-transition: 0.5s;  
    -moz-transition: 0.5s;  
}

#main .topBox li:hover img {
	 transform: translateZ(30px) rotateY(360deg) scale(1.1);  
    -webkit-transform: translateZ(30px) rotateY(360deg) scale(1.1);  
    -ms-transform: translateZ(30px) rotateY(360deg) scale(1.1);  
    -moz-transform: translateZ(30px) rotateY(360deg) scale(1.1);  
}

#main .topBox li span {
	margin-top: 10px;
	display: block;
	font-size: 15px;
	color: #666;
}

#main .product {
	padding: 50px 0 0;
}

#main .topList {
	padding: 40px 0;
}

#main .topList ul {
	margin: 0 auto;
	width: 1200px;
	text-align: center;
}

#main .topList li {
	margin: 0 20px;
	display: inline;
}

#main .topList li a {
	margin-bottom: 20px;
	display: inline-block;
	width: 130px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	line-height: 50px;
	background: #018935;
	-webkit-border-radius: 30px;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .topList li a:hover {
	color:#000;
	background:#f6c807;
	-webkit-transform:scale(1.1); 
    -moz-transform:scale(1.1); 
    -o-transform:scale(1.1); 
	-webkit-box-shadow:0 2px 20px rgba(102,102,102,.55);
	-moz-box-shadow:0 2px 20px rgba(102,102,102,.55);
	box-shadow:0 2px 20px rgba(102,102,102,.55);
}

@media all and (min-width: 0) and (max-width: 767px) {
	.section {
		margin: 0 20px;
		width: auto;
	}
	
	#main .topBox {
		margin: 0 20px;
		padding: 30px 0 0;
		width: auto;
	}
	
	#main .topBox p {
		margin: 0 0 15px;
		float: none;
		color: #FF7000;
		font-size: 30px;
		text-align: center;
	}
	
	#main .topBox p span {
		font-size: 15px;
	}
	
	#main .topBox ul {
		width: auto;
		float: none;
	}
	
	#main .topBox li img {
		width: 45%;
	}
	
	#main .topBox li span {
		margin-top: 10px;
		display: block;
		font-size: 15px;
		color: #666;
	}
	
	#main .product {
		padding: 30px 0 0;
	}
	
	#main .topList {
		padding: 40px 0;
	}
	
	#main .topList ul {
		margin: 0 auto;
		width: 1200px;
		text-align: center;
	}
	
	#main .topList li {
		margin: 0 20px;
		display: inline;
	}
	
	#main .topList li a {
		margin-bottom: 20px;
		display: inline-block;
		width: 130px;
		color: #fff;
		font-size: 18px;
		text-align: center;
		line-height: 50px;
		background: #018935;
		-webkit-border-radius: 30px;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}
	
	#main .topList li a:hover {
		color:#000;
		background:#f6c807;
		-webkit-transform:scale(1.1); 
		-moz-transform:scale(1.1); 
		-o-transform:scale(1.1); 
		-webkit-box-shadow:0 2px 20px rgba(102,102,102,.55);
		-moz-box-shadow:0 2px 20px rgba(102,102,102,.55);
		box-shadow:0 2px 20px rgba(102,102,102,.55);
	}
}

#main .headLine01 {
	padding-left: 108px;
	margin-bottom: 40px;
	min-height: 100px;
	font-size: 50px;
	color: #FF7000;
	text-align: center;
	position: relative;
	box-sizing: border-box;
}

#main .headLine01 .num {
	width: 94px;
	height: 80px;
	position: absolute;
	left: 35%;
	top: 10px;
	background: url(../images/h2_img.png) no-repeat center center;
}

@media all and (min-width: 1200px) and (max-width: 1600px) {
	#main .headLine01 .num {
		left: 30%;
	}
	
}

@media all and (min-width: 1000px) and (max-width: 1200px) {
	#main .headLine01 .num {
		left: 25%;
	}
}

#main .headLine01 .en {
	margin: 10px 0 0 15px;
	color: #666;
	font-size: 20px;
	font-weight: normal;
}

#main .headLine01 .txt {
	display: inline-block;
	color: #666;
	font-size: 16px;
	font-weight: normal;
	position: relative;
}

#main .headLine01 .txt:before {
	width: 20px;
	height: 2px;
	position: absolute;
	left: -35px;
	top: 50%;
	content: "";
	background: #666;
}

#main .headLine01 .txt:after {
	width: 20px;
	height: 2px;
	position: absolute;
	right: -35px;
	top: 50%;
	content: "";
	background: #666;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .headLine01 {
		padding-left: 0;
		margin-bottom: 30px;
		min-height: inherit;
		font-size: 30px;
	}

	#main .headLine01 br {
		display: none;
	}
	
	#main .headLine01 .num {
		display: none;
	}
	
	#main .headLine01 .en {
		margin: 10px 0 0 0;
		padding-top: 10px;
		display: block;
		font-size: 16px;
		text-align: center;
		position: relative;
	}
	
	#main .headLine01 .en:before {
		margin-left: -25px;
		width: 50px;
		height: 3px;
		position: absolute;
		left: 50%;
		top: 0;
		content: "";
		background: #FF7000;
	}

	#main .headLine01 .txt {
		display: none;
		color: #666;
		font-size: 13px;
		font-weight: normal;
		position: relative;
	}
}

#main .leftScroll {
	padding: 50px 0 80px;
	background: url(../images/pro_bg.jpg) no-repeat center center;
	background-size: cover;
}

#main .leftScroll li {
	margin: 0 10px 20px;
	width: 380px;
	float: left;
	box-sizing: border-box;
}

#main .leftScroll li a {
	display: block;
	overflow: hidden;
	position: relative;
}

#main .leftScroll li .photo {
	width: 100%;
	height: 350px;
	overflow: hidden;
}

#main .leftScroll li .photo img {
	width: 100%;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .leftScroll li a:hover .photo img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
}

#main .leftScroll li p {
	padding: 15px 0;
	width: 100%;
	left: 0;
	bottom: 0;
	color: #000;
	font-size: 16px;
	position: absolute;
	text-align: center;
	background: rgba(255,255,255,.8);
}

#main .spPro {
	display: none;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .leftScroll {
		display: none;
	}

	#main .spPro {
		margin: 0 20px;
		display: block;
	}

	#main .spPro li {
		margin: 0 1% 20px;
		width: 48%;
		float: left;
		box-sizing: border-box;
	}
	
	#main .spPro li a {
		display: block;
		overflow: hidden;
		position: relative;
	}
	
	#main .spPro li .photo {
		width: 100%;
		padding-bottom: 90%;
		position: relative;
		overflow: hidden;
	}
	
	#main .spPro li .photo img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	#main .spPro li p {
		padding: 15px 0;
		width: 100%;
		left: 0;
		bottom: 0;
		color: #fff;
		font-size: 16px;
		text-align: center;
		background: rgba(0,0,0,.8);
	}
}

#scroll {
	height: 720px;
	overflow: hidden;
	background: none;
}

.pnavBox {
	padding: 30px 0 50px;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.pnavBox {
		display: none;
	}
}

.pnav {
	width: 1080px;
	position: relative;
	padding-top: 1px;
	margin: 0 auto;
}

.pnav ul {
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
}

.pnav ul li {
	width: 510px;
	display: block;
	margin: 0 15px;
	transition: all .3s;
	float: left;
}

.pnav ul li a {
	display: block;
	overflow: hidden;
	position: relative;
	background: #ededed;
}

.pnav ul li .photo {
	width: 220px;
	height: 170px;
	float: left;
	overflow: hidden;
}

.pnav ul li a img {
	width: 100%;
	height: 100%;
}

.pnav ul li a .text {
	padding: 15px 20px 10px 240px;
	font-size: 16px;
	transition: .5s;
	z-index: 5;
	text-align: left;
}

.pnav ul li a .text p {
	font-size: 15px;
	line-height: 1.6;
}

.pnav ul li a .text .ttl {
	margin-bottom: 10px;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.pnav ul li a .text .ttl span {
	display: block;
	color: #666;
	font-size: 13px;
	font-weight: normal;
}

.pnav ul li a .text .arrow {
	margin-top: 5px;
	padding: 5px 0;
	width: 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
}

.pnav ul li a:hover img {
	filter: brightness(120%);
}

.pnav ul li a:hover {
	background: #1B7FF2;
}

.pnav ul li a:hover p {
	color: #fff;
}

.pnav ul li a:hover .text .ttl,
.pnav ul li a:hover .text .ttl span {
	color: #fff;
}

.pnav .btnLeft, .pnav .btnRight {
	position: absolute;
	top: 40%;
	margin-top: -15px;
	width: 66px;
	height: 66px;
	transition: 0.5s;
}

.pnav .btnLeft {
	left: -65px;
	background: url(../images/leftbtn.png) no-repeat center center;
}

.pnav .btnLeft:hover {
	left: -75px;
	opacity: 1;
}

.pnav .btnRight {
	right: -65px;
	background: url(../images/rightbtn.png) no-repeat center center;
}

.pnav .btnRight:hover {
	right: -75px;
	opacity: 1;
}

#main .listBox {
	padding: 40px 0;
}

#main .listBox .list ul {
	margin: 0 -15px;
}

#main .listBox .list li {
	margin-bottom: 20px;
	padding: 0 10px;
	float: left;
	width: 20%;
	box-sizing: border-box;
}

#main .listBox .list li a {
	padding: 15px;
	display: block;
	color: #fff;
	text-align: center;
	background: #02A454;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .listBox .list li a:hover {
	background: #E46C0B;
}

#main .srcoll {
	padding: 25px 0 5px;
}

#main .srcoll ul {
	margin: 0 -15px;
}

#main .srcoll li {
	margin: 0 10px 20px;
	float: left;
}

#main .srcoll li .photo {
	width: 280px;
	height: 230px;
}

#main .srcoll li .photo img {
	width: 100%;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
}

#main .srcoll li p {
	margin-top: 10px;
	font-size: 14px;
	text-align: center;
}

#main .banner {
	margin-bottom: 50px;
	height: 137px;
	background: #02A454 url(../images/banner.jpg) no-repeat center center;
}

#main .about {
	padding: 80px 0;
}

#main .about .photo {
	margin: 0;
	width: 550px;
	float: left;
	position: relative;
}

#main .about .photo img {
	width: 100%;
}

#main .about .textBox {
	padding: 0;
	width: 604px;
	float: right;
	box-sizing: border-box;
}

#main .about .textBox h3 {
	margin: 0 0 30px;
}

#main .about .textBox p {
	margin-bottom: 20px;
	color: #333;
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
}

#main .about .textBox .ttl {
	margin: 0 0 20px 30px;
	color: #1B7FF2;
	font-size: 35px;
	font-weight: bold;
	text-indent: 0;
	line-height: 1.5;
}

#main .about .textBox .ttl span {
	margin-top: 5px;
	padding-bottom: 10px;
	display: block;
	color: #666;
	font-size: 20px;
	font-weight: normal;
	position: relative;
}

#main .about .textBox .ttl span:before {
	width: 50px;
	height: 3px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: #FF7000;
}

#main .about .textBox .more a {
	padding: 15px 10px;
	width: 150px;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	text-align: center;
	border: 1px solid #1B7FF2;
	background: #1B7FF2;
	border-radius: 30px;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .about .textBox .more a:hover {
	color: #fff;
	background: #FF7A01;
	border: 1px solid #FF7A01;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .about {
		padding: 30px 0;
	}
	
	#main .about .photo {
		margin: 0 40px 30px;
		width: auto;
		float: none;
		position: relative;
	}
	
	#main .about .photo img {
		width: 100%;
	}
	
	#main .about .textBox {
		padding: 0;
		width: auto;
		float: none;
		box-sizing: border-box;
	}
	
	#main .about .textBox h3 {
		margin: 0 0 30px;
	}
	
	#main .about .textBox p {
		margin-bottom: 20px;
		color: #333;
		font-size: 16px;
		line-height: 2;
		text-indent: 2em;
	}
	
	#main .about .textBox .ttl {
		margin: 0 0 20px 30px;
		color: #1B7FF2;
		font-size: 25px;
		font-weight: bold;
		text-indent: 0;
		line-height: 1.5;
	}
	
	#main .about .textBox .ttl span {
		margin-top: 5px;
		padding-bottom: 10px;
		color: #666;
		font-size: 15px;
		font-weight: normal;
	}
	
	#main .about .textBox .more a {
		margin: 0 auto;
		padding: 15px 10px;
		display: block;
		width: 150px;
		font-size: 16px;
	}
	
	#main .about .textBox .more a:hover {
		color: #fff;
		background: #1B7FF2;
		border: 1px solid #1B7FF2;
	}

}

#main .step {
	text-align: center;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .step img {
		width: 100%;
	}
}

#main .youshi {
	padding-top: 100px;
	height: 900px;
	background: url(../images/youshi_bg.jpg) no-repeat center center;
	background-size: cover;
}

#main .youshi .headLine01 {
	margin-bottom: 100px;
	color: #fff;
}

#main .youshi .headLine01 .num {
	color: #fff;
	left: 31%;
}

#main .youshi .headLine01 .en {
	color: #fff;
}

#main .youshi .headLine01 .txt {
	color: #fff;
}

.index_zdy_liu {
	margin: 0 auto;
	width: 1200px;
	position: relative;
}

.index_zdy_liu ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: absolute;
	z-index: 500;
	top: -40px;
}

.index_zdy_liu li {
	width: 38%;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 165px;
}

.index_zdy_liu1 {
	width: 60.072%;
	text-align: right;
}

.index_zdy_liu1 h3 {
	font-size: 36px;
	color: #FF7000;
}

.index_zdy_liu1 div {
	width: 50px;
	height: 2px;
	background: #fff;
	margin: 20px 0 20px auto;
}

.index_zdy_liu1 p {
	font-size: 16px;
	line-height: 28px;
	color: #fff;
	text-align: justify;
}

.index_zdy_liu2 {
	margin-top: 40px;
}

.index_zdy_tu {
	text-align: center;
}

.index_zdy_tu img {
	width: 600px;
	height: 600px;
	border-radius: 50%;
	border: 10px #fff solid;
	box-sizing: border-box;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .youshi {
		padding: 50px 0;
		height: auto;
	}
	
	#main .youshi .headLine01 {
		margin-bottom: 50px;
		color: #fff;
	}
		
	#main .youshi .headLine01 .en {
		color: #fff;
	}
	
	#main .youshi .headLine01 .txt {
		color: #fff;
	}
	
	.index_zdy_liu {
		margin: 0 20px;
		width: auto;
		position: relative;
	}
	
	.index_zdy_liu ul {
		display: block;
		position: relative;
		z-index: 500;
		top: inherit;
	}
	
	.index_zdy_liu li {
		width: auto;
		display: block;
		margin-bottom: 15px;
	}
	
	.index_zdy_liu1 {
		width: auto;
		text-align: left;
	}
	
	.index_zdy_liu1 h3 {
		font-size: 26px;
	}
	
	.index_zdy_liu1 div {
		width: 50px;
		height: 2px;
		text-align: left;
		background: #fff;
		margin: 20px 0;
	}
	
	.index_zdy_liu1 p {
		font-size: 16px;
		line-height: 28px;
		color: #fff;
		text-align: justify;
	}
	
	.index_zdy_liu2 {
		display: none;
	}
	
	.index_zdy_tu {
		text-align: center;
	}
	
	.index_zdy_tu img {
		width: 90%;
		height: auto;
		border-radius: 50%;
		border: 5px #fff solid;
		box-sizing: border-box;
	}

}

#main .case {
	padding: 50px 0 100px;
}

#main .case .headLine01 {
	margin-bottom: 50px;
}

#main .caseTtl {
	margin-bottom: 50px;
	font-size: 18px;
	color: #6f6f6f;
	text-align: center;
}

#main .case li {
	margin: 0 20px 0 0;
	width: 350px;
	float: left;
}

#main .case li a {
	display: block;
	position: relative;
}

#main .case li a:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
}

#main .case li a .lead {
	padding: 10px 0;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: rgba(0,0,0,.5);
}

#main .case li a:hover .lead {
	display: none;
}

#main .case li .photo {
	height: 280px;
	overflow: hidden;
}

#main .case li .photo img {
	width: 100%;
	max-height: 100%;
	min-height: 100%;
	max-width: 100%;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .case li .pop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	text-align: center;
	background: rgba(0,0,0,.7);
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .case li a:hover .pop {
	display: block;
}

#main .case li .pop .ttl {
	margin-bottom: 20px;
	display: block;
	color: #ff7e00;
	padding-top: 30px;
	font-size: 30px;
}

#main .case li .pop img {
	margin: 0 auto;
	display: block;
}

#main .case li .pop .icon {
	margin: 0 auto 20px;
	width: 58px;
	height: 60px;
	display: block;
	background: url(../images/icon01.png) no-repeat top center;
}

#main .case li .pop i {
	margin-bottom: 10px;
	font-size: 18px;
	display: block;
	color: #ff7e00;
}

#main .case li .pop b {
	font-size: 36px;
	display: block;
	font-family: impact;
	color: #ff7e00;
}

#main .caseBox {
	padding-left: 5px;
	overflow: hidden;
}

#marqueesrcoll {
	height: 320px;
}

#main .newsBox {
	margin-bottom: 0;
	padding: 80px 0;
	position: relative;
}

#main .newsBox .imgList {
}

#main .newsBox .imgList li {
	margin: 0 1%;
	width: 31.3333333%;
	float: left;
	color: #666;
	font-size: 15px;
	list-style: none;
	position: relative;
}

#main .newsBox .imgList li a {
	padding-bottom: 20px;
	display: block;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 1px -1px 5px rgba(0,0,0,.4);
}

#main .newsBox .imgList li .photo {
	height: 240px;
	overflow: hidden;
	position: relative;
}

#main .newsBox .imgList li .photo img {
	width: 100%;
	min-height: 100%;
	max-height: 100%;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsBox .imgList li a:hover .photo img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
}

#main .newsBox .imgList li .date {
	margin: -20px 15px 0;
	padding: 10px 0;
	width: 150px;
	color: #fff;
	font-size: 18px;
	position: relative;
	text-align: center;
	background: #FF7000;
	border-radius: 10px;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsBox .imgList li .ttl {
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: #333;
	font-size: 23px;
	position: relative;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsBox .imgList li .ttl:before {
	width: 50px;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background: #1B7FF2;
}

#main .newsBox .imgList li .textBox {
	padding: 15px;
}

#main .newsBox .imgList li .txt {
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsBox .imgList li .more {
	margin-top: 10px;
}

#main .newsBox .imgList li .more span {
	padding: 10px 0;
	width: 100px;
	display: block;
	color: #1B7FF2;
	text-align: center;
	border-radius: 30px;
	border: 2px solid #1B7FF2;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsBox .imgList li a:hover .more span {
	color: #fff;
	background: #1B7FF2;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .newsBox {
		padding: 40px 0;
	}
		
	#main .newsBox .imgList li {
		margin: 0;
		width: auto;
		float: none;
		color: #666;
		font-size: 15px;
	}
	
	#main .newsBox .imgList li .photo {
		padding-bottom: 40%;
		height: auto;
		overflow: hidden;
		position: relative;
	}
	
	#main .newsBox .imgList li .photo img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	#main .newsBox .imgList li a:hover .photo img {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
	}
	
	#main .newsBox .imgList li .date {
		margin: -20px 10px 0;
		padding: 10px 0;
		width: 100px;
		font-size: 16px;
	}
	
	#main .newsBox .imgList li .ttl {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 20px;
	}
	
	#main .newsBox .imgList li .textBox {
		padding: 10px;
	}
	
	#main .newsBox .imgList li .txt {
		font-size: 14px;
		line-height: 1.5;
	}
	
	#main .newsBox .imgList li .more {
		margin-top: 10px;
	}
	
	#main .newsBox .imgList li .more span {
		padding: 5px 0;
		width: 80px;
		border-radius: 30px;
	}
	
	#main .newsBox .imgList li a:hover .more span {
		color: #1B7FF2;
		background: #fff;
	}


}

.conList {
	margin-bottom: 50px;
}

.conList li {
	width: 33.333333333%;
	float: left;
	color: #333;
	font-size: 17px;
	line-height: 2;
	text-align: center;
}

.conList li span {
	margin-top: 15px;
	display: block;
	font-size: 20px;
	font-weight: bold;
}

.conList li img {
	margin: 0 auto;
	display: block;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.conList {
		margin-bottom: 50px;
	}
	
	.conList li {
		margin-bottom: 20px;
		padding-bottom: 20px;
		width: auto;
		float: none;
		color: #333;
		font-size: 16px;
		line-height: 2;
		text-align: center;
		border-bottom: 1px solid #ccc;
	}
	
	.conList li span {
		margin-top: 10px;
		display: block;
		font-size: 20px;
		font-weight: bold;
	}
	
	.conList li img {
		margin: 0 auto;
		display: block;
	}

}

#footer {
	padding: 0 0 0;
	background: url(../images/f_bg.jpg) no-repeat center center;
}

#footer .fBox {
	padding: 70px 0;
	margin: 0 auto;
	width: 1200px;
}

#footer .leftBox {
	float: left;
}

#footer .logoImg {
	margin-right: 20px;
	height: 140px;
	float: left;
}

#footer .logoImg img {
	height: 100%;
}

#footer .code {
	margin-right: 20px;
	width: 150px;
	float: left;
	text-align: center;
}
	
#footer .code img {
	width: 140px;
}

#footer .code span {
	margin-top: 10px;
	color: #fff;
	display: block;
}

#footer .logo {
	margin-bottom: 30px;
	color: #1B7FF2;
	font-size: 30px;
}

#footer .logo span {
	display: block;
	color: #ff7e00;
	font-size: 12px;
}

#footer .boxlink {
	width: 780px;
	float: right;
}

#footer .boxlink .sub {
	padding: 0 0 20px 25px;
	width: 50%;
	height: 300px;
	float: left;
	box-sizing: border-box;
	border-left: 1px solid #575757;
}

#footer .boxlink .ttl {
	margin-bottom: 25px;
	padding-bottom: 10px;
	width: 50%;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	border-bottom: 5px solid #1B7FF2;
}

#footer .boxlink li {
	margin: 0 0 10px 0;
	width: 50%;
	color: #fff;
	float: left;
	font-size: 17px;
}

#footer .boxlink li a {
	padding: 8px 0;
	color: #fff;
}

#footer .boxlink li a:hover {
	text-decoration: underline;
}

#footer .boxlink .text {
	color: #fff;
	font-size: 17px;
	line-height: 1.9;
}

#footer .boxinfo {
	width: 290px;
	float: left;
	border-right: 1px dotted #fff;
}

#footer .boxinfo .ttl {
	margin-bottom: 5px;
	color: #02A454;
	font-size: 18px;
}

#footer .boxinfo .tel {
	padding-left: 55px;
	color: #9f9f9f;
	font-size: 15px;
	background: url(../images/f_tel.jpg) no-repeat left center;
}

#footer .boxinfo .tel span {
	display: block;
	font-size: 25px;
}

#footer .boxinfo P {
	color: #fff;
	font-size: 15px;
	line-height: 1.7;
}


#footer .copyright {
	padding: 15px 0;
	color: #fff;
	font-size: 14px;
	text-align: center;
	background: #000000;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#footer {
		padding: 0;
		background: url(../images/f_bg.jpg) no-repeat left top;
		background-size: cover;
	}
	
	#footer .fBox {
		padding: 30px 20px;
		margin: 0;
		width: auto;
	}
	
	#footer .leftBox {
		margin-bottom: 20px;
		float: none;
	}
	
	#footer .logoImg {
		margin-right: 20px;
		height: 140px;
		float: left;
	}
	
	#footer .logoImg img {
		height: 100%;
	}
	
	#footer .code {
		margin-right: 0;
		width: auto;
		float: none;
		position: relative;
		text-align: left;
	}

	#footer .code:first-child {
		display: none;
	}
		
	#footer .code img {
		width: 140px;
	}
	
	#footer .code span {
		margin-top: 0;
		width: 50%;
		position: absolute;
		left: 160px;
		top: 50%;
	}
	
	#footer .logo {
		margin-bottom: 30px;
		color: #1B7FF2;
		font-size: 30px;
		text-align: center;
	}
	
	#footer .logo span {
		display: block;
		color: #ff7e00;
		font-size: 12px;
	}
	
	#footer .boxlink {
		width: auto;
		float: none;
	}
	
	#footer .boxlink .sub {
		padding: 0 0 20px;
		width: auto;
		height: auto;
		float: none;
		box-sizing: border-box;
		border-left: 0;
	}
	
	#footer .boxlink .ttl {
		margin-bottom: 15px;
		padding-bottom: 10px;
		width: 40%;
		color: #fff;
		font-size: 25px;
		font-weight: bold;
		border-bottom: 3px solid #1B7FF2;
	}
	
	#footer .boxlink li {
		margin: 0 0 10px 0;
		width: 50%;
		color: #fff;
		float: left;
		font-size: 17px;
	}
	
	#footer .boxlink li a {
		padding: 8px 0;
		color: #fff;
	}
	
	#footer .boxlink li a:hover {
		text-decoration: underline;
	}
	
	#footer .boxlink .text {
		color: #fff;
		font-size: 17px;
		line-height: 1.9;
	}
	
	#footer .boxinfo {
		width: auto;
		float: none;
		border-right: none;
	}
	
	#footer .boxinfo .ttl {
		margin-bottom: 5px;
		color: #02A454;
		font-size: 18px;
	}
	
	#footer .boxinfo .tel {
		padding-left: 55px;
		color: #9f9f9f;
		font-size: 15px;
		background: url(../images/f_tel.jpg) no-repeat left center;
	}
	
	#footer .boxinfo .tel span {
		display: block;
		font-size: 25px;
	}
	
	#footer .boxinfo P {
		color: #fff;
		font-size: 15px;
		line-height: 1.7;
	}
	
	
	#footer .copyright {
		padding: 15px 0;
		color: #fff;
		font-size: 14px;
		text-align: center;
		background: #000000;
	}

}

#side {
	width: 300px;
	float: left;
	overflow: hidden;
}

#side h2 {
	margin:0;
	padding: 20px 0 20px 60px;
	color: #fff;
	font-size: 25px;
	text-align: left;
	background: #188A00 url(../images/s_bg.jpg) no-repeat 20px center;
	border-radius: 15px 15px 0 0;
}

#side h2 span {
	display: block;
	font-size: 15px;
	font-weight: normal;
}

#side ul {
	margin: 0 auto 40px;
	border-top: solid 1px #cacaca;
}

#side li {
	border-bottom: solid 1px #cacaca;
}

#side li a {
	padding: 0 35px;
	display: block;
	height: 54px;
	color: #333;
	font-size: 16px;
	line-height: 54px;
	position: relative;
	background: #EAEAEA;
}

#side li a:before {
	width: 4px;
	height: 4px;
	content: "";
	position: absolute;
	left: 15px;
	top: 50%;
	background: #333;
}

#side li a:hover {
	color: #fff;
	background: #188A00;
}

#side li a:hover:before {
	background: #fff;
}


#side .simg img {
	width: 100%;
}

#side .contact {
	padding: 20px 20px 40px;
	color: #333;
	font-size: 15px;
	line-height: 1.7;
	background: #EAEAEA;
}

#conts {
	width: 870px;
	float: right;
}

.pageTitle {
	margin-bottom: 50px;
}

.pageTitle h2 {
	margin: 0 20px 0 0;
	padding: 5px 15px;
	height: 35px;
	float: left;
	color: #fff;
	font-size: 20px;
	line-height: 35px;
	background: #eea407;
}

.pageTitle .lead {
	margin-right: 20px;
	padding: 0 15px;
	height: 45px;
	line-height: 45px;
	float: left;
	color: #fff;
	background: #171717;
	font-size: 16px;
}

.pageTitle .tel {
	padding: 0 15px;
	height: 45px;
	line-height: 45px;
	float: left;
	color: #fff;
	font-size: 18px;
	background: #dc0707;
}

.content {
	font-size: 17px;
	line-height: 1.8;
}

#main .proList {
	margin: 0 -23px 50px;
}

#main .proList li {
	margin: 0 1% 30px;
	width: 31.333333333%;
	float: left;
}

#main .proList li a {
	padding: 4px;
	display: block;
	border-radius: 4px;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
}

#main .proList li .photo {
	height: 350px;
}

#main .proList li .photo img {
	width: 100%;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
}

#main .proList li p {
	padding: 15px 15px;
	color: #666;
	font-size: 17px;
	background: #EEEEEE;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .proList li a:hover p {
	color: #fff;
	background: #1B7FF2;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .proList {
		margin: 0 0 30px;
	}
	
	#main .proList li {
		margin: 0 1% 20px;
		width: 48%;
	}
		
	#main .proList li .photo {
		height: auto;
		padding-bottom: 90%;
		position: relative;
	}
	
	#main .proList li .photo img {
		width: 100%;
		max-height: 100%;
		max-width: 100%;
		min-height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	
	#main .proList li p {
		padding: 10px 10px;
		color: #fff;
		font-size: 15px;
		background: #1B7FF2;
	}
	
	#main .proList li a:hover p {
		color: #fff;
		background: #1B7FF2;
	}

}

.pagelist {
	text-align: center;
}

.pagelist li {
	margin: 0 2px;
	padding: 5px 10px;
	display: inline-block;
	color: #666;
	text-align: center;
	border: 1px solid #666;
}

.pagelist li:hover{
	color: #fff;
	background: #1B7FF2;
	border: 1px solid #1B7FF2;
}

.pagelist li:hover a {
	color: #fff;
}

.pagelist .thisclass {
	padding: 5px 10px;
	display: inline-block;
	color: #fff;
	background: #1B7FF2;
	border: 1px solid #1B7FF2;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.pagelist li {
		padding: 5px 5px;
	}
	
	.pagelist .thisclass {
		padding: 5px 5px;
	}
}

/*--------------上传信息-------------------*/
.updata {
	margin-bottom: 20px;
	padding: 20px 0;
	font-size: 13px;
	text-align: center;
	border-bottom: 1px dotted #b6b6b6;
	border-top: 1px dotted #b6b6b6;
}

/*--------------前后换页-------------------*/
.qianhou {
	margin-bottom: 30px;
}

.qianhou .qian {
	width: 50%;
	float: left;
}

.qianhou .hou {
	width: 50%;
	float: right;
	text-align: right;
}
@media all and (min-width: 0) and (max-width: 767px) {
	.qianhou .qian {
		width: 47%;
	}
	
	.qianhou .hou {
		width: 47%;
	}

	.qianhou a {
		text-decoration: underline;
	}
}

/*--------------产品详细页-------------------*/
.detailBox {
	margin-bottom: 30px;
}

.detailBox h3 {
	margin-bottom: 20px;
	font-size: 20px;
	text-align: center;
}

.detailBox .info{
	text-align: left;
}

.detailBox .info a {
	color: #078B0D;
	text-decoration: underline;
}

.detailBox .info a:hover {
	text-decoration: none;
}

.detailBox .info img {
	margin: 0 auto 20px;
	display: block;
	max-width: 80%;
	width: auto !important;
	height: auto !important;
}

#main .newsList  {
	margin-bottom: 50px;
}

#main .newsList li {
	margin: 0 1% 15px;
	width: 48%;
	float: left;
	color: #666;
	font-size: 15px;
	position: relative;
}

#main .newsList li a {
	padding: 15px;
	display: block;
	overflow: hidden;
	border: 1px solid #ccc;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsList li a .sub {
}

#main .newsList li a:hover {
	background: #1B7FF2;
}

#main .newsList li .photo {
	width: 200px;
	height: 160px;
	float: left;
}

#main .newsList li .photo img {
	width: 100%;
	max-height: 100%;
	min-height: 100%;
}

#main .newsList li .textBox {
	padding-left: 220px;
}

#main .newsList li .textBox .ttl {
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #1B7FF2;
	position: relative;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsList li .textBox .ttl:before {
	width: 50px;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background: #1B7FF2;
}

#main .newsList li .textBox .txt {
	margin-bottom: 10px;
	font-size: 16px;
	color: #333;
	line-height: 1.7;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

#main .newsList li .textBox .date {
	font-size: 14px;
	color: #999;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

@media all and (min-width: 768px) {
	#main .newsList li a:hover .ttl,
	#main .newsList li a:hover .textBox .txt ,
	#main .newsList li a:hover .textBox .date {
		color: #fff;
	}
}

#main .newsList li span {
	position: absolute;
	right: 0;
	top: 4px;
	font-size: 13px;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#main .newsList  {
		margin-bottom: 50px;
	}
	
	#main .newsList li {
		margin: 0 0 15px;
		width: auto;
		font-size: 15px;
		float: none;
	}
	
	#main .newsList li a {
		padding: 25px 15px;
	}
	
	#main .newsList li a .sub {
		margin: 0;
		width: auto;
	}
	
	#main .newsList li a:hover {
		background: #ededed;
	}
	
	#main .newsList li .photo {
		margin: 0 10px 10px 0;
		width: 110px;
		height: 100px;
	}
	
	#main .newsList li .photo img {
		width: 100%;
		max-height: 100%;
		min-height: 100%;
	}
	
	#main .newsList li .textBox {
		padding-left: 0;
	}
	
	#main .newsList li .textBox .ttl {
		margin-bottom: 10px;
		font-size: 18px;
		font-weight: bold;
		color: #1B7FF2;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}
	
	#main .newsList li .textBox .txt {
		margin-bottom: 10px;
		font-size: 16px;
		color: #333;
		line-height: 1.7;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}
	
	#main .newsList li .textBox .date {
		font-size: 14px;
		color: #999;
		-webkit-transition: all .4s ease-in-out 0s;
		-moz-transition: all .4s ease-in-out 0s;
		-ms-transition: all .4s ease-in-out 0s;
		transition: all .4s ease-in-out 0s;
	}

	#main .newsList li span {
		position: absolute;
		right: 0;
		top: 4px;
		font-size: 13px;
	}

}

#dituContent {
	margin-top: 20px;
	height: 400px;
	border: 1px solid #ccc;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#dituContent {
		height: 300px;
	}
}

.picbox{
	width:100%;
	text-align:center;
	padding-top:10px;
	font-size:14px;
	line-height:31px;
	overflow:hidden;
}
.picbox img{
	display:block;
	margin:16px auto 6px;
}
.picbox ul.e8{
	font-size:12px;
	line-height:normal;
}
.picbox ul.e8 li {
	margin: 0 0.5% 10px;
	width: 24%;
	float: left;
}

.picbox ul.e8 li .pic{
	margin-bottom: 10px;
	display: block;
	padding: 2px;
	width: 200px;
	height: 150px;
	background:none;
	box-sizing: border-box;
	border:1px solid #EEE;
	overflow:hidden;
}
.picbox ul.e8 img{
	margin: 0;
	width: 100%;
	max-height: 100%;
	min-height: 100%;
	border:none;
}
.picbox ul.e8 li .title{
	padding-top:0px;
}

.cnzz {
	margin: -30px auto 0;
	width: 1200px;
	position: relative;
	text-align: right;
}

#main .proLead {
	margin-bottom: 30px;
}

#main .proLead li {
	margin: 0 1% 20px;
	width: 12.28%;
	float: left;
}

#main .proLead li a {
	padding: 10px 0;
	display: block;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: #0AAE11;
	border-radius: 30px;
}

#main .proLead li a:hover {
	background: #FF7A01;
	-webkit-transition: all .4s ease-in-out 0s;
	-moz-transition: all .4s ease-in-out 0s;
	-ms-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

.fix {
	display: none;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.fix {
		display: block;
		position: fixed;
		right: 15px;
		top: 45%;
	}

	.fix a {
		width: 80px;
		height: 80px;
		display: block;
		background: #d40000;
		border-radius: 50%;

	}

	.fix a img {
		margin: 0 auto;
		width: 60%;
		display: block;
	}

	.fix a span {
		margin-top: -4px;
		display: block;
		color: #fff;
		font-size: 16px;
		text-align: center;
	}
}

.fixLink {
	display:  none;
}

@media all and (min-width: 0) and (max-width: 767px) {
	body {
		padding-bottom: 75px;
	}

	.fixLink {
		width: 100%;
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		background: #1B7FF2;
	}
	
	.fixLink li {
		width: 33.333333%;
		float: left;
	}

	.fixLink li a {
		padding: 3px 0; 
		display: block;
		color: #fff;
		text-align: center;
		font-size: 16px;
	}
	
		.fixLink li img {
			margin: 10px auto 0;
			width: 35px;
			display: block;
		}
}