/* 公共页面样式 */

/* 顶部联系方式栏 */
.header-contact-bar {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.contact-info a:hover {
    color: #f39c12;
}
.contact-info i {
    margin-right: 6px;
    color: #f39c12;
}

/* Logo样式 */
.logo-wrapper a.logo {
    font-size: 14px;
    line-height: 1.3;
    max-width: 280px;
    display: block;
}
.logo-wrapper a.logo i {
    font-size: 28px;
    margin-right: 8px;
}

/* 导航菜单 */
.main-menu > li > a {
    font-size: 13px;
    padding: 25px 12px;
}

/* 面包屑导航区域 */
.breadcrumb-section {
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}
.breadcrumb-section h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 36px;
}
.breadcrumb-section p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.breadcrumb-nav {
    margin-top: 20px;
}
.breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
    margin: 0 8px;
}

/* 服务详情卡片 */
.service-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid #333;
    transition: all 0.3s;
}
.service-detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}
.service-detail-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.service-detail-card h4 i {
    margin-right: 12px;
    font-size: 24px;
}
.service-detail-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* 服务标签 */
.service-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin: 5px 5px 5px 0;
    border: 1px solid #e0e0e0;
}

/* CTA区域 */
.cta-section {
    padding: 60px 0;
    color: #fff;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button:hover {
    background: #e67e22;
    color: #fff;
    transform: translateY(-2px);
}

/* 首页样式 */
.header-contact-bar-index {
    background: linear-gradient(90deg, #1a5276 0%, #2980b9 100%);
}
.header-contact-bar-index .contact-info a:hover {
    color: #f39c12;
}
.header-contact-bar-index .contact-info i {
    color: #f39c12;
}
.logo-wrapper-index a.logo i {
    color: #f39c12;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    border-top: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: #f39c12;
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i {
    font-size: 30px;
    color: #fff;
}
.service-card h5 {
    margin-bottom: 12px;
    color: #1a5276;
}
.service-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #f39c12;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #f39c12;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% - 12px);
    background: #e0e0e0;
}
.timeline-item:last-child::after {
    display: none;
}
.timeline-year {
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 5px;
}

.cta-section-index {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
}

/* 临沧代妈页面样式 */
.header-contact-bar-daima {
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
}
.header-contact-bar-daima .contact-info a:hover {
    color: #e74c3c;
}
.header-contact-bar-daima .contact-info i {
    color: #e74c3c;
}
.logo-wrapper-daima a.logo i {
    color: #e74c3c;
}
.breadcrumb-section-daima {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}
.breadcrumb-nav-daima a {
    color: #e74c3c;
}
.service-detail-card-daima {
    border-left-color: #e74c3c;
}
.service-detail-card-daima h4 i {
    color: #e74c3c;
}
.process-step {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}
.process-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}
.process-step h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 13px;
    color: #666;
}
.advantage-box {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}
.advantage-box i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 15px;
}
.advantage-box h5 {
    color: #fff;
    margin-bottom: 10px;
}
.advantage-box p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.cta-section-daima {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 50px 0;
    color: #fff;
}
.cta-section-daima h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section-daima p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button-daima {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button-daima:hover {
    background: #f8f9fa;
    color: #c0392b;
    transform: translateY(-2px);
}

/* 临沧代怀页面样式 */
.header-contact-bar-daihuai {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}
.header-contact-bar-daihuai .contact-info a:hover {
    color: #f1c40f;
}
.header-contact-bar-daihuai .contact-info i {
    color: #f1c40f;
}
.logo-wrapper-daihuai a.logo i {
    color: #27ae60;
}
.breadcrumb-section-daihuai {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}
.breadcrumb-nav-daihuai a {
    color: #f1c40f;
}
.service-detail-card-daihuai {
    border-left-color: #27ae60;
}
.service-detail-card-daihuai h4 i {
    color: #27ae60;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
}
.feature-item i {
    font-size: 30px;
    color: #27ae60;
    margin-right: 15px;
    flex-shrink: 0;
}
.feature-item h5 {
    color: #2c3e50;
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}
.cta-section-daihuai {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 50px 0;
    color: #fff;
}
.cta-section-daihuai h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section-daihuai p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button-daihuai {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #27ae60;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button-daihuai:hover {
    background: #f8f9fa;
    color: #219a52;
    transform: translateY(-2px);
}

/* 临沧代生页面样式 */
.header-contact-bar-daisheng {
    background: linear-gradient(90deg, #8e44ad 0%, #9b59b6 100%);
}
.header-contact-bar-daisheng .contact-info a:hover {
    color: #f39c12;
}
.header-contact-bar-daisheng .contact-info i {
    color: #f39c12;
}
.logo-wrapper-daisheng a.logo i {
    color: #8e44ad;
}
.breadcrumb-section-daisheng {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}
.breadcrumb-nav-daisheng a {
    color: #f39c12;
}
.service-detail-card-daisheng {
    border-left-color: #8e44ad;
}
.service-detail-card-daisheng h4 i {
    color: #8e44ad;
}
.supply-chain-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}
.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px 10px;
}
.flow-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.flow-step-icon i {
    font-size: 28px;
    color: #fff;
}
.flow-step h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}
.flow-step p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
.flow-arrow {
    color: #8e44ad;
    font-size: 24px;
    flex-shrink: 0;
}
.advantage-list {
    list-style: none;
    padding: 0;
}
.advantage-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.advantage-list li:last-child {
    border-bottom: none;
}
.advantage-list li i {
    color: #8e44ad;
    margin-right: 15px;
    font-size: 20px;
}
.advantage-list li strong {
    color: #2c3e50;
    margin-right: 10px;
}
.cta-section-daisheng {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    padding: 50px 0;
    color: #fff;
}
.cta-section-daisheng h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section-daisheng p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button-daisheng {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #8e44ad;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button-daisheng:hover {
    background: #f8f9fa;
    color: #7d3c98;
    transform: translateY(-2px);
}

