  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        .container {
            width: 1200px;
            margin: 0 auto;
        }

        /* 导航栏 */
        .navbar {
            background: white;
            padding: 5px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .navbar .container {
            display: flex;
            align-items: center;
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            color: #0066FF;
            font-size: 24px;
            font-weight: bold;
        }

        .navbar-links {
            display: flex;
            gap: 35px;
            margin-left: 100px;
        }

        .navbar-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .navbar-links a:hover {
            color: #0066FF;
        }

        .consult-btn {
            margin-left: auto;
            padding: 4px 25px;
            background: linear-gradient(135deg, #0066FF 0%, #00A8FF 100%);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .consult-btn:hover {
            transform: scale(1.05);
        }

        /* Hero区域 */
        .hero {
            background: linear-gradient(135deg, #0055DD 0%, #0088FF 50%, #00A8FF 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            right: -100px;
            top: -50px;
            width: 500px;
            height: 500px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300A8FF;stop-opacity:0.2"/><stop offset="100%" style="stop-color:%230066FF;stop-opacity:0"/></linearGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23g)"/></svg>');
            background-size: contain;
        }

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

        .hero-title {
            color: white;
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .hero-cards {
            display: flex;
            gap: 20px;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px;
            flex: 1;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-card-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .hero-card-title {
            color: white;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .hero-card-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            line-height: 1.5;
        }

        /* 平台优势 */
        .platform-advantages {
            padding: 60px 0;
            background: #F5F7FA;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 22px;
            margin-bottom: 40px;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .advantage-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .advantage-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #0066FF 0%, #00A8FF 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
        }

        .advantage-card-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .advantage-card ul {
            list-style: none;
        }

        .advantage-card li {
            padding: 13px 0;
            font-size: 14px;
            position: relative;
            padding-left: 15px;
        }

        .advantage-card li:last-child {
            border-bottom: none;
        }

        .advantage-card li::before {
            content: '.';
            position: absolute;
            left: 0;
            color: black;
            font-size: 12px;
        }

        .advantage-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #EEE;
        }

        .advantage-bottom span {
            font-size: 12px;
            color: #999;
        }

        .advantage-bottom a {
            color: #0066FF;
            font-size: 14px;
            text-decoration: none;
            font-weight: 500;
        }

        /* 服务权限 */
        .service-permission {
            padding: 60px 0;
            background: white;
        }

        .permission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .permission-card {
            border: 1px solid #E0E7FF;
            border-radius: 12px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .permission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .permission-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #EEF2FF;
            color: #0066FF;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .permission-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .permission-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #F5F5F5;
            font-size: 14px;
        }

        .permission-item span:first-child {
            color: #666;
        }

        .permission-item span:last-child {
            color: #333;
            font-weight: 500;
        }

        .permission-btn {
            display: block;
            width: 200px;
            margin: 30px auto 0;
            padding: 12px 30px;
            background: linear-gradient(135deg, #0066FF 0%, #00A8FF 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .permission-btn:hover {
            transform: scale(1.05);
        }

        /* 医院收益 */
        .hospital-benefits {
            padding: 60px 0;
            background: #F5F7FA;
            position: relative;
        }

        .benefits-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .benefits-image {
            flex: 1;
            text-align: center;
        }

        .benefits-image img {
            max-width: 400px;
            height: auto;
        }

        .benefits-list {
            flex: 1;
        }

        .benefit-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #EEE;
        }

        .benefit-item:last-child {
            border-bottom: none;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: #EEF2FF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
            color: #0066FF;
        }

        .benefit-info h4 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .benefit-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 服务流程 */
        .service-process {
            padding: 60px 0;
            background: white;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 35px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #E5E7EB;
            z-index: 0;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-step-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #0066FF 0%, #00A8FF 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .process-step-number {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 24px;
            height: 24px;
            background: #FF6B6B;
            color: white;
            border-radius: 50%;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .process-step-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .process-step-desc {
            font-size: 12px;
            color: #999;
            line-height: 1.5;
        }

        /* 合作对接 */
        .cooperation {
            padding: 60px 0;
        }

        .cooperation .section-title,
        .cooperation .section-subtitle {
            color: white;
        }

        .cooperation .section-subtitle {
            opacity: 0.8;
        }

        .cooperation-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .cooperation-left {
            flex: 1;
        }

        .cooperation-left h3 {
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }

        .cooperation-left p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .cooperation-btn {
            padding: 12px 40px;
            background: white;
            color: #0066FF;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .cooperation-btn:hover {
            transform: scale(1.05);
        }

        .cooperation-right {
            text-align: center;
        }

        .cooperation-right h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .qrcode {
            width: 150px;
            height: 150px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            margin: 0 auto 10px;
        }

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

        .cooperation-right p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
        }

        /* 入驻案例 */
        .cooperation-cases {
            padding: 60px 0;
            background: white;
        }

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

        .case-item {
            background: #F8FAFC;
            border-radius: 8px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            transition: background 0.3s;
        }

        .case-item:hover {
            background: #EEF2FF;
        }

        .case-item img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
        }


        .footer {
            background-color: #232323;
            color: #FFF;
            padding: 60px 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        .foot-hd {
    margin-bottom: 40px;
}
.foot-hd .foot-tt {
    position: relative;
    font-size: 34px;
    display: inline-block;
}
.foot-hd .foot-en {
    font-size: 14px;
    font-weight: bold;
}
.foot-item {
    padding: 8px 0;
    font-size: 20px;
}
.foot-item img {
    margin-right: 10px;
    vertical-align: middle;
}
.foot-wx {
    padding: 30px;
    text-align: center;
}
.copyright {
    background-color: #000000;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    padding: 20px 10px;
    line-height: 28px;
    font-family: Myriad Pro;
}
.foot-wx img {
    width: 130px;
    height: 130px;
}
.foot-wx p {
    font-size: 20px;
    margin-top: 30px;
}
.footer-wrapper {
  display: flex;           /* 开启弹性布局 */
  align-items: center;     /* 垂直居中（可选） */
  justify-content: space-between; /* 两端对齐（可选） */
  gap: 20px;               /* 两个盒子之间的间距（可选） */
}
.bg-banner {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: #1963F2;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 80px;
            min-height: 600px;
            position: relative;
        }

        .bg-left-section {
            flex: 1;
            z-index: 10;
        }

        .bg-right-section {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bg-title {
            font-size: 40px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .bg-title span {
            color: #ffffff;
        }

        .bg-subtitle {
            display: inline-flex;
            align-items: center;
            background: #1963F2;
            padding: 0;
            border-radius: 30px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .bg-subtitle-left {
            display: flex;
            align-items: center;
            background: #ffffff;
            padding: 12px 20px;
            border-radius: 30px 0 0 30px;
        }

        .bg-subtitle-right {
            padding: 12px 30px;
            color: #ffffff;
            font-size: 22px;
            font-weight: 500;
        }

        .bg-feature-cards {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .bg-feature-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .bg-feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .bg-feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .bg-feature-icon svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
        }

        .bg-feature-title {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .bg-feature-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .bg-tags {
            display: flex;
            gap: 16px;
        }

        .bg-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 24px;
            border-radius: 20px;
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .bg-tag:hover {
            background: rgba(255, 255, 255, 0.35);
        }

        .bg-tag-icon {
            width: 40px;
            height: 30px;
            margin-right: 8px;
        }

        .bg-tag-icon svg {
            width: 100%;
            height: 100%;
            fill: #ffffff;
        }

        .right-image {
            width: 100%;
            max-width: 700px;
            height: auto;
            object-fit: contain;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .bg-dots {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        .dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 40%; right: 8%; animation-delay: 0.5s; }
        .dot:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
        .dot:nth-child(4) { top: 80%; right: 12%; animation-delay: 1.5s; }
        .dot:nth-child(5) { top: 30%; right: 20%; animation-delay: 2s; }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.8;
            }
        }

        .bg-curve {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: bottom;
        }