body{font-size: 16px;}
        
        /* 页面容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        /* 通用模块样式 */
        .section {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 40px;
            opacity: 1;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .section-title {
            font-size: 28px;
            color: #28a745;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            position: relative;
        }
        .section-title::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #28a745;
        }
        .section-title i {
            font-size: 24px;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        /* 公司简介 */
        .intro-content {
            line-height: 1.8;
            font-size: 16px;
            color: #555;
        }
        .intro-content p span{
            text-wrap-mode: inherit!important;
        }
        .intro-content p {
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        .intro-content p::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        /* 公司架构 */
        .org-chart {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
        }
        .org-node {
            text-align: center;
            margin-bottom: 20px;
        }
        .org-node.top {
            background: #28a745;
            color: #fff;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 18px;
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(40,167,69,0.3);
            transition: transform 0.3s;
        }
        .org-node.top:hover {
            transform: scale(1.05);
        }
        .org-level {
            font-size: 16px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        .org-item {
            background: #e9ecef;
            padding: 12px 20px;
            border-radius: 6px;
            min-width: 120px;
            text-align: center;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        .org-item:hover {
            background: #f1f3f5;
            border-left: 3px solid #28a745;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .org-line {
            width: 2px;
            height: 20px;
            background: #adb5bd;
            margin: 0 auto;
        }
        /* 核心业务 */
        .business-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .business-item {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.5s;
            position: relative;
            overflow: hidden;
        }
        .business-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #28a745;
            transform: scaleY(0);
            transition: transform 0.3s;
        }
        .business-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .business-item:hover::before {
            transform: scaleY(1);
        }
        .business-title {
            font-size: 18px;
            color: #28a745;
            margin-bottom: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .business-title::before {
            content: '●';
            font-size: 10px;
            margin-right: 8px;
        }
        .business-desc {
            color: #666;
            line-height: 1.6;
        }
        /* 公司环境 */
        .env-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .env-item {
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.5s;
        }
        .env-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .env-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .env-item:hover .env-img {
            transform: scale(1.1);
        }
        .env-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: #fff;
            padding: 20px 10px 10px;
            font-size: 14px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        .env-item:hover .env-name {
            transform: translateY(0);
        }
        #env p{
            margin-top: 10px;
            text-align: center;
        }
        /* 公司资质 */
        .cert-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .cert-item {
            text-align: center;
            padding: 20px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            transition: all 0.4s;
            background: linear-gradient(to bottom, #fff 50%, #f8f9fa 50%);
            background-size: 100% 200%;
            background-position: top;
        }
        .cert-item:hover {
            background-position: bottom;
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            border-color: #28a745;
        }
        .cert-icon {
            font-size: 48px;
            color: #28a745;
            margin-bottom: 15px;
            transition: transform 0.5s;
        }
        .cert-item:hover .cert-icon {
            transform: rotate(10deg) scale(1.1);
        }
        .cert-name {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }
        /* 案例清单 - 卡片式 */
        .cases-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .case-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.4s;
            border: 1px solid #e9ecef;
        }
        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .case-header {
            background: #28a745;
            color: #fff;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 18px;
        }
        .case-body {
            padding: 20px;
        }
        .case-info {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .case-info label {
            width: 80px;
            color: #666;
            font-weight: 500;
        }
        .case-info span {
            flex: 1;
            color: #333;
        }
        .case-status {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            color: #fff;
            font-weight: 500;
            margin-top: 10px;
        }
        .status-completed {
            background: #28a745;
        }
        .status-progress {
            background: #ffc107;
        }
        .status-pending {
            background: #6c757d;
        }
        /* 新增：设计团队样式 */
        .design-team {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-top: 20px;
        }
        .designers-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .designer-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #28a745;
            transition: all 0.3s;
        }
        .designer-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }
        .designer-name {
            font-size: 18px;
            font-weight: bold;
            color: #28a745;
            margin-bottom: 5px;
        }
        .designer-title {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }
        .designer-desc {
            color: #555;
            line-height: 1.6;
            font-size: 14px;
        }
        .design-process {
            font-size: 17px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .step-num {
            width: 30px;
            height: 30px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        .step-content {
            flex: 1;
        }
        .step-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        .step-desc {
            color: #666;
            line-height: 1.6;
        }
        .design-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .design-img-item {
            border-radius: 8px;
            overflow: hidden;
            height: 180px;
            position: relative;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .design-img-item:hover {
            transform: scale(1.05);
        }
        .design-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .design-img-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 8px;
            font-size: 12px;
            text-align: center;
        }
        /* 新增：生产基地样式 */
        .factory-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        .factory-desc {
            line-height: 1.8;
            color: #555;
            font-size: 16px;
        }
        .factory-desc p {
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        .factory-desc p::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        .factory-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .factory-img-item {
            border-radius: 8px;
            overflow: hidden;
            height: 180px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .factory-img-item:hover {
            transform: scale(1.05);
        }
        .factory-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* 新增：服务流程样式 */
        .service-process {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
        }
        .service-step {
            flex: 1;
            min-width: 150px;
            text-align: center;
            position: relative;
            padding: 20px 15px;
        }
        .service-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            top: 50%;
            right: -15px;
            transform: translateY(-50%);
            font-size: 20px;
            color: #28a745;
            font-weight: bold;
        }
        .step-icon {
            width: 60px;
            height: 60px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 15px;
            transition: all 0.3s;
        }
        .service-step:hover .step-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 4px 8px rgba(40,167,69,0.3);
        }
        .service-step-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
            font-size: 16px;
        }
        .service-step-desc {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        /* 动画效果 */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(40,167,69,0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 998;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #218838;
            transform: translateY(-3px);
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .nav-list {
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav-item {
                margin: 5px 10px;
            }
            .section {
                padding: 20px;
            }
            .section-title {
                font-size: 24px;
            }
            .org-level {
                
                flex-direction: column;
            }
            .cases-list {
                grid-template-columns: 1fr;
            }
            .design-team {
                grid-template-columns: 1fr;
            }
            .factory-wrap {
                grid-template-columns: 1fr;
            }
            .service-step {
                min-width: 120px;
            }
            .service-step:not(:last-child)::after {
                display: none;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

.news-container {
    margin-top: 20px;
    max-width: 1200px;
    background: #fff;
    padding: 10px 30px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}


        .hero {
            background: linear-gradient(rgb(186 211 205 / 90%), rgb(167 185 181 / 80%)), url(../images/xjyy.jpg) center / cover no-repeat;
        }




/* banner容器 */
.hero {
  height: 450px;
  text-align: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 40, 0.25);
  z-index: 1;
}

/* 内容容器 */
.hero-container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* 轻量故障标题 */
.hero-container h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  position: relative;
  /* 故障错位效果（仅X轴轻微偏移） */
  &::before, &::after {
    content: attr(text); /* 复用标题文字 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  &::before {
    color: rgba(0, 224, 181, 0.8);
    left: 2px; /* 轻微绿偏移 */
  }
  &::after {
    color: rgba(255, 255, 255, 0.8);
    left: -2px; /* 轻微白偏移 */
  }
}
/* 给h2加text属性：<h2 text="新建医院整体配套方案">...</h2> */

/* 副标题（轻微扫描线） */
.hero-container p {
  font-size: 1.2rem;
  color: #e8fff5;
  margin: 0 0 2rem 0;
  /* 模拟屏幕扫描线 */
  background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  background-size: 100% 4px;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 8px rgba(0, 224, 181, 0.4);
}

/* 故障风按钮 */
.hero-container .btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #00e0b5;
  color: #015533;
  border: none;
  border-radius: 2px; /* 直角，科技感 */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  /* 轻微故障阴影 */
  box-shadow: 0 0 0 2px #00e0b5, 0 0 8px rgba(0, 224, 181, 0.5);
  transition: all 0.3s ease;
}
.hero-container .btn:hover {
  background: #015533;
  color: #00e0b5;
  box-shadow: 0 0 0 2px #015533, 0 0 12px rgba(0, 224, 181, 0.7);
}