@font-face {
	font-family: 思源黑体;
	src: url('../fonts/SourceHanSansCN-Regular.otf');
}

@font-face {
	font-family: 思源黑体-Bold;
	src: url('../fonts/SourceHanSansCN-Bold.otf');
}
@font-face {
	font-family: 思源黑体-Light;
	src: url('../fonts/SourceHanSansCN-Light.otf');
}
@font-face {
	font-family: 思源黑体-Medium;
	src: url('../fonts/SourceHanSansCN-Medium.otf');
}
@font-face {
	font-family: 思源黑体-Heavy;
	src: url('../fonts/SourceHanSansCN-Heavy.otf');
}

@font-face {
	font-family: 苹方-简;
	src: url('../fonts/PingFang-SC-Regular.ttf');
}

@font-face {
	font-family: 苹方-Bold;
	src: url('../fonts/PingFang-SC-Bold.ttf');
}

@font-face {
	font-family: 苹方-Semibold;
	src: url('../fonts/PingFang-SC-Semibold.ttf');
}

html{
	background-color: black;
	overflow: hidden;
}

body{
	margin: 0;
	width: 1920px;
	height: 1080px;
	transform-origin: 0 0;
}

#header{
	width: 100%;
	height: 76px;
	background:#202147;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.header_univ_logo{
	height: 44px;
	margin-left: 50px;
}
.header_school_title{
	margin-left: 27px;
	font-size: 27px;
	font-family: 思源黑体-Bold;
	font-weight: bold;
	color:rgba(183,203,255,1);
	line-height:41px;
}

.header_platform_title{
	justify-self: right;
	margin-left: auto;
	margin-right: 10px;
	font-size: 19px;
	font-family: 思源黑体-Light;
	font-weight: lighter;
	color:rgba(255,255,255,1);
	line-height: 29px;
}

.header_platform_logo{
	width: 32px;
	height: 32px;
	margin-right: 50px;
}

#tab{
	width: 100%;
	height: calc(100% - 76px);
	background-color: #131432;
	font-family: 思源黑体;
}

.tab_list{
	height: 80px;
	padding: 0 50px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.tab_table{
	width: 100%;
	height: calc(100% - 80px);
	position: relative;
}

.tab_button{
	width: 58px;
	height: 100%;
	margin-right: 40px;
	position: relative;
	font-size: 14px;
	font-family: 思源黑体-Bold;
	font-weight: bold;
	color:#bcbcbc;;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	opacity: 0.5;
	white-space: nowrap;
}
.tab_button_highlight{
	color:#e6e6e6;
	opacity: 1;
	position: relative;
}
.tab_button_highlight::after{
	content: "";
	width: 100%;
	height: 4px;
	background: linear-gradient(270deg,rgba(60,98,253,1) 0%,rgba(0,180,253,1) 100%);
	position: absolute;
	bottom: 20px;
	left: 0;
}

.tab_body{
	width: calc(100% - 100px);
	height: calc(100% - 20px);

	padding: 0 50px;
	position: absolute;
	top: 0;
	left: 0;
}
	.tab_body_contain{
		height: 100%;
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
	}
.tab_body_column{
	height: 100%;
}

.chart_block{
	float: left;
	width: 100%;
}

.chart_block_body{
	position: relative;
}

.chart_block_body_bg{
	background-color: rgba(28, 33, 68, 0.7);
}


#tab_body_column_1_1, #chart_block_1_1{
	width: 580px;
}

#tab_body_column_1_2{
	margin-left: 30px;
	width: 1200px;
	height: 100%;
}
#chart_block_1_2{
	width: 1200px;
}

#chart_block_1_1 .chart_block_body, #chart_block_1_2 .chart_block_body{
	width: 100%;
	height: 778px;

	overflow: hidden;
	position: relative;
}
	#chart_block_1_1_contain, #chart_block_1_2_contain{
		position: absolute;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		padding: 10px 0;
		width: 100%;
	}

