
        body {
            font-family: 'Noto Sans SC', sans-serif;
            min-height: 1024px;
            background-color: #FFFFFF;
        }

        .gif-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s ease;
            
			padding: 10px; /* 可选：增加内边距，避免图片贴边 */
        }
		
		
		/* 图片包裹容器：控制内部布局 */
.image-wrapper {
  display: flex; /* 启用Flex布局 */
  gap: 10px; /* 两张图片之间的间距（可选） */
  width: 100%; /* 继承容器高度，确保图片填满 */
}

/* 单个图片样式 */
.img-item {
width: 30%; /* PC端：两张图片各占50%宽度，水平均分 */
  height: 100%; /* 填满容器高度 */
  object-contain: contain; /* 保持图片比例，完整显示在容器内 */
}

.custom-list {
  /* 确保列表有默认的内边距，让圆点有显示空间 */
 list-style: none;
  padding-left: 2rem;
  margin: 0;
}

.custom-list li {
  /* 调整列表项的间距，让圆点和文本更协调 */
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}
.custom-list li::before {
  content: "•"; /* 圆点符号 */
  position: absolute;
  left: 0;
  color: #6b7280; /* 与文本相同的灰色 */
  font-size: 1.2em; /* 圆点大小 */
  line-height: 1; /* 垂直对齐 */
}

        @media (max-width: 768px) {
            .gif-container {
                
            }
			  .image-wrapper {
    flex-direction: column; /* 垂直排列 */
	align-items: center; /* 关键：使图片在垂直布局中水平居中 */
    gap: 10px;
  }
  
  .img-item {
    max-width: 50%; /* 移动端宽度100% */
    width: 50%;
  }
			

        }

        .gif-container:hover {
            transform: scale(1.02);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            cursor: pointer;
        }

        .modal img {
            max-width: 90%;
            max-height: 90%;
            margin: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .step-number {
            background-color: #EF8A35; /* 将背景颜色改为橙色 */
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-right: 12px;
            flex-shrink: 0;
        }
    