* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a, a:hover {
	text-decoration: c;
}
a:focus, a:hover {
	color: #000000;
	text-decoration: none;
}
ul, li {
	list-style: none;
}
h1 {
	padding: 0;
	margin: 0;
}
body {
	font-family: Arial, sans-serif;
	line-height: 1.4;
	color: #333;
	background-color: #fff;
	font-size: 16px;
}
header {
	background: url(../images/top-bg.jpg) repeat-x;
	min-height: 130px!important;
	background-size: cover;
}
.top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 130px;
}
.xinxi {
	margin-bottom: 10px;
	text-align: center;
	font-size: 14px;
}
.xinxi, .xinxi a {
	color: #ffffff;
}
.logo img {
	height: 95px;
}
.top-right {
}
.main {
	width: 1200px;
	margin: 0 auto;
}
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(128, 128, 128, 0.5); /* 半透明背景 */
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.search-box {
	width: 400px;
	height: 300px;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.search-box h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
.search-box input[type="text"] {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	margin-bottom: 20px;
	background: #ededed;
}
.search-btn {
	padding: 10px 0px;
	background-color: #4d9377;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	color: #333;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.search-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 40px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.5); /* 半透明背景 */
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	position: relative;
}
a.search-link:hover {
	color: #4e9178 !important;
}
.search-link i {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/search-icon.png);
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 20px;
	margin-right: 5px;
	transform: translateY(-50%);
}
.banner {
	position: relative;
}
.index-nav {
	position: absolute;
	width: 100%;
	height: 50px;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 999;
}
nav {
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav > ul > li {
	display: inline-block;
	position: relative;
}
nav > ul > li > a {
	display: block;
	width: 115px;
	text-align: center;
	font-size: 16px;
	color: #4d9377;
	text-decoration: none;
	line-height: 50px;
	transition: transform 0.5s;
}
nav > ul > li > a:hover {
	transform: translateY(-3px);
}
nav > ul > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 115px;
	text-align: center;
	background-color: rgba(0, 150, 100, 0.5);
}
nav > ul > li:hover > ul {
	display: block;
	transition: opacity 0.5s;
}
nav > ul > li > ul > li {
	display: block;
}
nav > ul > li > ul > li > a {
	display: block;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
nav > ul > li > ul > li:hover > a {
	color: #ffffff;
	background-color: rgba(0, 150, 100, 0.6);
}
.kecheng {
	background: url(../images/bg2.jpg) no-repeat;
	padding: 20px 0;
}
.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.grid-item {
	display: flex;
	align-items: center;
	transition: transform 0.5s;
}
.grid-item:hover {
	transform: translateY(-10px);
}
.grid-item img {
	display: block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.grid-item h2 {
	margin: 20px 0 0 0;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
	color: #ffffff;
}
.grid-item p {
	margin-left: -10%;
	padding: 0;
	font-size: 10px;
	transform: scale(0.8);
	color: #ffffff;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {
.grid-item {
	flex-basis: calc(33.33% - 20px);
}
}

@media screen and (max-width: 480px) {
.grid-item {
	flex-basis: calc(50% - 20px);
}
}
.index-box {
	background: url(../images/index-bg.jpg) no-repeat;
	min-height: 1000px;
	background-size: 100% auto;
}
.news-box {
	padding: 30px 0 0 0;
	display: flex;
	justify-content: space-between;
}
.lumbo {
	width: 545px;
}
.index-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	line-height: 50px;
	margin-bottom: 10px;
}
.index-title>div {
	display: flex;
	align-items: center;
}
.index-title img {
	height: 30px;
	margin-right: 10px;
}
.index-title h1 {
	font-size: 24px;
	font-weight: bold;
	color: #268084;
	margin: 0;
	padding: 0;
}
.index-title a {
	color: #666666;
}
.index-title a:hover {
	color: #268084
}
.carousel-container {
	position: relative;
	width: 545px;
	height: 300px;
}
.carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.carousel-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s;
}
.carousel-img a{ display: block;}
.carousel-img img{
	
	width: 100%;
	min-height: 100%;
	display: block;
}
.carousel-img.active {
	opacity: 1;
}
.carousel-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-indent: 20px;
	line-height: 50px;
	overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
	padding-right: 80px;
	
}
.carousel-dots-container {
	position: absolute;
	bottom: 20px;
	right: 10px;
	width: auto;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.carousel-dot {
	width: 10px;
	height: 10px;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}
.carousel-dot.active {
	background-color: #1e9b77;
}
.hidden-t {
	display: none;
}
.scrolldoorFrame {
	width: 610px;
	margin: 0px auto;
	overflow: hidden;
}
.scrollUl {
	width: 600px;
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	display: flex;
	justify-content: flex-end;
}
.scrollUl li {
	margin-left: 30px;
	text-align: right;
}
.sd01 {
	cursor: pointer;
	color: #1e9b77;
	font-weight: bold;
}
.sd02 {
	cursor: pointer;
	border: 0px solid #CCC;
}
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.news-list>a{
	display: block;
	padding-bottom: 5px;
	border-bottom: 1px solid #ededed;
	margin-bottom: 5px;
}
.news-item {
	display: flex;
	align-items: center;
	line-height: 36px;
}
.news-item-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	display: flex;
	align-items: center;
	line-height: 28px;
}
.news-item-intro {
	margin-left: 10px;
	font-size: 14px;
	color: #666;
	
	
	margin-bottom: 10px;
	width: 100%;
	overflow: hidden;
	text-overflow:ellipsis; 
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
	
}

