/* 浮动导航 */
.fixed-nav {
	position: absolute;
	top: auto;
	left: 3%;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	z-index: 8;
	margin-top: 30px;
	border: 1px solid #ddd;
	width: 15%;
}

.fixed-nav-sticky {
	position: fixed;
	top: 0;
}

.fixed-nav ul {
	width: 100%;
	overflow: hidden;
}

.fixed-nav ul li {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
}

.fixed-nav ul li:last-child {
	border-bottom: none;
}

.fixed-nav ul li.fixed-nav-act {
	border-bottom: 1px solid #FE1408;
}

.fixed-nav ul li.fixed-nav-act a {
	color: #FE1408;
	font-weight: bold;
}

.fixed-nav ul li a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 20px;
}

.fixed-nav ul li:hover a {
	color: #FE1408;
	font-weight: bold;
}

/* end */

/* 内页中间部分 */
.inner-main-content {
	width: 100%;
	padding: 30px 5% 80px 22%;
	box-sizing: border-box;
}

.inner-main-content-white {
	background: #fff;
}

.inner-main-content-grey {
	background: #F6F6F6;
}

/* end */

@media (max-width: 61.25em) {
	.fixed-nav {
		width: 20% !important;
	}

	.inner-main-content {
		padding: 30px 5% 80px 27% !important;
	}

	.design-ul li {
		width: 48% !important;
		margin: 0 1% 1em 1%;
	}
}

/* @media (max-width: 48em) {
	.solution-list ul li {
		width: 48%;
		margin: 0 1% 1em 1%;
	}
} */