
  /* 全局容器 - 固定宽度930px，居中显示 */
        .container {
            width: 930px;
            margin: 0 auto; /* 整体居中 */
            padding: 20px 0 60px; /* 上下留白，增强视觉效果 */
            box-sizing: border-box;
        }

		
		 /* 第一行标题样式 */
        .title {
            font-size: 20px;
            color: #0066cc; /* 蓝色（可根据需求调整色值） */
			font-weight: bold;
            text-align: center;
            margin: 0 0 10px 0; /* 与下一行的间距 */
        }

        /* 第二行简介样式 */
        .intro {
            font-size: 14px;
            text-align: center;
            margin: 0 0 15px 0; /* 与下一行短线的间距 */
            color: #333; /* 简介文字默认灰色，可调整 */
        }

        /* 蓝色横杠样式：居中、固定宽度和高度 */
        .divider {
            width: 60px;
            height: 2px;
            background-color: #0066cc;
            margin: 0 auto 45px auto;
        }

        /* 服务说明文本样式：14px、居中，两行文本的统一样式 */
        .service-text {
            font-size: 14px;
            color: #333;
            line-height: 1.6;
            margin: 0 0 8px 0;
			text-align: center;
        }

        /* 图片滚动容器：隐藏溢出、固定高度、相对定位 */
        .scroll-container {
            width: 930px;
            height: 240px;
            overflow: hidden;
            position: relative;
            margin-top: 20px;
        }

        /* 滚动图片列表：弹性布局、动画滚动（关键修改：向右滚动） */
        .scroll-images {
            display: flex;
            align-items: center;
            /* 复制一份图片列表，实现无缝滚动 */
            width: max-content;
            /* 动画：匀速、无限循环、向右滚动，时长可调整 */
            animation: scrollRight 20s linear infinite;
        }

        /* 单个图片样式：固定尺寸、间距 */
        .scroll-images img {
            width: 350px;
            height: 240px;
            margin-right: 45px;
            object-fit: cover; /* 保持图片比例，填充容器 */
        }

        /* 向右滚动动画关键帧（核心修改） */
        @keyframes scrollRight {
            0% {
                transform: translateX(-25%); /* 初始位置：让第二组图片对齐容器 */
            }
            100% {
                transform: translateX(0); /* 滚动到初始位置，实现循环 */
            }
        }

        /* 鼠标悬停暂停滚动 */
        .scroll-container:hover .scroll-images {
            animation-play-state: paused;
        }





        /* 第四行左右布局盒子 */
        .content-box {
            display: flex; /* 弹性布局实现左右分栏 */
            justify-content: space-between; /* 利用间距自动分配50px间隔 */
            align-items: flex-start; /* 顶部对齐 */
        }

        /* 左侧图片容器 */
        .left-box {
            width: calc((100% - 50px) / 2); /* 总宽度减50px间隔后平分 */
            text-align: left; /* 图片居左 */
        }

        /* 图片自适应容器宽度 */
        .left-box img {
            width: 100%;
            height: auto; /* 保持图片比例 */
            display: block; /* 去除图片默认空隙 */
        }

        /* 右侧文字容器 */
        .right-box {
            width: calc((100% - 50px) / 2); /* 与左侧等宽 */
            text-align: left; /* 文字居左 */
        }

        /* 右侧文字第一块 */
        .text-1 {
            font-size: 16px;
            margin: 0 0 10px 0; /* 与第二块间隔50px */
            color: #333;
        }

        /* 右侧文字第二块 */
        .text-2 {
            font-size: 14px;
            margin: 0 0 10px 0; /* 与第三块间隔50px */
            color: #666;
            word-wrap: break-word; /* 强制自动换行 */
        }

        /* 右侧文字第三块 */
        .text-3 {
            font-size: 14px; /* 默认14px，可按需调整 */
            line-height: 30px; /* 行高35px */
            color: #666;
        }
		
		
		
		/* 第四行地图样式：930px宽、520px高 */
        .map {
            width: 930px;
            height: 400px;
            border: none; /* 去除默认边框 */
			margin-bottom:30px;
        }