关于我们
<style>
/* 基础样式复位 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
/* 主题色定义 */
:root {
--primary-color: #07a5b0;
--secondary-color: #f0fbfc;
--text-dark: #2c3e50;
--text-light: #7f8c8d;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* 顶部横幅 */
.page-banner {
height: 300px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-align: center;
}
.banner-content h1 {
font-size: 36px;
margin-bottom: 10px;
letter-spacing: 2px;
}
/* 品牌介绍部分 */
.brand-intro {
padding: 80px 0;
background-color: #fff;
}
.section-title {
text-align: center;
margin-bottom: 50px;
}
.section-title h2 {
font-size: 30px;
color: var(--primary-color);
position: relative;
display: inline-block;
padding-bottom: 15px;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--primary-color);
}
.intro-flex {
display: flex;
align-items: center;
gap: 50px;
flex-wrap: wrap;
}
.intro-text {
flex: 1;
min-width: 300px;
}
.intro-text p {
margin-bottom: 20px;
text-indent: 2em;
color: #555;
font-size: 16px;
text-align: justify;
}
.intro-image {
flex: 1;
min-width: 300px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.intro-image img {
width: 100%;
display: block;
}
/* 服务项目展示 */
.services-grid {
padding: 80px 0;
background-color: var(--secondary-color);
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}
.service-card {
background: #fff;
padding: 40px 30px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-bottom: 4px solid transparent;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
border-bottom: 4px solid var(--primary-color);
}
.service-icon {
font-size: 40px;
margin-bottom: 20px;
display: block;
}
.service-card h3 {
margin-bottom: 15px;
color: var(--text-dark);
}
/* 成功数据统计 */
.data-section {
padding: 60px 0;
background-color: var(--primary-color);
color: #fff;
}
.data-flex {
display: flex;
justify-content: space-around;
text-align: center;
flex-wrap: wrap;
gap: 30px;
}
.data-item h3 {
font-size: 42px;
margin-bottom: 5px;
}
.data-item p {
font-size: 18px;
opacity: 0.9;
}
/* 服务优势 */
.advantages {
padding: 80px 0;
background-color: #fff;
}
.adv-list {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 40px;
}
.adv-item {
flex: 1;
min-width: 260px;
display: flex;
gap: 20px;
}
.adv-num {
width: 50px;
height: 50px;
background-color: var(--primary-color);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 20px;
flex-shrink: 0;
}
.adv-info h4 {
margin-bottom: 10px;
color: var(--text-dark);
font-size: 18px;
}
.adv-info p {
font-size: 14px;
color: var(--text-light);
}
/* 响应式调整 */
@media (max-width: 768px) {
.page-banner { height: 200px; }
.banner-content h1 { font-size: 28px; }
.intro-flex { flex-direction: column; }
.data-flex { flex-direction: column; }
}
</style>
<!-- 页面Banner -->
<section class="page-banner">
<div class="banner-content">
<h1>关于蓝色宝贝</h1>
<p>传递生命希望,圆您生子梦想</p>
</div>
</section>
<!-- 品牌介绍 -->
<section class="brand-intro">
<div class="container">
<div class="section-title">
<h2>公司简介</h2>
</div>
<div class="intro-flex">
<div class="intro-text">
<p>
长沙蓝色宝贝公司(Blue Baby)是一家深耕于辅助生殖领域的专业医疗服务机构。总部坐落于星城长沙,依托于国内外顶尖的辅助生殖医疗资源,我们致力于为每一个渴望迎接新生命的家庭提供全方位、个性化、一站式的备孕与生育解决方案。
</p>
<p>
多年来,蓝色宝贝始终秉承“专业、诚信、大爱”的核心价值观。我们与全球多家知名的生殖医学中心深度合作,引进了先进的第三代试管婴儿(PGD/PGS)技术。我们的服务涵盖了从前期咨询、身体评估、方案制定、专家预约、到流程跟踪及后期保胎的全生命周期管理。
</p>
<p>
作为行业领航者,我们特别关注特殊生育需求,提供包括<b>三代试管、选性别、代生代怀、供卵供精</b>等多元化辅助生育项目。我们深知生育之路的艰辛与不易,因此每一位蓝色宝贝的顾问都经过严格筛选与专业培训,确保以最严谨的态度保护客户隐私,以最温暖的服务陪伴客户走向成功。
</p>
</div>
<div class="intro-image">
<img src="https://placehold.co/600x400/07a5b0/ffffff?text=Professional+Lab" alt="医疗实验室">
</div>
</div>
</div>
</section>
<!-- 核心服务项目 -->
<section class="services-grid">
<div class="container">
<div class="section-title">
<h2>核心服务项目</h2>
</div>
<div class="grid-container">
<div class="service-card">
<span class="service-icon">