@charset "utf-8";
/* CSS Document */
/* 
@名称: base 
@功能: 重设浏览器默认样式 
*/
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
	font: 14px 'Microsoft YaHei', SimSun, tahoma, arial, sans-serif;
}
i,
cite,
em,
var,
address,
dfn {
	font-style: normal;
}
input,
select,
textarea {
	font-size: 100%;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
	text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
	border: none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
	display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
	border: none;
	font-variant: normal;
}
/* 一致的 del 样式 */
del {
	text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 500;
}
.logo {
	width: 229px;
	height: 53px;
	float: left;
}
.logo a {
	background: url('../img/logo.png') no-repeat;
	width: 229px;
	height: 53px;
	display: block;
	text-indent: -999px;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
	list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
	text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 500;
}
q:before,
q:after {
	content: '';
}
/* 统一上标和下标 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
/*a:hover { 
text-decoration:underline; 
} */
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
	text-decoration: none;
}
/* IE6,7焦点点状线去除 */
a:focus,
*:focus {
	outline: none;
}
/* 清除浮动 */
.clearfix:before,
.clearfix:after {
	content: '';
	display: table;
}
.clearfix:after {
	clear: both;
	overflow: hidden;
}
.clearfix {
	zoom: 1; /* for IE6 IE7 */
}
.clear {
	clear: both;
	display: block;
	overflow: hidden;
}
/* 设置显示和隐藏, 通常用来与 JS 配合 */
.hide {
	display: none;
}
.block {
	display: block !important;
}
/* 设置内联, 减少浮动带来的bug */
.fl {
	float: left;
	display: inline;
}
.fr {
	float: right;
	display: inline;
}

.w1140 {
	width: 1140px;
	margin: 0 auto;
}
.mt30 {
	margin-top: 30px;
}
/**header**/
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 135px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 16px;
	z-index: 9999;
}
header.opta {
	background: #ffffff;
	border-bottom: 1px solid #efefef;
}
header.opta a {
	color: #6d6d6d;
}
header.opta .nav li .subnav li a {
	color: #ffffff;
}
header a {
	color: #ffffff;
}
.head {
	margin-top: 61px;
}
.logo {
	float: left;
}
.nav {
	float: right;
}
.nav li {
	display: inline-block;
	float: left;
	line-height: 42px;
	margin: 0 20px;
	position: relative;
	padding: 0 5px;
}
.nav li a {
	display: block;
}
.nav li:hover,
.nav li.active {
	border-bottom: 3px solid #f4c143;
	cursor: pointer;
}
.nav li:hover,
.nav li.active a {
	color: #f4c143;
	font-weight: bold;
}
.nav li a:hover {
	color: #f4c143;
}

.nav li .subnav {
	display: none;
	position: absolute;

	width: 180px;
	top: -2px;
	left: -22px;
}
.nav li:last-child {
	border: 2px solid #f4c143;
	border-radius: 45px;
	padding: 0px 25px;
	margin-right: 0;
}
.nav li:last-child a {
	color: #f4c143;
	font-weight: bold;
}

.subnav-list {
	margin-top: 78px;
	background: #f4c143;
	padding: 15px 0;
}
.nav li .subnav li {
	display: block;
	margin: 0 10px;
	padding: 5px 17px;
	border-bottom: 1px solid #edaa61;

	float: none;
}
.nav li .subnav li:last-child {
	border-bottom: 0;
}
.nav li:hover .subnav {
	display: block;
}
.nav li .subnav li a:hover {
	color: #ffffff;
	padding-left: 15px;
	background: url(../img/right.png) no-repeat scroll 0 center;
}

/**footer**/
footer {
	overflow: hidden;
	padding: 10px 0;
	background: #222222;
}
footer dl {
	display: inline-block;
	float: left;
	color: #9d9d9d;
	font-size: 16px;
	margin-left: 110px;
}
footer dt {
	background: url(../img/line3.png) no-repeat scroll left bottom;
	margin-bottom: 20px;
	height: 45px;
	padding-bottom: 10px;
	font-weight: bold;
	line-height: 45px;
}
footer .ewm {
	display: inline-block;
	float: right;
	position: relative;
	padding: 15px;
	border: 1px solid #686868;
	margin-left: 15px;
	margin-right: 30px;
}
footer .ewm span {
	position: absolute;
	display: block;
	width: 15px;
	background: #222222;
	line-height: 20px;
	right: -10px;
	top: 5px;
}
footer .text2 {
	overflow: hidden;

	line-height: 26px;
}
.dl1 {
	width: 54%;
	margin-right: 1%;
}
.dl2 {
	width: 22%;
	margin-right: 1%;
}
.dl2 dd {
	border-bottom: 1px solid #464646;
	line-height: 40px;
	background: url(../img/link.png) no-repeat scroll left center;
	padding-left: 25px;
}
.dl2 dd:last-child {
	border-bottom: 0;
}
.dl2 dd a {
	color: #9d9d9d;
}
.dl2 dd a:hover {
	color: #ff8b0d;
}
.dl3 {
	width: 22%;
}
.dl3 dd {
	line-height: 40px;
	overflow: hidden;
	margin-bottom: 10px;
	color: #686868;
}
.c-icon1,
.c-icon2,
.c-icon3 {
	display: inline-block;
	width: 28px;
	height: 28px;
	float: left;
	background: url(../img/contact-icon.png) no-repeat scroll 0 0;
	position: relative;
	top: 8px;
	margin-right: 5px;
}
.c-icon2 {
	background-position: 0 -40px;
}
.c-icon3 {
	background-position: 0 -80px;
}

.mb50 {
	margin-bottom: 50px;
}
.plr15 {
	padding: 0 15px;
}
.plr45 {
	padding: 0 45px;
}

.school-list {
	padding-bottom: 70px;
}
.school-list .team {
	margin: 0;
	position: relative;
}
.school-list .team a {
	display: block;
}
.school-list .hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/look.png) no-repeat scroll center
		rgba(237, 124, 0, 0.75);
}
.school-list .team a:hover .hover {
	display: block;
}

.slick-dots {
	position: absolute;
	bottom: 45px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	width: 100%;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	height: 5px;
	width: 30px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
	background: #bbbbbb;
}
.slick-dots li button {
	border: 0;
	background: 0 0;
	display: block;
	height: 5px;
	width: 30px;
	outline: 0;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
	outline: 0;
}
.slick-dots li.slick-active button:before {
	opacity: 0.75;
}
.slick-dots li.slick-active {
	background: #ed7c00;
}
.nav li .subnav li:last-child a {
	color: #ffffff;
}
