

        .solution-section {
            padding: 60px 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .solution-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        .card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            /* 卡片基础过渡 */
            transition: all 0.3s ease;
        }
        /* 卡片悬停效果 */
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(22, 119, 255, 0.15);
        }
        .card-media {
            width: 100%;
            height: 280px;
            object-fit: cover;
            /* 图片过渡 */
            transition: transform 0.5s ease;
        }
        .card:hover .card-media {
            transform: scale(1.05);
        }
        .card-body {
            padding: 30px 25px;
        }
        .card-title {
            font-size: 28px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 15px;
            /* 标题过渡 */
            transition: color 0.3s ease;
        }
        .card:hover .card-title {
            color: #03a882;
        }
        .card-desc {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        .card:hover .card-desc {
            color: #333;
        }
        /* 新建医院流程 */
        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: #e0e6ed;
            z-index: 1;
            /* 线条过渡 */
            transition: background-color 0.3s ease;
        }
        .card:hover .process-steps::before {
            background-color: #03a882;
        }
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 30%;
            /* 步骤过渡 */
            transition: all 0.3s ease;
        }
        .step:hover {
            transform: translateY(-5px);
        }
        .step-icon {
            width: 50px;
            height: 50px;
            border: 2px solid #03a882;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #03a882;
            font-size: 24px;
            margin-bottom: 15px;
            background: #fff;
            /* 图标过渡 */
            transition: all 0.3s ease;
        }
        .step:hover .step-icon {
            background-color: #03a882;
            color: #fff;
            transform: scale(1.1);
        }
        .step-dot {
            width: 12px;
            height: 12px;
      
            border-radius: 50%;
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            /* 圆点过渡 */
            transition: all 0.3s ease;
        }
        .step:hover .step-dot {
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0 0 8px rgba(22, 119, 255, 0.5);
        }
        .step-label {
             box-sizing: border-box;
            background-color: #03a882;
            color: #fff;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            width: 100%;
            text-align: center;
            /* 标签过渡 */
            transition: all 0.3s ease;
        }
        .step:hover .step-label {
            background-color: #03a882;
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(22, 119, 255, 0.2);
        }
        /* 科室改造四宫格 */
        .grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
            position: relative;
        }
        .grid-img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            border-radius: 8px;
            /* 网格图片过渡 */
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }
        .grid-2x2:hover .grid-img {
            filter: brightness(0.7);
        }
        .grid-img:hover {
            transform: scale(1.03);
            filter: brightness(1);
        }
        .grid-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #03a882;
            color: #fff;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            z-index: 2;
            /* 徽章过渡 */
            transition: all 0.3s ease;
        }
        .grid-2x2:hover .grid-badge {
            transform: translate(-50%, -50%) scale(1.1);
            background-color: #03a882;
            box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
        }
        .grid-arrow {
            position: absolute;
            color: #03a882;
            font-size: 24px;
            z-index: 1;
            /* 箭头过渡 */
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        .grid-2x2:hover .grid-arrow {
            opacity: 1;
            transform: translateY(-50%) scale(1.2);
        }
        .grid-arrow.left {
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
        }
        .grid-arrow.right {
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }
        /* 投标支持 */
        .bid-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .bid-doc {
            width: 80px;
            height: 100px;
            background-color: #03a882;
            border-radius: 4px;
            position: relative;
            /* 文档卡片过渡 */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .bid-doc:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 6px 12px rgba(22, 119, 255, 0.2);
        }
        .bid-doc::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 20px;
            background-color: #fff;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }
        .bid-lines {
            position: absolute;
            top: 20px;
            left: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .bid-line {
            height: 4px;
            background-color: rgba(255,255,255,0.8);
            border-radius: 2px;
            /* 线条过渡 */
            transition: all 0.3s ease;
        }
        .bid-doc:hover .bid-line {
            background-color: #fff;
            transform: scaleX(1.1);
        }
        .bid-arrow {
            width: 2px;
            height: 60px;
            background-color: #03a882;
            position: relative;
            /* 箭头线过渡 */
            transition: all 0.3s ease;
        }
        .bid-flow:hover .bid-arrow {
            background-color: #03a882;
            transform: scaleY(1.1);
        }
        .bid-arrow::before,
        .bid-arrow::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #03a882;
            /* 箭头点过渡 */
            transition: all 0.3s ease;
        }
        .bid-flow:hover .bid-arrow::before,
        .bid-flow:hover .bid-arrow::after {
            background-color: #03a882;
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0 0 8px rgba(22, 119, 255, 0.5);
        }
        .bid-arrow::before {
            top: 0;
        }
        .bid-arrow::after {
            bottom: 0;
        }
        .bid-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .bid-item {
            background-color: #fff;
            border: 1px solid #e0e6ed;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            /* 投标项过渡 */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .bid-item:hover {
            border-color: #03a882;
            background-color: #f0f7ff;
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(22, 119, 255, 0.1);
        }
        .bid-item-icon {
            width: 30px;
            height: 30px;
            background-color: #03a882;
            color: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            /* 图标过渡 */
            transition: all 0.3s ease;
        }
        .bid-item:hover .bid-item-icon {
            background-color: #03a882
            transform: scale(1.2);
        }
        .bid-item-text {
            font-size: 16px;
            color: #333;
            /* 文本过渡 */
            transition: color 0.3s ease;
        }
        .bid-item:hover .bid-item-text {
            color: #03a882;
            font-weight: 500;
        }



        .card-bodyImg img{border-radius: 15px;}





            /* 整体容器样式 */
        .qualification-containerB {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

    
        /* 单个资质卡片样式（无红框） */
        .qualification-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .qualification-card:hover {
            transform: translateY(-5px);
        }

        /* 图标样式 */
        .qualification-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
            /* 这里替换为实际图标地址，示例用纯色背景模拟 */
            background-color: #03a882;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
        }

        /* 文字样式 */
        .qualification-name {
            font-size: 12px;
            color: #333;
            font-weight: 500;
            line-height: 1.4;
        }


       .card-descH {
            font-size: 18px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.6;
            transition: color 0.3s ease;
        }


        /* 响应式适配 */
        @media (max-width: 768px) {
            .qualification-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .qualification-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }


        .card-bodyImgB p{
            text-align: center;
            font-size: 14px;
        }