﻿*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button,
textarea,
select {
	font: inherit;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	outline: none;
}

a {
	text-decoration: none;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	max-width: 2000px;
	margin: 0 auto;
	letter-spacing: 1px;
}

/* 3. 段落间距 */
p+p {
	margin-top: 1em;
}

.banner {
	width: 100%;
	margin-top: 8px;
}

.banner img {
	width: 100%;
}

.part {
	
	background-size: cover;
	background-position: 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;

}

.module {
	box-sizing: border-box;
}

.box_shadow {
	padding: 10px;
	box-shadow: 0px 0px 8px #e3e3e3;
	border-radius: 10px;
	margin: 30px auto;
}

/* 当屏幕宽度 < 700px */
@media (max-width: 700px) {

	.ranks_list .module {
		flex: 1 1 100%;
		/* 每个部分一个模块一行 */
	}
}

/* 当屏幕宽度 >= 700px 且 < 1200px */
@media (min-width: 701px) 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;
	}
}

/* 标题 */
.t_title>div {
	display: flex;
	align-items: center;
	justify-content: center;

}

.t_title img {
	width: 2.5rem;
	height: 2.5rem;

}

.t_title h3 {
	font-size: 1.5rem;
	margin-left: 10px;
	color: #3974af;
}

.t_title hr {
	margin: 10px auto 0;
	width: 80px;
	height: 2px;
	background-color: #3974af;
	box-sizing: unset;

}


/* 相关产品 */
#Related_products {
	padding: 30px 0;

}

#Related_products>a {
	box-shadow: 0px 0px 8px #d8d8d8;
	text-align: center;
	padding: 8px;
	border-radius: 10px;
}

#Related_products>a img {
	width: 100%;
	border-radius: 10px;
	display: flex;
}

#Related_products>a p {
	font-size: 14px;
	font-weight: 600;
	color: #666;

}

/* 面包屑 */
.crumbs {
	padding-top: 30px;
}

.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;
}
@media screen and (max-width: 700px){
	.crumbs {
		padding: 20px 0;
	}
               .ranks{
	    padding : 0 10px;
	}
}