:root {
	--view-width: 63%;
	--font-0: 40px;
	--font-1: 32px;
	--font-2: 28px;
	--font-3: 26px;
	--font-4: 24px;
	--font-5: 20px;
	--font-6: 18px;
	--font-7: 16px;
	--font-8: 14px;
	--font-9: 12px;
}
@media (max-width: 1440px) {
	:root {
		--view-width: 80%;
	}
}

@media (max-width: 1280px) {
	:root {
		--view-width: 86%;
	}
}

@media (max-width: 1024px) {
	:root {
		--view-width: 92%;
	}
}

@media (max-width: 768px) {
	:root {
		--view-width: 96%;
	}
}


body {
	font-family: "Microsoft YaHei", sans-serif;
	color: #3d3d3d;
	margin: 0;
	overflow-x: hidden;
	letter-spacing: 0.1em;
	user-select: none;
}

/* #topbanner, */
#banner {
	height: auto;
	overflow: hidden;
}

/* #topbanner img, */
#banner img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* 页面顶部 */
.topbanner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbanner_wrap {
	width: var(--view-width);
	padding: 16px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbanner_wrap .topbanner_logo {
	width: 207px;
	height: 55px;

}

.topbanner_btn {
	text-align: center;
	padding: 8px 26px;
	font-size: 18px;
	color: #ffffff;
	background: #103C86;
	border-radius: 54px;
	box-shadow: 0px 4px 10px 0px rgba(16, 60, 134, 0.33);
	transition: all 0.3s;
	cursor: pointer;
}

.topbanner_btn:hover {
	box-shadow: 0px 4px 10px 4px rgba(16, 60, 134, 0.2), inset 0px 0px 10px 0px rgba(255, 255, 255, 1);
}

.banner {
	position: relative;
}

.banner_btns {
	padding-top: 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 30px;
	bottom: 0px;
	transform: translateX(-50%);
	font-size: var(--font-3);
	background: #BCA793;
	color: #472607;
	border-radius: 32px 32px 0px 0px;
	box-shadow: inset 0px 4px 17px 0px rgba(255, 255, 255, 0.3);
}

.banner_btns .btn {
	padding: 0px 50px;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: all 0.3s;
}

.banner_btns .btn:nth-child(2) {
	width: 100%;
	padding-top: 16px;
	padding-bottom: 16px;
	margin-top: 10px;
	box-sizing: border-box;
	background: #0D234D;
	color: rgba(255, 255, 255, 0.85);
	box-shadow: inset 0px 4px 13px 0px rgba(255, 255, 255, 0.3);
	border-radius: 32px 32px 0px 0px;
}

.banner_btns .btn:nth-child(1):hover {
	padding-bottom: 20px;
}

.banner_btns .btn:nth-child(2):hover {
	padding-bottom: 36px;
}


/* 共同样式*/
.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7,
.section8,
.section9 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}

/* section1  香港浸会大学学校简介*/
.section1 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.intro {
	width: var(--view-width);
	padding-top: 60px;
	position: relative;
}

