HTML,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td {
	border: none;
	font-family: -apple-system, Helvetica Neue, Helvetica, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}

html,
body {
	height: 100%;
	width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

a {
	text-decoration: none;
}

input::-ms-clear {
	display: none;
}

input::-ms-reveal {
	display: none;
}

input {
	-webkit-appearance: none;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="submit"],
input[type="button"] {
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

img {
	border: none;
}

ul,
ol,
li {
	list-style-type: none;
}

/*公共方法*/
.clear {
	clear: both;
}

.clearleft {
	clear: left;
}

.clearright {
	clear: right;
}

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.cursor {
	cursor: pointer;
}

/*背景及色值表*/
.bg000 {
	background: #000;
}

.color000 {
	color: #000;
}

@font-face {
	font-family: "iconfont";
	/* Project id 497016 */
	src: url("//at.alicdn.com/t/font_497016_i9kgoui8cyi.woff2?t=1640166336475") format("woff2"),
		url("//at.alicdn.com/t/font_497016_i9kgoui8cyi.woff?t=1640166336475") format("woff"),
		url("//at.alicdn.com/t/font_497016_i9kgoui8cyi.ttf?t=1640166336475") format("truetype");
}

/* 头部菜单 */
header {
	box-sizing: border-box;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 74px;
}

header .logo img {
	width: 248px;
	height: 82px;
}

header .menu {
	display: flex;
	justify-content: space-between;
}

header .menu div:hover {
	cursor: pointer;
	font-weight: bold;
}

header .menu>div {
	margin-left: 75px;
	color: #fff;
	font-size: 20px;
	position: relative;
	padding: 20px 0;
}

header .menu>div .iconfont {
	margin-left: 5px;
}

header .menu>div.active {
	font-weight: bold;
}

header .menu>div.active::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 22px;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
}

header .menu a {
	color: #fff;
}

header .menu .submenu {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 60px;
	width: 120px;
	font-size: 14px;
	color: #555555;
	background-color: #fff;
	border-radius: 6px;
	padding: 23px;
	box-sizing: border-box;
}

header .menu .submenu::after {
	position: absolute;
	content: '';
	left: 50%;
	top: -9px;
	transform: translateX(-50%);
	border-bottom: 9px solid #fff;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
}

header .menu .submenu>div {
	margin-bottom: 16px;
	font-weight: normal;
}

header .menu .submenu>div:last-child {
	margin-bottom: 0;
}

header .menu .submenu a {
	color: #555555;
}

header .menu .submenu>div.active a,
header .menu .submenu>div:hover a {
	color: #264271;
	font-weight: bold;
}

header.sticky {
	background-color: #ffffff;
	border-bottom: 1px solid #eee;
}

header .showFixed {
	display: none;
}

header.sticky .showFixed {
	display: block;
}

header.sticky .showNotFixed {
	display: none;
}

header.sticky .menu>div a {
	color: #264271;
}

header.sticky .iconfont {
	color: #264271;
}

header.sticky .submenu {
	border: 1px solid #eee;
}

header.sticky .menu .submenu::after {
	border-bottom: 9px solid #eee;
	z-index: 8;
}

header.sticky .menu .submenu::before {
	position: absolute;
	z-index: 9;
	content: '';
	left: 50%;
	top: -8px;
	transform: translateX(-50%);
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
}

footer {
	padding-top: 57px;
	background: url("../images/footer-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

footer .top {
	display: flex;
	justify-content: space-between;
}

footer .top .logo {
	width: 248px;
	height: 84px;
}

footer .top .col {
	display: flex;
	align-items: center;
	font-size: 24px;
	margin-bottom: 20px;
}

footer .top .col img {
	width: 20px;
	height: 20px;
	margin-right: 12px;
}

footer .bottom {
	margin-top: 80px;
	margin-bottom: 30px;
	display: flex;
}

footer .bottom .menu {
	flex: 1;
	display: flex;
	justify-content: space-between;
	margin-right: 100px;
}

footer .bottom .menu>div>div:first-child {
	margin-bottom: 18px;
	font-weight: bold;
	color: #ffffff;
}

footer .bottom .menu div {
	margin-bottom: 15px;
}

footer .bottom .menu div a {
	color: #abb3ba;
}

footer .bottom .menu div a:hover {
	color: #ffffff;
}

footer .bottom .qrcodes {
	width: 20%;
	display: flex;
	justify-content: space-between;
	text-align: center;
	color: #abb3ba;
}

footer .bottom .qrcodes img {
	width: 107px;
	height: 107px;
	margin-bottom: 15px;
	border: 3px solid #fff;
}

footer .copyright {
	font-size: 14px;
	text-align: center;
	color: #abb3ba;
	padding-top: 30px;
	padding-bottom: 26px;
	border-top: 1px solid #808b9c;
}

/* 公共样式 */
.width-1200 {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

.more {
	font-size: 16px;
}

.more a {
	color: #243d67;
	display: flex;
	align-items: center;
	justify-content: center;
}

.more a:hover {
	font-weight: bold;
}

.more img {
	display: block;
	width: 16px;
	height: 5px;
	margin-left: 7px;
}

.title {
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #313131;
	line-height: 48px;
	position: relative;
	margin-bottom: 70px;
}

.title::before {
	content: "";
	width: 42px;
	height: 7px;
	background: #243d67;
	border-radius: 4px;
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
}

a:hover {
	cursor: pointer;
}

.titlehasLine {
	margin: 47px auto 53px;
	text-align: left;
	color: #243d67;
	font-weight: bold;
	font-size: 42px;
	position: relative;
	padding-bottom: 28px;
}

.titlehasLine::before {
	position: absolute;
	content: "";
	width: 42px;
	height: 5px;
	background: #243d67;
	left: 0;
	bottom: 0;
	transform: unset;
}

.changePage {
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
}

.changePage a {
	color: #243d67;
	font-size: 18px;
}

.changePage a:hover {
	font-weight: bold;
}

/* 公共样式 */
.banner img {
	width: 100%;
	display: block;
}

.welcome {
	padding-top: 80px;
	padding-bottom: 100px;
}

.welcome .width-1200 {
	width: 1200px;
	margin: 0 auto 70px;
}

.welcome .title::after {
	content: "WELCOME HERE";
	z-index: -1;
	font-size: 130px;
	font-weight: bold;
	color: #eef4fb;
	line-height: 138px;
	opacity: 0.5;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}

.welcome .subtitle {
	font-size: 16px;
	color: #909090;
	width: 836px;
	margin: 0 auto;
	line-height: 24px;
	text-align: center;
}

.welcome .content {
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 150px;
}

.welcome .content img {
	display: block;
	width: 90px;
	height: 90px;
	margin: 0 auto;
}

.welcome .content img:hover {
	transform: rotateY(-360deg);
	transition: all 3s;
}

.welcome .content h3 {
	margin: 40px 0 30px;
	font-weight: bold;
	font-size: 24px;
	color: #264271;
}

.welcome .content p {
	font-size: 16px;
	line-height: 24px;
	color: #909090;
	width: 290px;
}

.teacher {
	padding: 110px 0 50px;
	background: url(../images/teacher-bg.png);
	background-size: cover;
}

.teacher .title {
	color: #fff;
}

.teacher .title::before {
	background-color: #fff;
}

.teacher .subtitle {
	width: 836px;
	color: #fff;
	line-height: 24px;
	opacity: 0.8;
	margin: 0 auto;
	text-align: center;
}

.teacher .swiper-container {
	padding-top: 130px;
	padding-bottom: 80px;
}

.teacher .swiper-slide {
	display: flex;

	/* justify-content: space-between; */
}

.teacher .teacher-block {
	position: relative;
	width: 30%;
	margin-right: 5%;
	border-radius: 0px 50px 10px 10px;
	background-color: #fff;
	color: #243d67;
}

.teacher .teacher-block:nth-child(3n) {
	margin-right: 0%;
}

.teacher .teacher-block:hover {
	background-color: #c2a27a;
	cursor: pointer;
}

.teacher .teacher-block:hover .text div,
.teacher .teacher-block:hover .top .english-name,
.teacher .teacher-block:hover .top .chinese-name {
	color: #fff;
}

.teacher .teacher-block .top {
	display: flex;
}

.teacher .teacher-block .top img {
	width: 208px;
	height: 250px;
	margin-top: -76px;
}

.teacher .teacher-block .top .english-name {
	font-size: 24px;
	font-weight: bold;
	margin: 60px 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 150px;
}

.teacher .teacher-block .top .chinese-name {
	font-size: 18px;
}

.teacher .teacher-block .text {
	padding: 20px 40px 113px 17px;
}

.teacher .teacher-block .text div {
	color: #909090;
	line-height: 29px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.teacher .teacher-block .enter {
	position: absolute;
	bottom: 50px;
	right: 40px;
	width: 30px;
	height: 9px;
}

.teacher .teacher-block .enter img {
	width: 100%;
}

.teacher .teacher-block .enter .more-white {
	display: none;
}

.teacher .more {
	margin-top: 80px;
}

.teacher .more a {
	color: #eef4fb;
}

.happen {
	padding-top: 80px;
	padding-bottom: 0px;
}

.happen .title::after {
	content: "WHAT HAPPENED";
	z-index: -1;
	font-size: 110px;
	font-weight: bold;
	color: #eef4fb;
	line-height: 138px;
	opacity: 0.5;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}

.happen .subtitle {
	width: 836px;
	color: #909090;
	line-height: 24px;
	opacity: 0.8;
	margin: 0 auto;
	text-align: center;
}

.happen .content {
	margin: 68px auto 0;
	display: flex;
	justify-content: space-between;
}

.happen .content>a {
	width: 48%;
	overflow: hidden;
}

.happen .content>a img {
	width: 100%;
	height: 375px;
	overflow: hidden;
}

.happen .content>a:hover img {
	transform: scale(1.2);
	transition: all 1s;
}

.happen .content>a:hover p {
	font-weight: 800;
}

.happen .content h3 {
	font-size: 24px;
	color: #313131;
	margin: 36px 0 27px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.happen .content p {
	font-size: 16px;
	color: #909090;
}

.happen .more {
	margin-top: 70px;
	color: #243d67;
}

.online {
	display: flex;
	justify-content: space-between;
	padding: 100px 0 50px;
}

.online .left div {
	color: #264271;
	font-size: 36px;
	font-weight: 800;
}

.online .left div.zh {
	font-weight: 400;
	display: flex;
	align-items: center;
}

.online .left div.zh img {
	width: 36px;
	height: 34px;
	margin-left: 14px;
}

.online .center input {
	margin-bottom: 36px;
	margin-right: 32px;
	padding-left: 20px;
	width: 256px;
	height: 55px;
	background: #f5f5f5;
	border-radius: 5px;
	border: 0;
}

.online .right {
	width: 174px;
	height: 146px;
	background: linear-gradient(0deg, #c2a27a, #d5b185);
	border-radius: 5px;
	color: #fff;
	position: relative;
	cursor: pointer;
}

.online .right div {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.online .right img {
	width: 41px;
	height: 41px;
}

/* 首页 */
/* 发展进程 */
.history .title {
	position: relative;
	font-weight: bold;
	color: #243d67;
	font-size: 42px;
	text-align: left;
	padding-left: 80px;
	padding-top: 48px;
	width: 246px;
}

.history .title::before {
	left: 80px;
	height: 5px;
	border-radius: 0;
	transform: unset;
}

.history .content {
	background: url(../images/history-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 130px;
	padding-bottom: 50px;
	overflow-x: scroll;
	display: flex;
}

.history .content>div {
	position: relative;
	width: 187px;
	height: 255px;
	margin-right: 124px;
}

.history .content>div:nth-child(odd) {
	margin-top: 150px;
}

.history .content img {
	width: 187px;
	height: 187px;
}

.history .content img:hover {
	transform: rotateY(-360deg);
	transition: all 3s;
}

.history .content .date {
	position: absolute;
	right: 0;
	bottom: 50px;
	width: 74px;
	height: 74px;
	background: #b59061;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.history .content p {
	margin-top: 40px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #252728;
}

.future .title {
	font-size: 30px;
	color: #264271;
	margin-bottom: 40px;
}

.future .title::before {
	display: none;
}

.future .text {
	text-align: center;
	font-weight: bold;
	font-size: 80px;
	color: #eef4fb;
	line-height: 138px;
	opacity: 0.5;
	padding-bottom: 173px;
	text-transform: uppercase;
}

/* 发展进程 */
/* 学校简介 */
.aboutus .aboutschool {
	padding-bottom: 67px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.aboutus .aboutschool .left .title {
	position: relative;
	font-weight: bold;
	color: #243d67;
	font-size: 42px;
	text-align: left;
	padding-top: 48px;
	margin-bottom: 55px;
	width: 246px;
	position: relative;
	font-weight: bold;
	color: #243d67;
	font-size: 42px;
	text-align: left;
	width: 246px;
}

.aboutus .aboutschool .left .title:before {
	left: 0px;
	height: 5px;
	border-radius: 0;
	transform: unset;
}

.aboutus .aboutschool .left .en-desc,
.aboutus .aboutschool .left .zh-desc {
	font-size: 18px;
	color: #243d67;
	line-height: 24px;
	width: 485px;
	margin-bottom: 36px;
}

.aboutus .aboutschool .left .zh-desc {
	margin-bottom: 60px;
}

.aboutus .aboutschool .left .counts {
	display: flex;
}

.aboutus .aboutschool .left .counts img {
	display: block;
	width: 226px;
	height: 226px;
	margin-right: 26px;
}

.aboutus .aboutschool .right {
	width: 614px;
	height: 400px;
	background-color: #c2a27a;
	margin-bottom: 42px;
}

.aboutus .aboutschool .right img {
	position: relative;
	width: 100%;
	height: 100%;
	left: -59px;
	bottom: -42px;
	transition: all 1s;
}

.aboutus .aboutschool .right img:hover {
	transform: scale(1.1);
	overflow: hidden;
}

.aboutus .content {
	background-color: #c2a27a;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 200px;
	padding: 50px 0 300px;
}

.aboutus .content p {
	padding-bottom: 40px;
}

.aboutus .content img {
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	transition: all 1s;
}

.aboutus .content img:hover {
	transform: scale(1.05);
}

/* 新闻详情 */
.news .content {
	padding: 50px 0;
}

.news .content .news-title {
	color: #243d67;
	font-size: 42px;
	text-align: center;
}

.news .content .news-info {
	color: #909090;
	font-size: 18px;
	padding: 30px 0 54px;
	text-align: center;
}

.news .content .text {
	font-size: 18px;
	color: #444;
}

.news .content .text img {
	max-width: 100%;
	display: block;
	margin: 44px 0 55px;
}

/* 新闻详情 */
/* 新闻列表 */
.news .news-list-content {
	padding-bottom: 200px;
}

.news .news-list-content .news-title {
	color: #243d67;
	font-size: 42px;
	font-weight: bold;
	position: relative;
	padding-bottom: 87px;
	padding-top: 48px;
}

.news .news-list-content .news-title::after {
	position: absolute;
	left: 0;
	bottom: 57px;
	content: "";
	width: 42px;
	height: 5px;
	background: #243d67;
}

.news .news-list-content .news-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news .news-list-content .news-block .block {
	margin-bottom: 44px;
	width: 48%;
}

.news .news-list-content .news-block .block:hover {
	cursor: pointer;
}

.news .news-list-content .news-block .block .block-img {
	position: relative;
	display: block;
	width: 580px;
	height: 375px;
	margin-bottom: 36px;
}

.news .news-list-content .news-block .block .block-img img {
	width: 100%;
	height: 100%;
}

.news .news-list-content .news-block .block .block-img .hover-block-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #264271;
	opacity: 0.8;
	display: none;
}

.news .news-list-content .news-block .block .block-img:hover .hover-block-img {
	display: block;
	transition: all 1s;
}

.news .news-list-content .news-block .block .block-title {
	color: #313131;
	font-size: 24px;
	margin-bottom: 27px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news .news-list-content .news-block .block .date {
	color: #909090;
	font-size: 16px;
}

.news .news-list-content .news-block .block .more {
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #fff;
	padding: 20px 40px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
}

.news .news-list-content .news-block .block .more img {
	width: 16px;
	height: 5px;
	margin-bottom: 0;
	display: block;
}

.paginant {
	display: flex;
	justify-content: center;
	margin: 80px auto 0;
}

.paginant div {
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 3px;
	background-color: #f2f2f3;
	margin-right: 10px;
}

.paginant a {
	color: #101010;
}

.paginant div.active {
	background-color: #c2a27a;
	color: #fff;
}

.paginant div:hover {
	background-color: #c2a27a;
	color: #fff;
	cursor: pointer;
}

.paginant div.iconfont:hover {
	color: #fff;
}

.paginant div.iconfont {
	color: #c2a27a;
}

.paginant div.iconfont.left {
	transform: rotateY(180deg);
}

.jianzhang {}

.jiannzhang .block1 {
	padding-top: 48px;
	padding-bottom: 109px;
}

.jiannzhang .block1 .block-title {
	color: #243d67;
	font-size: 42px;
	font-weight: bold;
	position: relative;
	padding-bottom: 87px;
}

.jiannzhang .block1 .block-title::after {
	position: absolute;
	left: 0;
	bottom: 57px;
	content: "";
	width: 42px;
	height: 5px;
	background: #243d67;
}

.jiannzhang .block1 .block-content {
	display: flex;
	justify-content: space-between;
}

.jiannzhang .block1 .block-content img {
	display: block;
	width: 100%;
}

.jiannzhang .block1 .block-content .top-content {
	width: 585px;
	height: 400px;
	position: relative;
}

.jiannzhang .block1 .block-content .top-content img {
	width: 100%;
	height: 100%;
	display: block;
}

.jiannzhang .block1 .block-content .bottom-content {
	width: 417px;
	height: 368px;
	position: relative;
	margin-top: -250px;
	left: 50%;
	transform: translateX(-50%);
}

.jiannzhang .block1 .block-content .bottom-content img {
	width: 100%;
	height: 100%;
	display: block;
}

.jiannzhang .block2 {
	background-image: url("../images/jianzhang05.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-bottom: 154px;
}

.jiannzhang .block2 img {
	width: 1090px;
	height: 703px;
	display: block;
	margin: 0 auto;
}

.jiannzhang .block2 .title {
	padding: 70px 0 55px;
	text-align: center;
	color: #ffffff;
	margin: 0;
}

.jiannzhang .block2 .title::before {
	display: none;
}

.jiannzhang .block3 {
	background-image: url("../images/jianzhang07.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 67px 0 117px;
}

.jiannzhang .block3 img {
	width: 1016px;
	height: 1268px;
	display: block;
	margin: 0 auto;
}

.jiannzhang .online {
	padding: 105px 0 100px;
}

/* 新闻列表 */
/* 在线咨询 */
.consult .title {
	margin: 47px auto 67px;
	text-align: left;
	color: #243d67;
}

.consult .title::before {
	left: 0;
	transform: unset;
}

.consult .content {
	background: url("../images/consult01.png");
	padding: 142px 0 151px;
}

.consult .online {
	background-color: #ffffff;
	display: block;
	margin: 0 auto;
	width: 846px;
	padding: 70px 130px;
	box-sizing: border-box;
}

.consult .online .left {
	margin-bottom: 70px;
}

.consult .online .center>div {
	display: flex;
	justify-content: space-between;
}

.consult .online .center input:nth-child(even) {
	margin-right: 0;
}

.consult .online .right {
	width: 100%;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.consult .online .right img {
	width: 30px;
	height: 30px;
	margin-right: 15px;
}

/* 在线咨询 */
/* 我要留言 */
.comments .content {
	background: url("../images/comments01.png");
	background-size: 100% 100%;
	padding-bottom: 165px;
}

.comments .text {
	padding-top: 131px;
}

.comments .text div {
	text-align: center;
	font-size: 48px;
	font-weight: bold;
	color: #b59061;
}

.comments .text .zh {
	font-weight: 400;
	margin: 21px 0 48px;
}

.comments .center {
	width: 864px;
	margin: 0 auto;
}

.comments .center .inputs {
	display: flex;
	justify-content: space-between;
}

.comments .center div input {
	width: 48%;
	height: 55px;
	line-height: 55px;
	border: 0;
	border-radius: 5px;
	padding-left: 20px;
	box-sizing: border-box;
	font-size: 16px;
}

.comments .center textarea {
	padding: 21px;
	margin-top: 45px;
	width: 100%;
	border-radius: 5px;
	border: 0;
	box-sizing: border-box;
	font-size: 16px;
}

.comments .center textarea:focus-visible {
	outline: 0;
}

::placeholder {
	color: #66717a;
	font-size: 16px;
}

.comments .submit {
	margin-top: 33px;
	background: #c2a27a;
	border-radius: 5px;
	line-height: 72px;
	color: #ffffff;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

.comments .submit:hover {
	background-color: #264271;
	transition: left 1s ease-in-out;
}

/* 我要留言 */
/* 联系我们 */
.contact .content {
	display: flex;
}

.contact .content>div {
	width: 50% !important;
	height: 833px;
}

.contact .content>div img {
	width: 100%;
	height: 100%;
}

.contact .content .left {
	color: #fff;
	position: relative;
}

.contact .content .left .text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.contact .content .left .text .zh {
	font-size: 50px;
	margin-bottom: 10px;
}

.contact .content .left .text .en {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.contact .content .left .col {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact .content .left .col img {
	width: 30px;
	height: 30px;
	margin-right: 12px;
}

.contact .content .left .qrcodes {
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.contact .content .left .qrcodes img {
	width: 111px;
	height: 111px;
	border: 3px solid #fff;
	margin-bottom: 5px;
}

/* 联系我们 */
/* 课程介绍 */
.learn .content {
	display: flex;
	justify-content: space-between;
	margin: 50px 0;
}

.learn .content .img {
	width: 614px;
	height: 400px;
	background: #c2a27a;
}

.learn .content .img img {
	width: 100%;
	height: 100%;
	position: relative;
	left: -30px;
	bottom: -30px;
	transition: all 1s;
}

.learn .content .img img:hover {
	transform: scale(1.1);
}

.learn .content .text {
	width: 488px;
}

.learn .content .text h3 {
	font-size: 20px;
	color: #264271;
	margin-bottom: 14px;
}

.learn .content .text h5 {
	font-size: 16px;
	color: #4f4e4e;
	margin-bottom: 45px;
}

.learn-times {
	background: url("../images/learn02.png");
	background-size: cover;
	padding: 110px 0 127px;
}

.learn-times .title {
	text-align: center;
	font-size: 40px;
	color: #fff;
}

.learn-times .title::before {
	display: none;
}

.learn-times img {
	width: 869px;
	/* height: 736px; */
	margin: 0 auto;
	display: block;
}

/* 课程介绍 */
/* 使命 */
.mission .title {
	text-align: left;
	color: #243d67;
	padding-bottom: 28px;
	margin: 47px auto 70px;
}

.mission .title::before {
	left: 0;
	transform: unset;
}

.mission .block {
	display: flex;
	margin-bottom: 91px;
}

.mission .block:nth-child(odd) {
	justify-content: flex-end;
}

.mission .block>div {
	width: 50%;
}

.mission .block>div img {
	width: 100%;
}

.mission .block>div img:hover {
	opacity: 0.7;
	transition: all 1s;
}

.mission .block>div.text {
	padding-left: 43px;
	padding-top: 30px;
}

.mission .block:nth-child(odd) .text {
	padding-right: 43px;
}

.mission .block>div.text h2 {
	color: #243d67;
	font-size: 30px;
	margin-bottom: 40px;
	font-weight: 400;
}

.mission .block .text {
	width: 600px;
}

.mission .block .text h5 {
	color: #243d67;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 400;
}

.mission .block .text h6 {
	color: #4f4e4e;
	font-size: 18px;
	margin-bottom: 50px;
	font-weight: 400;
}

/* 师资力量 */
.teacher-list {
	margin-bottom: 83px;
}

.teacher-list .title {
	text-align: left;
	color: #243d67;
	padding-bottom: 28px;
	margin: 47px auto 70px;
}

.teacher-list .title::before {
	left: 0;
	transform: unset;
}

.teacher-list .teacher-list-content {
	display: flex;
	/* justify-content: space-between; */
	flex-wrap: wrap;
}

.teacher-list .teacher-block {
	position: relative;
	width: 30%;
	margin-right: 5%;
	background-color: #f7f7f7;
	color: #243d67;
	margin-top: 70px;
}

.teacher-list .teacher-block:nth-child(3n) {
	margin-right: 0;
}

.teacher-list .teacher-block:hover {
	background-color: #c2a27a;
	cursor: pointer;
}

.teacher-list .teacher-block:hover .text div,
.teacher-list .teacher-block:hover .top .english-name,
.teacher-list .teacher-block:hover .top .chinese-name {
	color: #fff;
}

.teacher-list .teacher-block .top {
	display: flex;
}

.teacher-list .teacher-block .top img {
	width: 208px;
	height: 250px;
	margin-top: -76px;
}

.teacher-list .teacher-block .top .english-name {
	font-size: 24px;
	font-weight: bold;
	margin: 60px 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 150px;
}

.teacher-list .teacher-block .top .chinese-name {
	font-size: 18px;
}

.teacher-list .teacher-block .text {
	padding: 20px 40px 113px 17px;
}

.teacher-list .teacher-block .text div {
	color: #909090;
	line-height: 29px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.teacher-list .teacher-block .enter {
	position: absolute;
	bottom: 50px;
	right: 40px;
	width: 30px;
	height: 9px;
}

.teacher-list .teacher-block .enter img {
	width: 100%;
}

.teacher-list .teacher-block .enter .more-white {
	display: none;
}

.teacher-detail {
	padding-bottom: 90px;
}

.teacher-detail .title {
	text-align: left;
	color: #243d67;
	padding-bottom: 28px;
	margin: 47px auto 70px;
}

.teacher-detail .title::before {
	left: 0;
	transform: unset;
}

.teacher-detail .block {
	display: flex;
	justify-content: space-between;
	margin-bottom: 130px;
}

.teacher-detail .img {
	position: relative;
	width: 319px;
	height: 313px;
	margin-right: 126px;
}

.teacher-detail .img .teacher-detail-bg {
	width: 100%;
	height: 100%;
}

.teacher-detail .img .teacher-profil {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: auto;
	height: 323px;
}

.teacher-detail .info {
	flex: 1;
}

.teacher-detail .info .en-name {
	color: #243d67;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 15px;
}

.teacher-detail .info .zh-name {
	color: #243d67;
	font-size: 18px;
	margin-bottom: 30px;
}

/* 师资力量 */

/* 常见问题 */
.questions .title {
	text-align: left;
	color: #243d67;
	padding-bottom: 28px;
	margin: 47px auto 70px;
}

.questions .title::before {
	left: 0;
	transform: unset;
}

.questions .question {
	padding: 40px 20px 60px;
	background-color: #f9f9f9;
	border-radius: 0px 0px 0px 50px;
	margin-bottom: 30px;
	cursor: pointer;
}

.questions .question.open {
	background-color: #c2a27a;
	transition: all 1s;
}

.questions .question.open .question-title {
	color: #fff;
}

.questions .question.open .question-title .icon-jiantouxia {
	transform: rotateX(180deg);
}

.questions .question.open .question-content {
	color: #fff;
	line-height: 26px;
}

.questions .question.open .question-content.question-content-short {
	display: none;
}

.questions .question.open .question-content.question-content-long {
	display: block;
}

.questions .question-title {
	display: flex;
	justify-content: space-between;
	color: #222222;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
}

.questions .question-title .text {
	width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.questions .question-content {
	color: #555555;
	font-size: 16px;
}

.questions .question-content.question-content-long {
	display: none;
}

.questions .question-content.question-content-short {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* 常见问题 */

/* 动画 */
.slideInDown,
.slideInLeft,
.slideInTop,
.slideInRight {
	opacity: 1;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

/*the animation definition*/
@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

/*the animation definition*/
@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

/*the animation definition*/
@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

/* 动画 */
@media screen and (max-width: 1600px) {
	header .menu>div {
		margin-left: 40px;
	}
}

/* 分页 */
.in_page {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	text-align: center;
	padding-top: 40px;
}

.in_page a,
.in_page span {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin: 0 4px;
	border: 1px solid #111;
	color: #111;
	vertical-align: top;
	line-height: 32px;
	text-align: center;
	font-size: 14px;
}

.in_page a,
.in_page span {
	*display: inline;
	cursor: pointer;
}

.in_page a.cur,
.in_page a:hover.cur,
.in_page span.cur,
.in_page span:hover.cur {
	color: #fff;
	background-color: #111;
}

.in_page a:hover {
	color: #df482c;
}

.in_page a.pre {
	width: 72px;
}

.in_page a.next {
	width: 72px;
}

.in_page a:hover.pre {}

.in_page a:hover.next {}

.in_page a.null,
.in_page a:hover.null {
	border: 1px solid #eee;
	color: #eee;
}

.banner .swiper-slide,
.banner .swiper-slide img {
	height: 100vh !important;
}