* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 0;
	overflow-x: hidden;
	color: #333;
	background: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body,
button,
input,
textarea {
	font-size: 14px;
}

body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

button,
input,
textarea {
	border-radius: 0;
	font: inherit;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.page-width {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.topbar {
	position: relative;
	background: radial-gradient(#e5e5e5 0.55px, transparent 0.55px) 0 0/4px 4px;
	padding: 33px 0;
	z-index: 20;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 53px;
}

.logo-link {
	display: block;
	width: 150px;
}

.logo-link img {
	width: 150px;
	height: 53px;
	object-fit: contain;
}

.hotline {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #333;
}

.hotline-mark {
	width: 31px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.hotline-mark img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.hotline small {
	display: block;
	line-height: 22px;
}

.hotline strong {
	display: block;
	color: #f4a8be;
	font-size: 27px;
	line-height: 30px;
}

.desktop-nav {
	position: relative;
	background: #fff;
	border-top: 1px solid #eee;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
	z-index: 15;
}

.desktop-nav ul {
	display: flex;
}

.desktop-nav .page-width > ul > li {
	position: relative;
	flex: 1;
	text-align: center;
}

.desktop-nav .page-width > ul > li > a {
	display: block;
	line-height: 55px;
	border-left: 1px solid #eee;
	color: #e89ab0;
	transition:
		background 0.3s ease,
		color 0.3s ease;
}

.desktop-nav .page-width > ul > li:last-child > a {
	border-right: 1px solid #eee;
}

.desktop-nav .page-width > ul > li:hover > a,
.desktop-nav .page-width > ul > li.active > a {
	background: #f4a8be;
	color: #fff;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	visibility: hidden;
	opacity: 0;
	transform: translateY(-12px);
	transition:
		visibility 0.32s ease,
		opacity 0.32s ease,
		transform 0.32s ease;
}

.desktop-nav li:hover .submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.submenu a {
	display: block;
	line-height: 46px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 14px;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		padding-left 0.3s ease;
}

.submenu a:hover {
	background: #f4a8be;
	color: #fff;
	padding-left: 24px;
}

.mobile-menu-button {
	display: none;
	position: absolute;
	top: 31px;
	right: 15px;
	width: 40px;
	height: 28px;
	border: 0;
	background: transparent;
	padding: 0;
	z-index: 30;
	cursor: pointer;
}

.mobile-menu-button img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.mobile-menu-button.open span:first-child {
	transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-button.open span:last-child {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
	display: none;
	position: absolute;
	right: 0;
	top: 79px;
	width: 100%;
	background: #f4a8bee0;
	z-index: 25;
}

.mobile-menu.open {
	display: block;
}

.mobile-menu a {
	display: block;
	text-align: center;
	color: #fff;
	padding: 12px 0px;
	/* line-height: 2.5; */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition:
		background 0.3s ease,
		padding-left 0.3s ease;
}

.mobile-menu a:hover {
	background: #e89ab0;
	padding-left: 8px;
}

.hero {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.hero-track {
	display: flex;
	transition: transform 0.65s ease;
}

.hero-slide {
	min-width: 100%;
	position: relative;
	aspect-ratio: 1920/565;
	overflow: hidden;
	background: #f5f5f5;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-dots {
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

.hero-dots button {
	width: 32px;
	height: 5px;
	padding: 0;
	border: 1px solid #f4a8be;
	background: transparent;
	cursor: pointer;
}

.hero-dots button.active {
	background: #f4a8be;
}

.section {
	padding: 0 0 60px;
}

.section-title {
	text-align: center;
	padding: 55px 0 45px;
}

.section-title h2 {
	color: #e89ab0;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
}

.section-title h3 {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: #bbb;
	margin-top: 4px;
	text-transform: uppercase;
}

.section-title p {
	font-size: 13px;
	color: #888;
	margin-top: 10px;
	line-height: 20px;
}

.service-section {
	background: #fff;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 15px;
}

.service-card {
	display: block;
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	padding: 40px 20px 18px;
	box-shadow: 0 6px 11px rgba(0, 0, 0, 0.16);
	text-align: center;
	transition: 0.3s;
}

.service-card:hover {
	transform: translateY(-4px);
}

.service-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.service-icon img {
	width: 100%;
	height: 100%;
	padding: 18px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: transform 0.75s ease;
}

.service-card:hover .service-icon img {
	transform: rotate(360deg);
}

.service-card .service-icon {
	background: #e89ab0;
}

.service-card strong {
	display: block;
	color: #000;
	line-height: 48px;
	font-size: 19px;
}

.service-card small {
	display: block;
	position: relative;
	color: #666;
	line-height: 22px;
	min-height: 22px;
	padding-bottom: 18px;
}

.service-card small:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 26px;
	height: 1px;
	background: #000;
}

.maternity-section {
	background: #fff8fa;
	margin: 0 15px;
	border-radius: 12px;
}

.maternity-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	max-width: 1230px;
	margin: 0 auto;
}

.maternity-card {
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	overflow: hidden;
}

.maternity-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 9px 20px rgba(249, 108, 159, 0.18);
}

.maternity-photo {
	position: relative;
	aspect-ratio: 1/1.02;
	overflow: hidden;
	background: #f3f3f3;
}

.maternity-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.maternity-card:hover .maternity-photo img {
	transform: scale(1.04);
}

.maternity-photo span {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 4px 10px;
	background: #e89ab0;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
}

.maternity-info {
	padding: 14px 16px 16px;
}

.maternity-info h3 {
	color: #222;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.maternity-info p {
	color: #999;
	font-size: 13px;
	line-height: 22px;
	margin-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.maternity-info dl {
	display: none;
}

.maternity-info dl div {
	flex: 1;
	min-width: 0;
	padding: 7px 8px;
	background: #fff7fa;
}

.maternity-info dt {
	color: #e89ab0;
	font-size: 11px;
	line-height: 16px;
}

.maternity-info dd {
	margin: 1px 0 0;
	color: #555;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-more {
	display: block;
	width: 108px;
	margin: 28px auto 0;
	border: 1px solid #e89ab0;
	color: #e89ab0;
	text-align: center;
	line-height: 32px;
	font-size: 13px;
	transition: 0.3s;
}

.section-more:hover {
	background: #e89ab0;
	color: #fff;
}

.about-section {
	background: #fff1f6;
	margin: 0 15px;
	border-radius: 12px;
}

.about-layout {
	display: flex;
	align-items: center;
	gap: 28px;
}

.about-visual {
	width: 46%;
	position: relative;
	padding-top: 20px;
}

.about-visual:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 26px);
	height: 100%;
	border: 3px solid #e89ab0;
}

.about-visual img:first-child {
	position: relative;
	width: calc(100% - 26px);
	margin-left: 26px;
	z-index: 1;
	transition: opacity 0.3s ease;
}

.about-thumbs {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 10px;
	width: calc(100% - 26px);
	margin: 16px 0 0 26px;
}

.about-thumbs img {
	flex: 1;
	width: 0;
	min-width: 0;
	height: 88px;
	object-fit: cover;
	background: #fff;
	padding: 3px;
	border: 1px solid #fff;
	cursor: pointer;
	transition: 0.3s;
}

.about-thumbs img:hover,
.about-thumbs img:focus,
.about-thumbs img.active {
	border-color: #e89ab0;
	transform: translateY(-4px);
	outline: 0;
}

.about-copy {
	width: 54%;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 0 0 20px;
	overflow: hidden;
}

.about-copy h3 {
	position: relative;
	margin-top: 21px;
	font-size: 20px;
	line-height: 25px;
	color: #151515;
	border-bottom: 1px solid #e4d5d8;
	padding-bottom: 10px;
}

/* .about-copy h3:after {
	content: "ABOUT";
	color: #e89ab0;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 4px;
} */

.about-copy p {
	font-size: 14px;
	line-height: 27px;
	color: #555;
	margin: 12px 0;
}

.about-copy .more {
	display: inline-block;
	padding: 0 32px;
	line-height: 42px;
	border-radius: 21px;
	background: #e89ab0;
	color: #fff;
	text-align: center;
	font-size: 15px;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.about-copy .more:hover {
	background: #d8869f;
	box-shadow: 0 6px 16px rgba(232, 154, 176, 0.4);
	transform: translateY(-2px);
}

.home-service-section {
	background: #fff;
}

.home-service-carousel {
	position: relative;
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 42px 48px;
}

.home-service-viewport {
	overflow: hidden;
}

.home-service-track {
	display: flex;
	gap: 20px;
	transition: transform 0.65s ease;
}

.home-service-card {
	display: block;
	flex: 0 0 calc((100% - 60px) / 4);
	background: #fde6ee;
	border: 1px solid #f4a8be;
	margin: 5px 0 15px;
	padding: 20px 20px 0;
	box-shadow: 0 6px 11px rgba(232, 154, 176, 0.18);
	transition: 0.3s;
}

.home-service-card:hover {
	transform: translateY(-3px);
	background: #f4a8be;
}

.home-service-card:hover span {
	color: #fff;
}

.home-service-card img {
	width: 100%;
	aspect-ratio: 600/391;
	object-fit: cover;
}

.home-service-card span {
	display: block;
	text-align: center;
	color: #000;
	font-size: 17px;
	line-height: 63px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.home-service-arrow {
	display: inline-flex;
	position: absolute;
	top: 33%;
	width: 32px;
	height: 54px;
	border: 0;
	background: #e89ab0;
	color: #fff;
	font-size: 29px;
	/* line-height: 48px; */
	cursor: pointer;
	z-index: 2;
	transition: 0.3s;
	align-items: flex-start;
	justify-content: center;
}

.home-service-arrow:hover {
	background: #333;
}

.home-service-arrow.prev {
	left: 0;
}

.home-service-arrow.next {
	right: 0;
}

.home-service-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.home-service-dots button {
	width: 32px;
	height: 5px;
	padding: 0;
	border: 1px solid #e89ab0;
	background: transparent;
	cursor: pointer;
}

.home-service-dots button.active {
	background: #e89ab0;
}

.knowledge-section {
	position: relative;
	overflow: hidden;
	background: #fff2f7;
}

.knowledge-layout {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.knowledge-feature {
	width: 50%;
}

.knowledge-feature article {
	display: flex;
	padding: 39px 18px 46px 0;
	margin-bottom: 20px;
	border-bottom: 1px dashed #bbb;
	border-left: 3px solid transparent;
	gap: 25px;
	transition: 0.3s;
}

.knowledge-feature article:hover {
	background: rgba(255, 255, 255, 0.55);
	border-left-color: #e89ab0;
	padding-left: 15px;
}

.knowledge-feature article img {
	width: 185px;
	height: 120px;
	object-fit: cover;
}

.knowledge-feature article div {
	flex: 1;
	min-width: 0;
}

.knowledge-feature h3 {
	font-size: 18px;
	line-height: 26px;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.knowledge-feature time {
	display: block;
	color: #6a6a6a;
	font-size: 12px;
	margin: 10px 0;
}

.knowledge-feature p {
	color: #858585;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.knowledge-list {
	width: 50%;
	min-height: 418px;
	overflow: hidden;
	padding: 20px;
	background: rgba(255, 255, 255, 0.3);
}

.knowledge-item h3 {
	position: relative;
	font-weight: 400;
	color: #353535;
	line-height: 48px;
	padding: 0 70px 0 25px;
	font-size: 14px;
	cursor: pointer;
	transition: 0.3s;
}

.knowledge-item h3:after {
	content: "+";
	position: absolute;
	right: 25px;
	top: 0;
	color: #e89ab0;
	font-size: 22px;
}

.knowledge-item .knowledge-detail {
	height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 25px;
	border-bottom: 1px dashed #bbb;
	transition: 0.5s;
}

.knowledge-item h3:hover {
	color: #e89ab0;
}

.knowledge-item.active h3 {
	background: #e89ab0;
	color: #fff;
}

.knowledge-item.active h3:after {
	content: "-";
	color: #fff;
}

.knowledge-item.active .knowledge-detail {
	height: 174px;
	opacity: 1;
	padding-bottom: 16px;
}

.knowledge-detail h4 {
	font-size: 17px;
	line-height: 26px;
	height: 52px;
	overflow: hidden;
	margin: 15px 0 11px;
	font-weight: 400;
}

.knowledge-detail p {
	font-size: 14px;
	line-height: 25px;
	height: 75px;
	overflow: hidden;
	color: #909090;
}

.honor-section {
	background: #fff;
}

.honor-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 15px;
}

.honor-card {
	display: block;
	border: 1px solid #e5dfdc;
	background: #fff;
	padding: 10px 10px 0;
	transition: 0.3s;
}

.honor-card img {
	width: 100%;
	aspect-ratio: 800/565;
	object-fit: contain;
	background: #fff;
}

.honor-card span {
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 54px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.honor-card:hover {
	background: #e89ab0;
	border-color: #e89ab0;
	color: #fff;
}

.contact-section {
	background: #fff;
	padding-bottom: 60px;
}

.contact-layout {
	display: flex;
	gap: 34px;
	align-items: stretch;
}

.contact-copy {
	width: 46%;
	padding: 28px 34px 25px;
	background: #fff1f6;
}

.contact-copy h3 {
	font-size: 21px;
	line-height: 30px;
	color: #222;
	font-weight: 400;
}

.contact-intro {
	font-size: 14px;
	line-height: 26px;
	color: #666;
	margin-top: 12px;
}

.contact-info {
	margin-top: 18px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 12px 0;
	border-top: 1px dashed #e3cdd5;
}

.contact-info-icon {
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
}

.contact-info-icon img {
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.contact-info-item small {
	display: block;
	color: #999;
	font-size: 12px;
	line-height: 18px;
}

.contact-info-item strong,
.contact-info-item > div > span {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
}

.contact-info-item strong {
	font-size: 17px;
	color: #e89ab0;
}

.contact-form {
	width: 54%;
	padding: 28px 30px 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	border: 1px solid #f0e5e8;
	box-shadow: 0 8px 22px rgba(65, 35, 45, 0.08);
}

.contact-form-heading {
	width: 100%;
	margin-bottom: 17px;
}

.contact-form-heading h3 {
	font-size: 21px;
	line-height: 30px;
	color: #222;
	font-weight: 400;
}

.contact-form-heading p {
	font-size: 13px;
	line-height: 21px;
	color: #999;
	margin-top: 2px;
}

.contact-form input,
.contact-form textarea {
	border: 1px solid #e2d9dc;
	background: #fff;
	padding: 0 15px;
	margin-bottom: 10px;
	outline: 0;
	transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #e89ab0;
	box-shadow: 0 0 0 2px rgba(249, 108, 159, 0.1);
}

.contact-form input {
	width: calc((100% - 20px) / 3);
	height: 41px;
}

.contact-form textarea,
.contact-form button {
	width: 100%;
}

.contact-form textarea {
	height: 116px;
	padding-top: 9px;
	resize: vertical;
}

.contact-form button {
	height: 42px;
	border: 0;
	background: #e89ab0;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.contact-form button:hover {
	opacity: 0.88;
}

.dark-footer {
	background: #333;
	color: rgba(255, 255, 255, 0.7);
	padding: 50px 0;
}

.dark-layout {
	display: flex;
	min-height: 187px;
	overflow: hidden;
}

.dark-links {
	width: 45%;
	display: flex;
}

.dark-links ul {
	width: 25%;
}

.dark-links a {
	display: block;
	line-height: 22px;
	padding: 0 15px 8px 0;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.dark-links a:first-child {
	font-size: 18px;
	color: #fff;
	line-height: 52px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dark-links a:not(:first-child):hover {
	color: #f4a8be;
	transform: translateX(4px);
}

.dark-contact {
	width: 37%;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.dark-contact h3 {
	color: #fff;
	font-size: 34px;
	line-height: 70px;
}

.dark-contact small {
	display: block;
	color: #fff;
	margin-bottom: 15px;
}

.dark-contact p {
	line-height: 24px;
}

.dark-qr {
	width: 18%;
	padding-left: 15px;
	overflow: hidden;
}

.dark-qr img {
	width: 140px;
	height: 140px;
	max-width: 100%;
	margin-left: auto;
	object-fit: contain;
}

.dark-qr span {
	display: block;
	width: 140px;
	max-width: 100%;
	margin-left: auto;
	padding-top: 8px;
	color: #fff;
	line-height: 22px;
	font-size: 12px;
}

footer {
	background: #e89ab0;
	color: #fff;
	text-align: center;
	padding: 15px;
	line-height: 24px;
	font-size: 14px;
}

.mobile-tools {
	display: none;
}

.qr-popover {
	display: none;
}
.toptitle .bigtitle {
	text-align: center;
	font-size: 30px;
	color: #f4a8be;
}
.toptitle .smalltitle {
	margin: 5px 0px;
	font-size: 13px;
}
.toptitle {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.inner-main {
	padding-bottom: 30px;
	flex: 1;
}

.inner-shell {
	display: flex;
	gap: 35px;
	max-width: 1230px;
	margin: 60px auto 0;
	padding: 0 15px;
}

.inner-sidebar {
	margin-bottom: 15px;
	width: 235px;
	flex: 0 0 235px;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	height: max-content;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.inner-sidebar h2 {
	color: #fff;
	background: linear-gradient(135deg, #e89ab0, #f4a8be);
	font-size: 18px;
	line-height: 60px;
	text-align: center;
	letter-spacing: 2px;
}

.inner-sidebar ul {
	padding: 0;
}

.inner-sidebar a {
	position: relative;
	display: block;
	line-height: 42px;
	border-bottom: 1px solid #f0f0f0;
	padding: 0 20px 0 36px;
	color: #555;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		padding-left 0.3s ease;
}
/* 单选容器 */
.radio-age-item {
	display: inline-flex;
	align-items: center;
	margin: 0px 10px;
	cursor: pointer;
	user-select: none;
	font-size: 13px;
	line-height: 21px;
	color: #555;
	margin-top: 2px;
}
/* 隐藏原生单选框 */
.radio-age-item input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
/* 自定义外圈 */
.radio-age-item .radio-circle {
	width: 10px;
	height: 10px;
	border: 1px solid #999;
	border-radius: 50%;
	margin-right: 8px;
	margin-bottom: -2px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 内部圆点 默认透明 */
.radio-age-item .radio-circle::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #e89ab0;
	border-radius: 49%;
	transform: scale(0);
	transition: all 0.2s;
}
/* input选中时，圆点放大显示 */
.radio-age-item input[type="radio"]:checked + .radio-circle::after {
	transform: scale(1);
}
.biaodantitle {
	margin-right: 10px;
	font-size: 15px;
	line-height: 21px;
	color: #555555b8;
	margin-top: 2px;
}
.inner-sidebar a:before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ddd;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.inner-sidebar a:last-child {
	border-bottom: 0;
}

.inner-sidebar a:hover,
.inner-sidebar a.active {
	background: #fde6ee;
	color: #e89ab0;
	padding-left: 42px;
}

.inner-sidebar a:hover:before,
.inner-sidebar a.active:before {
	background: #e89ab0;
	transform: translateY(-50%) scale(1.3);
}

.sidebar-contact {
	margin-top: 22px;
	padding: 20px 16px 16px;
	background: #fff7fa;
	border-top: 1px solid #eee;
}

.sidebar-contact h3 {
	color: #222;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
}

.sidebar-contact > p {
	color: #999;
	font-size: 12px;
	line-height: 20px;
	margin: 2px 0 10px;
}

.sidebar-contact-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 0;
	border-top: 1px dashed #e5d6dc;
}

.sidebar-contact-icon {
	width: 29px;
	height: 29px;
	flex: 0 0 29px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
}

.sidebar-contact-icon img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.sidebar-contact-item small {
	display: block;
	color: #999;
	font-size: 11px;
	line-height: 16px;
}

.sidebar-contact-item strong,
.sidebar-contact-item > div > span {
	display: block;
	color: #444;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	word-break: break-all;
}

.sidebar-contact-item strong {
	color: #e89ab0;
	font-size: 14px;
}

.sidebar-contact-link {
	margin-top: 7px !important;
	padding: 0 !important;
	border: 0 !important;
	background: #e89ab0;
	color: #fff !important;
	text-align: center;
	line-height: 34px !important;
	font-size: 13px;
}

.sidebar-contact-link:hover {
	background: #333 !important;
}

.floating-contact {
	position: fixed;
	left: 10px;
	top: 50%;
	width: 200px;
	background: #f4a8be;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(232, 154, 176, 0.25);
	z-index: 40;
	padding: 34px 16px 16px;
	display: none;
	animation: floating-breath 3.6s ease-in-out infinite;
}

@keyframes floating-breath {
	0%,
	100% {
		transform: translateY(-50%);
		box-shadow: 0 4px 18px rgba(232, 154, 176, 0.22);
	}

	50% {
		transform: translateY(-50%);
		box-shadow: 0 8px 30px rgba(232, 154, 176, 0.45);
	}
}

.floating-contact.closed {
	display: none !important;
}

.floating-contact-close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 24px;
	height: 24px;
	border: 0;
	background: transparent;
	font-size: 22px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	padding: 0;
	transition: color 0.3s ease;
}

.floating-contact-close:hover {
	color: #fff;
}

.floating-contact h3 {
	color: #fff;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
}

.floating-contact > p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	line-height: 20px;
	margin: 2px 0 10px;
}

.floating-contact-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.floating-contact-icon {
	width: 29px;
	height: 29px;
	flex: 0 0 29px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.2);
}

.floating-contact-icon img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.floating-contact-item small {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	line-height: 16px;
}

.floating-contact-item strong {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	word-break: break-all;
}

.floating-qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.2);
	margin-top: 10px;
}

.floating-qr img {
	width: 92px;
	height: 92px;
	object-fit: contain;
	background: #fff;
	padding: 4px;
	border-radius: 6px;
}

.floating-qr span {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 11px;
	line-height: 20px;
	margin-top: 6px;
}

.floating-contact-link {
	display: block;
	margin-top: 10px;
	background: #fff;
	color: #e89ab0 !important;
	text-align: center;
	line-height: 34px;
	font-size: 13px;
	border-radius: 6px;
	transition:
		background 0.3s ease,
		color 0.3s ease;
}

.floating-contact-link:hover {
	background: #333 !important;
	color: #fff !important;
}

@media (min-width: 992px) {
	.floating-contact {
		display: block;
	}
}

.inner-content {
	flex: 1;
	min-width: 0;
	padding-bottom: 30px;
}

.inner-heading {
	color: #333;
	border-bottom: 1px solid #d7d7d7;
	line-height: 45px;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 22px;
}

.inner-heading span {
	float: right;
	color: #e89ab0;
	font-size: 14px;
	font-weight: 400;
}

.inner-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.inner-content .maternity-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: none;
}

.inner-service-card {
	display: block;
	background: #fde6ee61;
	border: 1px solid #f4a8be;
	padding: 20px 20px 0;
	box-shadow: 0 5px 10px rgba(232, 154, 176, 0.15);
	transition: 0.3s;
}

.inner-service-card img {
	width: 100%;
	aspect-ratio: 600/391;
	object-fit: cover;
}

.inner-service-card span {
	display: block;
	text-align: center;
	font-size: 17px;
	line-height: 63px;
	transition: color 0.3s;
}

.inner-service-card:hover {
	background: #f4a8be;
}

.inner-service-card:hover span {
	color: #fff;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 28px;
}

.pagination a {
	border: 1px solid #ccc;
	padding: 7px 10px;
	background: #fff;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
	background: #f4a8be;
	color: #fff;
}

.pagination a:not(.active):hover {
	transform: translateY(-2px);
}

.inner-news article {
	display: flex;
	gap: 22px;
	padding-bottom: 29px;
	margin-bottom: 29px;
	border-bottom: 1px solid #d9d9d9;
	transition: background 0.3s ease;
}

.inner-news article:hover {
	background: rgba(244, 168, 190, 0.06);
}

.inner-news article img {
	width: 266px;
	height: 160px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.inner-news article:hover img {
	transform: scale(1.05);
}

.inner-news article div {
	flex: 1;
	font-size: 15px;
	line-height: 25px;
}

.inner-news h3 {
	font-weight: 700;
	color: #333;
	transition: color 0.3s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.inner-news article:hover h3 {
	color: #e89ab0;
}

.inner-news time {
	margin: 5px 0px;
	color: #999;
	font-size: 12px;
	display: block;
}

.inner-news p {
	height: 75px;
	overflow: hidden;
	color: #4f4f4f;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.inner-news a.more {
	display: block;
	width: 90px;
	line-height: 28px;
	text-align: center;
	background: #999;
	color: #fff;
	margin-top: 5px;
	transition:
		background 0.3s ease,
		letter-spacing 0.3s ease;
}

.inner-news article:hover a.more {
	background: #e89ab0;
	letter-spacing: 2px;
}

.inner-honor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.inner-honor-card {
	display: block;
	border: 1px solid #e5dfdc;
	padding: 10px 10px 0;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.inner-honor-card img {
	width: 100%;
	aspect-ratio: 800/565;
	object-fit: contain;
	background: #fff;
}

.inner-honor-card span {
	display: block;
	text-align: center;
	line-height: 48px;
	transition: color 0.3s ease;
}

.inner-honor-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 18px rgba(232, 154, 176, 0.2);
	border-color: #f4a8be;
}

.inner-honor-card:hover span {
	color: #e89ab0;
}

.article-detail {
	color: #333;
	line-height: 27px;
	font-size: 14px;
}

.article-detail h1,
.service-detail h1 {
	color: #e89ab0;
	font-size: 22px;
	text-align: center;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 10px;
	margin-bottom: 22px;
	font-weight: 400;
}

.article-detail time {
	display: block;
	text-align: center;
	margin: -8px 0 13px;
	color: #555;
}

.article-detail p {
	margin: 0 0 18px;
	text-indent: 2em;
}

.service-detail {
	text-align: center;
}

.service-detail h1 {
	margin-bottom: 22px;
}

.service-detail img {
	max-width: 100%;
	margin: 0 auto 15px;
}

.rich-content {
	font-size: 15px;
	line-height: 27px;
}

.rich-content p {
	margin-bottom: 18px;
}

.rich-content h2 {
	font-size: 25px;
	margin: 10px 0 15px;
	line-height: 1.5;
}

.reservation {
	max-width: 590px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #f0e0e6;
	border-radius: 14px;
	padding: 30px 30px 26px;
	box-shadow: 0 8px 24px rgba(232, 154, 176, 0.12);
}
.reservation .dx {
	display: flex;
	padding: 14px;
	border-radius: 10px;
	background-color: #fde6ee69;
	margin: 0px 0px 12px;
	background: #fdf6f8;
	border: 1px solid #eee;
	align-items: center;
}
.reservation .radio-age-item {
	display: inline-flex;
	align-items: center;
	margin: 0px 10px;
	cursor: pointer;
	user-select: none;
	font-size: 13px;
	line-height: 21px;
	color: #999;
	margin-top: 2px;
}
.reservation-intro {
	color: #888;
	font-size: 14px;
	line-height: 24px;
	margin: 0 0 18px;
	text-align: center;
}

.reservation-row {
	display: flex;

	margin-bottom: 0;
}

.reservation-row input {
	flex: 1;
	min-width: 0;
}

.reservation input,
.reservation textarea {
	width: 100%;
	background: #fdf6f8;
	border: 1px solid #eee;
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 16px;

	font-size: 14px;
	color: #333;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
}

.reservation input::placeholder,
.reservation textarea::placeholder {
	color: #bbb;
}

.reservation input:focus,
.reservation textarea:focus {
	outline: 0;
	border-color: #e89ab0;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(232, 154, 176, 0.15);
}

.reservation textarea {
	height: 120px;
	padding: 12px 16px;
	resize: vertical;
	line-height: 24px;
}

.reservation button {
	display: block;
	width: 100%;
	height: 48px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #e89ab0, #f4a8be);
	color: #fff;
	font-size: 16px;
	letter-spacing: 4px;
	cursor: pointer;
	margin-top: 4px;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.reservation button:hover {
	box-shadow: 0 8px 20px rgba(232, 154, 176, 0.45);
	transform: translateY(-2px);
}

@media (min-width: 992px) {
	.mobile-menu-button,
	.mobile-menu {
		display: none !important;
	}

	.hero-slide {
		min-height: 360px;
	}

	.inner-content .inner-heading {
		display: none;
	}
}

@media (max-width: 991px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-button {
		display: block;
	}

	.hotline {
		display: none;
	}

	.topbar {
		padding: 20px 0;
	}

	.inner-shell {
		margin-top: 30px;
		display: block;
	}

	.inner-sidebar {
		width: 100%;
		border: 0;
	}

	.inner-sidebar h2 {
		line-height: 45px;
		text-align: left;
		padding: 0 20px;
	}

	.inner-sidebar ul {
		display: none;
	}

	.inner-content {
		padding: 0;
	}

	.inner-heading {
		display: none;
	}

	.dark-links {
		display: none;
	}

	.dark-contact {
		width: calc(100% - 180px);
		border: 0;
	}

	.dark-qr {
		width: 180px;
	}

	.service-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-service-card {
		flex-basis: calc((100% - 40px) / 3);
	}

	.inner-service-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.inner-honor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.dx {
		display: grid;
		grid-template-columns: 43px 1fr;
	}
	.radio-age-item {
		margin: 0px 7px !important;
	}
	.page-width {
		padding: 0 15px;
	}

	.logo-link,
	.logo-link img {
		width: 150px;
		height: 53px;
	}

	.hero-slide {
		aspect-ratio: auto;
		height: 140px;
	}

	.hero-slide img {
		object-position: center;
	}

	.section {
		padding-bottom: 45px;
	}

	.section-title {
		padding: 40px 0 30px;
	}

	.section-title h2 {
		font-size: 23px;
		line-height: 28px;
	}

	.section-title h3 {
		margin-top: 8px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.service-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 0 15px;
	}

	.service-card {
		padding: 20px 15px 11px;
		box-shadow: none;
		margin: 1px;
	}

	.service-icon {
		width: 84px;
		height: 84px;
	}

	.service-card strong {
		font-size: 16px;
		line-height: 36px;
	}

	.service-card small {
		padding-bottom: 11px;
	}

	.about-layout,
	.knowledge-layout,
	.contact-layout {
		display: block;
	}

	.about-visual,
	.about-copy,
	.knowledge-feature,
	.knowledge-list,
	.contact-copy,
	.contact-form {
		width: 100%;
	}

	.about-visual {
		padding-top: 15px;
	}

	.about-visual img:first-child {
		width: calc(100% - 26px);
	}

	.about-thumbs img {
		height: 78px;
	}

	.about-copy {
		display: block;
		align-self: auto;
		margin-top: 10px;
		padding-top: 0;
	}

	.about-copy h3 {
		font-size: 18px;
	}

	.about-copy p {
		max-height: none;
	}

	.about-copy .more {
		display: none;
	}

	.home-service-carousel {
		padding: 0 30px 42px;
	}

	.home-service-track {
		gap: 10px;
	}

	.home-service-card {
		flex-basis: calc((100% - 10px) / 2);
		padding: 5px;
		margin: 5px 0 12px;
		box-shadow: none;
	}

	.home-service-card span {
		font-size: 14px;
		line-height: 44px;
	}

	.home-service-arrow {
		width: 24px;
		height: 42px;
		top: 33%;
		font-size: 25px;
		line-height: 38px;
	}

	.knowledge-feature article {
		gap: 17px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.knowledge-feature article img {
		width: 130px;
		height: 100px;
	}

	.knowledge-feature h3 {
		font-size: 15px;
		line-height: 20px;
		font-weight: 400;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.knowledge-feature time {
		font-size: 11px;
		margin: 7px 0;
	}

	.knowledge-feature p {
		font-size: 14px;
		line-height: 22px;
		height: 44px;
	}

	.knowledge-list {
		height: auto;
		margin-top: 13px;
		padding: 19px;
		min-height: 250px;
	}

	.knowledge-item h3 {
		line-height: 40px;
		padding: 0 60px 0 20px;
	}

	.knowledge-item h3:after {
		font-size: 20px;
		line-height: 40px;
		right: 20px;
	}

	.knowledge-item .knowledge-detail {
		padding: 0 20px;
	}

	.knowledge-item.active .knowledge-detail {
		height: 145px;
	}

	.knowledge-detail h4 {
		font-size: 15px;
		line-height: 22px;
		height: 44px;
		margin: 10px 0 8px;
	}

	.knowledge-detail p {
		font-size: 14px;
		line-height: 22px;
		height: 66px;
	}

	.honor-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 0 15px;
	}

	.honor-card {
		padding: 10px 10px 0;
	}

	.honor-card span {
		font-size: 14px;
		line-height: 44px;
		font-weight: 400;
	}

	.contact-section {
		padding-bottom: 45px;
	}

	.contact-copy {
		padding: 24px 20px;
	}

	.contact-copy h3 {
		font-size: 19px;
		line-height: 27px;
	}

	.contact-intro {
		line-height: 24px;
	}

	.contact-info {
		margin-top: 14px;
	}

	.contact-form {
		margin-top: 25px;
		padding: 24px 20px 20px;
	}

	.contact-form input {
		width: 100%;
		height: 38px;
	}

	.contact-form textarea {
		height: 116px;
	}

	.dark-footer {
		display: none;
	}

	.mobile-tools {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 50px;
		background: #e89ab0;
		border-top: 2px solid #fff;
		z-index: 50;
	}

	.mobile-tools a {
		width: 33.333%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: #fff;
		line-height: 18px;
	}

	.tool-symbol {
		font-size: 20px;
		line-height: 19px;
	}

	.qr-popover {
		display: none;
		position: fixed;
		bottom: 50px;
		right: 8px;
		max-width: calc(100vw - 16px);
		z-index: 49;
		background: #fff;
		padding: 12px;
		box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
	}

	.qr-popover.open {
		display: block;
	}

	.qr-popover img {
		width: 140px;
		height: 140px;
		max-width: 100%;
	}

	.inner-shell {
		padding: 0 15px;
	}

	.inner-sidebar h2 {
		font-size: 18px;
	}

	.inner-service-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
		margin: 0 -7px;
	}

	.inner-service-card {
		padding: 5px;
		margin: 0 7px 14px;
		box-shadow: none;
	}

	.inner-service-card span {
		font-size: 15px;
		line-height: 44px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.inner-news article {
		gap: 17px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.inner-news article img {
		width: 148px;
		height: 118px;
	}

	.inner-news article div {
		font-size: 14px;
		line-height: 20px;
	}

	.inner-news p {
		height: 40px;
		line-height: 20px;
	}

	.inner-news a.more {
		width: 80px;
		line-height: 25px;
		margin-top: 10px;
		font-size: 13px;
	}

	.inner-honor-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin: 0 -6px;
	}

	.inner-honor-card {
		padding: 10px 10px 0;
		margin: 0 6px 12px;
	}

	.inner-honor-card span {
		font-size: 14px;
		line-height: 44px;
		font-weight: 400;
	}

	.article-detail,
	.rich-content {
		font-size: 14px;
		line-height: 27px;
	}

	.article-detail h1,
	.service-detail h1 {
		font-size: 22px;
	}

	.reservation {
		width: 99%;
		padding: 20px;
	}

	.reservation-row {
		flex-direction: column;
	}

	.reservation textarea {
		height: 103px;
	}

	.inner-content {
		padding-bottom: 0;
	}
}

@media (max-width: 479px) {
	.topbar {
		padding: 22px 0 20px;
	}

	.logo-link,
	.logo-link img {
		width: 120px;
		height: 42px;
	}

	.mobile-menu-button {
		top: 31px;
	}

	.mobile-menu {
		top: 79px;
	}

	.hero-slide {
		height: 140px;
	}

	.service-grid {
		gap: 9px;
	}

	.service-card {
		padding: 20px 12px 11px;
	}

	.service-icon {
		width: 84px;
		height: 84px;
	}

	.service-card strong {
		font-size: 16px;
	}

	.knowledge-feature article img {
		width: 130px;
		height: 100px;
	}

	.contact-copy {
		font-size: 14px;
	}

	.inner-news article img {
		width: 130px;
		height: 100px;
	}

	.inner-news article div {
		width: calc(100% - 147px);
	}
}

@media (max-width: 350px) {
	.logo-link,
	.logo-link img {
		width: 112px;
		height: 40px;
	}

	.mobile-menu-button {
		right: 15px;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.service-grid .service-card:nth-child(n + 3) {
		display: none;
	}

	.inner-news article img {
		width: 130px;
	}

	.inner-news article div {
		width: calc(100% - 147px);
	}
}

.tool-symbol {
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	line-height: 19px;
}

.tool-symbol img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
	.maternity-grid,
	.inner-content .maternity-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.maternity-grid,
	.inner-content .maternity-grid {
		gap: 10px;
	}

	.maternity-info {
		padding: 11px 10px 12px;
	}

	.maternity-info h3 {
		font-size: 16px;
	}

	.maternity-info p {
		font-size: 12px;
	}

	.maternity-info dl {
		gap: 5px;
		margin-top: 7px;
	}

	.maternity-info dl div {
		padding: 5px;
	}

	.maternity-photo span {
		left: 7px;
		bottom: 7px;
		padding: 3px 7px;
		font-size: 11px;
	}
}
.floating-contact {
	position: fixed;
	right: 20px;

	z-index: 999;
	transition: all 0.3s ease;
}
.floating-contact.closed {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
/* 分页容器整体布局 */
.pagination.page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	/* 按钮之间的间距 */
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}

/* 所有按钮/页码通用样式 */
.pagination.page > * {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 5px 10px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	font-size: var(--ft16);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

/* 数字页码单独调整宽度 */
.pagination.page .page-number {
	padding: 5px 10px;
}

/* 当前激活页（蓝色背景、白色文字） */
.pagination.page .active.page-number {
	background-color: #f4a8be;
	border-color: #f4a8be;
	color: #fff;
}

/* 隐藏 SVG 箭头图标，替换为文字 */
.pagination.page .prev-page svg,
.pagination.page .next-page svg {
	display: none;
}

/* 给上一页/下一页加上文字 */
.pagination.page .prev-page::before {
	content: "上一页";
}

.pagination.page .next-page::after {
	content: "下一页";
}

/* 省略号样式（如果后续要加） */
.pagination.page .ellipsis {
	border: none;
	background: transparent;
	cursor: default;
}

/*  hover 交互效果 */
.pagination.page > *:hover:not(.active.page-number):not(.ellipsis) {
	border-color: #f4a8be;
	color: #fff;
}