.course_block{
	width: 260px;
	margin-top: 20px;
	margin-left: 30px;

	display: flex;
	flex-direction: column;
	position: relative;
}
	.course_block *{
		flex-shrink: 0;
	}
	.course_block_16_9{
		width: 260px;
		height: 254px;
		margin-top: 30px;
		margin-left: 30px;

		display: flex;
		flex-direction: column;
	}

	.course_block_img{
		width: 260px;
		height: 220px;
		border-radius: 12px;
		overflow: hidden;
	}
	.course_block_img_16_9{
		width: 260px;
		height: 146px;
		border-radius: 12px;
		overflow: hidden;
	}
	.course_block_name{
		width: 100%;
		height: 30px;
		margin: 10px 0;
		font-size: 20px;
		font-family: 思源黑体-Bold;
		font-weight: bold;
		color: white;
		line-height: 30px;
		overflow: hidden;
	}
	.course_block_tutor{
		width: 100%;
		height: 18px;
		font-size: 18px;
		font-family: 思源黑体-Medium;
		font-weight: 500;
		color:#798eb2;
		line-height: 18px;
		overflow: hidden;
	}
	.course_block_atd{
		width: 100%;
		height: 50px;
		font-size: 16px;
		font-family: 思源黑体-Light;
		font-weight: 300;
		color:#798eb2;
		line-height: 50px;
		overflow: hidden;
	}
	.course_block_atd *{
		display: inline;
	}
	.course_block_atd_num{
		font-family: 思源黑体-Bold;
		font-weight: bold;
		color: white;
	}

#chart_block_1_1 .course_block{
	width: 520px;
}

	#chart_block_1_1 .course_block_img{
		width: 520px;
		height: 440px;
	}
	#chart_block_1_1 .course_block_img_16_9{
		width: 520px;
		height: 400px;
		margin-bottom: 40px;
	}
	#chart_block_1_1 .course_block_name{
		height: 60px;
		font-size: 40px;
		line-height: 60px;
	}
	#chart_block_1_1 .course_block_tutor{
		height: 36px;
		font-size: 36px;
		line-height: 36px;
	}
	#chart_block_1_1 .course_block_atd{
		height: 100px;
		font-size: 32px;
		line-height: 100px;
	}

#tab_body_column_2_1{
	width: 1400px;
	display: flex;
	flex-wrap: wrap;
}
#tab_body_column_2_2{
	width: 420px;
}
#chart_block_2_1, #chart_block_2_2{
	width: 680px;
	height: 398px;
	margin-right: 20px;
}
#chart_block_2_3, #chart_block_2_4, #chart_block_2_5{
	margin-top: 20px;
	margin-right: 20px;
	width: 446px;
	height: 450px;
}
#chart_block_2_6{
	width: 420px;
	height: 885px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.chart_title{
	font-size: 18px;
	font-family: 苹方-简;
	color: white;
	line-height: 25px;
	margin: 20px;
}

.chart_title_2{
	height: 26px;
	line-height: 26px;
	font-family: 苹方-Bold;
	font-weight: bold;
	font-size: 26px;
	padding-left: 16px;
	color: #d3d3d3;
	position: relative;
	margin: 30px 0;
}
.chart_title_2::after{
	content: "";
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg,rgba(60,98,253,1) 0%,rgba(0,180,253,1) 100%);
	position: absolute;
	left: 0;
}
#tutor_block_list{
	flex-shrink: 0;
	width: 100%;
	height: 820px;
	padding-bottom: 20px;
	position: relative;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	align-items: center;
}
	#tutor_block_list_contain{
		padding-bottom: 40px;
		width: calc(100% - 40px);
		position: absolute;
		top: 0;
	}

.scroll_y{
	overflow-x: hidden;
	overflow-y: auto;
}


