* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
}

a {
	text-decoration: none;
}

/* 工作动态/新闻列表 - 对齐 index.css 样式 */
.work-dynamics {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
	height: 434px;
	display: flex;
	flex-direction: row;
	margin-bottom: 60px;
}

.work-img {
	width: 752px;
	height: 434px;
	position: relative;
	overflow: hidden;
}

.worklunbo-div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.worklunbo-div.active {
	display: block;
}

.work-img1 {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.work-lunbowenzi {
	font-size: 16px;
	color: white;
	position: absolute;
	left: 16px;
	bottom: 10px;
	z-index: 2;
	margin: 0;
}

.slide-dots {
	position: absolute;
	right: 16px;
	bottom: 10px;
	z-index: 2;
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dot-item {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ccc;
	cursor: pointer;
}

.dot-item.active {
	background-color: red;
}

.news-container {
	max-width: 760px;
	width: 100%;
	padding: 20px;
}

.news-tabs {
	max-width: 760px;
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	height: 60px;
}

.tab-item {
	font-size: 22px;
	color: #333;
	margin-right: 38px;
	cursor: pointer;
	position: relative;
	padding-bottom: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 48px;
	justify-content: center;
}

.tab-item.active {
	font-size: 24px;
	color: #D3354A;
}

.tab-item.active::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #D3354A;
}

.more-btn {
	margin-left: auto;
	color: #999;
	font-size: 14px;
	cursor: pointer;
}

.list-wrap {
	display: none;
}

.list-wrap.active {
	display: block;
}

.news-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	gap: 10px;
}

.news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px dotted #eee;
	font-size: 14px;
}

.news-item:last-child {
	border-bottom: none;
}