.news-item-dot {
	width: 4px;
	height: 4px;
	background-color: #333333;
	border-radius: 0;
	margin-right: 10px;
}
.news-item-text {
	flex: 1;
	font-size: 16px;
	color: #333;
	width: 500px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-item-time {
	font-size: 14px;
	color: #666;
}
.news-list a:hover .news-item-title {
	color: #099469;
}
a.news-item:hover>.news-item-text {
	color: #099469;
}
.news {
	width: 580px;
}
.news-top {
	margin: 10px 0 20px 0;
	display: block;
}
.ad {
	margin-top: 30px;
}
.picture {
	margin-top: 30px;
}
.image-list-container {
	position: relative;
	width: 1200px;
	height: 300px;
	margin: 0 auto;
	overflow: hidden;
}
.image-list-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
	cursor: pointer;
	z-index: 1;
}
.image-list-arrow-left {
	left: 10px;
	transform: rotate(180deg);
}
.image-list-arrow-right {
	right: 10px;
}
.image-list {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 2400px;
	height: 100%;
	transition: left 0.5s;
}
.image-list-item {
	flex: 1;
	width: 260px;
	padding: 10px;
	margin: 10px;
	background: rgba(0, 0, 0, 0.1);
}
.image-list-item img {
	width: 260px;
	height: 203px;
	display: block;
}
.image-list-item-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 38px;
}
.image-list-item-desc {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	padding: 0 5px;
}
.tupian {
	margin-top: 30px;
}
.tupian-index {
	display: flex;
	justify-content: space-between;
}
.tupian-left {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 590px;
}
.tupian-img {
	width: 285px;
	position: relative;
	margin-bottom: 20px;
	height: 173px;
	overflow: hidden;
	text-align: center;
	align-self: center;
}

