body {
	padding-top: 66px;
	background-color: #f7f7f7;
}
img {
	display: block;
}
/* 
 * page-header
 */
.page-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 15;
	background-color: #fff;
}
.navbar {
	width: 100%;
	height: 66px;
	align-items: stretch;
}
.navbar,.navbar-brand,.navbar-menu,.navbar-start,.navbar-end {
	display: flex;
	align-items: stretch;
}
.navbar-brand {
	flex-shrink: 0;
}
.navbar-burger {
	position: relative;
	height: 50px;
	width: 50px;
	margin-left: auto;
	color: #333;
	cursor: pointer;
	display: none;
}
.navbar-burger span {
	position: absolute;
	left: calc(50% - 8px);
	width: 16px;
	height: 1px;
	background-color: currentColor;
	display: block;
	transform-origin: center;
	transition-duration: 86ms;
	transition-property: background-color,opacity,transform;
	transition-timing-function: ease-out;
}
.navbar-burger span:first-child {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:last-child {
  top: calc(50% + 4px);
}
.navbar-burger.active span:first-child {
	transform: translateY(5px) rotate(45deg);
}
.navbar-burger.active span:nth-child(2) {
	opacity: 0;
}
.navbar-burger.active span:last-child {
	transform: translateY(-5px) rotate(-45deg);
}
.navbar-menu {
	flex-grow: 1;
	flex-shrink: 0;
}
.navbar-start {
	justify-content: flex-start;
	margin-right: auto;
}
.navbar-end {
	position: relative;
	justify-content: flex-end;
	margin-left: auto;
}
.navbar-end img {
	width: 16px;
	height: 16px;
}
.navbar-end .link {
	color: #4aaae8;
}
.navbar-popup {
	position: absolute;
	top: 66px;
	left: 50%;
	width: 180px;
	padding: 10px;
	line-height: 46px;
	text-align: center;
	background-color: #F5F6F7;
	display: none;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
	transform: translateX(-50%);
	transition: all .15s;
}
.navbar-popup .item {
	transition: all .15s;
}
.navbar-popup .item:hover {
	cursor: pointer;
	color: #FFFFFF;
	background-color: #fa6d42;
}
.navbar-item:hover .navbar-popup {
	display: block;
}
.navbar-item,.navbar-link {
	position: relative;
	padding: 10px 20px;
	line-height: 1.5;
	color: #292929;
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	cursor: pointer;
}
.navbar-link:hover {
	background-color: #F5F6F7;
}
.navbar-item.active,
.navbar-link.active {
	color: #fff;
	background-color: #fa6d42;
}
/* 
 * page-swiper
 */
.swiper {
	position: relative;
	overflow: hidden;
	height: 400px;
}
.swiper-inner {
	position: absolute;
	height: 100%;
	left: 0;
}
.swiper-transition {
	transition: left .3s ease-in-out;
}
.swiper-item {
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
}
.swiper-img {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
.swiper-dot {
	position: absolute;
	left: 50%;
	bottom: 10px;
	display: flex;
	transform: translateX(-50%);
}
.swiper-dot > div {
	width: 24px;
	height: 8px;
	margin: 0 4px;
	background-color: rgba(255,255,255,.3);
	cursor: pointer;
	border-radius: 2px;
	text-indent: -99em;
}
.swiper-dot > div:not(.active):hover {
	background-color: rgba(255,255,255,.7);
}
.swiper-dot > div.active {
	background-color: rgba(255,255,255,1);
}
/* 
 * page-main
 */
.page-main {
	color: #333;
}
.main-item {
	padding: 25px 0;
}
.main-title {
	overflow: hidden;
	font-size: 28px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 4px;
}
.main-line {
	font-size: 30px;
	/* line-height: 20px; */
	text-align: center;
	font-weight: 700;
	color: #fa6d42;
	letter-spacing: -2px;
}
.main-sub-title {
	margin-top: 10px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 1px;
}
.main-title span {
	display: block;
	/* transform-origin: left bottom;
	transform: rotate(10deg) translateY(100px); */
}
.page-main .icon img {
	width: 100%;
}
.active .main-title span {
	transition: transform 1s 0.6s;
	transform: rotate(0deg) translateY(0px);
}
.main-inner {
	padding: 30px 0 0;
}
.main-inner .title {
	font-size: 20px;
}
.main-inner .desc {
	font-size: 16px;
	color: #999;
}
.main-inner .item {
	transition: all .3s ease;
	border-radius: 4px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
.main-inner .item:hover {
	border-radius: 3px;
	box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
}
.page-footer {
	background-color: #efefef;
}
.footer-inner {
	padding: 30px  10px 20px;
	font-size: 16px;
	color: #777;
}
.footer-inner .left img {
	width: 120px;
	height: 120px;
	margin-bottom: 5px;
}
.footer-inner .code {
	padding-top: 5px;
	margin-right: 25px;
	font-size: 12px;
	text-align: center;
}
.footer-inner .title {
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 600;
}
.footer-inner .title {
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
}
.footer-inner .item {
	padding: 3px 0;
}
.footer-inner .center .item span {
	cursor: pointer;
}
.footer-inner .center .item span:hover {
	color: #23252A;
}
.footer-bot {
	padding: 10px 0 20px;
	border-top: solid 1px #ddd;
}
.pic1 img{
	width: 90%;
	margin: 0 auto;
}
.list1,.list2,.list3 {
	margin: 0 -10px;
}
.list1 .item {
	width: calc(25% - 20px);
	padding: 25px;
	margin: 10px;
	flex-shrink: 0;
	background-color: #FFFFFF;
}
.list1 .item:hover {
	transform: translateY(-10px);
}
.list1 .icon {
	width: 100px;
	height: 100px;
	margin: auto;
}
.list1 .title {
	margin: 10px 0 15px;
}
.list2 .item {
	width: calc(50% - 20px);
	padding: 25px;
	margin: 10px;
	flex-shrink: 0;
	background-color: #FFFFFF;
	display: flex;
}
.list2 .item:hover {
	transform: translateX(-10px);
}
.list2 .icon {
	width: 70px;
	height: 70px;
	margin-right: 15px;
	flex-shrink: 0;
}
.list2 .title {
	margin-bottom: 10px;
}
.list3 .item {
	overflow: hidden;
	width: calc(33.33% - 20px);
	margin: 10px;
	flex-shrink: 0;
	background-color: #FFFFFF;
}
.list3 .item:hover {
	transform: scale(1.05);
}
.list3 .pic {
	overflow: hidden;
	position: relative;
	padding-bottom: 56.25%;
	background-color: #999999;
}
.list3 .pic img{
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all .3s ease;
}
.list3 .desc {
	padding: 20px;
	line-height: 20px;
	text-align: center;
}
.tab-wrapper {
	width: 90%;
	margin: 0 auto;
}
.index-tabs {
	height: 60px;
	margin-bottom: 20px;
}
.index-tabs .item {
	color: #FFFFFF;
	align-items: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	background-color: #666;
	cursor: pointer;
}
.index-tabs .item:not(:last-child) {
	margin-right: 16px;
}
.index-tabs .item:hover {
	background-color: #555;
}
.index-tabs .item.active {
	background-color: #fa6d42;
}
.index-content .box {
	display: none;
}
.index-content .box.active {
	display: flex;
}
.index-content .box img {
	width: 100%;
}
.aside-menu {
	position: fixed;
	top: 50%;
	right: 10px;
}
.aside-list .item {
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 4px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.aside-list .show {
	z-index: 1;
	position: relative;
	width: 80px;
	height: 80px;
	font-size: 14px;
	text-align: center;
	background-color: #ddd;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.aside-list .show .pic {
	width: 40px;
	height: 40px;
	background-size: cover;
}
.aside-list .show .erweima {
	background-image: url(../img/erweima.png);
}
.aside-list .show .zixun {
	background-image: url(../img/zixun.png);
}
.aside-list .item:hover .erweima {
	background-image: url(../img/erweima_h.png);
}
.aside-list .item:hover .zixun {
	background-image: url(../img/zixun_h.png);
}
.aside-list .item:hover .show {
	color: #FFFFFF;
	background-color: #FA6D42;
}
.aside-list .code {
	position: absolute;
	top: 0;
	right: -200px;
	width: 150px;
	padding: 15px;
	font-size: 12px;
	color: #666;
	text-align: center;
	transition: right .3s;
  background-color: #fff;
}
.aside-list .item:hover .code {
	right: 80px;
}
.aside-list img {
	width: 100%;
	height: auto;
	margin-bottom: 6px;
}