* {
	margin: 0;
	padding: 0;
}

body {
	letter-spacing: 1px;
	max-width: 2000px;
	margin: 0 auto;
}

p {
	line-height: 24px;
}

ul,
li {
	list-style: none;
}

a,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: #000;
}

.banner {
	width: 100%;
	margin-top: 8px;
}

.banner img {
	width: 100%;
}

/* 面包屑 */
.crumbs {

	margin: 20px 0;
}

.crumbs ul {
	display: flex;
	align-items: center;
}

.crumbs ul li {

	padding-left: 10px;
}

.crumbs ul li a {
	color: #444;
}

.crumbs ul img {
	width: 25px;
	display: flex;
	align-items: center;
}

/* 板块 */
.Section {
	box-shadow: 0px 0px 10px #d8d8d8;
	margin: 20px 0;
	padding: 30px 0;
}

.part {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.ranks {
	box-sizing: border-box;
	margin: 0 auto;
	/* 居中显示 */
	transition: width 0.2s ease;
	/* 平滑过渡 */
	width: 80%;
}

.ranks_list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	/* padding: 25px 0; */
}

.module {

	box-sizing: border-box;
}

/* 当屏幕宽度 < 700px */
@media (max-width: 699px) {

	.ranks_list .module {
		flex: 1 1 100%;
		/* 每个部分一个模块一行 */
	}
}

/* 当屏幕宽度 >= 700px 且 < 1200px */
@media (min-width: 700px) and (max-width: 1199px) {
	.Two_columns .module {
		flex: 1 1 48%;
		/* 第一部分：两个模块一行 */
	}

	.Three_columns .module {
		flex: 1 1 31%;
		/* 第二部分：三个模块一行 */
	}

	.Four_columns .module {
		flex: 1 1 48%;
		/* 第三部分：两个模块一行 */
	}
}

/* 当屏幕宽度 >= 1200px */
@media (min-width: 1200px) {
	.Two_columns .module {
		flex: 1 1 48%;
		/* 第一部分：两个模块一行 */
	}

	.Three_columns .module {
		flex: 1 1 31%;
		/* 第二部分：三个模块一行 */
	}

	.Four_columns .module {
		flex: 1 1 22%;
		/* 第三部分：四个模块一行 */
	}
}

@media screen and (max-width:1620px) {
	.ranks {
		width: 90%;
	}
}
@media screen and (max-width:1200px) {
	.ranks {
		width: 98%;
	}

	.ranks_list {
		gap: 16px;
	}
}

@media (max-width: 576px) {
	.Mobile_navigation {
		padding-top: 65px;
	}
}

@media (min-width: 576px) {
	.Mobile_navigation {
		margin-top: 15px;
	}
}
@media (max-width: 2000px) {
	iframe {
		height: 520px;
	}
}
@media (max-width: 1117px) {
	iframe {
		height: 470px;
	}
}
@media (max-width: 873px) {
	iframe {
		height: 485px;
	}

}
@media (max-width: 716px) {
	iframe {
		height: 760px;
	}
}
@media (max-width: 525px) {
	iframe {
		height: 780px;
	}
	
}