.scroll_y::-webkit-scrollbar{
	width: 4px;
	border-radius: 2px;
}
.scroll_y::-webkit-scrollbar{
	height: 4px;
	border-radius: 2px;
}
.scroll_y::-webkit-scrollbar-track, .scroll_x::-webkit-scrollbar-track{
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}
.scroll_y::-webkit-scrollbar-thumb, .scroll_x::-webkit-scrollbar-thumb{
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.scroll_x::-webkit-scrollbar{
	height: 12px;
	border-radius: 6px;
}
.scroll_x::-webkit-scrollbar-track{
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
}
.scroll_x::-webkit-scrollbar-thumb{
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 6px;
}

.tutor_block{
	width: calc(100% - 40px);
	height: 170px;
	margin-top: 22px;
	padding: 20px 20px;
	position: relative;
	border-radius: 10px; 
} 
.tutor_block::before {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background-image: linear-gradient(180deg, rgba(55,105,253,0.3), rgba(4,175,253,0.3));
	content: '';
    z-index: 0;
	border-radius: 10px;
}

.tutor_block::after {
	position: absolute;
    top: 0; bottom: 0;
	left: 0; right: 0;
	border-radius: 10px;
	content: '';
	background-color: rgba(28, 33, 68, 0.7);
	z-index: 0;
}

.tutor_block *{
	position: relative;
	z-index: 1;
	
} 

.tutor_block_name{
	height: 24px;
	font-family: 苹方-Bold;
	font-weight: bold;
	font-size: 18px;
	padding-left: 10px;
	color: white;
}
.tutor_block_name::after{
	content: "";
	width: 4px;
	height: 18px;
	background: linear-gradient(180deg,rgba(60,98,253,1) 0%,rgba(0,180,253,1) 100%);
	position: absolute;
	left: 0;
	top: 3px;
}
.tutor_block_intro{
	width: 186px;
	height: 72px;
	margin-top: 26px;
	font-family: 苹方-简;
	font-size: 13px;
	line-height: 18px;
	color:#798eb2;
	overflow: hidden;
}
.tutor_block_location_block{
	margin-top: 26px;
	display: flex;
	align-items: center;
}

.tutor_block_location_icon{
	width: 20px;
	height: 20px;
}

.tutor_block_location_text{
	font-size: 16px;
	font-family: 苹方-简;
	color: #798eb2;
	margin-left: 4px;
}

.tutor_block_img{
	position: absolute;
	width: 142px;
	height: 168px;
	top: 20px;
	right: 20px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0 30px -10px black;
}



/* 卡片3 */
#tab_body_column_3_1{
	width: 1050px;
	height: 874px;

	display: flex;
	flex-direction: column;
}
#tab_body_column_3_2{
	width: 722px;
	margin-left: 40px;
}

.price_block{
	width: 340px;
	height: 116px;
	background-color: rgba(28, 33, 68, 0.7);
	margin-top: 16px;
	overflow: hidden;
}
	.price_block_school{
		float: left;
		width: 100%;
		font-size: 16px;
		font-family: 思源黑体-Medium;
		color:#d3d3d3;
		opacity: 0.5;

		margin-top: 20px;
		margin-left: 25px;
	}
	.price_block_price_info{
		float: left;
		font-size: 22px;
		font-family: 思源黑体-Bold;
		color:#d3d3d3;

		margin-top: 20px;
		margin-left: 25px;

		display: flex;
	}
		.price_block_price_info_num{
			margin-left: 10px;
		}

.price_block_summary{
	width: 340px;
	height: 116px;
	border: 5px solid;
	border-image: linear-gradient(270deg, rgba(60,98,253,1), rgba(0,180,253,1)) 5 5;
	box-sizing: border-box;
	overflow: hidden;
	background-color: rgba(19, 20, 50, 0.7);
}
	.price_medal_img{
		width: 78px;
		height: 78px;
		float: left;
		margin-top: 16px;
		margin-left: 30px;
	}
	.price_block_summary_title{
		width: 182px;
		font-size: 20px;
		font-family: 苹方-简;
		color: white;
		line-height: 28px;
		float: left;
		margin-top: 16px;
		margin-left: 40px;
		opacity: 0.4;
	}
	.price_block_summary_num{
		width: 182px;
		height: 62px;
		line-height: 52px;
		font-size: 47px;
		font-family: 苹方-Semibold;
		margin-left: 40px;
		float: left;
		color: white;
		overflow: hidden;
	}

