:root {
	--view-width: 1200px;
	--font-0: 50px;
	--font-1: 36px;
	--font-2: 32px;
	--font-3: 30px;
	--font-4: 26px;
	--font-5: 24px;
	--font-6: 22px;
	--font-7: 20px;
	--font-8: 18px;
	--font-9: 16px;
	--font-10: 14px;
}

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

* {
	box-sizing: border-box;
}

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

/* #topbanner img, */
#banner img {
	width: 100%;
	height: auto;
	display: block;
	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_wrap .topbanner_btn {
	text-align: center;
	padding: 8px 26px;
	font-size: 18px;
	color: #ffffff;
	background: #3192D9;
	border-radius: 54px;
	box-shadow: 0px 4px 10px 0px rgba(49, 146, 217, 0.33);
	transition: all 0.3s;
	cursor: pointer;
}

.topbanner_wrap .topbanner_btn:hover {
	box-shadow: 0px 4px 10px 4px rgba(49, 146, 217, 0.2), inset 0px 0px 10px 0px rgba(255, 255, 255, 1);
}

.banner {
	position: relative;
}

.banner_btns {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 26%;
	bottom: 20%;
}

.banner_btns .btn {
	width: max-content;
	height: 50px;
	padding: 0px 42px;
	box-sizing: border-box;
	line-height: 50px;
	text-align: center;
	font-size: var(--font-5);
	color: #3192D9;
	background: #ffffff;
	border-radius: 54px;
	box-shadow: 0px 4px 21px 0px rgba(16, 48, 123, 0.73);
	transition: all 0.3s;
	letter-spacing: 0.1em;
	cursor: pointer;
}

.banner_btns .btn:nth-child(1) {
	margin-right: 58px;
}

.banner_btns .btn:hover {
	box-shadow: 0px 4px 10px 0px rgba(49, 146, 217, 0.33);
}