.intro_people {
	width: 304px;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.intro_desc {
	width: 100%;
	padding-left: 28%;
	box-sizing: border-box;
	line-height: 28px;
	letter-spacing: 0.12em;
	font-size: var(--font-5);
}

.intro_desc span {
	font-weight: 700;
}

.intro_desc div {
	padding-bottom: 16px;
}

.intro_list {
	width: 100%;
	height: 148px;
	padding-left: 28%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #103C86;
}

.intro_list_item {
	display: flex;
	flex-direction: column;
	align-items: center;
}


.intro_list_item:hover {
	animation: scaleInOut 1s ease 1;
}

.intro_list_item .intro_list_num {
	padding-bottom: 8px;
	color: #F0B46A;
	font-size: var(--font-0);
	font-weight: 700;
}

.intro_list_item .intro_list_desc {
	color: #ffffff;
}

/*section2 香港浸会大学全球排名 */
.section2 {
	padding-bottom: 28px;
}

.rank {
	width: var(--view-width);
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rank_tabs {
	width: 90%;
	height: 90px;
	max-width: 884px;
	padding: 18px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #ffffff;
	border-radius: 45px;
	box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.13);
}

.rank_tabs .rank_tabs_item:nth-child(1) {
	margin-right: 10px;
}

.rank_tabs_item {
	flex: 1;
	height: 54px;
	line-height: 54px;
	text-align: center;
	font-size: var(--font-4);
	font-weight: 600;
	color: #5671B0;
	border-radius: 26px;
	transition: all 0.5s;
	cursor: pointer;
}

.rank_tabs .activeTab {
	color: #ffffff;
	background: #103C86;
	box-shadow: 0px 4px 10px 0px rgba(44, 68, 125, 0.4);
}

.section2 .section_btn_wrap {
	width: 100%;
	padding-top: 20px;
	display: flex;
	justify-content: flex-end;
}

/* section3  香港浸会大学申请要求*/
.section3 {
	padding-top: 100px;
	padding-bottom: 96px;
	background: #F5F9FF;
}

.section3 .require {
	width: var(--view-width);
	padding-top: 120px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 46px;
}

.require_item {
	width: 100%;
	height: 733px;
	padding-top: 70px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #F6F0E7;
	border-radius: 32px;
	border: 1px solid #7286BC;
	transition: all 0.3s;
	position: relative;
}

.require_item:hover {
	transform: translateY(-20px);
	box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.06);
}

.require .require_item:nth-child(1):hover .require_btn {
	box-shadow: 0px 4px 10px 0px rgba(150, 122, 57, 0.3),
		inset 0px 0px 6px 0px rgba(255, 255, 255, 0.8);
}

.require .require_item:nth-child(2):hover .require_btn {
	box-shadow: 0px 4px 10px 0px rgba(16, 51, 149, 0.5),
		inset 0px 0px 6px 0px rgba(255, 255, 255, 0.8);
}

.require_couple {
	width: 42px;
	height: 110px;
	transform: rotate(-25deg);
	position: absolute;
	top: -36px;
	left: 80px;
}

.require_btn {
	width: 445px;
	height: 54px;
	box-sizing: border-box;
	text-align: center;
	line-height: 54px;
	color: #472607;
	font-weight: 700;
	font-size: var(--font-6, 18px);
	background: #E5B98E;
	box-shadow: 0px 4px 10px 0px rgba(150, 122, 57, 0.3);
	border-radius: 54px;
	position: absolute;
	bottom: -30px;
	cursor: pointer;
	transition: all 0.3s;
}

.require_item_title {
	min-width: 356px;
	min-height: 36px;
	padding-bottom: 4px;
	position: relative;
}

.require_item_title .text {
	width: max-content;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: #000000;
	font-size: var(--font-3, 26px);
	font-weight: 700;
}

.require_item_title:after {
	content: '';
	width: 353px;
	height: 22px;
	background: #E4C887;
	border-radius: 10px;
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.require_item_columns {
	width: 100%;
	padding-left: 54px;
	padding-top: 40px;
	box-sizing: border-box;
}

.require_item_column {
	padding-bottom: 32px;
}

.require_item_column .column_title {
	color: #604300;
	font-weight: 700;
	font-size: var(--font-6, 18px);
	padding-left: 12px;
	position: relative;
}

.require_item_column .column_title:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 10px solid #604300;
	position: absolute;
	left: 0px;
	top: 4px;
}

.require_item_column .column_ul {
	padding-top: 12px;
}

.require_item_column .column_ul_li {
	display: flex;
	align-items: flex-start;
	line-height: 26px;
}

.require_item_column .column_ul_li span {
	font-weight: 700;
}

.require_item_column .column_ul_li .dot {
	width: 4px;
	height: 4px;
	margin-top: 10px;
	margin-right: 10px;
	border-radius: 50%;
	background: #3d3d3d;
	transform: scale(0.8);
}


