/* 三大面试形式 */
#three {
	display: flex;
	text-align: center;
	justify-content: space-around;
	/* padding: 0 5%; */
}
#three .three-img {
	max-width: 30%;
}
/* 分析 */
#department-category {
	display: flex;
	text-align: center;
	background-color: var(--white);
	border: 5px solid var(--border-color);
	margin-bottom: 2em;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: center;
	position: relative;
}
#department-category > div {
	width: calc((100% / 6) - 10px);
	margin: 0 5px;
	position: relative;
	padding: 10px 0;
	cursor: pointer;
}
#department-category > div:not(:last-child)::after {
	position: absolute;
	content: '';
	height: 70%;
	right: 0;
	top: 15%;
	width: 2px;
	background-color: var(--border-color);
}
#department-category img {
	display: block;
	margin: 0 auto;
	width: 3.5rem;
}
#department-category > div.active::before {
	position: absolute;
	content: '';
	bottom: 0;
	width: 80%;
	left: 10%;
	height: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: var(--border-color);
}
.department-info {
	background-color: var(--white);
	border-radius: 20px;
	border: 5px solid var(--border-color);
	margin-top: 1em;
	position: relative;
	display: none;
	line-height: 1.8;
}
.department-info > div {
	padding: 1.875rem;
	position: relative;
	overflow: auto;
	max-height: 30em;
}
.department-info h3 {
	margin: 0.5em;
}
.department-info p {
	margin: 0.2em;
}
.department-info::before {
	content: '';
	position: absolute;
	top: -16px;
	width: 20px;
	height: 20px;
	border-left: 5px solid var(--border-color);
	border-top: 5px solid var(--border-color);
	background-color: var(--white);
	transform: rotate(45deg);
}
.department-info::before {
	left: var(--left);
}
/* 八大实力 */
h1.bg {
	background-image: url('../images/title-bg.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
h1.bg2 {
	background-image: url('../images/title-bg2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: #ba0b03;
}
#strength {
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	background-color: var(--white);
	line-height: 1.6rem;
}
#strength > div {
	width: 33.33%;
	box-sizing: border-box;
	padding: 0.8em;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: 3.5rem;
	height: auto;
}
.strength-title {
	position: absolute;
	top: 1rem;
	width: 100%;
	left: 0;
	line-height: 2em;
	text-align: center;
	font-size: 1.3rem;
	font-weight: bold;
	/*border-bottom: 2px solid #d4d4d4;*/
}
#strength > div:nth-child(3),
#strength > div:nth-child(1),
#strength > div:nth-child(5),
#strength > div:nth-child(8) {
	background-color: #ffecd3;
}
.strength-title img {
	height: 1.5em;
	vertical-align: -0.35em;
	margin-right: 5px;
}
/* 课程 */
#course-category {
	display: flex;
	justify-content: space-around;
	margin-bottom: 2em;
	position: relative;
}
#course-category > div {
	cursor: pointer;
	max-width: 19%;
}
.course-info {
	background-color: var(--white);
	border-radius: 20px;
	padding: 1.875rem;
	margin-top: 1em;
	position: relative;
}
.course-info::before {
	content: '';
	position: absolute;
	top: -10px;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	transform: rotate(45deg);
}
.course-info:nth-child(1)::before {
	left: 9.2%;
}
.course-info:nth-child(2)::before {
	left: 29.2%;
}
.course-info:nth-child(3)::before {
	left: 49%;
}
.course-info:nth-child(4)::before {
	left: 69.3%;
}
.course-info:nth-child(5)::before {
	left: 89.2%;
}
.course-info span.h5-block {
	display: inline;
}
.course-info span.pc-block {
	display: block;
}
.course-info table {
	width: 100%;
	background-color: var(--table-border);
	/* border: 1px solid var(--table-border); */
	text-align: center;
}
.course-info thead th {
	background-color: #fde44e;
	font-weight: bold;
	padding: 0.6rem 0;
}
.course-info table td:first-child {
	font-weight: bold;
}
.course-info table td {
	background-color: #fff;
	/* border: 1px solid var(--table-border); */
	padding: 1rem 0.1rem;
	line-height: 1.6;
}
.course-info .qrcode {
	display: inline-block;
	margin-left: 2em;
	text-align: center;
}
.course-info .qrcode img {
	width: 6rem;
}

