<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*****内页头部*****/
header{
	width: 100%; 
	max-width: 1920px;
	height: 80px; 
	background: #FFF;
}
.topbox{
	margin: 0 auto;
	width: 1280px;
	height: 100%;
}
.logo{
	margin-left: 20px;
}
.logo a{ 
	display: block; 
	width: 175px; 
	height: 50px;
	background: url(../images/logo.png) no-repeat; 
	background-size: cover; 
	text-indent: -9999em;
}
nav{
	margin: 0;
	padding: 0;
}
nav .menu{
	float: left; 
	position: relative; 
	width: 110px; 
	height: 80px; 
}
nav .menu::after{
	content: '';
	position: absolute;
	left: 0; 
	top: 0; 
	bottom: 0; 
	right: 0; 
	-webkit-transition: .3s ease; 
	-moz-transition: .3s ease; 
	transition: .3s ease; 
	transform-origin: bottom;
	transform: scaleY(0); 
	background: #EEE;
	background: -webkit-linear-gradient(top, #EEE 0%, #FFF 100%);
	background: -o-linear-gradient(top, #EEE 0%, #FFF 100%); 
	background: linear-gradient(to bottom, #EEE 0%, #FFF 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EEE', endColorstr='#FFF', GradientType=0); 	
}
nav .menu:hover::after{
	transform: scaleY(1);
}
nav .menu a.bigclass{
	width: 100%; 
	height: 100%; 
	line-height: 80px; 
	position: absolute; 
	left: 0; 
	top: 0; 
	z-index: 5; 
	color: #333; 
}
nav .menu i{
	width: 5px; 
	height: 5px; 
	border-top: 1px solid #BBB; 
	border-right: 1px solid #BBB; 
	transform: rotate(135deg); 
	position: absolute; 
	right: 10px; 
	top: 35px; 
	z-index: 10; 
}
nav .menu:hover i{
	transform: rotate(-45deg); 
	top: 40px; 
}
nav .menu span{
	position: absolute; 
	top: 18px; 
	left: 45px; 
	z-index: 15; 
	display: block; 
	width: 26px; 
	height: 18px; 
	background: url(../images/hot.png) no-repeat; 
}
nav .menu:hover span{
	background: url(../images/hot_on.png) no-repeat; 
}
.submenu{
	left: 0;
	max-height: 0;
	position: absolute;
	top: 100%;
	z-index: 3; 
	-webkit-perspective: 400px;
	-moz-perspective: 400px;
	-ms-perspective: 400px;
	-o-perspective: 400px;
	perspective: 400px;
}
.submenu li{
	opacity: 0; 
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	-ms-transform: rotateY(90deg);
	-o-transform: rotateY(90deg);
	transform: rotateY(90deg);

	-webkit-transition: opacity .4s, -webkit-transform .5s;
	-moz-transition: opacity .4s, -moz-transform .5s;
	-ms-transition: opacity .4s, -ms-transform .5s;
	-o-transition: opacity .4s, -o-transform .5s;
	transition: opacity .4s, transform .5s;
}
.submenu li a{
	margin-left: -15px;  
	display: block; 
	color: #FFF;
	width: 137px; 
	height: 39px; 
	font-size: 14px;
	line-height: 39px; 
	border-bottom: 1px solid #FFF; 
	background: #0851bf; 
	border-left: 3px solid #0851bf; 
	transition: .3s ease;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease; 
}
.submenu li a.submenu_width{
	margin-left: -45px; 
	width: 197px; 
}
.menu .submenu li:hover a{ 
	color: #333;
	background: #F0F0F0;
	border-left: 3px solid #e60000;
}
.menu:hover .submenu, .menu:focus .submenu{
	max-height: 2000px;
	z-index: 10; 
}
.menu:hover .submenu li, .menu:focus .submenu li{
	height: 40px; 	   	 
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none; 
}
.menu li:hover .submenu li:nth-child(1){
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}
.menu li:hover .submenu li:nth-child(2){
	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-ms-transition-delay: 50ms;
	-o-transition-delay: 50ms;
	transition-delay: 50ms;
}
.menu li:hover .submenu li:nth-child(3){
	-webkit-transition-delay: 100ms;
	-moz-transition-delay: 100ms;
	-ms-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
}
.menu li:hover .submenu li:nth-child(4){
	-webkit-transition-delay: 150ms;
	-moz-transition-delay: 150ms;
	-ms-transition-delay: 150ms;
	-o-transition-delay: 150ms;
	transition-delay: 150ms;
}
.menu li:hover .submenu li:nth-child(5){
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}
.menu li:hover .submenu li:nth-child(6){
	-webkit-transition-delay: 250ms;
	-moz-transition-delay: 250ms;
	-ms-transition-delay: 250ms;
	-o-transition-delay: 250ms;
	transition-delay: 250ms;
}
.menu li:hover .submenu li:nth-child(7){
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}
.menu li:hover .submenu li:nth-child(8){
	-webkit-transition-delay: 350ms;
	-moz-transition-delay: 350ms;
	-ms-transition-delay: 350ms;
	-o-transition-delay: 350ms;
	transition-delay: 350ms;
}
.menu li:hover .submenu li:nth-child(9){
	-webkit-transition-delay: 400ms;
	-moz-transition-delay: 400ms;
	-ms-transition-delay: 400ms;
	-o-transition-delay: 400ms;
	transition-delay: 400ms;
}

.submenu li:nth-child(1){
	-webkit-transition-delay: 400ms;
	-moz-transition-delay: 400ms;
	-ms-transition-delay: 400ms;
	-o-transition-delay: 400ms;
	transition-delay: 400ms;
}
.submenu li:nth-child(2){
	-webkit-transition-delay: 350ms;
	-moz-transition-delay: 350ms;
	-ms-transition-delay: 350ms;
	-o-transition-delay: 350ms;
	transition-delay: 350ms;
}
.submenu li:nth-child(3){
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}
.submenu li:nth-child(4){
	-webkit-transition-delay: 250ms;
	-moz-transition-delay: 250ms;
	-ms-transition-delay: 250ms;
	-o-transition-delay: 250ms;
	transition-delay: 250ms;
}
.submenu li:nth-child(5){
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}
.submenu li:nth-child(6){
	-webkit-transition-delay: 150ms;
	-moz-transition-delay: 150ms;
	-ms-transition-delay: 150ms;
	-o-transition-delay: 150ms;
	transition-delay: 150ms;
}
.submenu li:nth-child(7){
	-webkit-transition-delay: 100ms;
	-moz-transition-delay: 100ms;
	-ms-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
}
.submenu li:nth-child(8){
	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-ms-transition-delay: 50ms;
	-o-transition-delay: 50ms;
	transition-delay: 50ms;
}
.submenu li:nth-child(9){
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}
.toptel{
	margin-right: 40px;
	padding: 0;
	height: 60px;
}
.toptel .toptel-icons{
	margin-right: 10px;
	width: 30px;
	height: 30px;
	background: url(../images/top_tel.png) no-repeat;
	background-size: cover;
}
.toptel .toptel-numbers{
	height: 100%;
	line-height: 60px;
	font-family: 'Swis721 Hv BT', Arial, Helvetica, "Times New Roman";
}
/*****内页头部*****/


/*****banner相关部分*****/
.banner{
	position: relative; 
	width: 100%; 
	height: 260px; 
	border-bottom: 1px solid #D0D0D0; 
}
.inner-banner{
	position: absolute; 
	top: 0;
	left: 0; 
	z-index: 1; 
	width: 100%; 
	height: 220px; 
}
.inner-banner-01{ background: url(../images/inner_banner_01.jpg) no-repeat; }
.inner-banner-02{ background: url(../images/inner_banner_02.jpg) no-repeat; }
.inner-banner-03{ background: url(../images/inner_banner_03.jpg) no-repeat; }
.inner-banner-04{ background: url(../images/inner_banner_04.jpg) no-repeat; }
.inner-banner-05{ background: url(../images/inner_banner_05.jpg) no-repeat; }
.inner-banner-06{ background: url(../images/inner_banner_06.jpg) no-repeat; }
.inner-banner-con{
	position: absolute; 
	bottom: 0;
	left: 50%; 
	z-index: 2; 
	margin-left: -640px; 
	width: 1280px; 
	height: 120px; 
	overflow: hidden; 
}
.inner-banner-con .inner-banner-title{
	width: 240px; 
	height: 120px; 
	line-height: 120px; 
	text-indent: 47px; 
	background: url(../images/inner_sub_title.jpg) no-repeat; 
}
.inner-banner-con .inner-banner-title-01{ background-position: 0 0; }
.inner-banner-con .inner-banner-title-02{ background-position: 0 -120px; }
.inner-banner-con .inner-banner-title-03{ background-position: 0 -240px; }
.inner-banner-con .inner-banner-title-04{ background-position: 0 -360px; }
.inner-banner-con .inner-banner-title-05{ background-position: 0 -480px; }
.inner-banner-con .inner-banner-title-06{ background-position: 0 -600px; }
.inner-banner-h1{
	position: absolute; 
	top: 0;
	left: 0; 
	z-index: 25; 
	width: 100%; 
	height: 220px; 
	line-height: 200px; 
	text-align: center; 
}
.inner-banner-h1 span{
	font-size: 32px; 
	font-weight: bold; 
	color: #FFF; 
	mix-blend-mode: multiply; 
	filter: alpha(Opacity=90); 
	-moz-opacity: 0.9;
	opacity: 0.9; 
}
/*****banner相关部分*****/


/*****LEFT SIDE*****/
.help-center{
	width: 198px; 
	border: 1px solid #D0D0D0; 
}
.help-center-title{
	width: 100%; 
	height: 60px; 
	line-height: 60px; 
	background: #F5F5F5; 
}
ul.help-center-ul{
	margin: 0; 
	padding: 0;
}
ul.help-center-ul li{
	float: none; 
	margin: 10px 0; 
}
ul.help-center-ul li a{
	border: none; 
	outline: none; 	
	width: 198px; 
	height: 40px; 
	line-height: 40px; 
	text-indent: 10px; 
	color: #333; 
	background: #FFF url(../images/arrow_01_off.gif) 20px center no-repeat; 
}
ul.help-center-ul li a:hover,
ul.help-center-ul li a.on{
	color: #FFF; 
	background: #0851bf url(../images/arrow_01_on.gif) 180px center no-repeat; 
}
.main{
	width: 1000px; 
	padding: 24px; 
	border: 1px solid #d0d0d0; 
	background: #FFF; 
}
.main .bread-nav{
	width: 100%; 
	line-height: 30px; 
	padding-bottom: 9px; 
	border-bottom: 1px solid #EEE;  
}
/*****LEFT SIDE*****/


/*****Zhengshu*****/
.main ul.zhengshu{
	width: 100%; 
}
.main ul.zhengshu li{ 
	margin: 15px 35px 15px 0; 
}
.main ul.zhengshu li:nth-child(3n){ 
	margin: 15px 0; 
}
.main ul.zhengshu li a{ 
	width: 280px; 
	padding: 14px; 
	border: 1px dashed #EEE; 
}
.main ul.zhengshu li a:hover{ 
	border: 1px solid #E60000; 
}
.main ul.zhengshu li a .zhengshu-img{ 
	width: 100%; 
	height: 210px; 
	overflow: hidden; 
}
.main ul.zhengshu li a .zhengshu-img img{ 
	width: 280px; 
}
.main ul.zhengshu li a:hover .zhengshu-img img{
	transform: scale(1.1);
}
.main ul.zhengshu li a .zhengshu-title{ 
	margin-top: 20px;
	width: 100%; 
	height: 60px; 
	line-height: 30px; 
	color: #333; 
}
.main ul.zhengshu li a:hover .zhengshu-title{
	color: #E60000; 	
}
/*****Zhengshu*****/


/*****Business*****/
.main ul.index-business{
	width: 100%; 
}
.main ul.index-business li{
	margin: 15px 35px 15px 0; 
}
.main ul.index-business li:nth-child(3n){ 
	margin: 15px 0; 
}
.main ul.index-business li a{
	position: relative; 
	width: 310px; 
	background: #F5F5F5;
}
.main ul.index-business li a:hover{
	background: #0851bf;
}
.main ul.index-business li a .business-bg{
	width: 100%; 
	height: 175px; 
}
.main ul.index-business li a .business-bg .business-img{
	width: 100%; 
	height: 100%; 
}
.main ul.index-business li a:hover .business-bg .business-img{
	transform: scale(1.1); 
}
.main ul.index-business li a .business-text{
	width: 100%; 
	height: 60px; 
	padding: 0 20px;
	box-sizing: border-box;
}
.main ul.index-business li a .business-text .business-title{
	margin-right: 5px;
	height: 100%; 
	line-height: 60px; 
	color: #333; 
}
.main ul.index-business li a .business-text .business-entitle{
	height: 100%; 
	line-height: 60px; 
	color: #999; 
}
.main ul.index-business li a:hover .business-text .business-title,
.main ul.index-business li a:hover .business-text .business-entitle{
	color: #FFF;
}
/*****Business*****/


/*****Product&amp;Case*****/
.main ul.cases-all{
	width: 100%; 
}
.main ul.cases-all li{
	margin: 20px; 
}
.main ul.cases-all li a{
	width: 288px; 
	height: 282px; 
	background: #FFF; 
	border: 1px solid #d0d0d0; 
}
.main ul.cases-all li a:hover{
	background: #E60000; 
	border: 1px solid #E60000; 
}
.main ul.cases-all li a .cases-img{
	position: relative; 
	width: 288px; 
	height: 162px; 
	overflow: hidden; 
}
.main ul.cases-all li a .cases-img img{
	position: absolute; 
	top: 0; 
	left: 0; 
	z-index: 5; 
	width: 288px; 
}
.main ul.cases-all li a:hover .cases-img img{
	transform: scale(1.1);
}
.main ul.cases-all li a .cases-title{
	margin: 10px auto; 
	width: 270px; 
	height: 30px; 
	line-height: 30px; 
	color: #333; 
}
.main ul.cases-all li a .cases-intro{
	margin: 0 auto; 
	width: 270px; 
	height: 50px; 
	line-height: 25px; 
	color: #999; 
}
.main ul.cases-all li a:hover .cases-title,
.main ul.cases-all li a:hover .cases-intro{
	color: #FFF; 
}
/*****Product&amp;Case*****/


/*****news*****/
.main ul.anwsers{ 
	margin: 0 auto; 
	width: 960px; 
}
.main ul.anwsers li{
	float: none; 
	width: 100%; 
	padding: 10px 0; 
	border-bottom: 1px dashed #d0d0d0; 
}
.main ul.anwsers li a{
	width: 100%; 
	border-bottom: 1px dashed #d0d0d0; 
}
.main ul.anwsers li a .anwsers-title{
	float: left; 
	width: 65%; 
	height: 50px; 
	line-height: 50px; 
	font-size: 16px; 
	background: url(../images/icons-news-off.png) 5px center no-repeat; 
	text-indent: 30px;
}
.main ul.anwsers li a .anwsers-span{
	float: right; 
	width: 35%; 
	height: 50px; 
	overflow: hidden; 
	text-align: right;
}
.main ul.anwsers li a .anwsers-span span{
	display: inline-block; 
	margin: 15px 5px; 
	padding: 5px 10px; 
	font-size: 12px; 
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; 
}
.main ul.anwsers li a .anwsers-span span.class01{
	background: #FFF; 
	color: #da251d; 
}
.main ul.anwsers li a .anwsers-span span.class02{
	background: #FFF;
	color: #FD8000; 
}
.main ul.anwsers li a .anwsers-span span.class03{
	background: #e7edff;
	color: #3373f4;
}
.main ul.anwsers li a .anwsers-span span.class04{
	background: #eaf0ec;
	color: #4bb58d;	
}

.main ul.anwsers li a:hover{ 
	background-color: #E60000; 
	border-bottom: 1px solid #d36b00; 
}
.main ul.anwsers li a:hover .anwsers-title{ 
	color: #FFF; 
	background: url(../images/icons-news-on.png) 5px center no-repeat; 
}
.main ul.anwsers li a:hover .anwsers-span span.class01,
.main ul.anwsers li a:hover .anwsers-span span.class02,
.main ul.anwsers li a:hover .anwsers-span span.class03,
.main ul.anwsers li a:hover .anwsers-span span.class04{ 
	background: #f5f5f5;
	color: #999; 
}
/*****news*****/


/*****Details*****/
.main p{
	line-height: 30px; 
	font-size: 16px; 
}
.main #contentbg{
	width: 960px; 
	margin: 0 auto; 
}
.main #contentbg p{
	line-height: 30px; 
	font-size: 16px; 
}
.main #contentbg p img{
	max-width: 600px; 
	margin: 0; 
	border: 0; 
	padding: 0; 
}
.main #contentbg p strong{
	font-weight: bold; 
}
.main .details-title{
	width: 100%; 
	padding: 30px 0; 
	line-height: 50px; 
	border-bottom: 1px dashed #d0d0d0; 
}
.main .details-tags{
	padding: 10px 0; 
	margin: 30px 20px;
	background: #F5F5F5; 
}
.main .details-tags span{
	margin: 0 5px; 
	padding: 0 10px; 
	display: inline-block; 
	height: 30px; 
	line-height: 30px; 
	color: #666; 
}
.main .details-tags a{
	margin: 0 5px; 
	padding: 0 10px 0 23px; 
	display: inline-block; 
	height: 30px; 
	line-height: 30px; 
	color: #0851bf; 
	background: url(../images/icons_list_off.gif) 5px center no-repeat; 

	-webkit-transition: .3s; 
	-moz-transition: .3s; 
	transition: .3s; 
}
.main .details-tags a:hover{
	color: #E60000; 
	background: url(../images/icons_list_on.gif) 5px center no-repeat; 
}
/*****Details*****/