.require_item_column .column_title span {
	color: #D37919;
}

.require .require_item:nth-child(2) {
	background: #DBE8F6;
}

.require .require_item:nth-child(2) .require_item_title:after {
	background: #9EC7F1;
}

.require .require_item:nth-child(2) .require_item_column .column_title {
	color: #103395;
}

.require .require_item:nth-child(2) .require_item_column .column_title:after {
	border-left: 10px solid #103395
}

.require .require_item:nth-child(2) .require_btn {
	color: #ffffff;
	background: #3157C4;
	box-shadow: 0px 4px 10px 0px rgba(16, 51, 149, 0.5);
}

.require_tips {
	width: var(--view-width, 63%);
	box-sizing: border-box;
	padding-top: 80px;
}

.require_tips_item {
	display: flex;
	align-items: flex-start;
	line-height: 26px;
}

.require_tips_item .dot {
	width: 4px;
	height: 4px;
	margin-top: 10px;
	margin-right: 10px;
	border-radius: 50%;
	background: #999999;
	transform: scale(0.8);
}

/* section4 香港浸会大学读书费用*/
.section4 {
	padding-top: 100px;
	padding-bottom: 146px;
}

.section4 .cost {
	width: var(--view-width, 63%)
}

/*section5  香港浸会大学本科院系 */
.section5 {}

.section5 .section_title_wrap {
	width: 100%;
	height: 442px;
	padding-top: 90px;
	box-sizing: border-box;
	background: #103C86;
	position: relative;
}

.college_people {
	height: 424px;
	position: absolute;
	right: 15%;
	bottom: 0px;
}

.college_wrap {
	width: var(--view-width, 63%);
	margin-top: -180px;
	padding-bottom: 90px;
	box-sizing: border-box;
}

