/* 主体 */
body {
	padding-top: 1rem;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.main>li {
	padding: .3rem 0;
}

.main>li:first-child {
	padding: 0;
}

.main>li:nth-child(2n+1) {
	background-color: #F5F7F9;
}

.main>li>h1 {
	font-size: .28rem;
	text-align: center;
	margin: .4rem 0 .3rem
}

@media screen and (max-width: 768px) {
	body {
		padding-top: .6rem;
	}

	.main>li>h1 {
		margin: 0 0 .2rem
	}
}

/* 导航 */
.navbar-brand {
	width: calc(100% - 70px);
	margin: 5px;
	background: url(../img/logo.png) left center no-repeat;
	background-size: contain;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
	background-color: #098cc6;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.navbar-default {
		min-height: auto;
		height: 1rem;
		margin: 0;
		background: #fff;
	}

	.navbar-default .navbar-nav {
		display: table;
		width: calc(100% - 3.2rem);
	}

	.navbar-default .navbar-nav>li {
		display: table-cell;
		width: 16.66%;
		float: none;
	}

	.navbar-default .navbar-nav>li>a {
		padding: 0;
		line-height: 1rem;
		font-size: .18rem;
		color: #000;
		text-align: center;
	}

	.navbar-brand {
		width: 3.2rem;
		height: .7rem;
		margin: .15rem 0;
	}
}

/* banner */
.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	width: 100%;
}

/* 业务范围 */
#business {
	text-align: center;
}

#business .container {
	margin-top: .8rem;
}

#business i {
	font-size: .5rem;
	color: #055693;
}

#business dl>dt {
	font-size: .18rem;
	margin: .1rem 0;
	font-weight: normal;
}

#business dl>dd {
	font-size: .14rem;
	color: #666;
}

/* 案例展示 */
#case dl {
	position: relative;
	cursor: pointer;
}

#case dl>dt {
	position: relative;
	transform: scale(1, 1);
	transition: all .5s;
}

#case dl>dt>img {
	width: 100%;
}

#case dl>dt::after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .1);
}

#case dl:hover>dt {
	transform: scale(2, 2);
	z-index: 1;
	box-shadow: 2px 4px 4px rgba(0, 0, 0, .5);
}

#case dl:hover>dt::after {
	display: none;
}

#case dl>dd {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	padding: .1rem;
	box-sizing: border-box;
	font-size: .16rem;
}

/* 合作客户 */
#customer {
	text-align: center;
	padding-bottom: .5rem;
}

#customer .col-sm-3 {
	border: 1px solid #ddd;
	margin: -1px 0 0 -1px;
}

#customer .col-sm-3:hover {
	background-color: #f4f4f4;
	cursor: pointer;
}

#customer img {
	max-width: 100%;
}

/* 关于我们 */
#aboutUs {
	min-height: 5rem;
	padding: .8rem 0;
}
#aboutUs h2{
	font-size: .28rem;
	margin-bottom: .1rem;
}
#aboutUs li {
	font-size: .16rem;
	padding: .1rem 0;
	line-height: .3rem;
}

#aboutUs img {
	width: 100%;
}

/* 联系我们 */
#linkUs {
	text-align: center;
	min-height: 4rem;
}

#linkUs i {
	font-size: .4rem;
	color: #666;
}

#linkUs div {
	font-size: .16rem;
	margin-top: .1rem;
}

/* 底部 */
#footer {
	background: #072b46;
	color: rgba(255, 255, 255, .8);
	text-align: center;
	font-size: .16rem;
}

#footer i {
	font-size: .2rem;
	vertical-align: middle;
}

#footer em {
	display: block;
	overflow: hidden;
	padding-top: .2rem;
	font-style: normal;
	width: 100%;
}

#footer a {
	color: rgba(255, 255, 255, .8);
}

#footer em img {
	margin: 0 .05rem 0 .1rem;
}

/* 侧边栏目 */
#siderClumn {
	position: fixed;
	top: 3rem;
	right: 20px;
}

#siderClumn>li {
	width: 50px;
	height: 50px;
	margin-bottom: 5px;
	border: 1px solid #098cc6;
	background: #fff;
	text-align: center;
	padding-top: 2px;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}

#siderClumn>li:hover {
	background-color: #f5f5f5;
}

#siderClumn>li>i {
	font-size: 30px;
	color: #098cc6;
}

#siderClumn>li:hover>dl {
	display: block;
}

#siderClumn>li>dl {
	position: absolute;
	right: 48px;
	bottom: 0;
	margin: 0;
	display: none;
}

#siderClumn>li>dl>dt {
	position: absolute;
	bottom: 10px;
	right: 0;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-left: 10px solid #098cc6;
	border-bottom: 6px solid transparent;
}

#siderClumn>li>dl>dd {
	margin-right: 10px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #098cc6;
}

#siderClumn>li>dl>dd>em {
	display: block;
	font-style: normal;
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
}

#siderClumn>li>dl>dd>i {
	font-size: 36px;
	color: #098cc6;
}

#siderClumn>li>dl>dd>b {
	font-size: 18px;
}
