﻿@charset "utf-8";
/* CSS Document */

/*  banner  */
body{
	background: #fff;
}

.banner{
	position: relative;
	width: 100%;
	overflow: hidden;
	cursor: move;
}

.banner .video{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#background_video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.banner .swiper-container {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}

.banner .pagination {
    position: absolute;
    width: 100%;
    z-index: 20;
    left: 0;
    bottom: 6px;
    text-align: center;
}
.banner .swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #222;
  margin: 0 3px;
  opacity: 0.8;
  border: 1px solid #fff;
  cursor: pointer;
}
.banner .swiper-visible-switch {
  background: #aaa;
}
.banner .swiper-active-switch {
  background: #fff;
}

.banner .swiper-slide{
	position: relative;
	overflow: hidden;
}

.banner .swiper-slide a{
	position: relative;
	display: block;
}

.banner .imgBox{
	width: 100%;
	height: 768px;
	-webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner a.prev_btn,
.banner a.next_btn{
	position: absolute;
	z-index: 66;
	top: 50%;
	margin-top: -40px;
	width: 44px;
	height: 81px;
	opacity:0.2;
	filter:alpha(opacity=20);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.banner a.prev_btn:hover,
.banner a.next_btn:hover{
	opacity:0.5;
	filter:alpha(opacity=50);
}

.banner a.prev_btn{
	left: 6%;
	background: url(../img/common-img/banner-prev.png) no-repeat;
}

.banner a.next_btn{
	right: 6%;
	background: url(../img/common-img/banner-next.png) no-repeat;
}

.bottom_btn {
	position: absolute;
    bottom: 3%;
    left: 50%;
    width: 33px;
    height: 16px;
    background: url(../img/common-img/banner-btn.png) no-repeat center;
    margin-left: -16px;
    cursor: pointer;
    animation: nextBtn 3s ease-in-out infinite alternate;
    -webkit-animation: nextBtn 3s ease-in-out infinite alternate;
    -moz-animation: nextBtn 3s ease-in-out infinite alternate;
    -ms-animation: nextBtn 3s ease-in-out infinite alternate;
    -o-animation: nextBtn 3s ease-in-out infinite alternate;
    z-index: 99;
}

@keyframes nextBtn{
    0%{bottom:5%}
    50%{bottom:3%}
    100%{bottom:5%}
}
@-webkit-keyframes nextBtn{
    0%{bottom:5%}
    50%{bottom:3%}
    100%{bottom:5%}
}
@-o-keyframes nextBtn{
    0%{bottom:5%}
    50%{bottom:3%}
    100%{bottom:5%}
}
@-ms-keyframes nextBtn{
    0%{bottom:5%}
    50%{bottom:3%}
    100%{bottom:5%}
}
@-moz-keyframes nextBtn{
    0%{bottom:5%}
    50%{bottom:3%}
    100%{bottom:5%}
}

/*  业务范围     */
.index-business{
	padding-bottom: 50px;
	background: #f3f3f3;
}

.index-business .inner{
	position: relative;
}

.index-business .list{
	position: relative;
}

.index-business .list li{
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 25%;
	height: 360px;
}

.index-business .list li.item{
	background: #fff;
}

.index-business .list li.item3{
	background: #eceae5;
}

.index-business .list li.item4{
	background: #a69c8a;
}

.index-business .list li.item6{
	background: #9e937f;
}

.index-business .list li.item7{
	background: #a89d88;
}

.index-business .list li.item9{
	background: rgba(168,157,136,.9);
}

.index-business .list li.item10{
	background: transparent;
}

.index-business .list li.item2,
.index-business .list li.item5,
.index-business .list li.item6,
.index-business .list li.item10,
.index-business .list li.item5{
	display: none;
}

.index-business .list li.item-default{
	padding: 48px 44px 0 48px;
}

.index-business .list li.item-default .ico{
	display: block;
	margin-bottom: 32px;
}

.index-business .list li.item-default .title{
	position: relative;
	font-size: 28px;
	color: #000000;
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.index-business .list li.item-default .title::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 18px;
	border-bottom: 1px solid #1b1b1b;
}

.index-business .list li.item-default .desc{
	font-size: 12px;
	color: #1b1b1b;
	line-height: 20px;
	height: 40px;
	overflow: hidden;
}

.index-business .list li.list-header{
	padding-top: 78px;
	padding-left: 60px;
}

.index-business .list li.list-header .cn{
	font-size: 34px;
	color: #1e1e1e;
	margin-bottom: 30px;
}

.index-business .list li.list-header .en{
	position: relative;
	color: #1E1E1E;
	font-weight: bold;
	font-size: 36px;
	padding-bottom: 32px;
}

.index-business .list li.list-header .en::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	border-bottom: 1px solid #1e1e1e;
}

.index-business .list li.line::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 72%;
	border-top: 1px solid #1b1b1b;
	margin-left: -36%;
}

