        * 
/* 		{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            padding: 20px;
            font-family: Arial, sans-serif;
        } */

        /* 滚动容器整体样式 */
        .scroll-container {
            position: relative;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 滚动内容容器 */
        .scroll-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        /* 图片卡片样式 */
        .image-card {
            flex: 0 0 auto;
            width: calc(25% - 15px); /* 电脑端4列，减去间距 */
            margin-right: 20px;
            border-radius: 8px;
            overflow: hidden;
			border: 1px solid #e5e5e5;
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
        }
        .image-card-tu {
            width: 100%;
            height: 230px;
		    display: flex;
			justify-content: center;
	     	align-items: center;
         
        }
        .image-card img {
            width: 100%;
            /* height: 200px; */
            object-fit: cover;
            display: block;
        }

        .image-card p {
            padding: 10px;
            text-align: center;
            background: #fff;
			font-size: 16px;
			    color: #333;
        }

        /* 控制按钮样式 */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.8);
            border: none;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.3s;
        }

        .scroll-btn:hover {
            background: rgba(255,255,255,1);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        /* 响应式适配 - 手机端 */
		@media (max-width: 1280px) {
			.image-card {
			    width: calc(33% - 15px); /* 手机端1列 */
			}
		    .image-card-tu {
		       height: 230px;             
		    }
		}
        @media (max-width: 767px) {
            .image-card {
                width: calc(100% - 15px); /* 手机端1列 */
				border:0;
            }
            .image-card-tu {
               height: auto;             
            }
            .scroll-btn {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }
		