/*=======Prev &amp; Next=======*/
.prevnext{
	width: 960px; 
	margin: 20px 20px 0 20px; 
	background-color: #F5F5F5; 
}
.prevnext .prevnext-bg{
	width: 50%; 
	line-height: 40px; 
	overflow: hidden; 
}
.prevnext .prevnext-bg a{
	display: block; 	
}
.prevnext .prevnext-bg a .arrow{
	width: 12px; 
	height: 12px; 
	margin: 14px 20px; 
	-webkit-transition: .3s; 
	-moz-transition: .3s; 
	transition: .3s; 
}
.prevnext .prevnext-bg a .prevarrow{
	background: url(../images/icons_prev.png) no-repeat; 
	background-position: 0 0; 
}
.prevnext .prevnext-bg a .nextarrow{
	background: url(../images/icons_next.png) no-repeat; 
	background-position: -24px 0; 
}
.prevnext .prevnext-bg a .title{
	width: 400px; 
	height: 40px; 
	line-height: 40px; 
	color: #666; 
	font-size: 14px; 
	-webkit-transition: .3s; 
	-moz-transition: .3s; 
	transition: .3s; 	
}
.prevnext .prevnext-bg a:hover .prevarrow{
	background-position: -24px 0; 
}
.prevnext .prevnext-bg a:hover .nextarrow{
	background-position: 0 0; 
}
.prevnext .prevnext-bg a:hover .title{
	color: #FD8000; 
	text-decoration: underline; 
}
/*=======Prev &amp; Next=======*/


