        /* 核心容器 - 响应式布局 */
        .m_mall_order-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 80px auto 0; /* 顶部加 80px 外边距，其他不变 */
    gap: 30px;
    align-items: center;
}

        /* 左侧轮播区域 - 响应式适配 */
        .m_mall_order-carousel {
            width: 100%;
            flex: none;
            position: relative;
            height: 280px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .m_carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .m_carousel-item.active {
            opacity: 1;
        }

        .m_carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 轮播指示器 */
        .m_carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .m_indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .m_indicator.active {
            background: #960000;
            width: 20px;
            border-radius: 4px;
        }

        /* 右侧内容区域 */
        .m_mall_order-right {
            width: 100%;
            flex: none;
            padding-top: 0;
        }

        .m_mall_order-right h2 {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            line-height: 1.3;
            margin-bottom: 15px;
            letter-spacing: 0;
        }

        .m_mall_order-right p {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            max-width: 100%;
        }

        /* 服务信息块 - 优化文字和边框样式 */
        .m_service-options {
            display: grid;
            grid-template-columns: 1fr; /* 手机：1列 */
            gap: 10px;
            margin-bottom: 25px;
            max-width: 100%;
        }

        .m_service-item {
            border: 1px solid #dcdfe6; /* 优化边框色更精致 */
            border-radius: 8px; /* 增大圆角更美观 */
            padding: 18px 15px; /* 优化内边距 */
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
            min-height: 60px; /* 优化高度 */
            cursor: default;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 轻微阴影提升质感 */
        }

        .m_service-name {
            font-size: 15px; /* 优化字号 */
            font-weight: 600; /* 加粗文字 */
            color: #333;
            line-height: 1.4;
            text-align: center;
            letter-spacing: 0.5px; /* 轻微字间距更易读 */
        }

        /* 立即预订按钮 - 黑底白字，hover为#960000 */
        .m_mall_order-btn {
            width: 100%;
            padding: 14px 0; /* 优化内边距更饱满 */
            background: #000; /* 黑色背景 */
            color: #fff; /* 白色文字 */
            border: none;
            border-radius: 8px; /* 统一圆角 */
            font-size: 16px;
            font-weight: 600; /* 按钮文字加粗 */
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            margin-top: 5px;
            margin-bottom: 10px;
        }

        .m_mall_order-btn:hover {
            background: #960000; /* hover为#960000 */
            color: #fff; /* 保持白色文字 */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(150, 0, 0, 0.2); /* 配套阴影 */
        }

        .m_mall_order-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(150, 0, 0, 0.15);
        }

        /* 注意事项 */
        .m_notice-text {
            font-size: 12px;
            color: #999;
            line-height: 1.5;
            max-width: 100%;
			margin: 10px 0; /* 上下间距，避免贴边 */
        }

        /* 大屏适配（≥768px） */
        @media (min-width: 768px) {
         

            .m_mall_order-container {
                flex-direction: row;
                gap: 80px;
                align-items: flex-start;
            }

            .m_mall_order-carousel {
                flex: 0 0 650px;
                height: 600px;
                border-radius: 12px;
            }

            .m_carousel-indicators {
                bottom: 25px;
                gap: 10px;
            }

            .m_indicator {
                width: 10px;
                height: 10px;
            }

            .m_indicator.active {
                width: 30px;
                border-radius: 5px;
            }

            .m_mall_order-right {
                flex: 1;
                padding-top: 40px;
            }

            .m_mall_order-right h2 {
                font-size: 42px;
                margin-bottom: 30px;
                letter-spacing: -0.5px;
            }

            .m_mall_order-right p {
                font-size: 18px;
                line-height: 1.8;
                margin-bottom: 30px;
                max-width: 600px;
            }

            /* PC端恢复两列 */
            .m_service-options {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
                margin-bottom: 35px;
                max-width: 500px;
            }

            .m_service-item {
                border-radius: 8px;
                padding: 20px 18px;
                height: 70px;
                min-height: auto;
            }

            .m_service-name {
                font-size: 16px;
            }

            .m_mall_order-btn {
                width: auto;
                padding: 14px 40px;
                border-radius: 8px;
                margin-bottom: 12px;
            }

            .m_notice-text {
                max-width: 500px;
            }
        }
		
		/* 全屏拉通的分隔线 - 独立容器，宽度100% */
.m_full_width_divider {
    width: 100vw; /* 视口宽度100%，强制拉通全屏 */
    height: 1px; /* 线条粗细 */
    background-color: #dcdfe6; /* 推荐：和小方块边框同色，协调 */
    /* 可选：想变红就用这个 → background-color: #960000; */
    margin: 30px 0; /* 上下间距，可调整 */
    position: relative;
    left: 50%; /* 居中对齐 */
    transform: translateX(-50%); /* 居中对齐 */
    border: none; /* 清除默认边框 */
}

/* PC端可微调粗细/间距 */
@media (min-width: 768px) {
    .m_full_width_divider {
        height: 1px; /* 可改成2px加粗 */
        margin: 40px 0;
    }
}
		
		
		
		/* 金额文字样式 - 颜色#960000 */
.m_amount_text {
    font-size: 30px; /* 字号，可按需调整 */
    font-weight: 600; /* 加粗，更醒目 */
    color: #960000; /* 指定颜色 */
    margin: 10px 0; /* 上下间距，避免贴边 */
}

/* PC端适配 */
@media (min-width: 768px) {
    .m_amount_text {
        font-size: 30px; /* PC端字号稍大 */
        margin: 10px 0;
    }
}