 /* 基础样式 */
 body {
 	font-family: "Microsoft YaHei", sans-serif;
 	color: #333;
 	background-color: #f9fafb;
 }

 /* 页面标题区域 */
 .page-header {
 	background: url("../asset/zixun-bg.png") center center no-repeat;
 	height: 400px;
 	background-size: cover;
 	padding: 40px 0;
 	position: relative;
 	color: #333;
 	margin-bottom: 30px;
 }

 .header-content {
 	font-style: italic;
 	font-size: 24px;
 	font-weight: 400;
 	color: rgba(0, 65, 135, 0.8);
 	position: absolute;
 	top: 130px;
 	left: 320px;
 }

 .header-content .title {
 	font-weight: 600;
 	font-size: 60px;
 	/* background: linear-gradient(to right, #6886d5, #004187); */
 	padding-right: 10px;
 	background-image: linear-gradient(to left, #6886d5, #004187);
 	-webkit-background-clip: text;
 	-moz-background-clip: text;
 	background-clip: text;
 	-webkit-text-fill-color: transparent;
 	color: transparent;
 	text-shadow: none;
 }

 /* 内容区域 */
 .content-container {
 	padding: 3rem 0;
 }

 /* 标签切换 */
 .tabs {
 	margin-bottom: 2rem;
 }

 .tabs .nav-item {
 	margin-right: 30px;
 }

 .tabs .nav-tabs .nav-link {
 	border: none;
 	color: #000d1b;
 	font-size: 26px;
 	font-weight: 500;
 }

 .tabs .nav-tabs .nav-link:hover {
 	border-color: #f5f5f6;
 }

 .tabs .nav-item .active {
 	background-image: linear-gradient(to left, #6886d5, #004187);
 	-webkit-background-clip: text;
 	-moz-background-clip: text;
 	background-clip: text;
 	-webkit-text-fill-color: transparent;
 	color: transparent;
 	text-shadow: none;
 	position: relative;
 }

 .tabs .nav-item .active::before {
 	content: "";
 	position: absolute;
 	bottom: 0;
 	left: 0;
 	right: 0;
 	height: 4px;
 	/* 边框厚度 */
 	background: linear-gradient(to left, #6886d5, #004187);
 }

 /* 资讯列表 */
 .news-list {
 	/* max-width: 800px; */
 	margin: 0 auto;
 }

 .news-item {
 	padding: 40px;
 	border-bottom: 0.5px solid rgba(0, 13, 27, 0.1);
 	display: flex;
 	align-items: center;
 	position: relative;
 }

 .news-item:hover {
 	background-color: #f5f9ff;
 }

 .news-item:hover .news-box {
 	width: calc(100% - 220px);
 }

 .news-item:hover::after {
 	content: "";
 	position: absolute;
 	background: url("../asset/more-hover.png") center/cover no-repeat;
 	width: 30px;
 	height: 30px;
 	right: 24px;
 }

 .news-date {
 	/* width: 100px; */
 	padding-right: 40px;
 	margin-right: 40px;
 	color: #86909c;
 	font-weight: 600;
 	font-size: 32px;
 	border-right: 1px solid #e5e7e8;
 	background-image: linear-gradient(to left, #6886d5, #004187);
 	-webkit-background-clip: text;
 	-moz-background-clip: text;
 	background-clip: text;
 	-webkit-text-fill-color: transparent;
 	color: transparent;
 	text-shadow: none;
 }

 .news-date .year {
 	font-weight: 400;
 	font-size: 16px;
 }

 .news-box {
 	width: calc(100% - 180px);
 }

 .news-title {
 	color: #000d1b;
 	font-size: 20px;
 	text-decoration: none;
 }

 .news-title .hot-tag {
 	width: 58px;
 	height: 24px;
 }

 .news-content {
 	color: rgba(0, 13, 27, 0.4);
 	font-size: 16px;
 	line-height: 1.6;
 	display: -webkit-box;
 	-webkit-line-clamp: 2;
 	-webkit-box-orient: vertical;
 	overflow: hidden;
 	margin-top: 10px;
 }

 .pagination-container {
 	display: flex;
 	align-items: center;
 	gap: 16px;
 	padding: 12px;
 	font-family: Arial, sans-serif;
 	color: #333;
 }

 .page-size-selector {
 	display: flex;
 	align-items: center;
 	gap: 8px;
 }

 .page-size-selector select {
 	padding: 4px 8px;
 	border: 1px solid #ddd;
 	border-radius: 4px;
 	background-color: #fff;
 	cursor: pointer;
 }

 .total-data {
 	color: #666;
 }

 .pagination-nav {
 	display: flex;
 	align-items: center;
 	gap: 4px;
 }

 .page-btn {
 	width: 32px;
 	height: 32px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	border: 1px solid #ddd;
 	border-radius: 4px;
 	background-color: #fff;
 	color: #000D1B;

 	text-align: center;
 	/* 标准/400/B1-14-Base */
 	font-family: "PingFang SC";
 	font-size: 14px;
 	cursor: pointer;
 	transition: all 0.2s ease;
 }

 /* .page-btn:hover {
            border-color: #999;
            background-color: #f5f5f5;
        } */

 .page-btn.active {
 	border-radius: 4px;
 	border: 1px solid #2B73ED;
 	background: #F6FAFF;
 }

 .page-btn:disabled {
 	opacity: 0.5;
 	cursor: not-allowed;
 	background-color: #f9f9f9;
 }

 .ellipsis {
 	width: 32px;
 	height: 32px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	color: #666;
 }

 /* 页脚 */
 footer {
 	background-color: #f7f8fa;
 	padding: 3rem 0 2rem;
 	margin-top: 3rem;
 }

 .footer-logo {
 	margin-bottom: 1.5rem;
 }

 .footer-links {
 	display: flex;
 	flex-wrap: wrap;
 	gap: 1.5rem;
 	margin-bottom: 2rem;
 }

 .footer-link {
 	color: #4e5969;
 	font-size: 0.9rem;
 	text-decoration: none;
 }

 .footer-link:hover {
 	color: #165dff;
 }

 .contact-info {
 	margin-top: 2rem;
 }

 .contact-item {
 	display: flex;
 	align-items: center;
 	margin-bottom: 1rem;
 	color: #4e5969;
 }

 .contact-item i {
 	margin-right: 0.5rem;
 	color: #165dff;
 }

 .copyright {
 	text-align: center;
 	padding-top: 2rem;
 	margin-top: 2rem;
 	border-top: 1px solid #e5e6eb;
 	color: #86909c;
 	font-size: 0.85rem;
 }


 /* 高端理财 */

 .wealth_management {
 	height: 600px;
 }

 .wealth_management_bg {
 	height: 100%;
 	padding-top: 469px;
 	background-image: url(../asset/gdlc-banner.png);
 	background-size: auto 100%;
 	background-position: center;
 	background-repeat: no-repeat;
 }

 .wealth_management_btn {
 	display: flex;
 	justify-content: center;
 	align-content: center;
 	width: 401px;
 	height: 58px;
 	margin: 0 auto;
 	border-radius: 8px;
 	color: #004187;
 	border: 1px solid #6886D5;
 	background: linear-gradient(180deg, #E7EFFF 0%, #FFF 100%);
 }

 .wealth_management_btn:hover {
	background: linear-gradient(272deg, #6886D5 -0.06%, #004187 100%);
	color: #ffffff;
 }

 .wealth_management_btn p {
	display: inline-flex;
	align-items: center;
	margin: 0;
 	font-family: "PingFang SC";
 	font-size: 24px;
 	font-style: normal;
 	font-weight: 400;
 	line-height: normal;
 }

 @media (min-width: 1900px) {
 	.wealth_management_bg {
 		background-size: 100% auto;
 	}
 }