/* 师资 */
#teacher {
	position: relative;
}
#teacher .swiper-slide {
	color: var(--white);
	position: relative;
	height: 100%;
}
#teacher .swiper-slide > div {
	width: 90%;
	margin: auto;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
}
#teacher .swiper-slide > div > div:first-child > img {
	width: 100%;
}
#teacher .swiper-slide > div:hover .teacher-info {
	display: block;
}
.teacher-info {
	display: none;
	position: absolute;
	top: 0;
	height: 100%;
	border-radius: 10px;
	background-color: rgba(87, 66, 64, 0.8);
	z-index: 2;
}
.teacher-title {
	margin-top: 0.5em;
	font-size: 1.5em;
}
.teacher-divider {
	border-top: 1px solid var(--white);
	margin: 0.5em 0;
}
.teacher-introduction {
	font-size: 0.8em;
	padding: 0 1em;
	text-align: left;
	/*line-height: 26px;*/
}
.teacher-bottom {
	position: absolute;
	bottom: 0px;
	width: 100%;
	background-color: var(--white);
	color: #000;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	line-height: 4;
	font-size: 16px;
}
.teacher-bottom img {
	width: 16px;
	vertical-align: -0.15em;
	margin-right: 0.2em;
}
.teacher-bottom span {
	color: #999;
}
.teacher-bottom .teacher-bottom-divider {
	background-color: #999;
	display: inline-block;
	width: 1px;
	height: 1em;
	vertical-align: -0.16em;
	margin: 0 0.2em;
}
/* 学员口碑 */
#trophy {
	position: relative;
}
#trophy img {
	width: 90%;
}
/* 上课掠影 */
#study img {
	width: calc(23% - 4px);
	margin: 1rem 1%;
	border: 5px solid var(--border-color);
	display: inline-block;
	box-sizing: border-box;
	border-radius: 3px;
}

/* 全局类 */
.bold {
	font-weight: bold;
}
.red {
	color: red;
}
.red2 {
	color: red;
	font-weight: bold;
}
.indent {
	text-indent: 2em;
}

#department-category > div .red,
.department-info-close {
	display: none;
}
.image-preview {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000001;
	visibility: hidden;
}

.previewed-image {
	max-width: 80%;
	max-height: 80%;
}

.close {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}
.btn {
	background-color: firebrick;
	width: 100px;
	height: 30px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	line-height: 30px;
	margin: 5px auto 0;
	font-weight: bold;
	margin-left: .5em;
	text-align: center;
}
.teachers {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(7em, 1fr));
	/* margin-top: 1em; */
}
.teacher-button {
	background-color: #e33725;
	color: #fff;
	display: block;
	width: 10em;
	border-radius: 4em;
	text-align: center;
	font-size: 1rem;
	line-height: 2.5;
	margin: 1em auto;
}
.teacher-grid {
	display: grid;
	gap: 1em;
	grid-template-columns: repeat(3, 1fr);
}
.teacher-video {
	margin: 1em auto;
	max-width: 800px;
}

.card3 {
	position: relative;
}
.card3-title {
	font-size: 1.5em;
	color: #ae0e16;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.3em;
}
.card3-content {
	position: absolute;
	top: 10%;
	left: 12%;
	width: 76%;
}
.card4 {
	position: relative;
	background-color: #fff;
	border-radius: 1.4em;
	text-align: center;
	padding: 1em;
	margin-bottom: 2em;
}
#swiper2 {
	height: 27em;
}
.card0 {
	width: 100%;
	text-align: center;
	margin-bottom: 2em;
}