#chart_block_3_1 .chart_block_body{
	height: 380px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}

#chart_block_3_2 .chart_block_body{
	height: 325px;
	display: flex;
}
#event_pres{
	height: 100%;
	width: 688px;
	position: relative;
	overflow: hidden;
}
	#event_pres_contain{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: absolute;
		top: 0;
	}
#event_price{
	height: 100%;
	width: 332px;
	display: flex;
	flex-direction: column;
	margin-left: 30px;
}
	#event_price_img{
		width: 282px;
		height: 128px;
		border: 5px solid;
		border-image: linear-gradient(270deg, rgba(60,98,253,1), rgba(0,180,253,1)) 5 5;
		margin-top: 30px;
		margin: 30px 25px 10px 25px;
	}
	.event_price_text{
		font-size: 16px;
		font-family: 苹方-Semibold;
		color:#d3d3d3;
		line-height: 22px;
		padding: 5px 30px;
	}
.event_group{
	width: calc(100% - 60px);
	padding: 10px 30px;
}
	.event_group_title{
		height: 46px;
		font-size: 14px;
		font-family: 思源黑体-Bold;
		color: white;

		display: flex;
		align-items: center;
		position: relative;
	}
	.event_group_table{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		position: relative;
	}
		.event_block{
			width: 158px;
			height: 62px;
			border: 1px solid #85a5ff;
			margin-left: 8px;
			margin-bottom: 16px;

			font-size:16px;
			font-family: 思源黑体-Medium;
			color:#d3d3d3;
			padding: 0 20px;
    		text-align: center;

			display: flex;
			justify-content: center;
			align-items: center;
			position: relative;
		}
#chart_block_3_3 .chart_block_body{
	height: 790px;
	background-color: rgba(28, 33, 68, 0.7);
	position: relative;
}

	#chart_block_3_3_map{
		/* height: 100%;
		width: 100%; */
		height: 790px;
		width: 722px;
	}

	#chart_block_3_3_text_1{
		position: absolute;
		font-size: 22px;
		font-family: 思源黑体-Bold;
		color:#d3d3d3;

		left: 30px;
		top: 50px;
	}

	#chart_block_3_3_text_2{
		position: absolute;
		font-size: 30px;
		font-family: 思源黑体-Bold;
		color:#d3d3d3;

		left: 350px;
		top: 44px;
	}

	#chart_block_3_3_block_1{
		width: 292px;
		height: 132px;
		background: rgba(28, 33, 68, 0.7);
		border: 4px solid;
		border-image: linear-gradient(270deg, rgba(60,98,253,1), rgba(0,180,253,1)) 4 4;
	
		position: absolute;
		bottom: 30px;
		right: 30px;

		overflow: hidden;
	}
		#map_1_text_contain{
			position: absolute;
			width: 100%;
			top: 0;
			left: 0;
			display: flex;
			flex-direction: column;
			padding-top: 10px;
			padding-bottom: 20px;
		}

		#map_1_text_contain div{
			font-size: 14px;
			font-family: 苹方-简;
			color: white;
			line-height: 20px;
			text-align: center;

			margin-top: 5px;
		}

/* 卡片4 */
#tab_body_column_4_1{
	width: 1050px;
	height: 874px;

	display: flex;
	flex-direction: column;
}
#tab_body_column_4_2{
	width: 722px;
	margin-left: 40px;
}

