@charset "UTF-8";
/*首页-关于我们*/
 /*页头部分*/
 /* header */
.header{
	position:relative;
	height:0.88rem;
	width: 100%;
	background: #0289f4;
}
.header .logo{
		display:block;
		width:1.35rem;
		height:0.77rem;
		padding-top:0.1rem ;
	
}
.header .logo img{
		width:100%;
		vertical-align: middle;
}
.header .back{
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:0.5rem;
	height:0.5rem;
	text-indent:-9999rem;
	background:url("../images/icon-back.png")no-repeat center center;
	background-size:0.12rem 0.2rem;
}

/*-------------------------component-----------------------------------*/
@font-face {
	font-family: 'icomoon';
	src:url("../fonts/icomoon.eot"),
	src:url("../fonts/icomoon.eot@#iefix")format('embedded-opentype'),
		url("../fonts/icomoon.woff")format('woff'),
		url("../fonts/icomoon.ttf")format('truetype'),
		url("../fonts/icomoon.svg#icomoon")format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Common styles of menus */

.dl-menuwrapper {
	width: 100%;
	max-width: 50%;
	float: right;
	position: absolute;
	top:0;
	right:0;
	padding-top: 0.88rem;
	z-index: 999;
	-webkit-perspective: 10rem;
	-moz-perspective: 10rem;
	perspective: 10rem;
	-webkit-perspective-origin: 50% 200%;
	-moz-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}
.dl-menuwrapper:first-child {
	margin-right: 1rem;
}
/*导航按钮*/
.dl-menuwrapper button {
	/*background: url(../images/header-bg.png) repeat-x bottom left;*/
	border: none;
	width: 0.88rem;
	height: 0.88rem;
	text-indent: -900rem;
	overflow: hidden;
	position: absolute;
	top:0;
	right:0;
	cursor: pointer;
	outline: none;
	background: #46A1E5 url("../images/menu-button-bg.png")no-repeat center center;
	background-size: 60%;
}

.dl-menuwrapper button:hover ,
.dl-menuwrapper button.dl-active {
	/*background: url(../images/header-bg.png) repeat-x bottom left;*/
	background-color: rgba(30,111,172,0.6);
}
.dl-menuwrapper ul {
	background: #249eff;
}
/*.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 60%;
	height: 4px;
	background: #fff;
	top: 12px;
	left: 22%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}*/
.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
}
.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 0.28rem 0 0.28rem 0.8rem;
	font-size: 0.3rem;
	/*line-height: 1rem;*/
	font-weight: normal;
	color: #fff;
	border-width:0 0 1px 0;
	border-style: solid;
	outline: none;
	background-repeat: no-repeat;
	background-position: 1.3rem center;
	vertical-align: middle;
}
.dl-menuwrapper span{
	width: 0.5rem;height: 0.5rem;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}
.dl-menuwrapper span img{
	width: 100%;
	vertical-align: middle;
}
/*子菜单字体*/
.dl-submenu .dl-submenu-a a{
	font-size: 0.32rem;
	line-height:0.6rem;
}
.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 0.6rem;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 0.9rem;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
}

.dl-menuwrapper li.dl-back:after {
	left: 0.1rem;
	font-size: 0.36rem;
	line-height: 0.9rem;
	color: rgba(255,255,255,0.8);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
	right: 0.1rem;
	color: rgba(255,255,255,0.8);
}