/*****Pageinfo*****/
.my_pages{ 
	margin: 0 auto; 
	text-align: center; 
}
.my_pages ul.pages{ 
	list-style:none; 
}
.my_pages ul.pages li{ 
	list-style: none; 
	text-align: center; 
	line-height: 30px; 
	display: inline; 
	margin: 0 5px; 
	padding: 10px 0; 
	overflow: hidden; 
	white-space: nowrap; 
	font-size: 14px; 
	color: #666; 	
}
.my_pages ul.pages li a{ 
	background: #FFF; 
	color: #333; 
	display: inline; 
	line-height: 28px; 
	overflow: hidden; 
	padding: 10px 15px; 
	margin: 0; 
	border: #EEE 1px solid; 
	transition: .3s; 
	border-radius: 6px; 	
}
.my_pages ul.pages li a:hover{
	color: #fff;
	background: #E60000; 
	border: #E60000 1px solid; 
	line-height: 28px; 
	overflow: hidden; 
	text-decoration:none; 
	cursor:pointer;
}
.my_pages ul.pages li.thisclass a{
	color: #fff; 
	background: #E60000; 
	border: #E60000 1px solid;  
	height: 28px; 
	overflow: hidden; 
	font-weight: 700;
}
.my_pages ul.pages li a:hover span,
.my_pages ul.pages li.thisclass a span{
	color: #fff; 
}
/*****Pageinfo*****/