#chart_block_4_1 .chart_block_body{
	height: 395px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#chart_block_4_2 .chart_block_body{
	height: 310px;
	position: relative;
	overflow: hidden;
}
	#project_contain{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

		.project_block{
			position: relative;
			flex-shrink: 0;
			height: 250px;
			display: flex;
			padding: 30px;
		}

		.project_block_img{
			flex-shrink: 0;
			height: 256px;
			width: 196px;
			border-radius: 10px;
			margin-right: 50px;
		}

		.project_block_text_area{
			flex-shrink: 0;
			display: flex;
			flex-direction: column;
			width: 440px;
			overflow: hidden;
		}

			.project_block_title{
				flex-shrink: 0;
				height: 40px;
				line-height: 40px;
				font-size: 16px;
				font-family: 思源黑体-Heavy;
				color:#d8d8d8;
				margin-right: 20px;
			}

			.project_block_content_1{
				flex-shrink: 0;
				height: 40px;
				line-height: 40px;
				font-size: 14px;
				font-family: 思源黑体-Medium;
				color:#d3d3d3;
			}
				.project_tutor{
					width: 180px;
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
				}

			.project_block_content_2{
				line-height: 40px;
				font-size: 12px;
				font-family: 思源黑体-Medium;
				color:#d3d3d3;
				float: left;
				line-height:19px;
				overflow-wrap: break-word;
				overflow: hidden;
				height: 135px;
			}
		
		.project_block_member_area{
			flex-shrink: 0;
			margin-left: 10px;
			width: 290px;
		}
			.team_member_table{
				display: flex;
				flex-wrap: wrap;
				justify-content: flex-start;
				height: 220px;
			}
			.team_member_block{
				height: 110px;
				width: 80px;

				display: flex;
				flex-direction: column;
				margin-left: 14px;
				position: relative;
			}
				
				.team_member_block_img_bg{
					flex-shrink: 0;
					position: relative;
					height: 80px;
					width: 80px;
					background-image: linear-gradient(180deg, rgba(55,105,253,1), rgba(4,175,253,1));
					content: '';
					z-index: 0;
					border-radius: 50%;
				}
					.team_member_block_img{
						height: 74px;
						width: 74px;
						position: absolute;
						border-radius: 50%; 
						left: 3px;
						top: 3px;
					}
				.team_member_block_overflow{
					height: 80px;
					width: 80px;
					border-radius: 50%;
					background-image: linear-gradient(180deg, rgba(55,105,253,1), rgba(4,175,253,1));
					display: flex;
					align-items: center;
					justify-content: center;
					color: white;
					font-size: 40px;
				}
				
				.team_member_block_text{
					height: 30px;
					line-height: 30px;
					width: 100%;
					font-size: 12px;
					font-family: 思源黑体-Medium;
					color:#d3d3d3;

					text-align: center;
				}
#chart_block_4_3 .chart_block_body{
	height: 790px;
	background-color: rgba(28, 33, 68, 0.7);
	position: relative;
}

.chart_block_4_1_subblock{
	height: 100%;
	width: 50%;
}
	.chart_block_4_1_subblock_head{
		height: 75px;
		width: 100%;
		display: flex;
	}
		.chart_block_4_1_subblock_head_title{
			height: 75px;
			line-height: 75px;
			font-size: 22px;
			font-family: 思源黑体-Bold;
			color:#d3d3d3;
			margin-left: 30px;
		}
		.chart_block_4_1_subblock_head_num{
			height: 75px;
			line-height: 75px;
			font-size: 30px;
			font-family: 思源黑体-Bold;
			color:#d3d3d3;
			margin-left: 20px;
		}

		.chart_block_4_1_subchart{
			width: 460px;
			height: 290px;
			margin-left: 30px;
			border: 1px solid #85A5FF;
		}



#chart_block_4_3_map{
	/* height: 100%;
	width: 100%; */
	height: 790px;
	width: 722px;
}
#chart_block_4_3_block_1{
	width: 292px;
	height: 132px;
	background: rgba(28, 33, 68, 0.7);
	border: 4px solid;
	border-image: linear-gradient(270deg, rgba(60,98,253,1), rgba(0,180,253,1)) 4 4;

	position: absolute;
	bottom: 30px;
	right: 30px;

	overflow: hidden;
}

	#map_2_text_contain{
		width: 100%;
		position: absolute;
		top: 0;
		display: flex;
		flex-direction: column;
		padding-bottom: 20px;
	}

	#map_2_text_contain div{
		flex-shrink: 0;
		font-size: 14px;
		font-family: 苹方-简;
		color: white;
		line-height: 20px;

		margin-left: 10px;
		margin-top: 5px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: flex;
		align-items: center;
	}