.dl-menuwrapper .dl-menu {
	/*margin: 5px 0 0 0;*/
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(0.1rem);
	-moz-transform: translateY(0.1rem);
	transform: translateY(0.1rem);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
	position: absolute;
	width: 100%;
	top: 0.5rem;
	left: 0;
	margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	-moz-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	-moz-animation: MenuAnimOut2 0.3s ease-in-out;
	animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
	-webkit-animation: MenuAnimOut3 0.4s ease;
	-moz-animation: MenuAnimOut3 0.4s ease;
	animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
	-webkit-animation: MenuAnimOut4 0.4s ease;
	-moz-animation: MenuAnimOut4 0.4s ease;
	animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
	-webkit-animation: MenuAnimOut5 0.4s ease;
	-moz-animation: MenuAnimOut5 0.4s ease;
	animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut2 {
	100% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut3 {
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut4 {
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut5 {
	100% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
}

@-moz-keyframes MenuAnimOut1 {
	50% {
		-moz-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-moz-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-moz-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-moz-keyframes MenuAnimOut2 {
	100% {
		-moz-transform: translateX(-100%);
		opacity: 0;
	}
}

@-moz-keyframes MenuAnimOut3 {
	100% {
		-moz-transform: translateZ(300px);
		opacity: 0;
	}
}

@-moz-keyframes MenuAnimOut4 {
	100% {
		-moz-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-moz-keyframes MenuAnimOut5 {
	100% {
		-moz-transform: translateY(40%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	50% {
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: 0.5;
	}
	100% {
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut2 {
	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut3 {
	100% {
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut4 {
	100% {
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut5 {
	100% {
		transform: translateY(40%);
		opacity: 0;
	}
}

.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	-moz-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	-moz-animation: MenuAnimIn2 0.3s ease-in-out;
	animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
	-webkit-animation: MenuAnimIn3 0.4s ease;
	-moz-animation: MenuAnimIn3 0.4s ease;
	animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
	-webkit-animation: MenuAnimIn4 0.4s ease;
	-moz-animation: MenuAnimIn4 0.4s ease;
	animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
	-webkit-animation: MenuAnimIn5 0.4s ease;
	-moz-animation: MenuAnimIn5 0.4s ease;
	animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@-moz-keyframes MenuAnimIn1 {
	0% {
		-moz-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-moz-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-moz-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-moz-keyframes MenuAnimIn2 {
	0% {
		-moz-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-moz-transform: translateX(0px);
		opacity: 1;
	}
}

@-moz-keyframes MenuAnimIn3 {
	0% {
		-moz-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
}

@-moz-keyframes MenuAnimIn4 {
	0% {
		-moz-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
}

@-moz-keyframes MenuAnimIn5 {
	0% {
		-moz-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-moz-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes MenuAnimIn1 {
	0% {
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn2 {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn3 {
	0% {
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn4 {
	0% {
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn5 {
	0% {
		transform: translateY(40%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	-moz-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	-moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
	animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	-moz-animation: SubMenuAnimIn3 0.4s ease;
	animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	-moz-animation: SubMenuAnimIn4 0.4s ease;
	animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	-moz-animation: SubMenuAnimIn5 0.4s ease;
	animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
}

@-moz-keyframes SubMenuAnimIn1 {
	0% {
		-moz-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-moz-transform: translateX(0px);
		opacity: 1;
	}
}

@-moz-keyframes SubMenuAnimIn2 {
	0% {
		-moz-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-moz-transform: translateX(0px);
		opacity: 1;
	}
}

@-moz-keyframes SubMenuAnimIn3 {
	0% {
		-moz-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
}

@-moz-keyframes SubMenuAnimIn4 {
	0% {
		-moz-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
}

@-moz-keyframes SubMenuAnimIn5 {
	0% {
		-moz-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-moz-transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn1 {
	0% {
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn2 {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn3 {
	0% {
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn4 {
	0% {
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn5 {
	0% {
		transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	-moz-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	-moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
	animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	-moz-animation: SubMenuAnimOut3 0.4s ease;
	animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	-moz-animation: SubMenuAnimOut4 0.4s ease;
	animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	-moz-animation: SubMenuAnimOut5 0.4s ease;
	animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
}

@-moz-keyframes SubMenuAnimOut1 {
	0% {
		-moz-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-moz-transform: translateX(50%);
		opacity: 0;
	}
}

@-moz-keyframes SubMenuAnimOut2 {
	0% {
		-moz-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-moz-transform: translateX(100%);
		opacity: 0;
	}
}

@-moz-keyframes SubMenuAnimOut3 {
	0% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-moz-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-moz-keyframes SubMenuAnimOut4 {
	0% {
		-moz-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-moz-transform: translateZ(300px);
		opacity: 0;
	}
}

@-moz-keyframes SubMenuAnimOut5 {
	0% {
		-moz-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-moz-transform: translateZ(-200px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut1 {
	0% {
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		transform: translateX(50%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut2 {
	0% {
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut3 {
	0% {
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut4 {
	0% {
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut5 {
	0% {
		transform: translateZ(0);
		opacity: 1;
	}
	100% {
		transform: translateZ(-200px);
		opacity: 0;
	}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}
/*footer*/
.footer-box{
	width: 100%;
	background-color: #39a8ff;
}
.footer-con h2{
	width: 100%;
	margin: 0.1rem 0;
	text-align: center;
	vertical-align: middle;	
}
.footer-con img{
	width: 100%;
	vertical-align: middle;	
}
.footer-con{
	margin-bottom: 0.2rem;
}
.footer-con li{
	float: left;
	width: 50%;
	color: #fff;
	padding: 0 0.1rem;
	box-sizing: border-box;
	font-size: 0.2rem;
	line-height: 0.4rem;
	margin-bottom: 0.4rem;
}
.kong{
	width: 100%;
	height: 0.98rem;
	background-color: #0289f4;
}
.footer-nav{
	position: fixed;
	z-index: 99999;
	width: 100%;height: 0.98rem;
	padding: 0.14rem 0 0.1rem;
	left: 0;bottom: 0;
	background-color: #0289f4;
	box-sizing: border-box;
}
.footer-nav li{
	float: left;
	width: 25%;
	box-sizing: border-box;
}
.footer-nav a{
	display: block;
	text-align: center;
}
.footer-nav span{
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
}
.footer-nav img{
	width: 100%;
	vertical-align: middle;
}
.footer-nav p{
	font-size: 0.24rem;
	color: #fff;
	text-align: center;
	line-height: 0.3rem;
	box-sizing: border-box;
}
.main-{
	/* main绝对定位，进行内部滚动 */
	position: absolute;
	/*top: 3.91rem;*/
	overflow-y: auto;
	bottom: 0;
	top: 0;
	left: 0;
	width: 100%;
	/* 使之可以滚动 */
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
#footer{
	position: absolute;
	bottom: 0;
	z-index: 99999;
}
/*footer-w*/
/*-------------------------component--完------------*/
 /*页头部分----完*/
/*-------------------------首页banner轮播图----------*/
.banner{
	width:100%;
	height: 3rem; 
	overflow:hidden ; 
	position:relative;
	}
.focus .bd ul li{
	height: 3rem;
	width: 100%;
}
.focus .hd{ 
	display: none;
	width:100%; 
	position:absolute; 
	z-index:2; 
	bottom:5px; 
	text-align:center; 
	margin:0 auto; 
}
.focus .hd ul li{
	width:0.16rem;
	height:0.16rem; 
	border-radius:50%; 
	float:left;
	text-indent: -9999px;
	display:inline-block;
	margin-right:0.1rem;  
	border:1px solid #46A1E5; 
	cursor:pointer;
	-moz-border-radius:50%; 
	-ms-border-radius:50%; 
	-o-border-radius:50%;
	-webkit-border-radius:50%;  
}
.focus .hd ul .on{ 
	background: #1A9CFF;
}
.focus .hd ul{ 
	margin-left:3.4rem;
}
/*banner图--完*/
/*首页内容*/
.index-intro h1{
	line-height: 2.1rem;
	text-align: center;
}
.index-intro h1 a{
	display: inline-block;
	width: 4.38rem;height: 1.36rem;
	text-align: center;
	vertical-align: middle;
}
.index-intro h1 img{
	width: 100%;
	vertical-align: middle;
}
.index-intro p{
	font-size: 0.2rem;
	color: #000;
	line-height: 0.5rem;
	max-height: 2.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
  	display: -webkit-box;
  	-webkit-line-clamp: 5;
  	-webkit-box-orient: vertical;
}
.index-intro>a{
	display: inline-block;
	color: #000;
	font-size: 0.2rem;
	line-height: 0.7rem;
} 
.index-video{
	margin: 0.2rem 0;
}
.index-com-title01{
	font-size: 0.32rem;
	color: #157abc;
	line-height: 0.6rem;
	text-align: center;
}
.index-com-title02{
	font-size: 0.22rem;
	color: #999;
	line-height: 0.2rem;
	text-align: center;
	margin-bottom: 0.2rem;
}
.index-video video{
	width: 100%;height: 4.5rem;
}
/*.index-course-show{
	width: 4.5rem;
	margin: 0.2rem auto; 
	text-align: center;
}*/
.swiper-container{
    width: 100%;
    height: 100%;
    margin: 0.2rem auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img{
		width: 4.5rem;height: 3.4rem;
}
.index-course-text{
		display: block;
		width: 100%;
		padding: 0 0.1rem;
		box-sizing: border-box;
}
.index-course-text h2{
	font-size: 0.26rem;
	color: #157abc;
	line-height: 0.6rem;
}
.index-course-text p{
	font-size: 0.18rem;
	color: #808080;
	line-height: 0.4rem;
}
/*广告*/
.index-adv{
	width: 100%;
	background-color: #46b3ff;
	padding: 0.2rem 0;
	position: relative;
	overflow: hidden;
}
.index-adv-box{
	width: 98%;
	margin: 0 auto;
	border: 1px solid #fff;
	background: rgba(255,255,255,.6);
	padding-left: 0.08rem;
}
.index-adv-box h3{
	font-size: 0.3rem;
	line-height: 0.6rem;
	color: #157abc;
}
.index-adv-box p{
	font-size: 0.2rem;
	line-height: 0.26rem;
	color: #4c4c4c;
}
.index-adv-box span{
	font-size: 0.2rem;
	line-height: 0.26rem;
	color: #157abc;
	display: inline-block;
	padding-left: 0.9rem;
	margin-bottom: 0.5rem;
}
.index-adv-box .adv-pic{
	width: 100%;
	position: absolute;
	left: -0.8rem;bottom: -0.5rem;
}
.adv-pic img{
	width: 100%;
}
/*广告-w*/
.index-news{
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
}
.news-tab-title li{
	float: left;
	width: 50%;
	box-sizing: border-box;
	background-color: #0289f4;
	font-size: 0.2rem;
	color: #fff;
	text-align: center;
	line-height: 0.5rem;
}
.news-tab-title li+li{
	border-left: 1px solid #fff;
}
.news-tab-list{
	margin: 0.1rem 0 0.3rem;
}
.news-tab-list .list-first{
	margin-bottom: 0.2rem;
}
.list-first div{
	float: left;
}
.list-first-pic{
	width: 33.33%;
}
.list-first-pic a{
	width: 2rem;
	height: 1.25rem;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}
.list-first-pic img{
	width: 100%;
	vertical-align: middle;
}
.list-first-text{
	width: 66.66%;
	box-sizing: border-box;
	padding-left: 0.1rem;
}
.list-first-text a{
	display: block;
}
.list-first-text h3 a{
	font-size: 0.24rem;
	color: #333;
	line-height: 0.3rem;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.list-first-text p a{
	font-size: 0.2rem;
	color: #666;
	width: 100%;
	line-height: 0.28rem;
	overflow: hidden;
	text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.list-first-text time,
.list-first-text>a{
	font-size: 0.18rem;
	color: #666;
	display: inline-block;
	margin-top: 0.2rem;
}
.news-list a{
	display: inline-block;
	width: 70%;
	font-size: 0.2rem;
	color: #333;
	line-height: 0.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis; 
	letter-spacing: 1px;
}
.news-list time{
	float: right;
	color: #666;
	line-height: 0.5rem;
}
.news-tab-list dd{
	
}
.index-news>a{
	font-size: 0.2rem;
	color: #157abc;
	line-height: 0.5rem;
}
.index-brand{
	margin-top: 1.1rem;
}
.index-brand li{
	float: left;
	width: 50%;
	margin-bottom: 1.2rem;
}
.index-brand-box{
	width: 3rem;
	margin: 0 auto;
	position: relative;
}
.index-brand-box a{
	width: 3rem;height: 4rem;
	position: relative;
	-webkit-border-radius: 0.12rem;
	-moz-border-radius: 0.12rem;
	border-radius: 0.12rem;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.index-brand-box img{
	width: 100%;
	vertical-align: middle;
}
.index-brand-text{
	position: absolute;
	-webkit-border-radius: 0.12rem;
	-moz-border-radius: 0.12rem;
	border-radius: 0.12rem;
	width: 100%;height: 100%;
	border: 2px solid #0289F4;
	box-sizing: border-box;
	padding: 0 0.1rem;
	top: 0;left: 0;
	background: rgba(0,0,0,.4);
	color: #fff;
}
.index-brand-text h3{
	font-size: 0.32rem;
	text-align: center;
	margin: 0.8rem 0 0.4rem;

}
.index-brand-text p{
	font-size: 0.24rem;
	line-height: 0.4rem;
	overflow: hidden;
	text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.index-brand-icon{
	display: block;
	position: absolute;
	width: 1.3rem;height: 1.3rem;
	text-align: center;
	vertical-align: middle;
	top: -0.6rem;
	left: 50%;margin-left: -0.65rem;
}
/*关于我们*/
.second-banner{
	width: 100%;
	height: 1.65rem;
	text-align: center;
	vertical-align: middle;
}
.second-banner img{
	width: 100%;
	vertical-align: middle;
}
.com-title1{
	width: 70%;height: 1.5rem;
	margin: 0.2rem auto;
	overflow: hidden;
}
.com-title1 li{
	float: left;
}
.title1-pic div{
	width: 2.2rem;height: 1.35rem;
	text-align: center;
	vertical-align: middle;
}
.title1-pic img{
	width: 100%;
	vertical-align: middle;
}
.title1-text p{
	font-size: 0.32rem;
	color: #333;
	line-height: 0.8rem;
}
.title1-text span{
	display: inline-block;
	font-size: 0.2rem;
	color: #666;
}
.about-btn{
	box-sizing: border-box;
}
.about-btn li{
	float: left;
	width: 33.33%;
	padding: 0 0.1rem;
	box-sizing: border-box;
}
.about-btn a{
	width: 100%;
	line-height: 0.28rem;
	font-size: 0.28rem;
	display: inline-block;
	padding: 0.2rem 0 0.2rem 0.2rem;
	box-sizing: border-box;
	color: #fff;
	background: #0289F4;
}
.com-icon2 span{
	display: inline-block;
	width: 0.28rem;height: 0.28rem;
	line-height: 0.28rem;
}
.com-icon2 span img{
	width: 100%;
	vertical-align: middle;
}
.breadcrumbs{
	border-bottom: 1px solid #ddd;
}
.breadcrumbs li{
	float: right;
	line-height: 0.5rem;
	margin-top: 0.2rem;
}
.breadcrumbs a{
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	color: #333;
	font-size: 0.2rem;
	padding: 0 0.1rem;
}
.breadcrumbs-icon{
	width: 0.3rem;
	height: 0.3rem;
	line-height: 0.3rem;
	text-align: center;
	vertical-align: middle;
}
.breadcrumbs-icon img{
	width: 100%;
	vertical-align: middle;
}
.breadcrumbs .current{
	color: #0289F4;
}
.com-title2{
	font-size: 0.26rem;
	color: #099aff;
	padding-left: 0.1rem;
	border-left: 3px solid #099AFF;
	margin: 0.4rem 0;
}
.com-title2 span{
	font-size: 0.24rem;
}
.com-title3{
	display: inline-block;
	margin: 0.2rem 0;
	width: 1.65rem;
	font-size: 0.24rem;
	color: #fff;
	line-height: 0.4rem;
	padding-left: 0.1rem;
	position: relative;
}
.com-title3 img{
	position: absolute;
	z-index: -1;
	left: 0;top: 0;
	width: 100%;
}
.about-pic01{
	width: 100%;
	height: 2.96rem;
	text-align: center;
	vertical-align: middle;
	margin: 0.1rem 0;
}
.about-pic01 img{
	width: 100%;
	vertical-align: middle;
}
.about-intro{
	margin: 0.2rem 0;
}
.about-intro p{
	font-size: 0.24rem;
	color: #333;
	line-height: 0.4rem;
}
/*---合作院校-----*/
.about-partner{
	margin: 0.2rem 0 0.4rem;
}
.about-partner li{
	float: left;
	width: 33.33%;
	text-align: center;
}
.about-partner div{
	width: 2.15rem;height: 2.7rem;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;
}
.about-partner img{
	width: 100%;
	vertical-align: middle;
}
.about-partner p{
	text-align: center;
	font-size: 0.2rem;
	color: #333;
	line-height: 0.6rem;
}
/*--资质荣誉---*/
.honor-box li{
	float: left;
	width: 50%;
	margin-bottom: 0.2rem;
}
.honor-pic{
	width: 3.2rem;height: 3.9rem;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;
}
.honor-pic img{
	width: 100%;
	vertical-align: middle;
}

.load-more{
	margin: 0.3rem 0;
	text-align: center;
}
.load-more a{
	display: inline-block;
	background: #099aff;
	font-size: 0.26rem;
	padding: 0.2rem 0.6rem;
	color: #fff;
}
.about-wrapper .tab-cont{
	display: none;
}

.about-wrapper .tab-show{
	display: block;
}

/*关于我们-w*/
/*新闻资讯*/
.news-btn{
	width: 4.4rem;
	margin: 0 auto;
}
.news-btn li{
	float: left;
	background: #0289F4;
	text-align: left;
	line-height: 0.6rem;
	font-size: 0.28rem;
	color: #fff;
	width: 2rem;
	margin: 0.2rem 0.1rem;
	box-sizing: border-box;
}
.news-btn a{
	padding-left: 0.2rem;
	display: block;
	color: #fff;
}
.news-list-box li{
	padding-bottom: 0.1rem;
	border-bottom: 1px dashed #0289F4;
}
.news-list-box h3{
	font-size: 0.26rem;
	color: #545454;
	line-height: 0.6rem;
	overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-list-box time{
	font-size: 0.2rem;
	color: #999;
	margin: 0.1rem 0;
}
.news-list-box time span{
	display: inline-block;
	width: 0.22rem;height: 0.22rem;
	text-align: center;
}
.news-list-box time span img{
	width: 100%;
	vertical-align: middle;
}
.news-list-box p{
	font-size: 0.24rem;
	color: #848484;
	line-height: 0.5rem;
	overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-content-box{
	margin-bottom: 0.6rem;
}
/*新闻资讯-w*/
/*新闻详情页*/
.news-detial h6{
	font-weight: normal;
	font-size: 0.2rem;
	color: #999;
	line-height: 0.3rem;
	text-align: center;
}
.news-detial time{
	
}
.news-detial time i,
.news-detial span i{
	display: inline-block;
	width: 0.3rem;height: 0.3rem;
	text-align: center;
	padding-right: 0.1rem;
}
.news-detial time i img,
.news-detial span i img{
	width: 100%;
	vertical-align: middle;
}
.news-detial span{
	margin-left: 0.2rem;
	padding-left: 0.38rem;
}
/*新闻详情页-w*/
/*师资团队*/
.contact-title li a{
  display: inline-block;
  padding: 0.2rem 0 0.2rem 0.2rem;
	font-size: 0.28rem;
	color: #fff;
	display: block;
	width: 2.14rem;
	margin: 0 auto;
	box-sizing: border-box;
	background: #0289F4;;
}
.team-power{
	font-size: 0.24rem;
	color: #545454;
	line-height: 0.4rem;
}
.team-show-box{
	padding-bottom: 0.5rem;
}
.team-show-box li{
	margin: 0.2rem 0 0.5rem;
}
.team-show-box div{
	float: left;
}
.team-show-pic{
	width: 2.6rem;height: 2.68rem;
	text-align: center;
	vertical-align: middle;
}
.team-show-pic img{
	width: 100%;
	vertical-align: middle;
}
.team-show-text{
	margin-left: 0.2rem;
	font-size: 0.2rem;
	color: #333;
}
.team-show-text p{
	line-height: 0.27rem;
	width: 4rem;
	word-wrap: break-word; 
}
.team-show-text h3{
	line-height: 0.3rem;
}
.team-show-text strong{
	font-size: 0.24rem;
	font-weight: normal;
}
/*师资团队-w*/
/*课程展示*/
.show-con-box li{
	float: left;
	width: 50%;
	margin: 0.15rem 0;
}
.show-con-box span{
	width: 3.3rem;height: 4.05rem;
	display: table-cell;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #333;
}
.show-con-box img{
	width: 100%;
	vertical-align: middle;
}
/*课程展示-w*/
/*在线报名*/
.sign-pic{
	width: 100%;
	text-align: center;
	vertical-align: middle;
	margin: 0.2rem 0;
}
.sign-pic img{
	width: 100%;
	vertical-align: middle;
}
.sing-form{
	text-align: center;
}
.sing-form div{
	font-size: 0.3rem;
	line-height: 0.5rem;
	margin: 0.15rem 0;
}
.sing-bar span{
	width: 20%;
}
.sing-bar input{
	width: 80%;
	border: 1px solid #666;
	font-size: 0.3rem;
	line-height: 0.5rem;
	padding-left: 0.2rem;
	color: #333;
}
.btn,.reset{
	text-align: center;
	display: inline-block;
	margin: 0.6rem 0.1rem 1.2rem;
	width: 1.6rem;
	line-height: 0.5rem;
	color: #fff;
	background: #099aff;
	border: 1px solid #099aff;
}
.sing-form .reset{
	color: #099aff;
	background: #fff;
}
.sing-form .gender-box{
	display: block;
	text-align: left;
	padding-left: 0.1rem;
}
.gender-box span,
.gender-box input{
	padding-right: 0.1rem;
}
/*在线报名-w*/
/*联系我们*/
.contact-box{
	margin: 0.3rem 0 1rem;
}
.contact-box li{
	float: left;
	width: 50%;
	height: 2.9rem;
	text-align: center;
	padding: 0 0.1rem;
	box-sizing: border-box;
}
.contact-box span{
	width: 0.6rem;height: 0.6rem;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	margin-top: 0.3rem;
}
.contact-box span img{
	width: 100%;
	vertical-align: middle;
}
.contact-box h4{
	text-align: center;
	font-size: 0.26rem;
	color: #333;
	line-height: 0.8rem;
}
.contact-box p{
	font-size: 0.24rem;
	color: #666;
	line-height: 0.3rem;
	text-align: center;
}
.contact-address{
	background: #f9e1e1;
}
.contact-qq{
	background: #ddf3f5;
}
.contact-email{
	background: #ebf3db;
}
.contact-phone{
	background: #bde7fc;
}
/*联系我们-w*/
/*课程体系*/
.course-content h3{
	font-size: 0.3rem;
	color: #333;
	line-height: 1.1rem;
	text-align: center;
}
.course-content h4{
	font-size: 0.26rem;
	color: #0289f4;
	line-height: 0.5rem;
}
.course-form{
	width: 100%;
	text-align: center;
	font-size: 0.2rem;
	color: #333;
	line-height: 0.5rem;
}
.course-tip{
	font-size: 0.2rem;
	color: #000;
	line-height: 0.34rem;
	margin:0.1rem 0 0.3rem;
}
/*课程体系-w*/

/*下拉刷新样式*/
.dropload-up,.dropload-down{
    position: relative;
    height: 0;
    overflow: hidden;
    font-size: 12px;
    /* 开启硬件加速 */
    -webkit-transform:translateZ(0);
    transform:translateZ(0);
}
.dropload-down{
    height: 50px;
}
.dropload-refresh,.dropload-update,.dropload-load,.dropload-noData{
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.dropload-load .loading{
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 6px;
    border: 2px solid #666;
    border-bottom-color: transparent;
    vertical-align: middle;
    -webkit-animation: rotate 0.75s linear infinite;
    animation: rotate 0.75s linear infinite;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

 /*名称和图片*/
.hlogo{margin:0 auto;}
.hlogo p{text-align:center;height:54px;line-height:54px;font-size:24px;}
.ccsl{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: block;}
.ec_imgs_consult img {
	width:70%;
	margin-top:-3px
}
.ec_imgs_consult {
	font-size:14px;
	line-height:24px;
	color:#666;
	padding:13px 0;
	text-align:center;
}