/*=====contact=====*/
div.inner-contact{
	position: relative; 
	width: 400px; 
	height: 350px; 
	background: #F5F5F5; 
	margin: 50px 40px 20px 0; 
	
}
div.inner-contact:nth-child(3n){
	margin: 50px 0 20px 0; 
}
div.inner-contact .inner-contact-bg{
	position: absolute; 
	top: 0; 
	left: 0; 
	z-index: 5; 
	width: 100%;
	height: 100%; 
	background: #0079ff;
	background: -webkit-linear-gradient(top, #3dadfc , #0079ff);
	background: -o-linear-gradient(bottom, #3dadfc , #0079ff);
	background: -moz-linear-gradient(bottom, #3dadfc , #0079ff);
	background: linear-gradient(to bottom, #3dadfc , #0079ff);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3dadfc', endColorstr='#0079ff', GradientType=0); 
	-moz-opacity: 0; 
	opacity: 0; 
}
div.inner-contact:hover .inner-contact-bg{
	-moz-opacity: 1.0; 
	opacity: 1.0; 
	-webkit-box-shadow: 0 0 10px rgba(0, 98, 74, .5); 
	-moz-box-shadow: 0 0 10px rgba(0, 98, 74, .5); 
	box-shadow: 0 0 10px rgba(0, 98, 74, .5); 
}

div.inner-contact .inner-contact-icon{
	position: absolute; 
	top: 60px; 
	left: 160px; 
	z-index: 10; 
	width: 80px;
	height: 80px; 
	background-image: url(../images/icons_contact.png); 
	background-repeat: no-repeat; 
}
div.inner-contact .inner-contact-icon-01{ background-position: 0 0;}
div.inner-contact .inner-contact-icon-02{ background-position: -80px 0;}
div.inner-contact .inner-contact-icon-03{ background-position: -160px 0;}

div.inner-contact:hover .inner-contact-icon-01{ background-position: 0 -80px;}
div.inner-contact:hover .inner-contact-icon-02{ background-position: -80px -80px;}
div.inner-contact:hover .inner-contact-icon-03{ background-position: -160px -80px;}


div.inner-contact .inner-contact-title{
	position: absolute; 
	top: 160px; 
	left: 0; 
	z-index: 10; 
	width: 100%; 
	height: 40px; 
	line-height: 40px; 
}
div.inner-contact:hover .inner-contact-title{
	color: #FFF; 
}

div.inner-contact .inner-contact-info{
	position: absolute; 
	top: 220px; 
	left: 0; 
	z-index: 10; 
	width: 90%; 
	max-height: 100px; 
	line-height: 25px; 
	overflow: hidden; 
	padding: 0 5%; 
}
div.inner-contact:hover .inner-contact-info{
	color: #FFF; 
}
/*=====contact=====*/</pre></body></html>