/* 临沧代母页面样式 */
.header-contact-bar-daimu {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}
.header-contact-bar-daimu .contact-info a:hover {
    color: #f1c40f;
}
.header-contact-bar-daimu .contact-info i {
    color: #f1c40f;
}
.logo-wrapper-daimu a.logo i {
    color: #e74c3c;
}
.breadcrumb-section-daimu {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}
.breadcrumb-nav-daimu a {
    color: #f1c40f;
}
.service-detail-card-daimu {
    border-left-color: #e74c3c;
}
.service-detail-card-daimu h4 i {
    color: #e74c3c;
}
.creative-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.creative-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.creative-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.creative-item-icon {
    height: 120px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
}
.creative-item-icon i {
    font-size: 50px;
    color: #fff;
}
.creative-item-content {
    padding: 20px;
    text-align: center;
}
.creative-item-content h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.creative-item-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}
.media-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}
.media-stat-item {
    text-align: center;
    padding: 20px;
}
.media-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 5px;
}
.media-stat-label {
    font-size: 14px;
    color: #666;
}
.cta-section-daimu {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 50px 0;
    color: #fff;
}
.cta-section-daimu h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section-daimu p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button-daimu {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button-daimu:hover {
    background: #f8f9fa;
    color: #c0392b;
    transform: translateY(-2px);
}

/* 临沧助孕页面样式 */
.header-contact-bar-zhuyun {
    background: linear-gradient(90deg, #16a085 0%, #1abc9c 100%);
}
.header-contact-bar-zhuyun .contact-info a:hover {
    color: #f39c12;
}
.header-contact-bar-zhuyun .contact-info i {
    color: #f39c12;
}
.logo-wrapper-zhuyun a.logo i {
    color: #16a085;
}
.breadcrumb-section-zhuyun {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}
.breadcrumb-nav-zhuyun a {
    color: #f39c12;
}
.service-detail-card-zhuyun {
    border-left-color: #16a085;
}
.service-detail-card-zhuyun h4 i {
    color: #16a085;
}
.training-program {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s;
}
.training-program:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.training-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a085, #1abc9c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.training-icon i {
    font-size: 24px;
    color: #fff;
}
.training-content h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.training-content p {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
}
.support-timeline {
    position: relative;
    padding-left: 40px;
}
.support-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #16a085;
}
.support-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}
.support-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #16a085;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #16a085;
}
.support-item h5 {
    color: #2c3e50;
    margin-bottom: 8px;
}
.support-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}
.cta-section-zhuyun {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    padding: 50px 0;
    color: #fff;
}
.cta-section-zhuyun h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-section-zhuyun p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.cta-button-zhuyun {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #16a085;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.cta-button-zhuyun:hover {
    background: #f8f9fa;
    color: #138d75;
    transform: translateY(-2px);
}