.card1 {
	border-radius: 1.5em;
	background-color: #fff;
	margin-bottom: 2em;
	position: relative;
	padding-top: 1em;
	margin-top: 3%;
}
/* .card1-title {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
} */
.card1-title {
	position: relative;
	margin-bottom: -7em;
	text-align: center;
	top: -7em;
}
.card1-title img {
	width: auto;
	max-width: 50%;
}
/* .card1-title img {
	width: auto;
} */
.card1-subtitle {
	font-weight: bold;
	text-align: center;
	margin-bottom: 1em;
	font-size: 22px;
}
.card1-content {
	padding: 1em 2em;
}

.card1-content__img {
	margin: 1em auto 0;
	width: auto;
	text-align: center;
}
.card1-title-2 {
	display: inline-block;
	background-color: #d2151a;
	color: #fff;
	font-weight: bold;
	line-height: 2;
	padding: 0 1em;
	margin: 1em 0;
	border-radius: 0.3em;
}
.card1-tip {
	margin-left: 40px;
	line-height: 2;
	font-size: 1.1em;
	font-weight: bold;
	color: #2e1406;
}
.card1-tip2 {
	line-height: 2;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 60px;
}
.card1-tip::before {
	display: inline-block;
	background-color: #e33725;
	content: '';
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	vertical-align: 0.15em;
	margin-right: 0.25em;
}

.card2 {
	width: 100%;
	text-align: center;
	margin-bottom: 1em;
}
.stu-table {
	font-size: 0.8em;
}
.stu-table-title {
	display: flex;
	justify-content: space-between;
	text-align: center;
	color: #ae0e16;
	font-weight: bold;
	border-left: 1px solid #ae0e16;
	border-top: 1px solid #ae0e16;
}
.stu-table-title div {
	background-color: var(--primary-color);
	color: #b81604;
	line-height: 2;
	border-right: 1px solid #ae0e16;
	border-bottom: 1px solid #ae0e16;
	box-sizing: border-box;
}
.stu-table-title div:nth-child(1),
.stu-table-title div:nth-child(3) {
	width: 15%;
}
.stu-table-title div:nth-child(2),
.stu-table-title div:nth-child(4) {
	width: 40%;
}

.stu-table .swiper {
	border-left: 1px solid #ae0e16;
}
.stu-table .swiper-slide {
	width: 50%;
	text-align: center;
	transition-timing-function: linear;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stu-table .swiper-slide div {
	flex: 0 0 auto;
	box-sizing: border-box;
	border-right: 1px solid #ae0e16;
	border-bottom: 1px solid #ae0e16;
	height: 100%;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 2;
}
.stu-table .swiper-slide div:nth-child(1) {
	width: 27%;
	font-size: 1.4em;
}
.stu-table .swiper-slide div:nth-child(2) {
	width: 73%;
	font-size: 1.4em;
}


.class-table {
	background-color: var(--white);
	border-radius: 20px;
	padding: 0 1em;
	margin-top: 1em;
}
.class-table-btns {
	display: flex;
	justify-content: space-around;
	margin-bottom: 1em;
}
.class-table-btns > div {
	text-align: center;
	font-weight: bold;
	color: var(--white);
	display: inline-block;
	border-radius: 3em;
	padding: 0.5em 1em;
	cursor: pointer;
	width: 20%;
	color: #000;
	border: 2px solid firebrick;
	font-size: 1.1em;
}
.class-table-btns > div.active {
	background-color: firebrick;
	color: white;
	position: relative;
}
.class-table-btns > div.active::before {
	content: '';
	position: absolute;
	bottom: -1em;
	left: 50%;
	border: 0.6em solid firebrick;
	border-top-color: transparent;
	border-left-color: transparent;
	transform: rotate(45deg) translate(-50%, -1px);
}