.tupian-img img {
	width: 100%;
	min-height: 173px;
}
.tupian-title {
	position: absolute;
	width: 100%;
	height: 36px;
	line-height: 36px;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	padding: 0 10%;
}
.video-popup {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.video-popup-overlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.video-popup-container {
	position: relative;
	z-index: 9999;
	margin: auto;
	width: 80%;
	max-width: 800px;
	top: 20%;
}
.video-popup-content {
	display: block;
	width: 840px;
	height: 467px;
}
.video-popup-close {
	position: absolute;
	top: -40px;
	right: -40px;
	font-size: 3rem;
	font-weight: bold;
	color: #fff;
	padding: 0.5rem 1rem;
	cursor: pointer;
}
.video-popup-close:hover {
	color: #ccc;
}
 .video-popup-container::-webkit-scrollbar {
 width: 10px;
}
 .video-popup-container::-webkit-scrollbar-thumb {
 background-color: rgba(255, 255, 255, 0.5);
 border-radius: 10px;
}
 .video-popup-container::-webkit-scrollbar-track {
 background-color: transparent;
}
.friendlink {
	height: 60px;
	width: 100%;
	background: url(../images/top-bg.jpg) no-repeat;
	background-size: cover;
}
.friendlink>.main {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 60px;
}
.friendlink select {
	width: 300px;
	height: 36px;
	padding: 0 20px;
	border: none;
	appearance: none;
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('../images/san.png'); /* 设置自定义图标 */
	background-repeat: no-repeat; /* 不重复显示图标 */
	background-position: 280px center; /* 将图标放置在右侧中心位置 */
	background-size: 12px 12px; /* 设置图标大小 */
}
.footer {
	background: #333333;
}
.footer>.main {
	display: flex;
	justify-content: space-between;
	padding: 60px 0 0 0;
}
.foot-ewm {
	width: 140px;
}
.foot-ewm img {
	display: block;
}
.foot-ewm span {
	display: block;
	text-align: center;
	color: #ffffff;
	line-height: 36px;
	font-size: 14px;
}
.foot-nav {
	display: flex;
	justify-content: space-between;
	color: #ffffff;
	width: 550px;
}
.foot-nav dt {
	margin-bottom: 10px;
}
.foot-nav a {
	font-size: 14px;
	color: #bcbcbc;
	line-height: 26px;
}
.foot-nav a:hover {
	color: #ffffff;
}
.foot-content {
	width: 340px;
	color: #ffffff;
}
.foot-content dt {
	margin-bottom: 10px;
}
.foot-content dd {
	font-size: 14px;
	margin-bottom: 5px;
}
.copyright {
	background: #333333;
	text-align: center;
	line-height: 50px;
	border-top: solid 1px #4d4d4d;
	color: #ffffff;
	font-size: 14px;
}
.copyright a {
	color: #ffffff;
}
#four_flash {
	position: relative;
	width: 1200px;
	height: 300px;
}
#four_flash .flashBg {
	width: 1200px;
	height: 300px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#four_flash .flashBg ul.mobile {
	width: 2000%;
	height: 300px;
	position: absolute;
	top: 15;
	left: -20px;
}
#four_flash .flashBg ul.mobile li {
	float: left;
	width: 280px;
	height: 300px;
	margin-left: 20px;
	color: #6C6E85;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 10px;
}
#four_flash .flashBg ul.mobile li:hover {
	background-color: rgba(0, 0, 0, 0.2);
}
#four_flash .flashBg ul.mobile li img {
	width: 100%;
	min-height: 203px;
	display: block;
}
#four_flash .flashBg ul.mobile li dd {
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	line-height: 40px;
}
#four_flash .flashBg ul.mobile li p {
	font-size: 14px;
	justify-content: space-between;
	display: flex;
	width: 100%;
	line-height: 24px;
}
#four_flash .flashBg ul.mobile li a {
	color: #555555;
}
#four_flash .flashBg ul.mobile li a:hover {
}

#four_flash .flashBg ul.mobile li a .pic-ss
{ width: 260px;
height: 203px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden}