/* 共同样式*/
.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 {
	min-height: 690px;
	padding-top: 100px;
	padding-bottom: 100px;
	box-sizing: border-box;
	overflow: hidden;
	background-image: url("../images/bgimg1.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.intro {
	width: var(--view-width, 1200px);
	padding-top: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-end;
	position: relative;
}

.intro .intro_airplane {
	width: 139px;
	height: 106px;
	position: absolute;
	top: -34px;
	left: 16%;
	transform: translateX(-50%);
}

.intro_img {
	width: 518px;
	height: 406px;
	margin-left: 14px;
}

.intro_img .img {
	width: 518px;
	height: 406px;
}

.intro-desc {
	flex: 1;
	font-size: var(--font-8, 18px);
	line-height: 28px;
}

.intro-desc .intro-desc-text {
	padding-bottom: 30px;
}

.intro-desc-text span {
	font-weight: 600;
}



/* section2 */
.section2 {
	padding-top: 100px;
	padding-bottom: 160px;
	box-sizing: border-box;
	background: #ffffff;
	background-image: url("../images/bgimg2.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.require {
	width: var(--view-width, 1200px);
	padding-top:80px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
}

.require_item {
	width: 100%;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.require_item .require_box {
	width: 100%;
	max-width: 590px;
	height: 836px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	background-image: url("../images/boxbg1.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: all 0.3s;
}

.require_item:nth-child(2) .require_box {
	background-image: url("../images/boxbg2.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.require_box_title {
	width: max-content;
	height: 120px;
	box-sizing: border-box;
	text-align: center;
	line-height: 120px;
	color: #ffffff;
	font-size: var(--font-3, 30px);
	font-weight: 600;
	text-shadow: 2px 2px 0px #024576;
	position: relative;
}

.require_box_title .text {
	position: relative;
	z-index: 2;
}

.require_box_title::after {
	content: '';
	width: 128px;
	height: 12px;
	background: #34EAC0;
	position: absolute;
	right: 0px;
	top: 70px;
	z-index: 1
}

.require_item:nth-child(2) .require_box_title::after {
	background: #33CCFF;
}

.require_box_columns {
	width: 100%;
	padding-top: 76px;
	padding-left: 60px;
	padding-right: 30px;
	padding-bottom: 30px;
	box-sizing: border-box;
}

.require_box_column {
	width: 100%;
}

.require_box_column_title {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	line-height: 40px;
	background: linear-gradient(90deg, #CCE9FD 0%, rgba(204, 233, 253, 0) 100%);
	border-radius: 10px 0px 0px 10px;
}

.require_item:nth-child(2) .require_box_column_title {
	background: linear-gradient(90deg, #CCFDDD 0%, rgba(204, 233, 253, 0) 100%);
}

.require_box_column_title .text {
	width: max-content;
	height: 40px;
	padding-left: 14px;
	padding-right: 6px;
	color: #ffffff;
	font-size: var(--font-8, 18px);
	font-weight: 600;
	background: #3192D9;
	border-radius: 10px;
}

.require_item:nth-child(2) .require_box_column_title .text {
	background: #00AB84;
}

.require_box_column_title .desc {
	color: #3192D9;
	font-size: var(--font-8, 18px);
	font-weight: 600;
	margin-left: 10px;
}

.require_box_column_ul {
	width: 100%;
	padding-top: 16px;
	padding-bottom: 30px;
}

.require_box_column_ul .require_box_column_ul_li {
	display: flex;
	align-items: flex-start;
	color: #04325B;
	font-size: var(--font-9, 16px);
	line-height: 24px;
}

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

.require_box_column_ul .require_box_column_ul_li span {
	color: #00AB84;
}

.require_box:hover {
	transform: translateY(-10px);
}

/* 申请按钮 */
.require_item .require_btn {
	width: 350px;
	height: 50px;
	margin-top: 30px;
	box-sizing: border-box;
	text-align: center;
	line-height: 50px;
	background: #3192D9;
	box-shadow: 0px 4px 10px 0px rgba(49, 146, 217, 0.46);
	border-radius: 54px;
	font-size: var(--font-9, 16px);
	color: #FFFFFF;
	transition: all 0.3s;
	cursor: pointer;
}

.require_item .require_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0px 4px 10px 0px rgba(49, 146, 217, 0.46), inset 0px 0px 10px 0px rgba(255, 255, 255, 0.8);
}

.require_item:nth-child(2) .require_btn {
	background: #00AB84;
	box-shadow: 0px 4px 10px 0px rgba(0, 121, 94, 0.55);
}

.require_item:nth-child(2) .require_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0px 4px 10px 0px rgba(0, 121, 94, 0.55), inset 0px 0px 10px 0px rgba(255, 255, 255, 0.8);
}

.require_tips {
	width: var(--view-width, 1200px);
	padding-top: 30px;
}

/*  section3 香港珠海学院 读书费用*/
.section3 {
	min-height: 690px;
	padding-top: 100px;
	padding-bottom: 100px;
	box-sizing: border-box;
	overflow: hidden;
	background-image: url("../images/bgimg3.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.cost {
	width: var(--view-width, 1200px);
	padding-top: 100px;
	box-sizing: border-box;
	display: flex;
}

.cost_left {
	width: 220px;
	padding: 29px;
	box-sizing: border-box;
	color: #ffffff;
	background: #3192D9;
	border-radius: 32px 0px 0px 32px;
	box-shadow: 4px 0px 10px 0px rgba(0, 0, 0, 0.2);
	position: relative;
}

.cost_left div {
	height: 70px;
	line-height: 70px;
	color: #ffffff;
	font-size: var(--font-8, 18px);
	font-weight: 600;
}

.cost_left .triangle {
	width: 20px;
	height: 29px;
	position: absolute;
	right: -20px;

}

.cost_left .leftTriangle {
	top: 0px;
}

.cost_left .rightTriangle {
	transform: rotateX(180deg);
	bottom: 0px;
}

.cost_table_wrap {
	flex: 1;
	padding: 29px 0px;
	box-sizing: border-box;
}

.cost_table {
	width: 100%;
	box-sizing: content-box;
	display: flex;
	background: #ffffff;
	border-radius: 0px 32px 32px 0px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	transition: all 0.5s;
}

.cost_table .cost_table_box {
	flex: 1;
	position: relative;
}

.cost_table .cost_table_box .li {
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	color: #3192D9;
	text-align: center;
	line-height: 70px;
	font-size: var(--font-8, 18px);
}

.cost_table .cost_table_box .li .li_item {
	width: 50%;
	max-width: 250px;
	min-width: 90px;
	height: 70px;
	padding: 0px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 20px;
	border-right: 1px solid #3192D9;
}

.cost_table .cost_table_box .li .li_item:last-child {
	border-right-width: 0px;
}

.cost_table .box1 .li {
	border-bottom: 1px solid #3192D9;
}

.cost_table .cost_table_box .li:last-child {
	border-bottom: none;
}

.cost_table .box2 {
	border-left: 1px solid #00AB84;
	min-width: 490px;
}

.cost_table .box2 .li {
	color: #00AB84;
	border-bottom: 1px solid #00AB84;
}

.cost_table .box2 .li .li_item {
	border-right: 1px solid #00AB84
}

.cost_table .type {
	width: 180px;
	height: 50px;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	font-size: var(--font-7, 20px);
	font-weight: 700;
	background: #3192D9;
	border-radius: 32px 32px 0px 0px;
	box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

.cost_table .type2 {
	background: #00AB84;
}

.cost_table:hover {
	padding-left: 20px;
}

.cost_table .cost_table_box:hover .type {
	height: 60px;
	padding-bottom: 10px;
	transform: translateX(-50%) translateY(-10px);
}

.cost_tips {
	width: var(--view-width, 1200px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.const_btn {
	width: 100%;
	padding-top: 10px;
	display: flex;
	justify-content: flex-end;
}

/* section4 香港珠海学院 院系设置 */
.section4 {
	min-height: 874px;
	padding-top: 100px;
	padding-bottom: 160px;
	box-sizing: border-box;
	background: #ffffff;
	background-image: url("../images/bgimg4.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.college {
	width: var(--view-width, 1200px);
	padding-top: 80px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
}

.college_item {
	width: 100%;
	height: 368px;
	padding-bottom: 30px;
	box-sizing: border-box;
	overflow: hidden;
	background: #ffffff;
	border-radius: 32px;
	transition: all 0.3s;
}

.college_item_img {
	width: 100%;
	height: 199px;
	box-sizing: border-box;
	overflow: hidden;
}

.college_item_img img {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	transition: all 0.3s;
}

.college_item_title {
	width: 100%;
	padding: 20px 16px 20px 16px;
	box-sizing: border-box;
	font-size: var(--font-7, 20px);
	font-weight: 700;
}

.college_item_desc {
	width: 100%;
	padding: 0px 16px;
	box-sizing: border-box;
	color: #999999;
	font-size: var(--font-8, 18px);
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.college_item_btn {
	width: 100%;
	padding: 0px 16px;
	text-align: right;
	color: #3192D9;
	font-size: var(--font-8, 18px);
	cursor: pointer;
}

.college_item:hover {
	transform: translateY(-16px);
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

/* section5  香港珠海学院 研究生课程*/
.section5 {
	min-height: 690px;
	padding-top: 100px;
	padding-bottom: 100px;
	box-sizing: border-box;
	overflow: hidden;
	background-image: url("../images/bgimg5.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.course {
	width: var(--view-width);
	padding-top: 80px;
	box-sizing: border-box;
}

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

.course_tabs_item {
	margin: 10px 0px;
	padding: 8px 0px;
	color: #6CA1C7;
	font-size: var(--font-7, 20px);
	font-weight: 700;
	background: transparent;
	border-radius: 26px;
	cursor: pointer;
	transition: all 0.5s;
}

.course_tabs .active_tab {
	color: #ffffff;
	padding: 8px 10px;
	background: #3192D9;
	box-shadow: 0px 4px 10px 0px rgba(49, 146, 217, 0.38);
}

.course .table {
	width: 100%;
	padding: 0px 0px 20px 0px;
	box-sizing: border-box;
	border-radius: 16px;
	background: #3192D9;
}

.course .table_header {
	width: 100%;
	height: 78px;
	box-sizing: border-box;
}

.course .table_header .th {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	color: #ffffff;
	text-align: center;
	font-size: var(--font-7, 20px);
	font-weight: 700;
}

.course .table_body {
	width: 100%;
	height: 300px;
	padding: 0px;
	color: #1A1A1A;
	overflow-y: scroll;
}

.course .table_body .tr {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.course .table_body .tr .td {
	height: 60px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background: #ffffff;
	font-size: var(--font-9, 16px);
}

.course .table_header .th .td,
.course .table_body .tr .td {
	margin-right: 1%;
}

.course .table_header .th .td:nth-child(1),
.course .table_body .tr .td:nth-child(1) {
	margin-left: calc(1% + 2px);
}

.course .table_body .tr .td:nth-child(1),
.course .table_body .tr .td:nth-child(2) {
	padding-left: 18px;
}

.course .table_body .tr .more {
	color: #3192D9;
	font-size: var(--font-10, 14px);
	cursor: pointer;
}

.course .table_body .tr .td:nth-child(3),
.course .table_body .tr .td:nth-child(4),
.course .table_body .tr .td:nth-child(5) {
	text-align: center;
	justify-content: center;
}

.course .table_body .tr:nth-child(even) .td {
	background: #EAF6FF;
}

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

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

.course .table_body::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: #00365E;
}

/* table_body 圆角处理 */
.course .table_body .tr:first-child .td {
	border-radius: 12px 12px 0px 0px;
}

.course .table_body .tr:last-child .td {
	border-radius: 0px 0px 12px 12px;
}

.course .course_footer {
	padding-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.course .course_btns {
	display: flex;
	align-items: center;
}

.course .course_btns .section_btn2 {
	margin-right: 20px;
}

/* section6 香港珠海学院  申请成功案例 */
.section6 {
	padding-top: 100px;
	box-sizing: border-box;
	background: #ffffff;
	background-image: url("../images/bgimg2.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.case {
	--item-width: 398px;
	--item-height: 524px;
	--item-gap: 10px;
	width: 100%;
	height: 886px;
	margin-top: 80px;
	box-sizing: border-box;
	overflow: hidden;
}

.case .tips {
	width: 100%;
	text-align: center;
	margin-top: -200px;
}

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

.case_item {
	width: var(--item-width);
	height: var(--item-height);
	padding: 16px;
	box-sizing: border-box;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	border-radius: 28px;
	position: absolute;
	opacity: 0;
	transition: all 1s;
}

.case_item_img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
	transition: transform 0.3s;
}

.case_item_mask {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 0px;
	left: 0px;
	transition: opacity 0.5s;
}

.case_item:hover .case_item_img {
	cursor: pointer;
	transform: scale(1.02);
}

.case_items .case_item:nth-child(1) {
	opacity: 1;
	left: calc(50% - 3.8*var(--item-width) + var(--item-gap));
	top: 436px;
	transform: rotate(-30deg);
}

.case_items .case_item:nth-child(2) {
	opacity: 1;
	left: calc(50% - 2.8*var(--item-width) + var(--item-gap));
	top: 238px;
	transform: rotate(-30deg);
}

.case_items .case_item:nth-child(3) {
	opacity: 1;
	left: calc(50% - 1.7*var(--item-width) + var(--item-gap));
	top: 62px;
	transform: rotate(-15deg);
}

.case_items .case_item:nth-child(4) {
	opacity: 1;
	left: calc(50% - var(--item-width)/2);
	top: 0px;
	transform: rotate(0deg);
}

.case_items .case_item:nth-child(4) .case_item_mask {
	opacity: 0;
}

.case_items .case_item:nth-child(5) {
	opacity: 1;
	left: calc(50% + 0.7 * var(--item-width) - var(--item-gap));
	top: 62px;
	transform: rotate(15deg);
}

.case_items .case_item:nth-child(6) {
	opacity: 1;
	left: calc(50% + 1.8 * var(--item-width) - var(--item-gap));
	top: 240px;
	transform: rotate(30deg);
}

.case_items .case_item:nth-child(7) {
	opacity: 1;
	left: calc(50% + 2.8 * var(--item-width) - var(--item-gap));
	top: 436px;
	transform: rotate(30deg);
}

/* section7 香港都会大学常见问题*/
.section7 {
	padding-top: 100px;
	padding-bottom: 100px;
	background: #ffffff;
}

.issue {
	width: var(--view-width, 1200px);
	height: 400px;
	margin-top: 80px;
	box-sizing: border-box;
	background: #ffffff;
	box-shadow: 0px 4px 36px 0px rgba(0, 0, 0, 0.15);
	border-radius: 32px;
	position: relative;
}

.issue .issue_card {
	width: 476px;
	position: absolute;
	right: 60px;
	bottom: 30px;
}

.issue_card .issue_card_btn {
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	color: #1162AB;
	font-size: var(--font-8, 18px);
	text-align: center;
	line-height: 60px;
	background: #F1F9FF;
	border-radius: 68px;
	border: 1px solid #1162AB;
	transition: all 0.3s;
}

.issue_card .issue_card_btn:hover {
	transform: scale(1.02);
	cursor: pointer;
}

.issus_list_wrap {
	width: calc(100% - 536px);
	height: 400px;
	padding-top: 10px;
	padding-left: 80px;
	/* margin-left:80px; */
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 32px;
	position: relative;
}

.issus_list {
	width: 420px;
	animation: move 26s linear infinite;
}

.issus_list_mask {
	width: 100%;
	height: 24px;
	position: absolute;
	left: 0px;
	top: 0px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, #ffffff 90%);
}

.issus_list_item {
	padding-bottom: 40px;
	color: #1162AB;
	font-size: var(--font-7, 20px);
	transition: all 0.5s;
	cursor: pointer;
}

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

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

@keyframes move {
	0% {
		transform: translateY(300px);
	}

	100% {
		transform: translateY(-760px);
	}
}

/* section8 香港珠海学院 景鸿申请服务优势*/
.section8{
	padding-bottom:100px;
}
.adv_bg {
	width: 100%;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/advbg.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.adv_bg .section_title .section_title_Ch_text1,
.adv_bg .section_title .section_title_EN {
	color: #ffffff;
}

.adva {
	width: var(--view-width);
	padding-top: 80px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.adva_item {
	width: 25%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s;
}

.adva_item_box {
	width: 316px;
	height: 316px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.adva_item_box .icon {
	width: 56px;
	height: 56px;
	position: relative;
	z-index: 2;
}

.adva_item_box .tri {
	width: 32px;
	height: 20px;
	position: absolute;
	left: 50%;
	bottom: 12px;
	margin-left: -10px;
	animation: float 3s linear infinite;
}

.adva_item_box .bgIcon_wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	animation: rotateBg 68s linear infinite;

}

.adva_item_box .bgIcon {
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}

.adva .adva_item:nth-child(1) .adva_item_box .bgIcon {
	transform: rotate(0deg);
}

.adva .adva_item:nth-child(2) .adva_item_box .bgIcon {
	transform: rotate(40deg);
}

.adva .adva_item:nth-child(3) .bgIcon {
	transform: rotate(50deg);
}

.adva .adva_item:nth-child(4) .bgIcon {
	transform: rotate(-10deg);
}

.adva_item_desc {
	width: 100%;
	padding-top: 10px;
	text-align: center;
	color: #3192D9;
	line-height: 32px;
	font-size: var(--font-6, 22px);

}

.adva .adva_item:nth-child(even) .adva_item_desc {
	color: #00AB84;
}

.adva .adva_item:hover {
	animation: scaleInOut 1.5s ease 1;
}