.college {
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.college_name {
	color: #F0B46A;
	font-size: var(--font-1, 35px);
	font-weight: 700;
	position: absolute;
	top: 20px;
	left: 300px;
	z-index: 99;
	animation: showName 0.6s ease-in-out;
}


@keyframes showName {
	from {
		opacity: 0;
		transform: translateY(20px);
		filter: blur(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
		filter: blur(0px);
	}
}

.college_items {
	width: 100%;
	height: 324px;
	/* 314px*/
	padding-bottom: 10px;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.college_item {
	width: 170px;
	height: 226px;
	margin-bottom: 10px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 12px;
	transition: all 1s;
	position: absolute;
	bottom: 0px;
	left: 1140px;
	opacity: 0;
}

.college_items .college_item:nth-child(1) {
	width: 230px;
	height: 314px;
	border-radius: 16px;
	box-shadow: 2px 2px 4px 2px rgba(8, 45, 106, 0.09);
	left: 0px;
	opacity: 1;
}

.college_items .college_item:nth-child(2) {
	left: 250px;
	opacity: 1;
}

.college_items .college_item:nth-child(3) {
	left: 430px;
	opacity: 1;
}

.college_items .college_item:nth-child(4) {
	left: 610px;
	opacity: 1;
}

.college_items .college_item:nth-child(5) {
	left: 790px;
	opacity: 1;
}

.college_items .college_item:nth-child(6) {
	left: 970px;
	margin-right: 0px;
	opacity: 1;
}

/* section6  香港浸会大学研究生课程*/
.section6 {
	padding-top: 100px;
	padding-bottom: 125px;
	background: #F5F9FF;
}

.course {
	width: var(--view-width);
	padding-top: 100px;
}

.course_tabs {
	width: 100%;
	padding: 16px 50px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #ffffff;
	box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.13);
	border-radius: 16px;
}

.course_tabs_item {
	margin: 10px 0px;
}

.course_tabs_item .textbtn {
	padding: 8px 24px;
	color: #7487BF;
	font-size: var(--font-5, 20px);
	font-weight: 700;
	transition: all 0.5s;
	background: transparent;
	border-radius: 26px;
	cursor: pointer;
}

.course_tabs_item .active_tab {
	color: #ffffff;
	background: #3157C4;
	box-shadow: 0px 4px 10px 0px rgba(49, 87, 196, 0.42);
}

.section6 .table::-webkit-scrollbar-track {
	background: transparent;
	box-shadow: none;
}

.section6 .table_body::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.section6 .table_body::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: rgba(49, 87, 196, 0.4);
}

.section6 .require_tips {
	padding-top: 0px;
}

/* section7 香港浸会大学申请成功案例 */
.section7 {
	padding-top: 124px;
	padding-bottom: 100px;
}

.case {
	width: 100%;
	padding: 30px 0px;
	box-sizing: border-box;
}

/* section8 香港浸会大学申请常见问题 */
.section8 {
	padding-top: 100px;
	padding-bottom: 100px;
	background: #F5F9FF;
}

.section8 .issue_wrap {
	width: var(--view-width);
	padding: 48px 0px 8px 0px;
	margin-top: 80px;
	box-sizing: border-box;
	background: #ffffff;
	box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	overflow: hidden;
}

.issue_column {
	display: flex;
	align-items: center;
	padding-bottom: 30px;
}

.issue_detail {
	padding: 15px 28px;
	margin-right: 80px;
	display: flex;
	align-items: center;
	font-size: var(--font-6);
	white-space: nowrap;
	color: #103C86;
	background: #F5F9FF;
	border: 1px solid #103C86;
	border-radius: 16px;
	box-shadow: 0px 4px 10px 0px rgba(8, 45, 106, 0.09);
	transition: all 0.3s;
	position: relative;
	cursor: pointer;
}

.issue_detail:hover {
	transform: scale(1.1);
}

.issue_detail:hover .horn {
	bottom: -12px;
}

.issue_detail .icon {
	font-size: var(--font-4);
	font-weight: 700;
	margin-right: 10px;
}

.issue_detail .horn {
	width: 30px;
	position: absolute;
	left: 10%;
	bottom: -13px;
}

.issue .issue_column:nth-child(1) {
	margin-left: 40px;
}

.issue .issue_column:nth-child(2) {
	margin-left: 180px;
}

.issue .issue_column:nth-child(3) {
	margin-left: 80px;
}

.issue {
	animation: move 20s linear infinite;
}

.issue:hover {
	animation-play-state: paused;
}

@keyframes move {
	0% {
		transform: translateX(30px);
	}

	100% {
		transform: translateX(-870px);
	}
}

/* section9 景鸿香港浸会大学申请服务优势*/
.section9 {
	padding-bottom: 80px;
}

.section9 .section9_bg {
	width: 100%;
	height: 336px;
	padding-top: 80px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
	background: #103C86;
	border-radius: 0px 0px 300px 300px;
	overflow: hidden;
	position: relative;
}

.section9_bg .section_title {
	width: max-content;
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.section9_bg .build {
	width: 240px;
	height: 285px;
	position: absolute;
	right: 8%;
	bottom: 0px;
	z-index:0
}

.card {
	width: var(--view-width);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: -90px;
}

.card_item {
	width: 100%;
	height: 274px;
	padding-top: 90px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 32px;
	background: #ffffff;
	box-shadow: 0px 4px 10px 0px rgba(8, 45, 106, 0.09);
	position: relative;
	transition: all 0.3s;
}

.card_item_order {
	width: 100px;
	height: 100px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #103C86;
	font-size: var(--font-1);
	font-weight: 700;
	background: #ffffff;
	border: 10px solid #103C86;
	border-radius: 50%;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}


.card_item_icon {
	margin-bottom: 18px;
}

.card_item_desc {
	font-size: var(--font-5);
	color: #092F70;
	line-height: 28px;
}

.card_item:hover {
	transform: translateY(-20px);
	box-shadow: 0px 4px 16px 0px rgba(8, 45, 106, 0.09);
}