/* 通用 */

.flex{
	display: flex;
}

.tooltip_arrow{
	position: relative;
}
.tooltip_arrow::after{
	content: "";
	background-color: white;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: 100%;
	transform-origin: 0 0;
	transform: rotate(-45deg);
	position: absolute;
}

/* 板块0 */
a, a:link, a:visited, a:hover{
	color: white;
	text-decoration: none;
}

#chart_block_0_1_contain{
	width: 1382px;
	height: 420px;
	overflow: hidden;
	display: flex;
}
#chart_block_0_2_contain{
	width: 1382px;
	height: 286px;
	overflow: hidden;
}

#tab_body_column_0_2{
	margin-left: 20px;
}
#chart_block_0_3_contain{
	width: 420px;
	height: 420px;
	overflow: hidden;
	
}
#chart_block_0_4_contain{
	width: 420px;
	height: 286px;
	overflow: hidden;
}


#display_area{
	flex-shrink: 0;
	width: 340px;
	height: 360px;
	margin: 30px 0 0 30px;
	position: relative;
	color: white;
	overflow: hidden;
} 
#display_area::before {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background-image: linear-gradient(180deg, rgba(55,105,253,1), rgba(4,175,253,1));
	content: '';
    z-index: 0;
	border-radius: 10px;
}
	#display_area_contain{
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;

		display: flex;
		flex-wrap: nowrap;
	}
	.display_block{
		position: relative;
		flex-shrink: 0;
		height: 100%;
		width: 340px;
		height: 360px;
	}

	.display_block_img{
		height: 100%;
		width: 100%;
	}
	.display_block_text_area{
		position: absolute;
		height: 80px;
		width: 100%;
		bottom: 0;

		display: flex;
		align-items: center;
		background-color: rgba(0, 0, 0, 0.5);
	}
		.display_block_text_detail{
			margin-left: 20px;
			width: 244px;
			font-size: 14px;
			line-height: 30px;
			height: 60px;
			overflow: hidden;
		}
		.display_block_text_seperator{
			width: 2px;
			margin: 0 10px;
			height: 60%;
			background-color: rgba(255, 255, 255, 0.5);
		}
		.display_block_text_page{
			width: 58px;
			font-size: 16px;
			text-align: center;
		}

#school_news{
	width: 1032px;
	margin-left: 40px;
	position: relative;
	overflow: hidden;
}
	#school_news_contain{
		margin: 30px 30px 30px 0;
		height: calc(100% - 60px);
		width: calc(100% - 30px);
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}
		.school_news_link{
			flex-shrink: 0;
			position: relative;
			width: 100%;
			height: 50px;
			display: flex;
			font-size: 20px;
		}
		
			.school_news_link_title{
				width: 852px;
				display: flex;
				align-items: center;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
			}
			.school_news_link_date{
				width: 120px;
				display: flex;
				align-items: center;
				overflow: hidden;
			}
#media_news{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
	#media_news_contain{
		margin: 30px;
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		flex-wrap: nowrap;
	}
		.media_news_link{
			flex-shrink: 0;
			position: relative;
			width: 310px;
			height: 226px;
			margin-right: 30px;
		}
			.media_news_link_img{
				width: 310px;
				height: 158px;
			}
			.media_news_link_title{
				margin-top: 20px;
				width: 310px;
				height:44px;
				font-size: 16px;
				color:#d3d3d3;
				line-height: 22px;
				overflow: hidden;
			}

#announce{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
	#announce_contain{
		width: calc(100% - 60px);
		height: calc(100% - 60px);
		margin: 30px;
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}
		.announce_link{
			flex-shrink: 0;
			position: relative;
			overflow-wrap: break-word;
			margin-bottom: 16px;
		}
#construction{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
	#construction_contain{
		width: calc(100% - 60px);
		height: calc(100% - 60px);
		margin: 30px;
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}
		.construction_link{
			flex-shrink: 0;
			position: relative;
			overflow-wrap: break-word;
			margin-bottom: 16px;
		}