		/* 通用最大宽度容器 - 所有核心板块共用 */
        .global-container {
            max-width: 750px; /* 限制最大宽度750px */
            width: 100%;      /* 小于750px时占满宽度 */
            margin: 0 auto;   /* 水平居中 */
        }
        /* ========== 2. 业务介绍样式 ========== */
        /* 所有板块通用样式 */
        .business-text-outer-section,
        .service-section,
        .consulting-main-section {
            width: 100%;
            background-color: #fff;
        }
        /* 业务概览-图片板块 */
        
        /* 业务概览-文字板块 */
        .business-text-section {
            padding: 30px 8%;
        }
        /* 医疗美容服务走马灯板块 */
        .service-outer-wrap {
            padding: 0 8%;
            position: relative;
            padding-bottom: 80px;
        }
        .service-title-wrap {
            max-width: 621px;
            margin: 0 auto 20px auto;
        }
        .service-carousel-container {
            width: 100%;
            max-width: 621px;
            margin: 0 auto;
            position: relative;
            border-radius: 0;
        }
        .service-carousel-content-wrapper {
            width: 100%;
            overflow: hidden;
        }
        .service-carousel-content {
            display: flex;
            transition: transform 0.5s ease;
        }
        .service-carousel-item {
            min-width: 100%;
            padding: 0;
            display: flex;
            flex-direction: column;
        }
        .service-carousel-img-wrap {
            width: 100%;
            flex-shrink: 0;
        }
        .service-carousel-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
        }
        .service-carousel-text {
            padding: 20px 15px;
            background-color: #f8f9fa;
            position: relative;
            min-height: 200px; /* 保底高度，避免塌陷 */
        }
        .service-carousel-text h3 {
            color: #333;
            font-size: 18px;
            margin-bottom: 15px;
        }
        .service-carousel-text p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        .service-carousel-dots {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 9999;
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }
        .service-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: #fff;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            border: 1px solid #666;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10000;
            opacity: 0.8;
        }
        .service-dot.active {
            background-color: #47d1c3;
            color: #fff;
            border-color: #47d1c3;
            opacity: 1;
            transform: scale(1.1);
        }
        /* 医疗美容管理咨询服务板块 */
        .consulting-section {
            width: 100%;
            padding: 20px 8%;
        }
        .business-content-text {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }
        .business-content-text:last-child {
            margin-bottom: 0;
        }
        .consulting-content-text {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin: 20px 0;
            text-align: justify;
        }
        .consulting-content-img {
            width: 100%;
            height: auto;
            display: block;
        }