.index-business .bgImg{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80%;
	height: 66.66666%;
}

/* 描述   */
.index-describe .item{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 50%;
	height: 240px;
	padding: 0 54px;
}

.index-describe .item-header{
	padding-top: 60px;
}

.index-describe .item-header .cn{
	font-size: 34px;
	color: #1e1e1e;
	margin-bottom: 24px;
}

.index-describe .item-header .en{
	position: relative;
	font-size: 36px;
	color: #1E1E1E;
	font-weight: bold;
	padding-bottom: 32px;
}

.index-describe .item-header .en::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	border-bottom: 1px solid #1e1e1e;
}

.index-describe .item-body{
	background: rgb(168,157,136);
	padding-top: 44px;
}

.index-describe .item-body .text{
	font-size: 24px;
	color: #FFFFFF;
	line-height: 50px;
	font-weight: bold;
	margin-bottom: 24px;
}

.index-describe .item-body .btn{
	font-size: 16px;
	color: #ffffff;
}

.index-describe .item-body .btn:hover{
	text-decoration: underline;
}

/*  课程      */

.index-class{
	position: relative;
	padding: 0 50px;
}

.index-class .item{
	position: relative;
}

.index-class .item .img{
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
}

.index-class .item .text{
	float: right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	padding: 86px 50px 106px;
	line-height: 1.5;
}

.index-class .item .text .title{
	font-size: 24px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 6px;
}

.index-class .item .text .tip{
	font-size: 18px;
	color: #000000;
	margin-bottom: 16px;
}

.index-class .item .text .desc{
	font-size: 14px;
	color: #6d6d6d;
	line-height: 26px;
	margin-bottom: 40px;
}

.index-class .item .text .btn{
	display: inline-block;
	height: 44px;
	line-height: 44px;
	background: #f30000;
	padding: 0 40px;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	border-radius: 22px;
	font-size: 16px;
	color: #fff;
}

.index-class .prev_btn,
.index-class .next_btn{
	position: absolute;
	bottom: 0;
	width: 64px;
	height: 60px;
	text-align: center;
	z-index: 9;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.index-class .prev_btn i,
.index-class .next_btn i{
	display: block;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 40px;
	color: #fff;
}

.index-class .prev_btn{
	right: 50%;
	background: #9e937f;
}

.index-class .next_btn{
	left: 50%;
	background: #f30000;
}

.index-class .prev_btn:hover,
.index-class .next_btn:hover{
	background: #F30000;
	opacity: .8;
}


/*  学生      */

.index-student{
	padding: 0 50px 82px;
}

.index-student li{
	float: left;
	width: 25%;
}

.index-student li a{
	position: relative;
	display: block;
	overflow: hidden;
}

.index-student .img{
	padding-bottom: 70%;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	-webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	-ms-transform: scale(1.01);
	-o-transform: scale(1.01);
	transform: scale(1.01);
}

.index-student .text{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 14px;
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 0 20px;
	background: rgba(0,0,0,.6);
	color: #f5f5f5;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index-student li a:hover .img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/*  案例展示     */

.index-case{
	margin-bottom: 60px;
}

.index-case-header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 360px;
	height: 532px;
	background: #9e937f;
	padding: 126px 0 0 54px;
}

.index-case-header .cn{
	font-size: 34px;
	color: #1e1e1e;
	margin-bottom: 26px;
}

.index-case-header .en{
	position: relative;
	font-size: 36px;
	color: #1E1E1E;
	font-weight: bold;
	padding-bottom: 32px;
}

.index-case-header .en::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	border-top: 1px solid #1e1e1e;
}

