* {
	box-sizing: border-box;
	font-family: "思源黑体", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

a:focus,
a:hover {
	text-decoration: none !important;
}

html,
body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #222;
	overflow-x: hidden;
	max-width: 100%;
}

.page-wrap .row {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	max-width: 100%;
}

/* 顶部栏 */
.top {
	margin: 0;
	width: 100%;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: #ffffff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .08);
}

.top-content {
	margin: 0 50px;
	overflow: hidden;
}

.top-logo {
	float: left;
	margin: 16px 0;
}

.top-logo img {
	height: 40px;
	width: auto;
	display: block;
}

.page-wrap {
	padding-top: 72px;
}

/* Banner */
.banner {
	width: 100%;
	line-height: 0;
}

.banner-item {
	width: 100%;
	height: auto;
	display: block;
}

/* 紧凑分区：高度随内容，不再一屏一层 */
.sec {
	padding: 48px 24px;
	background: #fff;
}

.sec-alt {
	background: #f7f7f7;
}

.sec-inner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

.sec-title {
	color: #c31331;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 12px;
	letter-spacing: 1px;
	line-height: 1.35;
	text-align: center;
}

.sec-title-left {
	text-align: left;
}

.sec-bar {
	width: 40px;
	height: 4px;
	background: #c31331;
	margin: 0 auto 24px;
}

.sec-bar-left {
	margin-left: 0;
	margin-right: auto;
}

.sec-sub {
	font-size: 16px;
	font-weight: 700;
	color: #222;
	margin: 0 0 20px;
	text-align: center;
}

.sec-text {
	font-size: 16px;
	line-height: 1.9;
	color: #222;
	font-weight: 700;
	text-align: left;
	max-width: 880px;
	margin: 0 auto;
}

.sec-text p {
	margin: 0 0 10px;
	word-break: keep-all;
	overflow-wrap: break-word;
	line-break: strict;
}

.nowrap {
	white-space: nowrap;
}

/* 电脑端强制换行，手机端隐藏换行保持连贯 */
.only-pc {
	display: none;
}

@media (min-width: 768px) {
	.only-pc {
		display: block;
	}
}

.highlight {
	color: #c31331;
	font-weight: 700;
}

/* 关于：四宫格 */
.about-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.about-grid li {
	background: #fff;
	border: 1px solid #ebebeb;
	border-top: 3px solid #c31331;
	padding: 20px 16px;
	text-align: center;
}

.about-num {
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: #c31331;
	margin-bottom: 8px;
	line-height: 1.2;
}

.about-desc {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #222;
	line-height: 1.6;
}

/* 产品按钮 */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.product-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 12px 8px;
	background: #c31331;
	color: #fff !important;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	box-shadow: 0 3px 10px rgba(195, 19, 49, .22);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

a.product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(195, 19, 49, .35);
	background: #a80f28;
	color: #fff !important;
}

.product-item.is-disabled {
	background: #9a9a9a;
	box-shadow: none;
	cursor: default;
	pointer-events: none;
	opacity: .85;
}

/* 合作要求 + 数量 */
.partner-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 28px;
	align-items: start;
}

.req-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.req-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	color: #222;
}

.req-list em {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #c31331;
	color: #fff;
	font-style: normal;
	font-size: 13px;
	font-weight: 700;
	border-radius: 4px;
}

.partner-quota {
	background: #fff;
	border: 1px solid #ebebeb;
	padding: 28px 20px;
	text-align: center;
}

.partner-count {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #222;
	letter-spacing: 1px;
	line-height: 1.6;
}

/* 目标卡片栈 */
.goal-stack {
	display: grid;
	gap: 16px;
}

.goal-card {
	background: #fafafa;
	border: 1px solid #ececec;
	border-left: 4px solid #c31331;
	padding: 20px 22px 18px;
	text-align: left;
}

.goal-tag {
	display: inline-block;
	background: #c31331;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 3px;
	margin-bottom: 12px;
}

.goal-card p {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.85;
	color: #222;
}

.goal-card .goal-lead {
	margin-bottom: 10px;
}

.goal-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.goal-list li {
	position: relative;
	padding-left: 1.3em;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
	color: #222;
}

.goal-list li::before {
	content: "◆";
	position: absolute;
	left: 0;
	top: 0;
	color: #222;
	font-size: 11px;
	line-height: 1.9;
}

/* 医疗设备 */
.equip-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 860px;
	margin: 0 auto;
}

.equip-card {
	display: block;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
	transition: transform .2s ease, box-shadow .2s ease;
	text-align: center;
}

.equip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.equip-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	background: #f5f5f5;
}

.equip-card .software-btn {
	display: inline-block;
	margin: 14px auto 16px;
	padding: 7px 22px;
	background: #c31331;
	color: #fff;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
}

/* 底部：左文案 / 中二维码 / 右 logo */
#foot {
	width: 100%;
	background: #D30024;
	margin-top: 0;
	padding: 28px 40px 20px;
}

#foot .foot-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
}

#foot .foot-left {
	text-align: left;
}

#foot .foot-center {
	text-align: center;
}

#foot .foot-right {
	text-align: right;
}

#foot .item {
	margin-top: 6px;
	font-size: 14px;
	color: #ffffff;
}

#foot .foot-qr {
	width: 110px;
	height: 110px;
	object-fit: cover;
	display: block;
	background: #fff;
	border: 4px solid #fff;
	border-radius: 4px;
}

#foot .itemb {
	margin-top: 16px;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
}

#foot .itemb a {
	color: #ffffff;
	text-decoration: none;
}

.blogo {
	height: 40px;
	width: auto;
	display: inline-block;
}

@media (max-width: 992px) {
	.about-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sec-title {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.top-content {
		margin: 0 16px;
	}

	.top-logo {
		margin: 12px 0;
	}

	.top-logo img {
		height: 32px;
	}

	.page-wrap {
		padding-top: 56px;
	}

	.sec {
		padding: 32px 16px;
	}

	.sec-title {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.sec-bar {
		margin-bottom: 18px;
	}

	.sec-text,
	.goal-card p,
	.goal-list li,
	.req-list li {
		font-size: 14px;
	}

	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.about-num {
		font-size: 20px;
	}

	.about-desc {
		font-size: 12px;
	}

	.product-item {
		min-height: 48px;
		font-size: 14px;
	}

	.partner-count {
		font-size: 18px;
	}

	.equip-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.equip-card img {
		height: 180px;
	}

	#foot {
		padding: 24px 16px 20px;
	}

	#foot .foot-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 16px;
	}

	#foot .foot-left,
	#foot .foot-right {
		text-align: center;
	}

	#foot .foot-qr {
		width: 96px;
		height: 96px;
	}

	.blogo {
		height: 36px;
	}
}