.news-title {
	max-width: 600px;
	font-size: 18px;
	color: #333;
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-title:hover {
	color: #D3354A;
}

.news-date {
	color: #999;
	font-size: 14px;
}

/* 横幅 - 对齐 index.css 样式 */
.photo-div {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
	background-color: #CA0E27;
	display: block;
	overflow: hidden;
	margin-bottom: 60px;
}

.image-div {
	width: 100%;
	object-fit: contain;
}

/* 产品/业务标题 - 对齐 index.css 样式 */
.chanpin-top {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 1px;
	margin-bottom: 30px;
}

.chanpin-top-big {
	color: #000;
	font-size: 30px;
	font-weight: 600;
}

.chanpin-top-small {
	color: gray;
	font-size: 12px;
}

/* 业务领域 - 保留匀速滚动 + 对齐 index.css 基础样式 */
.chanpin {
	max-width: 1660px;
	width: 100%;
	height: 500px;
	margin: 0 auto 90px;
	padding: 0 20px;
	position: relative;
	overflow: hidden;
}

.chanpin-neirong {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* 核心：保留匀速滚动动画 */
.card-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: roll linear 60s infinite;
}

@keyframes roll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.chanpin:hover .card-track {
	animation-play-state: paused;
}

.chanpin-a {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 366px;
	flex-shrink: 0;
	height: 100%;
}

.chanpin-1 {
	width: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	height: 100%;
}

.chanpin-top1 {
	width: 100%;
	height: 241px;
	display: flex;
	padding-left: 10%;
	flex-direction: column;
	justify-content: space-around;
	background-color: #F3F4F5;
	transition: background-color 0.3s ease;
}

.chanpin-line {
	width: 48px;
	height: 3px;
	background-color: #333;
	transition: background-color 0.3s ease;
}

.zhongjian {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.chanpin-span1 {
	font-size: 14px;
	transition: color 0.3s ease;
}

.chanpin-span2 {
	font-size: 18px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.top-bottom {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.chanpin-img1 {
	width: 100%;
	height: auto;
}

.image-1 {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* 悬停/激活样式 - 对齐 index.css */
.chanpin-1:hover .chanpin-top1 {
	background-color: #CA0E27;
	color: #fff;
}

.chanpin-1:hover .chanpin-line {
	background-color: #fff;
}

.chanpin-1:hover .chanpin-span1,
.chanpin-1:hover .chanpin-span2,
.chanpin-1:hover .top-bottom {
	color: #FFFFFF;
}

/* 分割线 - 对齐 index.css 样式 */
.line-container {
	max-width: 1520px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	margin-bottom: 90px;
}

.center-line {
	width: 100%;
	height: 2px;
	background-color: #333;
}

/* 走进财信 - 对齐 index.css 样式 */
.zoujincaixin-div {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 60px;
	margin-bottom: 81px;
}

.zoujiancaixin-img {
	max-width: 730px;
	width: 100%;
}

.zoujincaixin-neirong {
	height: 350px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	justify-content: space-around;
	align-items: flex-start;
}

.zoujincaixin-top {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.zoujincaixin-top1 {
	font-size: 30px;
	font-weight: 600;
}

.zoujincaixin-top2 {
	color: gray;
	font-size: 14px;
}

.zoujincaixin-span {
	font-size: 14px;
	display: block;
	text-indent: 2em;
}

/* 走进财信 按钮区域 - 对齐 index.css 样式 */
.zoujincaixin-bottom {
	width: 170px;
	height: 36px;
	display: flex;
	flex-direction: row;
}

.zoujin-btn {
	width: 124px;
	height: 46px;
	color: white;
	background-color: #CA0E27;
	border: none;
	cursor: pointer;
}

.btn-chakan-img {
	width: 46px;
	height: 46px;
}

/* 参股成员企业 - 对齐 index.css 样式 */
.cangu-div {
	max-width: 1920px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin: 0 auto;
	margin-bottom: 34px;
}

.cangu-top {
	font-size: 30px;
	font-weight: 600;
	margin: 0 auto;
	text-align: center;
}

.cangu-top2 {
	max-width: 1470px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.cangu-img-div {
	width: 270px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cangu-img {
	width: 100%;
}

/* 响应式适配 - 完全仿照 index.css 的响应式逻辑 + 保留匀速滚动 */
@media (max-width: 1280px) and (min-width: 768px) {
	.work-dynamics {
		max-width: 900px;
		width: 100%;
		height: 300px;
		margin-bottom: 60px;
	}

	.work-img {
		width: 350px;
		height: 300px;
	}

	.work-img1 {
		padding-top: 20px;
	}

	.news-container {
		max-width: 400px;
		width: 100%;
		padding: 20px;
	}

	.news-tabs {
		max-width: 400px;
		width: 100%;
		height: 40px;
	}

	.news-list {
		gap: 0;
	}

	.tab-item {
		font-size: 14px;
		margin-right: 30px;
		position: relative;
		padding-bottom: 8px;
		height: 48px;
	}

	.tab-item.active {
		font-size: 14px;
	}

	.more-btn {
		font-size: 12px;
	}

	.news-item {
		padding: 12px 0;
		border-bottom: 1px dotted #eee;
		font-size: 14px;
	}

	.news-title {
		max-width: 300px;
		font-size: 12px;
	}

	.news-date {
		color: #999;
		font-size: 10px;
	}

	.photo-div {
		max-width: 900px;
		width: 100%;
		margin-bottom: 60px;
	}

	.chanpin-top {
		max-width: 1280px;
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: start;
		gap: 1px;
		margin-bottom: 30px;
	}

	.chanpin-top-big {
		color: #000;
		font-size: 20px;
		font-weight: 600;
	}

	.chanpin-top-small {
		color: gray;
		font-size: 12px;
	}

	.chanpin {
		max-width: 1280px;
		width: 100%;
		height: 300px;
		margin: 0 auto 40px;
		padding: 0 10px;
		position: relative;
		overflow: hidden;
	}

	.chanpin-neirong {
		height: 100%;
	}

	/* 响应式下保留匀速滚动 */
	.card-track {
		gap: 14px;
		animation: roll linear 60s infinite;
	}

	.chanpin-a {
		width: 155px;
		flex-shrink: 0;
		height: 100%;
	}

	.chanpin-1 {
		width: 100%;
		height: 100%;
	}

	.chanpin-top1 {
		width: 100%;
		height: 200px;
		padding-left: 10%;
	}

	.chanpin-line {
		width: 40px;
		height: 3px;
	}

	.chanpin-span1 {
		font-size: 12px;
	}

	.chanpin-span2 {
		font-size: 14px;
	}

	.top-bottom {
		font-size: 20px;
	}

	.line-container {
		max-width: 900px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		margin-bottom: 90px;
	}

	.center-line {
		width: 100%;
		height: 2px;
		background-color: #333;
	}

	.zoujincaixin-div {
		max-width: 900px;
		width: 100%;
		margin: 0 auto;
		padding-left: 50px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 60px;
		margin-bottom: 111px;
	}

	.zoujiancaixin-img {
		max-width: 300px;
		width: 100%;
		max-height: 300px;
	}

	.zoujincaixin-neirong {
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: flex-start;
		gap: 10px;
	}

	.zoujincaixin-top1 {
		font-size: 24px;
		font-weight: 600;
	}

	.zoujincaixin-top2 {
		color: gray;
		font-size: 10px;
	}

	.zoujincaixin-span {
		font-size: 14px;
	}

	.zoujincaixin-bottom {
		width: 150px;
		height: 36px;
	}

	.zoujin-btn {
		width: 114px;
		height: 46px;
	}

	.btn-chakan-img {
		width: 36px;
		height: 46px;
	}

	.cangu-div {
		max-width: 1280px;
		width: 100%;
		gap: 32px;
		margin-bottom: 34px;
	}

	.cangu-top {
		font-size: 24px;
	}

	.cangu-top2 {
		max-width: 850px;
		width: 100%;
	}

	.cangu-img-div {
		width: 170px;
	}

	.cangu-img {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.work-dynamics {
		max-width: 767px;
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		margin-bottom: 20px;
	}

	.work-img {
		width: 300px;
		height: 200px;
		margin: 0 auto;
	}

	.news-container {
		max-width: 400px;
		width: 100%;
		padding: 20px;
		margin: 0 auto;
	}

	.news-tabs {
		max-width: 400px;
		width: 100%;
		padding-bottom: 10px;
		height: 50px;
	}

	.tab-item {
		font-size: 14px;
		margin-right: 20px;
		cursor: pointer;
		position: relative;
		padding-bottom: 8px;
		height: 48px;
	}

	.more-btn {
		margin-left: auto;
		color: #999;
		font-size: 8px;
		cursor: pointer;
	}

	.news-list {
		gap: 0;
	}

	.news-item {
		padding: 2px 0;
		font-size: 8px;
	}

	.tab-item.active {
		font-size: 14px;
		color: #D3354A;
		font-weight: 600;
	}

	.news-title {
		max-width: 228px;
		font-size: 12px;
	}

	.tab-item.active::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #D3354A;
	}

	.photo-div {
		max-width: 500px;
		width: 100%;
		margin-bottom: 60px;
	}

	.chanpin-top {
		max-width: 767px;
		width: 100%;
		margin: 0 auto;
		align-items: center;
		margin-bottom: 30px;
	}

	.chanpin-top-big {
		font-size: 24px;
		font-weight: 600;
	}

	.chanpin-top-small {
		font-size: 12px;
	}

	.chanpin {
		max-width: 767px;
		width: 100%;
		height: 150px;
		margin: 0 auto 40px;
		padding: 0 10px;
		position: relative;
		overflow: hidden;
	}

	/* 移动端保留匀速滚动，调整动画速度 */
	.card-track {
		gap: 10px;
		animation: roll linear 60s infinite;
	}

	.chanpin-a {
		width: 85px;
		flex-shrink: 0;
		height: 100%;
		overflow: hidden;
	}

	.chanpin-1 {
		width: 100%;
		height: 100%;
	}

	.chanpin-top1 {
		width: 100%;
		height: 80px;
		/* 修复原代码高度异常问题 */
		padding-left: 0;
		justify-content: space-around;
	}

	.chanpin-line {
		width: 30px;
		height: 1px;
	}

	.zhongjian {
		gap: 2px;
	}

	.chanpin-span1 {
		font-size: 8px;
	}

	.chanpin-span2 {
		font-size: 8px;
	}

	.top-bottom {
		font-size: 10px;
	}

	.line-container {
		max-width: 767px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		margin-bottom: 90px;
	}

	.center-line {
		width: 100%;
		height: 1px;
		background-color: #333;
	}

	.zoujincaixin-div {
		max-width: 767px;
		width: 100%;
		margin: 0 auto;
		padding-left: 0;
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 80px;
	}

	.zoujiancaixin-img {
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}

	.zoujincaixin-neirong {
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		gap: 20px;
	}

	.zoujincaixin-top {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1px;
		width: 100%;
	}

	.zoujincaixin-top1 {
		font-size: 18px;
		font-weight: 600;
	}

	.zoujincaixin-top2 {
		color: gray;
		font-size: 10px;
	}

	.zoujincaixin-span {
		font-size: 12px;
	}

	.zoujincaixin-bottom {
		max-width: 767px;
		width: 90%;
		height: 30px;
		display: flex;
		flex-direction: row;
		margin: 0;
		align-items: center;
	}

	.zoujin-btn {
		width: 170px;
		height: 30px;
		font-size: 12px;
		color: white;
		margin: 0;
		background-color: #CA0E27;
		border: none;
		cursor: pointer;
	}

	.btn-chakan-img {
		width: 30px;
		height: 30px;
	}

	.cangu-div {
		max-width: 767px;
		width: 100%;
		gap: 20px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.cangu-top {
		font-size: 20px;
		font-weight: 600;
		margin: 0 auto;
		text-align: center;
	}

	.cangu-top2 {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.cangu-img-div {
		width: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.cangu-img {
		width: 100%;
	}
}

/* 补充 1024-1280 断点适配，保留匀速滚动 */
@media (min-width: 1024px) and (max-width: 1280px) {
	.chanpin {
		max-width: 1200px;
		height: 380px;
		padding: 0 20px;
	}

	/* 中等屏幕调整滚动速度 */
	.card-track {
		gap: 15px;
		animation: roll linear 60s infinite;
	}

	.chanpin-a {
		width: 210px;
		flex-shrink: 0 !important;
	}

	.chanpin-top1 {
		height: 220px;
		padding-left: 8%;
	}

	.chanpin-span1 {
		font-size: 13px;
	}

	.chanpin-span2 {
		font-size: 16px;
	}

	.top-bottom {
		font-size: 22px;
	}

	.work-dynamics {
		max-width: 1100px;
		height: 380px;
	}

	.work-img {
		width: 500px;
		height: 380px;
	}

	.news-container {
		max-width: 600px;
	}

	.news-title {
		max-width: 450px;
		font-size: 16px;
	}

	.zoujincaixin-div {
		max-width: 1100px;
		padding-left: 20px;
	}

	.zoujiancaixin-img {
		max-width: 500px;
		max-height: 400px;
	}

	.zoujincaixin-neirong {
		height: 400px;
		gap: 30px;
	}
}
