.container {
	width: 1200px;
	min-width: 1200px;
}
@font-face {
	font-family: "DS_Digital_Bold_Italic";
	src: url("../font/DS_Digital_Bold_Italic.ttf");
}
@font-face {
	font-family: "造字工房凌黑常规体";
	src: url("../font/造字工房凌黑常规体.ttf");
}

.animate__animated {
	--animate-duration: 1.5s;
}
a {
	cursor: pointer;
}
.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.ellipsis-muti {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.sub-wrap {
	position: relative;
	height: 40px;
	margin: 32px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sub-title {
	width: fit-content;
	font-family: "造字工房凌黑常规体";
	position: relative;
	z-index: 1;
	letter-spacing: 2px;
	font-weight: 700;
}
.sub-title::before,
.sub-title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 250px; /* 初始宽度，可根据需要调整 */
	height: 4px; /* 靠近文字一侧的宽度 */
	background: radial-gradient(ellipse at left, rgba(20, 131, 231, 1) 0%, rgba(20, 131, 231, 0) 70%);
	transform: translateY(-50%);
	z-index: -1;
}

.sub-title::before {
	right: 100%;
	margin-right: 24px;
	background: radial-gradient(ellipse at right, rgba(20, 131, 231, 1) 0%, rgba(20, 131, 231, 0) 70%);
}

.sub-title::after {
	left: 100%;
	margin-left: 24px;
}
.sub-desc {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	font-weight: 700;
	color: #efefef;
	letter-spacing: 2px;
	margin-bottom: 0;
}
.banner {
	min-height: 120px;
	background-color: #254cb3;
}
.banner img {
	display: inline-block;
	width: 100%;
}
.breadcrumb-wrap {
	background: #f7f6f6;
	border-bottom: 1px solid #d4d4d4;
}
.breadcrumb-wrap .breadcrumb {
	margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb a {
	display: flex;
	align-items: flex-start;
	color: #333;
	text-decoration: none;
}
.breadcrumb-wrap .breadcrumb .active {
	color: #3458a1;
	font-weight: 500;
}
.breadcrumb-wrap .breadcrumb svg {
	width: 21px;
	height: 21px;
	margin-right: 8px;
	color: #666;
}
.btn-primary {
	background-color: #3458a1;
	border-color: #3458a1;
}
.split {
	position: relative;
}
.split::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, rgba(221, 221, 221, 0.2) 0%, rgba(221, 221, 221, 1) 50%, rgba(221, 221, 221, 0.2) 100%);
	border-radius: 50%;
}