#four_flash .but_left {
	width: 25px;
	height: 50px;
	position: absolute;
	top: 136px;
	left: -50px;
}
#four_flash .but_left img {
	width: 25px;
	height: 50px;
}
#four_flash .but_right {
	width: 25px;
	height: 50px;
	position: absolute;
	top: 136px;
	right: -50px;
}
#four_flash .but_right img {
	width: 25px;
	height: 50px;
}
#four_flash .but_left:hover {
	background: url(../images/qianxleft1.png) no-repeat;
	background-size: 25px 50px;
}
#four_flash .but_right:hover {
	background: url(../images/qianxr1.png) no-repeat;
	background-size: 25px 50px;
}
.n-bg {
	background: url(../images/page-bg.jpg) repeat-y;
	background-size: 100% auto;
}
.n-banner {
	width: 100%;
	height: 240px;
	background-size: 240px 100%;
	margin-top: 50px;
}
.n-banner>.main {
	margin: 0 auto;
	text-align: right;
	color: #ffffff;
	padding-top: 60px;
}
.page-box {
	min-height: 600px;
	margin-bottom: 20px;
}
.page-box>.main {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}
.left-nav {
	width: 200px;
	min-height: 400px;
	background: #5ab08f url(../images/leftnav-bg.jpg) no-repeat;
	padding-bottom: 100px;
	background-position: bottom;
	background-size: 100% auto;
	text-align: center;
	box-shadow: 0px 3px 5px #999999;
}
.left-title {
	line-height: 60px;
	padding-top: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
}
.left-list {
	padding: 10px 20px;
}
.left-list li a {
	display: block;
	color: #ffffff;
	border-bottom: solid 1px #7bc9ab;
	line-height: 40px;
	font-size: 14px;
}
.left-list li a i {
	margin-right: 10px;
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid #fff;
}
.left-list li a:hover, .left-list li a.active {
	color: #f2d982
}
.page-right {
	width: 980px;
}
.breadcrumbs {
	margin: 0;
	line-height: 50px;
}
.breadcrumbs li {
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;
}
.breadcrumbs li:last-child {
	font-weight: bold;
}
.breadcrumbs a {
	color: #333;
	text-decoration: none;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.right-title {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e1e1e1;
	font-size: 14px;
}
.right-title h1 {
	font-size: 18px;
	margin: 0;
	padding: 0;
	line-height: 50px;
	color: #009b68;
	font-weight: bold;
}
.content-generality {
	line-height: 220%;
	margin-bottom: 20px;
}
.content-generality p, .content-generality div {
	margin-top: 20px;
}
.content-generality img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.page-title {
	font-size: 24px;
	text-align: center;
	margin: 40px 0 0 0 !important;
	font-weight: bold;
}
.page-xinxi {
	text-align: center;
	color: #999999;
	font-weight: 14px;
	margin-top: 0 !important;
}
.page-news {
	margin-top: 20px;
}
.page-news .news-item {
	line-height: 60px;
	border-bottom: dashed 1px #e1e1e1;
}
.pagination {
	margin-top: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
}
.pagination a {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 5px;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	text-decoration: none;
	font-size: 14px;
}
.pagination a:hover {
	background-color: #ffffff;
}
.pagination .active {
	background-color: #5ab08f;
	color: #fff;
	border-color: #5ab08f;
	cursor: default;
}
.pagination .active:hover{
	background-color: #5ab08f;
	color: #fff;
	
}
.page-image-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.page-image-item {
	width: 33.3333%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #555555;
}
.page-image-item:hover {
	color: #5ab08f
}
.page-image-item:hover img {
	transform: scale(1.1);
}
.page-image-img {
	width: 100%;
	height: 240px;
	overflow: hidden;
	display: flex;
	align-self: center;
	justify-content: center;
	background: #ffffff;
}
.page-image-img img {
	display: block;
	width: auto !important;
	height: 100%;
	transition: transform 0.3s ease;
}
.page-image-title {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
}
.contact-title {
	display: flex;
	justify-content: space-between;
	height: 80px;
	line-height: 80px;
	align-self: center;
	width: 100%;
	border-bottom: 1px solid #e1e1e1;
}
.contact-title>div {
	color: #009b68;
	width: 300px;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
}
.contact-title>div>h1 {
	font-weight: bold;
	font-size: 24px;
}
.contact-title>a {
	color: #555555;
}
.contact-title>a>img {
	width: 16px;
	height: 16px;
	margin-top: -5px;
	margin-right: 5px;
}
.contact-map {
	margin: 20px 0;
}
.contact-box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.contact-box>div {
	width: 560px;
}
.contact-nr{
	margin-bottom: 40px;
}
.contact-nr h1 {
	border-bottom: 1px solid #e1e1e1;
	font-size: 24px;
	font-weight: bold;
	line-height: 80px;
	margin-bottom: 40px;
}
.contact-nr p{
	line-height: 30px;
}
.contact-nr a{
	color: #555555;
}
.about-us{
	display: flex;
	justify-content: space-between;
	margin: 30px auto;
}
.about-us>img{ width: 48%; }
.about-us-item{ width: 50%;}
.about-us-title{ display: flex; justify-content: flex-start; align-items: baseline; margin: 10px 0;}
.about-us-title h1{ font-size: 28px; color: #009664; font-weight: bold; margin-right: 10px;}
.about-us-title span{ color: #999999;text-transform: uppercase; font-size: 12px;}
.about-us-text{  line-height: 200%; margin: 20px 0;}
.about-us-link a{ display: block; width: 120px; height: 36px; background: #d9e5e1; text-align: center;line-height: 36px;color: #009664; border-radius: 5px;}

.course{ min-height: 500px; background-color: rgba(0, 150, 100, 0.1); padding: 40px 0; }
.course-title{ text-align: center;}
.course-title h1{font-size: 30px; color: #009664; font-weight: bold; }
.course-title span{color: #999999;text-transform: uppercase; font-size: 12px;}


.course-box{ display: flex; justify-content: space-between; margin-top: 40px;}
.course-box-item{ width: 32%;}
.course-box-item a{ display: block; background-color: #ffffff; padding: 20px; margin-bottom: 20px; color: #555555;transition: transform 0.5s;}
.course-box-item a h1{ font-size: 22px; margin-bottom: 10px; margin-top: 10px;}
.course-box-item a span{ font-size: 12px;}
.course-box-item-1,.course-box-item-10{ height: 400px; background-repeat: no-repeat; background-size: 100% auto;  background-position: bottom;}
.course-box-item-2,.course-box-item-3,.course-box-item-4,.course-box-item-5,.course-box-item-6,.course-box-item-7,.course-box-item-8,.course-box-item-9,.course-box-item-11,.course-box-item-12,.course-box-item-13{ height: 190px; padding-right: 30% !important; 
background-repeat: no-repeat; background-size: auto 100%;  background-position: right;
}
.course-box-item-1{background-image:url(../images/course1.png);}
.course-box-item-2{background-image:url(../images/course2.png); }
.course-box-item-3{background-image:url(../images/course3.png); }
.course-box-item-4{background-image:url(../images/course4.png); }
.course-box-item-5{background-image:url(../images/course5.png); }
.course-box-item-6{background-image:url(../images/course6.png); }
.course-box-item-7{background-image:url(../images/course7.png); }
.course-box-item-8{background-image:url(../images/course8.png); }
.course-box-item-9{background-image:url(../images/course9.png); }
.course-box-item-10{background-image:url(../images/course10.png); }
.course-box-item-11{background-image:url(../images/course11.png); }
.course-box-item-12{background-image:url(../images/course12.png); }
.course-box-item-13{background-image:url(../images/course13.png); }
.course-box-item a:hover{background-color: #def3ec; transform: translateY(-5px);}
 
.teacher{ padding: 40px 0;}
#teacher_flash {
	position: relative;
	width: 1200px;
	height: 330px;
	margin-top: 20px;
}
#teacher_flash .flashBg {
	width: 1200px;
	height: 330px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#teacher_flash .flashBg ul.mobile {
	width: 2000%;
	height: 330px;
	position: absolute;
	top: 15;
	left: -20px;
}
#teacher_flash .flashBg ul.mobile li {
	float: left;
	width: 220px;
	height: 330px;
	margin-left: 20px;
	padding: 10px;
}
#teacher_flash .flashBg ul.mobile li:hover a{
	color: #009664;
}
#teacher_flash .flashBg ul.mobile li img {
	width: 220px;
	height: 268px;
	display: block;
}
#teacher_flash .flashBg ul.mobile li dd {
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	line-height: 40px;
	text-align: center;
}

#teacher_flash .flashBg ul.mobile li a {
	color: #555555;
}

#teacher_flash .but_left {
	width: 25px;
	height: 50px;
	position: absolute;
	top: 136px;
	left: -50px;
}
#teacher_flash .but_left img {
	width: 25px;
	height: 50px;
}
#teacher_flash .but_right {
	width: 25px;
	height: 50px;
	position: absolute;
	top: 136px;
	right: -50px;
}
#teacher_flash .but_right img {
	width: 25px;
	height: 50px;
}
#teacher_flash .but_left:hover {
	background: url(../images/qianxleft1.png) no-repeat;
	background-size: 25px 50px;
}
#teacher_flash .but_right:hover {
	background: url(../images/qianxr1.png) no-repeat;
	background-size: 25px 50px;
}

