@charset "utf-8";

.finance-cta {
	position: relative;
	width: 100%;
	min-height: 120px;
	overflow: hidden;
	font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}

.finance-cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #002b5e;
	background-image: url("../images/80342413-3513-4bf8-8f59-3fdd95990eca (1).png");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}

/* 左深蓝 → 右透出建筑图 */
.finance-cta__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		#002b5e 0%,
		#002b5e 28%,
		rgba(0, 43, 94, 0.92) 45%,
		rgba(0, 43, 94, 0.55) 68%,
		rgba(0, 43, 94, 0.35) 100%
	);
}

.finance-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 36px 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.finance-cta__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.06em;
	line-height: 1.5;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.finance-cta__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 40px;
	padding: 0 28px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: background 0.2s ease, color 0.2s ease;
}

.finance-cta__btn:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

@media (max-width: 900px) {
	.finance-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 20px;
	}

	.finance-cta__text {
		font-size: 18px;
	}

	.finance-cta__btn {
		align-self: flex-end;
	}
}

@media (max-width: 640px) {
	.finance-cta {
		min-height: auto;
	}

	.finance-cta__text {
		font-size: 16px;
		line-height: 1.6;
	}

	.finance-cta__btn {
		align-self: stretch;
		text-align: center;
	}
}