.index-case-body{
	margin-left: 360px;
	overflow: hidden;
}

.index-case-body .item{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 50%;
	height: 532px;
	padding-left: 16px;
	overflow: hidden;
}

/*.index-case-body .item-inner{
	margin-left: 16px;
}*/

.index-case-body .item1-imgList a,
.index-case-body .item1-imgList a .img{
	display: block;
	height: 532px;
}

.index-case-body .item1 .item-inner{
	position: relative;
}

.index-case-body .item1-navList{
	position: absolute;
	bottom: 60px;
	right: 0;
	width: 222px;
	padding: 0 80px;
	background: #fff;
	z-index: 9;
}

.index-case-body .item1-navList .child-item{
	font-size: 14px;
	color: #333;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index-case-body .item1-navList .prev_btn,
.index-case-body .item1-navList .next_btn{
	position: absolute;
	top: 0;
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 24px;
	color: #333;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.index-case-body .item1-navList .prev_btn:hover,
.index-case-body .item1-navList .next_btn:hover{
	background: #E30000;
	color: #fff;
}

.index-case-body .item1-navList .prev_btn i,
.index-case-body .item1-navList .next_btn i{
	display: block;
	height: 60px;
	line-height: 60px;
	text-align: center;
}

.index-case-body .item1-navList .prev_btn{
	left: 0;
}

.index-case-body .item1-navList .next_btn{
	right: 0;
}

.index-case-body .item2{
	position: relative;
}

.index-case-body .item2 .child{
	margin-left: -16px;
}

.index-case-body .item2 ul{
	margin-top: -16px;
}

.index-case-body .item2 li{
	float: left;
	width: 50%;
	margin-top: 16px;
}

.index-case-body .item2 li a{
	position: relative;
	display: block;
	margin-left: 16px;
	overflow: hidden;
}

.index-case-body .item2 li a .img{
	height: 258px;
}

.index-case-body .item2 .text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(240,0,0,.8);
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	visibility: hidden;
}

.index-case-body .item2 .text .text-inner{
	position: absolute;
	top: 50%;
	right: 20px;
	left: 20px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	line-height: 36px;
}

.index-case-body .item2 a:hover .text{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}





/*  新闻     */

.index-news{
	position: relative;
	padding: 0 30px;
	margin-bottom: 54px;
}

.index-news-header{
	position: relative;
	padding: 28px 0;
	margin: 0 20px;
}

.index-news-header::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	border-top: 1px solid #666666;
}

.index-news-header .text{
	position: relative;
	float: left;
	background: #fff;
	padding-right: 4%;
}

.index-news-header .text .cn{
	font-size: 30px;
	color: #1e1e1e;
	margin-bottom: 16px;
}

.index-news-header .text .en{
	position: relative;
	font-size: 36px;
	color: #1e1e1e;
	font-weight: bold;
	padding-bottom: 24px;
}

.index-news-header .text .en::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	border-top: 1px solid #1e1e1e;
}

.index-news-body .owl-wrapper-outer{
	overflow: hidden;
}

.index-news-body a.item{
	display: block;
	margin: 0 20px;
}

.index-news-body a.item .img{
	padding-bottom: 69%;
}

.index-news-body a.item .text{
	padding: 16px 0;
}

