@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}
@font-face {
	font-family: 'LXGWWenKai';
	src: url('../fonts/LXGWWenKaiScreen.woff2') format('woff2'); 
}
/*@font-face {
font-family: 'Symbola';
src: url('fonts/symbola.woff2') format('woff2'), 
}*/
body {
	/*height: 100%;*/
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans', 'Noto Sans CJK', 'Arial Unicode MS', 'Microsoft Yahei', Arial, Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background: linear-gradient(70deg, #efe6fe, #f5f5f5,#D4E6F1);
}
.bg-container {
	width: 100%;
	height: 100%;
	background: linear-gradient(limegreen, transparent), linear-gradient(90deg, skyblue, transparent), linear-gradient(-90deg, coral, transparent);
	background-blend-mode: screen;
	animation: colorfulStripeChange 5s infinite alternate linear;
}

@keyframes colorfulStripeChange {
	100% {
		filter: hue-rotate(360deg);
	}
}

#main, .main {
	display: block;
	margin: 100px auto;
	width: 1300px;
	/*min-width: 1000px;*/
	/*max-width: 2000px;*/
	min-height: 100vh;
	background-color: #fff;
	padding: 30px;
	box-shadow: 0 2px 6px rgba(100,100,150,.9);
	-webkit-box-shadow: 0 2px 6px rgba(100,100,150,.9);
}
.flex-sl {
	display:flex;
	justify-content:space-between;
	align-items:center;
	position: relative;
	top: 20px;
	width: 1300px;
	margin:0 auto;
}
.ltd {
	font-size:16px;
	font-family: 'Handlee', cursive;
}
.slogan{
	font-size:16px;
	font-family: 'LXGWWenKai', Handlee, cursive;
}
/*导航栏*/
header {
	position: relative;
	top: 40px;
	width: 100%;
	text-align: center;
}

