/* cuhk.css */
:root {
	--view-width: 70%;
	--font-bold: "AlibabaPuHuiTi-2-95-ExtraBold";
}

@font-face {
	font-family: "AlibabaPuHuiTi-2-35-Thin";
	src: url("../fonts/alibabapuhuiti-2-35-Thin.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "AlibabaPuHuiTi-2-95-ExtraBold";
	src: url("../fonts/alibabapuhuiti-2-95-ExtraBold.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: "AlibabaPuHuiTi-2-35-Thin", sans-serif;
	margin: 0;
	overflow-x: hidden;
}

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

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

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

/* 共同样式：字体超出 */
.text_over {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 共同样式:标题 */
.section_title p {
	font-size: 36px;
	font-weight: bolder;
	margin-top: -30px;
	font-family: "AlibabaPuHuiTi-2-95-ExtraBold";
}

.blue_title {
	color: #4c5eae;
}

.white_title {
	color: #ffffff;
}

/* 共同样式: 更多热门专业推荐 按钮 */
.more_btns {
	width: var(--view-width);
	display: flex;
	align-items: center;
	justify-content: center;
}

.more_btns>div {
	width: 260px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 12px;
	font-size: 18px;
	font-weight: bold;
	box-sizing: border-box;
	cursor: pointer;
}

.more_btns div:nth-child(1) {
	color: #4c5eae;
	border: 1px solid #4c5eae;
	background: #ffffff;
	margin-right: 16px;
}

.more_btns div:nth-child(2) {
	color: #ffffff;
	border: 1px solid #ffffff;
	background: transparent;
}

/* 公共样式：表格 */
.table_wrap {
	width: var(--view-width);
	padding: 30px;
	border-radius: 24px;
	border: 1px solid #e5e5e5;
	background: linear-gradient(180deg, #fdf0d4 0%, #ffffff 40%);
	box-sizing: border-box;
}

.table {
	text-align: left;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #c5d6ff;
	box-sizing: border-box;
	overflow: hidden;
}

.table .th {
	display: flex;
	align-items: center;
	height: 44px;
	line-height: 44px;
	background: rgb(220, 231, 255, 1);
	font-weight: bold;
	font-size: 16px;
}

.table .tr {
	display: flex;
	height: 44px;
	line-height: 44px;
	font-size: 14px;
}

.table .td {
	flex: 1;
	display: flex;
	align-items: center;
}

/* .table .th .td div {
	border-right: 1px solid #c5d6ff;
} */


/* .table .th .td:last-child div:last-child {
	border-right: none;
} */

.table .tr:nth-child(2n) {
	border-top: 1px solid #c5d6ff;
	border-bottom: 1px solid #c5d6ff;
	background: rgb(220, 231, 255, 0.35);
}

.table .tr:last-child {
	border-bottom: none;
}

/* .table .tr:nth-child(2n) .td div {
	border-right: 1px solid #c5d6ff;
}

.table .tr:nth-child(2n) .td:last-child div:last-child {
	border-right: none;
} */

.table_wrap p {
	margin: 0;
	padding: 0;
	color: #4c5eae;
	font-size: 16px;
	text-align: right;
}



/*section1 香港理工大学学校简介 */
.section1 {
	background: url("../../imgs/bg_01.png") center/cover no-repeat;
}

.intro {
	width: var(--view-width);
	line-height: 24px;
	border-radius: 24px;
	border: 1px solid #e5e5e5;
	background: linear-gradient(180deg, #fdf0d4 0%, rgba(255, 251, 245, 0.42) 40%);
	box-sizing: border-box;
}

.intro_desc {
	margin: 30px;
	text-align: left;
}

.intro_order {
	height: 160px;
	display: flex;
	align-items: center;
	border-radius: 24px;
	background: #4c5eae;
	box-sizing: border-box;
}

.intro_order_item {
	flex: 1;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
}

.intro_order_item .num {
	color: #fdcb6e;
	font-size: 40px;
	font-weight: bolder;
	margin-bottom: 16px;
}

/* section2 世界学科排名 */
.section2 {
	background: url("../../imgs/bg_02.jpg") center/cover no-repeat;
}

.rank_tabs {
	width: 586px;
	padding: 6px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 167px;
	border: 1px solid #e5e5e5;
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
}

.rank_tabs>div {
	flex: 1;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 354px;
	color: #4c5eae;
	cursor: pointer;
	transition: all 0.3s linear 0s;
}

.rank_tabs div:nth-child(1) {
	margin-right: 20px;
}

.rank_tabs .active {
	background: #4c5eae;
	color: #ffffff;
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
}
.section2 .table_wrap .tr .td>div{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/*section 3 香港理工大学申请要求 */
.require {
	width: var(--view-width);
	background-color: #fdf0d4;
	border-left: 1px solid #e5e5e5;
	/* border-right: 1px solid #e5e5e5; */
	border-bottom: 1px solid #e5e5e5;
	border-radius: 24px;
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
	box-sizing: border-box;
	overflow: hidden;
}

.require_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	border-radius: 24px;
	color: #ffffff;
	background: url(../../imgs/bg_03.png) top / 100% 100% no-repeat;
	box-sizing: border-box;
	overflow: hidden;
}

.require_box .detail {
	flex: 1;
	padding-top: 48px;
	padding-bottom: 20px;
}

.require_box .detil_title {
	font-size: 24px;
	font-weight: bolder;
}

.require_box .detail_item {
	margin-left: 16px;
}

.require_box .detail_item p {
	width: 70%;
	height: 36px;
	margin: 20px 0px 16px 0px;
	padding-left: 20px;
	line-height: 36px;
	text-align: left;
	font-size: 16px;
	border-radius: 35px;

	background: linear-gradient(90deg, #e55241 1%, rgba(255, 255, 255, 0.16) 62%, rgba(255, 255, 255, 0) 100%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
}

.require_box .detail_item ul {
	list-style: none;
	font-size: 14px;
	line-height: 24px;
	margin: 0px;
	padding: 0px;
	text-align: left;
}

.require_box .detail_item ul li {
	display: flex;
	align-items: flex-start;
	max-width: 470px;
}

.require_box .detail:nth-child(2) .detail_item {
	margin-left: 36px;
}

.require_box .detail:nth-child(2) .detail_item ul li {
	color: #3734A9;
}

.require_box .detail:nth-child(2) .detail_item p {
	background: linear-gradient(90deg, #3734A9 1%, rgba(255, 255, 255, 0.16) 70%, rgba(255, 255, 255, 0) 100%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.04);
}

.require .detail_btns {
	margin: 80px 30px 30px 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.require .detail_btns>div {
	flex: 1;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 12px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
	cursor: pointer;
}

.require .detail_btns div:nth-child(1) {
	color: #FFFFFF;
	background: #4c5eae;
	border: 1px solid #4c5eae;
	margin-right: 16px;
}

.require .detail_btns div:nth-child(2) {
	color: #4c5eae;
	background: transparent;
	border: 1px solid #4c5eae;
}

.require_notes {
	text-align: left;
	padding: 20px 30px;
	margin: 0;
	list-style: none;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
}

.require_notes li {
	display: flex;
	align-items: flex-start;
	line-height: 24px;
	color: #333333;
}

/* 香港理工大学读书费用*/
.section4 {
	background: url("../../imgs/bg_04.png") center/cover no-repeat;
}

.section4 .twoLine {
	height: 44px;
	line-height: 22px;
	display: flex;
	align-items: center;
}

/* .section4 .table .tr:nth-child(2n) .td {
	border-right: 1px solid #c5d6ff;
}

.section4 .table .tr:nth-child(2n) .td:last-child {
	border-right: none;
}

.section4 .table .tr:nth-child(2n) .td div {
	border-right: none;
} */

.section4 .cost_btn {
	width: 180px;
	height: 36px;
	line-height: 36px;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	border-radius: 12px;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
}

/* section5 香港理工大学本科院系设置 */
.setting_list {
	width: var(--view-width);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	padding: 10px;
	border-radius: 24px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
}

.setting_list .card {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.setting_list .card .title {
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: -12px;
	text-align: center;
	opacity: 0;
	color: #FFFFFF;
	font-size: 16px;
	z-index: 3;
}

.setting_list .card .img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.setting_list .card:hover::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #4C5EAE 0%, rgba(76, 94, 174, 0.17) 107%);
	z-index: 2;
}

.setting_list .card:hover .title {
	opacity: 1;
}

/* .setting_list .card:hover .img{
	transform: scale(1.2);
} */


.section5 .more_btns div:nth-child(1),
.section6 .more_btns div:nth-child(1) {
	background: #4c5eae;
	border: 1px solid #4c5eae;
	color: #ffffff;
	margin-right: 16px;
}

.section5 .more_btns div:nth-child(2),
.section6 .more_btns div:nth-child(2) {
	color: #4c5eae;
	border: 1px solid #4c5eae;
	background: transparent;
}

/* section6 香港理工大学研究生课程 */
.section6 {
	background: url("../../imgs/bg_05.png") center/cover no-repeat;
}

.section6 .course_tabs {
	width: var(--view-width);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	padding: 10px;
	border-radius: 24px;
	box-sizing: border-box;
	border: 1px solid #E5E5E5;
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
	background: #FFFFFF;
	color: #4C5EAE;
}

.section6 .course_tabs>div {
	height: 40px;
	line-height: 40px;
	text-align: center;
	transition: all 0.3s linear 0s;
	cursor: pointer;
}

.section6 .active_tab {
	background: #4C5EAE;
	border-radius: 34px;
	color: #FFFFFF;
}

.course_table_wrap {
	width: var(--view-width);
	padding: 30px 0px 0px 0px;
	border-radius: 24px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
	box-sizing: border-box;
}

.course_table {
	margin: 0 30px;
	border-radius: 12px;
	border: 1px solid #c5d6ff;
	overflow: hidden;
	background: #FFFFFF;
}

.course_table .th {
	display: flex;
	align-items: center;
	background: #dce7ff;
	padding: 6px 0;
	font-weight: bold;
}

.course_table_body {
	max-height: 350px;
	font-size: 14px;
	overflow-y: auto;
	background: rgb(220, 231, 255, 0.35);
}

.course_table .tr {
	display: flex;
	align-items: center;
	border-top: 1px solid #c5d6ff;
	height: 44px;
	line-height: 44px;
}

.course_table .td {
	text-align: center;
	margin-left: 10px;
}

/* .course_table .tr .td {
	border-right: 1px solid #c5d6ff;
}

.course_table .tr .td:last-child {
	border-right: none;
} */

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


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


.course_table_body::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: rgb(78, 89, 105, 0.2);
}

.course_table_body::-webkit-scrollbar-thumb:hover {
	background-color: #dce7ff;
}

.course_tips {
	font-size: 14px;
	list-style: none;
	margin: 0px;
	padding: 20px 10px 20px 20px;
	text-align: left;
	line-height: 24px;
	border-radius: 24px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
}

.course_tips li {
	display: flex;
	align-items: center;
}

.course_tips li div:nth-child(1) {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #333333;
	margin-right: 4px;
}


/* section7 香港理工大学申请成功案例 */
.section7 {
	background: url("../../imgs/bg_06.png") center/cover no-repeat;
}

.case_box_wrap {
	width: var(--view-width);
	padding: 0 10px;
	border-radius: 24px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
	box-sizing: border-box;
}

/* 修改指示器样式 */
.section7 .case_box_wrap .el-carousel__button {
	width: 12px;
	height: 12px;
	border: 2px solid #FFFFFF;
	border-radius: 50%;
	background-color: #4C5EAE;
	opacity: 1;
	box-sizing: border-box;

}

.section7 .case_box_wrap .el-carousel__indicator.is-active .el-carousel__button {
	border: 2px solid #4C5EAE;
	background: #FFFFFF;
}


/* section8 香港理工大学申请常见问题 s*/
.section8 .issue_wrap {
	width: var(--view-width);
	padding-top: 30px;
	border-radius: 24px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
	box-shadow: 0px 7px 15px 0px rgba(216, 48, 49, 0.1);
	box-sizing: border-box;
	overflow: hidden;
	
}

.issue {
	animation: move 20s linear infinite;
	transform: translateX(-100%);
}

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


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

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

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

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

.issue_detail {
	display: flex;
	align-items: center;
	height: 48px;
	line-height: 48px;
	padding-right: 60px;
	margin-right: 60px;
	white-space: nowrap;
	background: #FFFFFF;
	color: #333333;
	border: 1px solid #DBDFEC;
	border-radius: 322px;
	box-shadow: -5px 0px 10px 0px rgba(190, 190, 190, 0.25), 5px 5px 10px 0px rgba(190, 190, 190, 0.25);
	cursor: pointer;
}

.issue_detail .icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	border: 1px solid #DBDFEC;
	border-radius: 50%;
	box-sizing: border-box;
}

.issue_detail .icon img {
	width: 38px;
	height: 38px;
}

.issue_detail:hover {
	background: #4C5EAE;
	color: #FFFFFF;
}

.issue_detail:hover .icon img {
	content: url('../../imgs/icon_a.png');
}



/* section9 景鸿香港理工大学申请服务优势 */
.advantage_wrap {
	width: var(--view-width);
	display: flex;
	/* align-items: center; */
}

.advantage_wrap .cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 每行 2 列，每列等宽 */
	gap: 12px;
	/* 设置元素之间的间隙 */
	margin-right: 20px;
}

.advantage_wrap .cards .card {
	border-radius: 10px;
	border: 1px solid #E5E5E5;
	background: linear-gradient(180deg, #FDF0D4 0%, #FFFFFF 40%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s linear 0s;
	position: relative;
	overflow: hidden;
}

.advantage_wrap .cards .card .line {
	height: 4px;
	width: 100%;
	background: #4C5EAE;
	position: absolute;
	top: 0px;
}

.advantage_wrap .cards .card .icon {
	width: 40px;
	height: 40px;
	margin-bottom: 4px;
}

.advantage_wrap .cards .card:hover {
	background: #4C5EAE;
	color: #FFFFFF;
}

.advantage_wrap .cards .card:hover .line {
	background: #FFFFFF;
}

.advantage_wrap .imgbox {
	box-sizing: border-box;
	overflow: hidden;
}

.advantage_wrap .imgbox img {
	width: 100%;
}


.advantage_wrap .cards .card:nth-child(1) .icon {
	background-image: url('../../imgs/vector_01.svg');
}

.advantage_wrap .cards .card:nth-child(2) .icon {
	background-image: url('../../imgs/vector_02.svg');
}

.advantage_wrap .cards .card:nth-child(3) .icon {
	background-image: url('../../imgs/vector_03.svg');
}

.advantage_wrap .cards .card:nth-child(4) .icon {
	background-image: url('../../imgs/vector_04.svg');
}


.advantage_wrap .cards .card:nth-child(1):hover .icon {
	background-image: url('../../imgs/vector_01_a.svg');
}

.advantage_wrap .cards .card:nth-child(2):hover .icon {
	background-image: url('../../imgs/vector_02_a.svg');
}

.advantage_wrap .cards .card:nth-child(3):hover .icon {
	background-image: url('../../imgs/vector_03_a.svg');
}

.advantage_wrap .cards .card:nth-child(4):hover .icon {
	background-image: url('../../imgs/vector_04_a.svg');
}