.index-news-body a.item .text .title{
	font-size: 16px;
	color: #000000;
	margin-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.index-news-body a.item .text .desc{
	font-size: 12px;
	line-height: 20px;
	color: #666666;
	height: 40px;
	margin-bottom: 16px;
	overflow: hidden;
}

.index-news-body a.item .text .date{
	padding-top: 16px;
	color: #666666;
	font-size: 12px;
	border-top: 1px solid #666666;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.index-news-body a.item:hover .title{
	color: #F30000;
}

.index-news-body a.item:hover .date{
	border-color: #F30000;
}

.index-news .owl-theme .owl-controls{
	position: absolute;
	top: -100px;
    right: 20px;
	margin: 0;
	padding: 0;
	width: 72px;
	height: 36px;
	background: #fff;
	padding-left: 3%;
}

.index-news .owl-theme .owl-controls .owl-buttons div{
	position: absolute;
	top: 0;
	width: 36px;
	height: 36px;
	background: #fff;
	padding: 0;
	margin: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.index-news .owl-theme .owl-controls .owl-buttons div i{
	display: block;
	height: 36px;
	line-height: 36px;
	font-size: 40px;
	color: #1d1d1d;
	font-weight: bold;
}

.index-news .owl-theme .owl-controls .owl-buttons div.owl-prev{
	right: 36px;
}

.index-news .owl-theme .owl-controls .owl-buttons div.owl-next{
	right: 0;
}

/*  课程     */

.class .list{
	padding-bottom: 64px;
	overflow: hidden;
}

.class .list ul{
	margin-top: -1px;
}

.class .list li{
	border-top: 1px solid #b2b2b2;
}

.class .list li a{
	display: block;
	padding: 52px 0;
}

.class .list li a .img{
	float: left;
	width: 30%;
	overflow: hidden;
}

.class .list li a .img img{
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.class .list li a .text{
	padding-left: 30%;
}

.class .list li a .text-inner{
	padding-left: 20px;
}

.class .list .title{
	font-size: 24px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 16px;
	padding-top: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.class .list .synopsis{
	font-size: 18px;
	line-height: 22px;
	color: #333;
	margin-bottom: 10px;
	height: 44px;
	overflow: hidden;
}

.class .list .desc{
	font-size: 14px;
	color: #6D6D6D;
	line-height: 22px;
	height: 66px;
	overflow: hidden;
}

.class .list li a:hover .img img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.class .list li a:hover .text .title{
	color: #E32626;
}

.col-3 .list{
	padding: 64px 48px;
	background: #f5f5f5;
	overflow: hidden;
}

.col-3 ul{
	margin-left: -48px;
}

.col-3 li{
	float: left;
	width: 25%;
	margin-bottom: 48px;
}

.col-3 li a{
	display: block;
	margin-left: 48px;
	overflow: hidden;
}

.col-3 li .img{
	padding-bottom: 70%;
}

.col-3 li .text{
	padding: 24px 16px;
	background: #fff;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	color: #333333;
}

.col-3 li .text .title{
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.col-3 li a:hover .text{
	background: #E32626;
	color: #fff;
}

/*  about us  */

.aboutUs .inner{
	padding: 64px 0 72px;
}

.aboutUs .title{
	position: relative;
	font-size: 24px;
	line-height: 30px;
	color: #333333;
	padding-bottom: 36px;
	margin-bottom: 16px;
}

.aboutUs .title::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 120px;
	border-top: 1px solid #cecece;
}

.aboutUs .desc{
	font-size: 14px;
	line-height: 30px;
	color: #333333;
}

.aboutUs .desc p{
	margin-bottom: 12px;
}

/*  news detail  */
.news-detail{
	padding: 52px 0 56px;
	background: #f5f5f5;
}

.news-detail .title{
	font-size: 24px;
	color: #333333;
	line-height: 1.5;
	margin-bottom: 20px;
}

.news-detail .msg{
	margin-bottom: 44px;
}

.news-detail .msg span{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #a6a6a6;
	margin-right: 20px;
}

.news-detail .text{
	padding: 38px 40px;
	background: #fff;
	font-size: 14px;
	color: #333333;
	line-height: 30px;
}

.news-detail .text p{
	padding: 10px 0;
}

.news-detail .text img{
	display: block;
	margin: 10px auto;
}

/*  teacher detail  */
.teacher-detail{
	padding: 90px 0 96px;
}

.teacher-detail .img{
	float: left;
	width: 33.3%;
}

.teacher-detail .img img{
	display: block;
	width: 100%;
	height: auto;
}

.teacher-detail .text{
	padding-left: 33.3%;
}

.teacher-detail .text-inner{
	margin-left: 36px;
	background: #f3f4f8;
	padding: 46px 36px 64px;
}

.teacher-detail .text .title{
	margin-bottom: 20px;
}

.teacher-detail .text .title .name{
	font-size: 35px;
	color: #333333;
	font-weight: bold;
}

.teacher-detail .text .title .work{
	font-size: 14px;
	color: #333333;
}

.teacher-detail .text .desc{
	font-size: 14px;
	color: #333333;
	line-height: 30px;
}

/*  news  */
.news-hot{
	background: #9e937f;
	margin-top: 120px;
}

.news-hot .imgBox{
	position: relative;
	top: -60px;
	float: left;
	width: 50%;
}

.news-hot .imgBox .img{
	padding-bottom: 69%;
}

.news-hot .text{
	padding: 60px 0 92px 50%;
}

.news-hot .text .inner{
	padding: 0 8%;
}

.news-hot .text .title{
	font-size: 20px;
	color: #000;
	line-height: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-hot .text .title{
	margin-bottom: 14px;
}

.news-hot .text .desc{
	font-size: 14px;
	color: #635c4f;
	line-height: 24px;
	height: 72px;
	overflow: hidden;
	margin-bottom: 40px;
}

.news-hot .text .date{
	font-size: 14px;
	color: #635c4f;
	margin-bottom: 20px;
}

.news-hot .text .btn{
	font-size: 14px;
	color: #635c4f;
}

.news-hot .text .btn:hover{
	text-decoration: underline;
	color: #fff;
}

/*  news   */
.news{
	padding: 67px 0 190px;
	background: #f5f5f5;
}

.news .list{

}

.news .list ul{
	margin-left: -30px;
	margin-bottom: 60px;
}

.news .list li{
	float: left;
	width: 33.33333%;
}

.news .list li a{
	display: block;
	margin-left: 30px;
	padding: 40px 30px 44px;
	border-top: 4px solid transparent;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.news .list li a .imgBox{
	position: relative;
}

.news .list li a .img{
	padding-bottom: 69%;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.news .list li a .imgBox .text{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.news .list .imgBox .text .desc{
	font-size: 14px;
	line-height: 24px;
	color: #9e937f;
	height: 72px;
	margin-bottom: 24px;
	overflow: hidden;
}

.news .list .imgBox .text .ico{
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	background: url(../img/common-img/ico.png) no-repeat;
	width: 39px;
	height: 39px;
	margin-left: -18px;
}

.news .list .date{
	color: #9e937f;
	font-size: 36px;
	margin-bottom: 22px;
	font-weight: bold;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.news .list .date span{
	font-size: 14px;
	font-weight: normal;

}

.news .list .title{
	font-size: 18px;
	line-height: 30px;
	color: #333333;
	height: 60px;
	padding-bottom: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid #9e937f;
	overflow: hidden;
}

.news .list li a:hover{
	background: #fff;
	-webkit-box-shadow: 0 0 36px rgba(204,204,204,1);
	-moz-box-shadow: 0 0 36px rgba(204,204,204,1);
	box-shadow: 0 0 36px rgba(204,204,204,1);
	border-top-color: #E32626;
}
.news .list li a:hover .imgBox .text{
	opacity: 1;
}

.news .list li a:hover .date{
	color: #E32626;
}

/*  contact us  */
.content-box{
	padding: 56px 0 100px;
}

.small-header{
	line-height: 40px;
	text-align: center;
}

.small-header .cn{
	font-size: 24px;
	margin-bottom: 12px;
	color: #444;
}

.small-header .en{
	font-size: 18px;
	color: #b2b2b2;
}

.contact-inner{
	padding: 48px 0 40px;
}

.contact-inner .title{
	font-size: 22px;
	color: #6b6b6b;
	margin-bottom: 32px;
}

.contact-inner .contact-item{
	font-size: 16px;
	color: #999999;
	line-height: 32px;
	margin-bottom: 36px;
}

.contact-inner .contact-item ul{
	float: left;
	width: 33.33333%;
}

.contact-inner .contact-item ul li{
	padding-right: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.contact-inner .form{
	overflow: hidden;
	font-size: 16px;
}

.contact-inner .form .input{
	margin-left: -36px;
	margin-bottom: 50px;
}

.contact-inner .form .input .item{
	float: left;
	width: 33.33333%;
}

.contact-inner .form .input .item .inner{
	margin-left: 36px;
	border-bottom: 1px solid #dadada;
}

.contact-inner .form .input .item input{
	display: block;
	width: 100%;
	height: 58px;
}

.contact-inner .form .text{
	border-bottom: 1px solid #dadada;
	margin-bottom: 56px;
}

.contact-inner .form .text textarea{
	display: block;
	width: 100%;
	height: 144px;
	resize: none;
	line-height: 24px;
}

.contact-inner .form .submitBtn{
	display: block;
	width: 236px;
	height: 48px;
	text-align: center;
	font-size: 16px;
	color: #DADADA;
	border: 1px solid #c0c0c0;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.contact-inner .form .submitBtn:hover{
	border-color: #E60012;
	background: #E60012;
	color: #fff;
}

.contact-inner .contact-item ul.imgList li{
	display: inline-block;
}

.contact-inner .contact-item ul.imgList li img{
	display: block;
	width: 84px;
	height: 84px;
}

.contact-inner .contact-item ul.imgList li p{
	font-size: 14px;
	color: #888888;
	text-align: center;
}

.contact{
	position: relative;
	padding: 0 44px 0;
}

.contact .inner{
	position: relative;
}

.contact .msg{
	float: left;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #9e937f;
	padding: 56px;
	color: #fff;
}

.contact .msg dt{
	font-size: 24px;
	padding-left: 16px;
	line-height: 26px;
	height: 26px;
	border-left: 5px solid #fff;
	margin-bottom: 20px;
}

.contact .msg dd{
	padding: 16px 20px 16px 64px;
	font-size: 14px;
	line-height: 20px;
	background-position: left center;
	background-size: 48px 48px;
	background-repeat: no-repeat;
	border-bottom: 1px solid #fff;
	margin-bottom: 16px;
}

.contact .msg dd.item1{
	background-image: url(../img/common-img/dt1.png);
}

.contact .msg dd.item2{
	background-image: url(../img/common-img/dt2.png);
}

.contact .msg dd.item3{
	background-image: url(../img/common-img/dt3.png);
}

.contact .msg dd p{
	padding: 4px 0;
}

.contact .erweima{
	text-align: center;
}

.contact .erweima .item{
	display: inline-block;
	vertical-align: top;
	margin: 0 12px;
	padding: 20px 0 0;
}


.contact .erweima .item img{
	width: 96px;
	height: 96px;
}

.contact .erweima .item p{
	margin-top: 10px;
}

.contact .map{
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}

/*  jobs   */

.jobs{
	padding: 60px 0 100px;
}

.jobs li{
	margin-bottom: 26px;
}

.jobs li .item-header{
	padding: 0 26px;
	height: 54px;
	line-height: 54px;
	background: #f5f6fa;
	font-size: 20px;
	color: #333333;
	cursor: pointer;
}

.jobs li .item-header .ico{
	float: right;
	width: 26px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #9e937f;
	color: #fff;
	margin-top: 14px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.jobs li .item-body{
	display: none;
	padding: 30px 20px 48px;
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}

.jobs li .item-body dl{
	float: left;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 20px;
}

.jobs li .item-body .duty{
	margin-bottom: 40px;
}

.jobs li .item-body .btn{
	display: inline-block;
	padding: 4px;
	background: #9e937f;
	color: #fff;
}

.jobs li .item-body .btn span{
	display: inline-block;
	vertical-align: top;
	border: 1px solid #FFFFFF;
	height: 36px;
	line-height: 36px;
	padding: 0 12px;
	font-size: 14px;
}

.jobs li.active .item-header{
	background: #9e937f;
	color: #fff;
}

.jobs li.active .item-body{
	display: block;
}
.jobs li.active .item-header .ico{
	background: #fff;
	color: #9e937f;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}

/*  class-detail  */
.class-detail{
	background: #f3f4f8;
	padding: 44px 0;
}

.class-detail .msg{
	position: relative;
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 20px;
	margin-bottom: 36px;
}

.class-detail .msg .inner{
	position: relative;
}

.class-detail .msg .img{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
}

.class-detail .msg .text{
	float: right;
	width: 50%;
	padding: 30px 0 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.class-detail .msg .text .title{
	font-size: 24px;
	color: #333333;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 6px;
}

.class-detail .msg .text .desc{
	font-size: 14px;
	line-height: 24px;
	color: #737373;
	margin-bottom: 24px;
}

.class-detail .msg .text .time{
	padding: 16px 20px;
	background: #f3f4f8;
	font-size: 14px;
	line-height: 30px;
	color: #797a7c;
	margin-bottom: 30px;
}

.class-detail .msg .text .btn{
	display: inline-block;
	font-size: 18px;
	color: #FFFFFF;
	background: #e30000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 44px;
	line-height: 44px;
	padding: 0 36px;
}

.class-detail .tuijian{
	float: right;
	width: 320px;
	border: 1px solid #e5e5e6;
	background: #fff;
}

.class-detail .tuijian .title{
	padding: 0 20px;
	height: 44px;
	line-height: 44px;
	background: #f6f6f6;
	font-size: 14px;
	color: #333;
}

.class-detail .tuijian .list{
	padding: 24px;
}

.class-detail .tuijian .list li{
	margin-bottom: 20px;
	border-bottom: 1px dashed #cfcfcf;
}

.class-detail .tuijian .list .img{
	padding-bottom: 54.2%;
}

.class-detail .tuijian .list .biaoti{
	height: 48px;
	line-height: 48px;
	padding: 0 16px;
	font-size: 16px;
	color: #333333;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.class-detail .main-box{
	margin-right: 347px;
	border: 1px solid #e5e5e5;
	background: #fff;
}

.class-detail .main-box .title{
	position: relative;
	margin: 0 30px;
	border-bottom: 1px solid #e6e6e6;
}

.class-detail .main-box .title span{
	display: inline-block;
	vertical-align: top;
	height: 60px;
	line-height: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 4px solid #e30000;
	color: #e30000;
	font-size: 18px;
}

.class-detail .main-box .text{
	padding: 38px 30px;
	font-size: 14px;
	color: #333333;
	line-height: 30px;
}

.class-detail .main-box .text p{
	padding: 10px 0;
}

.class-detail .main-box .text img{
	display: block;
	margin: 10px auto;
}


.fullpage{
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0,0,0,.5);
	opacity: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.baoming-box{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 768px;
	background: #fff;
	padding: 32px 36px;
	-webkit-transform:;
	-webkit-transform: translate(-50%,-50%) scale(1.4);
	-moz-transform: translate(-50%,-50%) scale(1.4);
	-ms-transform: translate(-50%,-50%) scale(1.4);
	-o-transform: translate(-50%,-50%) scale(1.4);
	transform: translate(-50%,-50%) scale(1.4);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.baoming-box .box-title{
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #000;
	border-bottom: 1px solid #dddddd;
	margin-bottom: 28px;
}

.baoming-box .item{
	margin-bottom: 20px;
}

.baoming-box .item .title{
	font-size: 16px;
	color: #000;
	margin-bottom: 10px;
}

.baoming-box .item .title span{
	color: #E30000;
}

.baoming-box .item input[type=text]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	border: 1px solid #cccccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 36px;
	padding: 0 10px;
	font-size: 14px;
}

.baoming-box .btn{
	padding-top: 24px;
}

.baoming-box .btn input,
.baoming-box .btn a{
	display: inline-block;
	vertical-align: top;
	height: 40px;
	line-height: 40px;
	padding: 0 44px;
	margin-right: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

.baoming-box .btn input{
	background: #E30000;
}

.baoming-box .btn a{
	background: #9e937f;
}

.baoming-box .close{
	cursor: pointer;
	position: absolute;
	top: -12px;
	right: -12px;
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 23px;
	background: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 20px;
	color: #666;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.baoming-box .close:hover{
	background: #E30000;
	color: #fff;
}

.baomingActive{
	visibility: visible;
	opacity: 1;
}

.baomingActive .baoming-box{
	-webkit-transform: translate(-50%,-50%) scale(1);
	-moz-transform: translate(-50%,-50%) scale(1);
	-ms-transform: translate(-50%,-50%) scale(1);
	-o-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
}

/*  teacher  */
.teacher{
	padding: 44px 0 72px;
}

.teacher .list ul{
	margin-left: -40px;
	margin-bottom: 32px;
}

.teacher .list li{
	float: left;
	width: 25%;
	margin-bottom: 40px;
    -webkit-transition: 1s cubic-bezier(0.6, 0.2, 0.1, 1);
    -moz-transition: 1s cubic-bezier(0.6, 0.2, 0.1, 1);
    -ms-transition: 1s cubic-bezier(0.6, 0.2, 0.1, 1);
    -o-transition: 1s cubic-bezier(0.6, 0.2, 0.1, 1);
    transition: 1s cubic-bezier(0.6, 0.2, 0.1, 1);
  	-webkit-transform-origin: left center 0;
    -moz-transform-origin: left center 0;
    -ms-transform-origin: left center 0;
    -o-transform-origin: left center 0;
    transform-origin: left center 0;
}

.teacher .list li a{
	position: relative;
	display: block;
	margin-left: 40px;
	overflow: hidden;
}

.teacher .list li .img{
	padding-bottom: 137%;
}

.teacher .list li a .mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(170,133,65,0.6);
	-webkit-transform: rotateY(45deg);
	-moz-transform: rotateY(45deg);
	-ms-transform: rotateY(45deg);
	-o-transform: rotateY(45deg);
	transform: rotateY(45deg);
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: left center 0;
    -moz-transform-origin: left center 0;
    -ms-transform-origin: left center 0;
    -o-transform-origin: left center 0;
    transform-origin: left center 0;
}

.teacher .list li a .text{
	position: absolute;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	bottom: -100%;
	left: 0;
	width: 100%;
	color: #fff;
	font-size: 14px;
	padding: 16px 20px;
	line-height: 20px;
    -webkit-transition: 0.55s 0s;
    -moz-transition: 0.55s 0s;
    -ms-transition: 0.55s 0s;
    -o-transition: 0.55s 0s;
    transition: 0.55s 0s;
}

.teacher .list li a:hover .mask{
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
    visibility: visible;
}

.teacher .list li a:hover .text{
	bottom: 0;
}

.yewu{
	padding: 78px 0 120px;
}

.yewu .index-class .item{

}

.yewu .index-class .item2 .img{
	right: 0;
	left: initial;
}

.yewu .index-class .item2 .text{
	float: left;
}














































































































































































































































































































































































































































































































