.power{ color: #ffffff; background: url(../images/about-bg.jpg) no-repeat; background-size: cover; min-height: 500px; text-align: center;}
.power-title{  padding-top: 60px;}
.power-title h1{font-size: 30px; font-weight: bold; }
.power-title span{text-transform: uppercase; font-size: 12px;}
.power-text{ padding-top: 80px; line-height: 220%; }
.power-text span{ font-size: 30px;}

.base{ margin: 40px auto;}
.course-item { display: flex; justify-content: space-between; margin-top: 20px;}
.course-item a{ width: 25%; padding: 10px;}
.course-item a img{ width: 100%; display: block;}
.course-item a p{ display: block; text-align: center; line-height: 220%; color:#009664; }
.course-title-img{ width: 100%; height: 180px;overflow: hidden; display: flex; justify-content: center; align-items: center;}
.course-title-img img{ min-height: 180px; width: 100%;}

#scrollToTopButton{ position: fixed; right: 30px; bottom: 200px; background: none; box-shadow: none; width: 50px; height: 50px; border: none;}
#scrollToTopButton img{ width: 100%;}


.more a{ display: block;
	margin: 10px auto;
    width: 120px;
    height: 36px;
    background: #d9e5e1;
    text-align: center;
    line-height: 36px;
    color: #009664;
    border-radius: 5px;}

.swiper-container {

	width: 545px;
	height: 300px;
}
.swiper-container img{width: 545px;
	height: 300px;}
.swiper-pagination{ text-align: right; padding-right: 10px;}
.swiper-pagination-bullet{ background: #FFFFFF;}