nav {
	font-size:24px;
	/*font-weight:bold;*/
	display: flex;
	/*justify-content: start;*/
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
	margin:0 auto;
	height: 40px;
	width: 1300px;
	background-color: transparent;
}
nav .item {
	display: inline-block;
	padding: 5px;
	margin-right: 80px;
	color:#000;
}
.sign-up, .sign-up-en {
	height:40px;
	width:140px;
	border: 1px solid #81af43;
	border-radius: 20px;
}
.sign-up::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #81af43; /* 设置竖线颜色 */
}
nav .item:hover {
	background: rgba(255, 255, 255, .7);
}
nav a {
	display:block;
	text-decoration:none
}
.menu {
	cursor: pointer;
	width: 32px;
	display: none;
	margin-left: 0px;
}
.nd-animation {
	display: block;
	position: relative;
	width: 30px;
	height: 3px;
	background-color: #000;
	transition: background-color .2s linear;
}
.nd-animation::before {
	left:0;
	position: absolute;
	content: '';
	width: 30px;
	height: 3px;
	background: #000;
	transform: translateY(-9px);
	transition: transform .2s linear;
	-webkit-transform: translateY(-9px);
	-webkit-transition: transform .2s linear;
}
.nd-animation::after {
	left:0;
	position: absolute;
	content: '';
	width: 30px;
	height: 3px;
	background: #000;
	transform: translateY(9px);
	transition: transform .2s linear;
	-webkit-transform: translateY(9px);
	-webkit-transition: transform .2s linear;
}
.is-open {
	background-color: rgba(255, 255, 255, 0);
}
.is-open::before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.is-open::after {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.menu-container {
	position: relative;
	display: inline-block;
}
.menu-options {
	display: none;
	position: absolute;
	top: 35px;
	left: 0px;
	margin:0;
	/*background-color: #444;*/ /* or #9cadb1*/
	/*background-color: #87cefa;*/ /* or #7ab8cc or #57aed1*/
	background-color: #7ab8cc;
	/*padding: 10px;*/
	/*border-radius: 4px;*/
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.menu-options a {
	display: block;
	color: #000000;
	text-decoration: none;
	text-align: left;
	padding: 10px 15px;
	transition: background-color 0.3s ease;
	width: 150px; /* 下拉菜单的宽度 */
	border-bottom: 1px solid #add8e6;
	margin:0;
}
.menu-options a:hover {
	background-color: #555;
}
.menu-container:hover .menu-options {
	display: block;
}
.flex-left {
	display:flex;
	justify-content:start;
	align-items:center;
}
.flex-btw {
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.lang {
	width:240px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.lang-en {
	width:330px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.lang img, .lang-en img {
	width: 40px;
	display: block;
	cursor: pointer;
}
.flex-center {
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}
.outer-container{
	display:none;
}

section {
	font-size:24px;
	margin: 0 0 80px 0;
	text-align:justify;
}
section:last-child {
	margin-bottom: 40px; 
}
.border{
	hyphens: auto;
	border: 1px solid #a3a3a3;
	padding:20px;
	box-shadow: 0 0 3px 3px #ccc;
	-webkit-box-shadow: 0 0 3px 3px #ccc;
}
.text-shadow {
	text-shadow: 6px 6px 3px hsla(14, 100%, 30%, 1);
}
.flex-sec {
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.flex-sec-en {
	width:100%;
	display:flex;
	flex-direction: column;
	justify-content:space-between;
	align-items:center;
}
.flex-top {
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:first;
}
.intro {
	margin:5px;
	padding:20px;
	font-family: 'LXGWWenKai','Noto Sans CJK';
	font-size: 26px;
	font-weight: 400;
	line-height:52px;
	background-color:#e0f2ff;
}
.intro-en {
	margin:5px;
	padding:20px;
	font-family: 'Lobster','Noto Sans', cursive;
	font-size: 26px;
	font-weight: 400;
	line-height:42px;
	background-color:#e0f2ff;
}
.bg{
	background-image: url('../images/extra/mindmap.jpg'); 
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.edu-tips, .cons-tips-en {
	width: 500px;
	font-size:20px;
	text-justify: left;
	hyphens: auto;
}
.cons-tips {
	width: 400px;
	font-size:20px;
	text-justify: left;
}
.gglass {
	background: rgba(255, 255, 255, .7);
	/*backdrop-filter: blur(6px);*/
}
.poster-img-left {
	width:50%;
	margin-right:40px;
	float:left;
}
.poster-img-right {
	width:50%;
	margin-left:40px;
	float:right;
}

.poster-img-left img, .poster-img-right img {
	width: 600px;
}
.sec-title, .serv-title {
	font-size:40px;
	font-weight:bold;
	margin:0 0 10px 0;
	text-align:center;
}
.tips-box, .phi-box , .tips-box-en, .phi-box-en{
	position: relative;
	display: inline-block;
	margin: 5px 0;
	padding: 10px 10px;
	width: 100%;
	font-size: 20px;
	font-family: 'LXGWWenKai', sans-serif;
	background: #e0f2ff;
	color: #555;
}
.green-bg {
	background: #b7d5ac;
	color: #000000;
}
.tips-box-en, .phi-box-en{
	font-family: 'Noto Sans', sans-serif;
}
.phi-box {
	margin:0;
}
.sec-body {
	font-size:24px;
	width:50%;
	hyphens: auto;
}
.sec-body-en {
	font-size:24px;
	font-family: 'Merriweather', cursive;
	width:50%;
	hyphens: auto;
}
/*.sec-body p a {
color:#a3a3a3;
}*/
.text-gray {
	color:#a3a3a3;
}
.text-green {
	color:green;
}

.triangle-list {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.triangle-list > li {
	position: relative;
	padding: 0px 0px 0px 1em;
	margin-bottom: 20px;
	margin-left: 3px;
}
.triangle-list > li:last-child {
	margin-bottom: 0; 
}
.triangle-list > li::before {
	position: absolute;
	/*top: 50%;*/
	left: 0px;
	/*transform: translateY(-50%);*/
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	width: 0px;
	height: 0px;
	border: 0.3em solid transparent;
	border-left: 0.4em solid #3388dd;
	content: "";
}
.right-list {
	/*float:right;*/
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.right-list > li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 20px;
	margin-left: 3px;
}
.right-list > li:last-child {
	margin-bottom: 0; 
}
.right-list > li::before {
	content: "\2B9A";
	position: absolute;
	left: 0px;
	color: #3388dd; 
}
.text-gradient {
	background-image: linear-gradient(to right, orange, purple);
	-webkit-background-clip: text;
	color: transparent;
	/*font-size: 30px;*/
}
.phi-title {
	font-size:32px;
	font-weight:bold;
	margin: 0;
	padding:10px 0px;
	text-align:center;
	background: #cdf4f4;
}


.contact-tips, .contact-tips-en {
	font-size:40px;
	font-weight:bold;
	margin:0 0 10px 0;
	text-align:center;
	width:100%;
}
.contact-tips-en {
	font-size:36px;
}
.sign-up-contact {
	display: flex;
	flex-direction: column;
	font-size: 32px; 
	padding: 100px 0px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.sign-up-contact .tab {
	table-layout: fixed; /* 固定布局，列宽度由width属性确定 */
	width: 100%; /* 表格宽度为父元素的100% */
	border: 1px solid black;
}
.phone {
	display:none;
}
.contact-container {
	font-size:24px;
	padding:20px 30px;
	margin:40px auto;
	width:300px;
	background-color:#fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(100,100,150,.9);
	-webkit-box-shadow: 0 2px 6px rgba(100,100,150,.9);
}
.contact-container-en {
	font-size:20px;
	padding:20px 30px;
	margin:40px auto;
	width:300px;
	background-color:#fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(100,100,150,.9);
	-webkit-box-shadow: 0 2px 6px rgba(100,100,150,.9);
}
.contact-container p, .contact-container-en p{
	margin-bottom:15px;
}
.contact-container p:nth-child(1){
	font-weight:bold;
}
.sign-up-contact img, .contact-container img {
	width: 200px; 
}
.contact-container-en img {
	width: 220px; 
	margin-bottom:20px;
}
.center-text {
  text-align: center;
}
.sign-up-contact .tab th, 
.sign-up-contact .tab td {
	table-layout: fixed; /* 固定布局，列宽度由width属性确定 */
	width: 100%; /* 表格宽度为父元素的100% */
	border: 1px solid black;
}
/* 设置每一列的宽度 */
.tab td:nth-child(1), 
.tab th:nth-child(1) {
	width: 20%; /* 第一列宽度为表格宽度的25% */
	background-color: #ccc;
}
.tab td:nth-child(2), 
.tab th:nth-child(2) {
	width: 40%; /* 第二列宽度为表格宽度的25% */
}
.tab td:nth-child(3), 
.tab th:nth-child(3) {
	width: 40%; /* 第三列宽度为表格宽度的25% */
}
.tab tr:nth-child(2),
.tab tr:nth-child(3),
.tab tr:nth-child(4){
	height:80px;
}
.tab tr:first-child,
.tab tr td:first-child {
	background-color: #ccc; /* 设置灰色背景 */
}
.sign-up-contact a {
	text-decoration:none;
	color:#000;
} 
.c-coffee{
	color:#57430a;
}
.c-skyblue{
	color:#87ceeb;
}

/*课程*/
.course-title {
	font-size: 40px;
	text-align:center;
	font-weight:bold;
	margin:20px 0px;
	/*color: #555;*/
}
.sky-box, .sky-box-en, .gre-box, .gre-box-en{
	position: relative;
	display: block;
	margin: 0.5em 0;
	padding: 20px 20px;
	width: 100%;
	font-size: 20px;
	hyphens: auto;
}
.sky-box{
	font-family: 'LXGWWenKai', sans-serif;
	background: #e0f2ff;
	color: #555;
}
.sky-box-en {
	font-family: 'Noto Sans', sans-serif;
	background: #e0f2ff;
	color: #555;
}
.gre-box {
	font-family: 'LXGWWenKai', sans-serif;
	background: #b7d5ac;
	color: #000000;
}
.gre-box-en{
	font-family: 'Noto Sans', sans-serif;
	background: #b7d5ac;
	color: #000000;
}
.course-tips {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.course-tips > li {
	position: relative;
	padding: 0px 0px 0px 1em;
	margin-bottom: 20px;
	margin-left: 3px;
}
.course-tips > li:last-child {
	margin-bottom: 0; 
}
.course-tips > li::before {
	position: absolute;
	left: 0px;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	width: 0px;
	height: 0px;
	border: 0.3em solid transparent;
	border-left: 0.4em solid #3388dd;
	content: "";
}
.course-tips ul {
	/*list-style-type: disc; */
	list-style-type: decimal;
	list-style-position: inside;
	margin-left: 30px;    
	margin-right: 40px;    
	padding-left: 0;
	hyphens: auto;
}
.course-tips ul li {
	line-height: 1.8;
}
.course-tips ul li::marker {
	font-weight: bold;             /* 加粗 */
	color: black;                  /* 黑色 */
}
.course-note {
	margin: 10px 0px;
	hyphens: auto;
}
.content-mark {
	margin: 20px auto;
	text-align:center;
}
.mbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px auto;
}
.course-mark {
	margin-top: 10px; 
	margin-bottom: 10px; 
	/*font-family: 'Open Sans', sans-serif;*/
	font-size: 30px;
	text-align: center;
	color: #2E3D49;
}
.mbox .mdet {
	height: 60px;
	margin: 10px;
	background: #fff;
	cursor: pointer;
	border-radius: 50px;
}
.mbox .mdet a{
	justify-content: space-around;
	width: 100%;
	padding: 20px;
	border-radius: 50px;
	border: 1px solid #FA4B37;
	font-size: 15px;
	color: #272529;
	text-decoration: none;
}
.mbox .mdet a:hover{
	background: linear-gradient(to right, #FA4B37, #DF2771);
	color: white;
}
/*intro*/
.intro-sec {
	position: relative;
	font-size:26px;
	margin-bottom: 30px;
	padding: 0 10px 0 50px;
}
.pshape {
	display: inline-block;
	padding:5px 15px;
	border-radius: 0px;
	box-shadow: 0 2px 6px rgba(100,100,150,.9);
	-webkit-box-shadow: 0 2px 6px rgba(100,100,150,.9);
	/*transform: translateX(10px) skewX(-20deg);*/
	transform: skewX(-20deg);
	-webkit-transform: skewX(-20deg);
}
.blue {
	background-color: cornflowerblue;
	color:white;
}
.blue:hover {
	background-color: #4169E1;
	color:white;
}
.intro-container, .intro-container-en {
	margin:10px 0;
	font-size:20px;
	text-align:justify;
	font-family: 'LXGWWenKai', 'Noto-Sans', sans-serif;
	hyphens: auto;
}
.intro-container-en {
	font-family: 'Noto Sans', sans-serif;
	hyphens: auto;
}
/*TEAM*/
.totalcard {
	/*width: 100%;*/
	max-width:100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	margin: 0 auto;
}
.totalcard .card {
	margin: 50px;
	width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: 'Noto Sans', 'Noto Sans CJK';
	hyphens: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.4), 0 0 10px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.4), 0 0 10px rgba(0,0,0,0.3);
}
.card:nth-child(1){
	border-top: 5px solid green;
}
.card:nth-child(2){
	border-top: 5px solid blue;
}
.card:nth-child(3){
	border-top: 5px solid brown;
}
.card:nth-child(1):hover {
	box-shadow: inset 0px 0px 10px rgba(0,255,0,0.5), 1px 1px 30px rgba(0,255,0,0.5);
	-webkit-box-shadow: inset 0px 0px 10px rgba(0,255,0,0.5), 1px 1px 30px rgba(0,255,0,0.5);
}
.card:nth-child(2):hover {
	box-shadow: inset 0px 0px 10px rgba(0,0,255,0.5), 1px 1px 30px rgba(0,0,255,0.5);
	-webkit-box-shadow: inset 0px 0px 10px rgba(0,0,255,0.5), 1px 1px 30px rgba(0,0,255,0.5);
}
.card:nth-child(3):hover {
	box-shadow: inset 0px 0px 10px rgba(150,75,0,0.5), 1px 1px 30px rgba(150,75,0,0.5);
	-webkit-box-shadow: inset 0px 0px 10px rgba(150,75,0,0.5), 1px 1px 30px rgba(150,75,0,0.5);
}
.totalcard .card img {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	margin-top: 5px;
	cursor: pointer;
	border-radius: 50px;
	transition-duration: .8s;
}
.totalcard .card img:hover {
	transform: scale(3.5);
	border-radius: 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	-webkit-transform: scale(3.5);
	-webkit-border-radius: 0;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.card .detail p{
	font-size: 14px;
	line-height: 20px;
	/*font-variant: small-caps;*/
	text-align: justify;
	margin: 25px;
	margin-bottom: 0px;
	margin-top: 0px;
	hyphens: auto;
}
.card .detail button {
	display:block;
	margin:0 auto;
	outline: none;
	border-radius: 10px;
	border-style: none;
	border: 1px solid black;
	padding: 9px 25px;
	cursor: pointer;
	transition-duration: .4s;
}
.card .detail a {
	display:block;
	text-decoration: none;
	margin:20px auto;
	text-align: center;
}
.btn-teacher1:hover {
	background: rgba(0,255,0,0.7);
	color: #fff;
}
.btn-teacher2:hover {
	background: rgba(0,0,255,0.5);
	color: #fff;
}
.btn-teacher3:hover {
	background: rgba(150,75,0,0.5);
	color: #fff;
}
.card-title {
	font-size: 17px;
	color: #343A40;
	padding: 20px;
	font-weight: bold;
	text-align:center;
}


@media screen and (max-width: 1300px) {
	#main, .main{
		width: 1000px;
		padding: 20px;
	}
	.flex-sl {
		width: 1000px;
	}
	nav {
		width: 1000px;
	}
	.edu-tips, .cons-tips, .cons-tips-en {
		width: 400px;
	}
	.poster-img-left img,
	.poster-img-right img {
		width: 450px;
	}
	.sec-title, .serv-title {
		font-size:36px;
	}

	.sec-body {
		font-size: 20px;
	}
	.triangle-list > li {
		margin-bottom:15px;
		padding: 0px 0px 0px 15px;
	}
	.right-list > li {
		margin-bottom:15px;
	}
	.contact-tips {
		font-size:36px;
	}
	.course-title {
		font-size:36px;
	}
}
@media screen and (max-width: 1000px) {
	#main, .main{
		width: 80%;
		padding: 20px;
	}
	.flex-sl {
		width: 80%;
	}
	nav {
		width: 80%;
		font-size:18px;
	}
	nav .item {
		margin-right: 30px;
	}
	.lang-en {
		width:230px;
	}
	.sign-up, .sign-up-en {
		height:30px;
		width: 100px;
		line-height:30px;
	}
	.lang img, .lang-en img {
		width: 30px;
	}
	.poster-img-left img,
	.poster-img-right img {
		width:90%;
		max-width: 600px;
		display:block;
		margin:0 auto;
	}
	.sec-title {
		font-size:36px;
		margin:30px 0;
	}
	.serv-title {
		display: none;
	}
	.tips-box, .phi-box {
		margin: 0;
		padding: 5px 10px;
	}
	.sec-body {
		font-size: 20px;
		width:90%;
		max-width:600px;
	}
	.border > p {
		width:90%;
		margin: 0 auto;
	}
	.contact-tips, .contact-tips-en {
		font-size:26px;
		margin:20px auto;
		width:450px;
	}
	section:last-child {
		margin-bottom: 10px; 
	}
	.flex-sec {
		flex-direction:column;
		justify-content:center;
	}
	.flex-top {
		flex-direction:column;
		justify-content:center;
		align-items:center;
	}
	.flex-btw {
		width:100%;
		/*display:flex;*/
		justify-content:space-between;
		align-items:center;
	}
	.poster-img-left {
		float:none;
		margin-right:0px;
		width:100%;
	}
	.poster-img-right {
		float:none;
		margin-left:0px;
		width:100%;
		order:-1;
	}
	.contact-tips br {
		display: none;
	}
	.sign-up-contact{
		padding: 30px 0px;
		font-size: 20px; 
	}
	.sign-up-contact .tab{
		display: none;
	}
	.phone{
		display: block;
	}
	.right-list > li::before {
		position: absolute;
		left:0px;
		content: "";
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		width: 0px;
		height: 0px;
		border: 0.3em solid transparent;
		border-left: 0.4em solid #3388dd;
	}
.course-tips ul {
	margin-left: 30px;    
	margin-right: 30px;    
}
.intro-container {
	font-size:18px;
}
}
@media screen and (max-width: 800px) {
	#main, .main{
		width: 90%;
		padding: 20px;
	}
	.flex-sl {
		width: 90%;
	}
	nav {
		width: 90%;
		font-size:18px;
	}
	nav .item {
		margin-right: 0px;
	}
	.lang {
		width:155px;
	}
	.lang-en {
		width:25%;
	}
	.lang img, .lang-en img {
		width: 30px;
	}
	.flex-left {
		width:70%;
		justify-content:space-between;
	}
	.intro {
		font-size: 20px;
		line-height:44px;
	}
	.c-box, .sky-box, .gre-box {
		font-size:20px;
	}
	.mbox .mdet {
		height: 40px;
		border-radius: 30px;
	}
	.mbox .mdet a {
		padding: 10px;
		border-radius: 30px;
	}
	.pshape {
		font-size: 22px;
	}
}
@media screen and (max-width: 600px) {
	#main, .main{
		width: 100%;
		padding: 0px;
		background-color: transparent;
		box-shadow: none;
		margin: 20px auto;
	}
	.flex-sl {
		display:none;
	}
	header {
		top: 10px;
	}
	.menu {
		display: flex;
	}
	.outer-container{
		display:inline-block;
		width: 115px;
		height: 40px; 
		position: relative; 
		overflow: hidden;
	} 
	.inner-container{
		position: absolute;
		white-space: nowrap;
		font-family: 'Handlee', cursive, 'LXGWWenKai';
		font-size:16px;
		top:10px;
		left: 0; 
		right: 0;
		overflow-y: hidden;
		overflow-x: scroll; 
	}
	.lang-en {
		width:155px;
	}

	.inner-container::-webkit-scrollbar {
		display: none;
	}
	.edu-tips, .cons-tips, .cons-tips-en {
		width:90%;
		font-size:20px;
	}
	.sec-title {
		font-size:30px;
		margin:20px 0;
	}
	.tips-box, .tips-box-en, .sky-box-en, .gre-box-en {
		padding:5px 10px 5px 0;
		width: auto;
	}
	.sec-body {
		font-size: 20px;
		width:95%;
		max-width:600px;
		margin:0 auto;
	}
	.poster-img-left img,
	.poster-img-right img {
		width:95%;
	}
	.phi-title {
		font-size:30px;
		margin: 0 10px;
	}
	.contact-tips, .contact-tips-en {
		font-size:22px;
		margin:10px auto;
		margin-top:40px;
		width:300px;
		text-align:justify;
	}
	.course-title {
		font-size:30px;
	}
	.flex-sec {
		margin:40px auto;
		width:95%;
		background-color: #fff;
	}
	.flex-left {
		display:none;
	}
	.phi {
		width:95%;
		margin:40px auto;
		padding:10px;
		background-color: #fff;
	}
	.border {
		width:95%;
		padding:10px;
		margin:40px auto;
		background-color:#FFF;
	}
	.border p {
		font-size: 20px;
	}
	.bg {
		width:95%;
		margin:40px auto;
	}
	.gglass {
		backdrop-filter: blur(6px);
	}
	.phi-box, .phi-box-en {
		margin: 0 10px;
		padding:5px 10px 5px 0;
		width: auto;
	}
	.c-box {
		width:95%;
		background-color:#fff;
		margin: 40px auto;
		padding: 20px 10px;
		font-size:20px;
	}
	.sky-box, .gre-box {
		padding: 10px 10px 10px 5px;
		font-size: 20px;
	}
	.course-tips > li {
		margin-bottom:15px;
		padding: 0px 0px 0px 15px;
	}
	.intro-sec {
		font-size:24px;
		width:90%;
		margin:40px auto;
		padding: 20px 20px 20px 10px;
		background-color:#fff;
		box-shadow: 0 2px 6px rgba(100,100,150,.9);
		-webkit-box-shadow: 0 2px 6px rgba(100,100,150,.9);
	}
	.pshape {
		width:95%;
		display: block;
		margin:20px auto;
		text-align:center;
		transform: skewX(0deg);
		-webkit-transform: skewX(0deg);
		border-radius: 10px;
	}
	.totalcard .card {
		margin: 40px auto;
	}

	.intro {
		font-size: 22px;
		line-height:33px;
	}
	.intro-en {
		font-size: 22px;
		line-height:33px;
	}
.tips-box-en, .phi-box-en, .sky-box-en, .gre-box-en{
	font-size:18px;
}
	.course-tips ul {
		font-size:16px;
	}
}
@media screen and (max-width: 500px) {
	.totalcard .card img:hover {
		transform: scale(2.8);
		-webkit-transform: scale(2.8);
	}
	.intro, .intro-en {
		font-size: 20px;
		line-height:30px;
		padding:10px;
	}
	.border {
		width:95%;
		padding:10px;
		margin:20px auto;
		background-color:#FFF;
	}
	.course-tips ul {
		margin-left: 20px;    
		margin-right: 20px;    
	}
	.pshape {
		width:98%;
		font-size: 18px;
	}
}
@media screen and (max-width: 400px) {
	.totalcard .card {
		margin: 40px auto;
		width: 95%;
	}
	.lang {
		width:150px;
	}
	.lang-en {
		width:150px;
	}
	.c-box, .sky-box, .gre-box, .tips-box, .phi-box, .edu-tips, .cons-tips{
		font-size:18px;
	}
	.border p {
		font-size: 18px;
	}
}
@media screen and (min-width: 600px) {
	.intro-sec::before {
		content: "";
		position: absolute;
		left:0;
		top:10px;
		width: 20px;
		height: 20px;
		/*background-color: purple;*/
		background: radial-gradient(circle at 10px 5px,#FFF,#800080, #4b0080);
		border-radius: 50%; 
	}
	.intro-sec::after {
		content: "";
		position: absolute;
		top: 30px;
		left: 7px; 
		width: 5px;
		height: calc(100% + 10px); 
		background-color: #ccc;
	}
	.intro-sec:last-child::after {
		display: none; 
	}
}
