@charset "utf-8";
body {
	/*min-height: ;*/
}

body {
	/*min-height: 2000px;*/
	margin-top: 70px;
}

.navbar {
	min-height: 70px;
	margin-bottom: 0;
}

.navbar-brand {
	padding-top: 5px;
	height: 70px;
	line-height: 40px;
}

.navbar-nav>li>a {
	line-height: 40px;
}

.navbar-toggle {
	height: 40px;
	margin-top: 15px;
}

.navbar-brand img {
	height: 60px;
}

.webname {
	color: white !important;
	font-size: 1.2em;
}


/*首行缩进*/

.mytext {
	text-indent: 2em;
}

footer {
	color: #9D9D9D;
	background-color: #222;
	border-color: #080808;
	min-height: 100px;
	padding: 20px;
}

.footer-list {
	line-height: 1.8em;
}

.footer-list hr {
	border: dashed 1px #555;
}


/*控制脚部列表超链接的颜色*/

.footer-list a,
.footer-nav a {
	color: #9D9D9D;
}

.footer-list a:hover,
.footer-nav a:hover {
	color: white;
}

.footer-nav {
	text-align: center;
	padding: 20px 0;
}

.jumbotron {
	height: 300px;
}


/*此处改公司简介页面的banner*/

.introduction-banner {
	background: url(../images/banner-introduction.jpg) center;
	background-size: cover;
}


/*业务范围banner*/

.business-banner {
	background: url(../images/banner-business.jpg) center;
	background-size: cover;
}


/*联系我们*/

.contact-banner {
	background: url(../images/banner-contact.jpg) center;
	background-size: cover;
}


/*产品*/

.product-banner {
	background: url(../images/banner-product.jpg) center;
	background-size: cover;
}

footer img {
	width: 50px;
}

@media (min-width: 768px) {
	footer img {
		width: 80px;
	}
}


/*空白*/

.space-w {}

.space-h-100 {
	height: 100px;
}

.space-h-50 {
	height: 50px;
}


/*首页icon*/

.img-circle {
	background: #f8f8f8;
	transition: 0.8s;
	/*-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;*/
	box-shadow: 0px 0px 30px rgba(0, 30, 0, 0);
}

.img-circle:hover {
	/*-webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    
    filter: grayscale(0%);
	
    filter: ; */
	box-shadow: 0px 0px 30px rgba(0, 30, 0, 0.5);
}


/* 产品标题*/

.product-jumbotron {
	text-align: center;
	background-color: transparent;
}

.product-jumbotron .btn {
	padding: 14px 24px;
	font-size: 21px;
}


/*产品页侧边栏*/

.nav-sidebar>li>a {
	padding-right: 00px;
	padding-left: 20px;
	color: #666;
}

.nav-sidebar>.active>a,
.nav-sidebar>.active>a:hover,
.nav-sidebar>.active>a:focus {
	color: #fff;
	background-color: #89b021;
	border-radius: 6px;
}

.nav-sidebar li {
	margin-bottom: 3px;
}

.nav-sidebar li a {
	border-radius: 6px;
}

.nav-sidebar li a:hover {
	background: #edf8bc;
}

.map {
	width: 450px;
	height: 470px;
	border: #ccc solid 1px;
}

.iw_poi_title {
	color: #CC5522;
	font-size: 14px;
	font-weight: bold;
	overflow: hidden;
	padding-right: 13px;
	white-space: nowrap
}

.iw_poi_content {
	font: 12px arial, sans-serif;
	overflow: visible;
	padding-top: 4px;
	white-space: -moz-pre-wrap;
	word-wrap: break-word
}


/*图片列表*/

.img-hover {
	display: block;
	/*溢出隐藏*/
	overflow: hidden;
}

.img-hover img {
	/*过渡*/
	transition: all 1s;
	/*黑白*/
	-webkit-filter: grayscale(60%);
	-moz-filter: grayscale(60%);
	-ms-filter: grayscale(60%);
	-o-filter: grayscale(60%);
	filter: grayscale(60%);
	/*filter: gray;*/
}

.img-hover:hover img {
	/*放大1.5倍*/
	transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	-o-transform: scale(1.5, 1.5);
	-ms-transform: scale(1.5, 1.5);
	-moz-transform: scale(1.5, 1.5);
	/*色彩恢复正常*/
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	/*filter: grayscale(0%);*/
	/*filter: ;*/
}