
  
.biaoti{
  width: 100%;
  height: 160px;
}
  
  
  
  /*轮播图*/
.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }


   /* 底部备案等信息 */
  .footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }


 /* 导航条样式 */
 .navbar {
  background-color: #333;
  overflow: hidden;
}
a{
  font-size: 20px;
 }

/* 导航链接样式 */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.navbar a:hover {
  background-color: #555;
}


  * {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  /* 标题样式 */
  h1 {
    text-align: center;
    padding: 20px;
  }


  /* 产品容器样式 */
  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
  }

  /* 产品卡片样式 */
  .product-card {
    width: 340px;
    height: 320px;
    margin: 9px;
    padding: 20px;
    border: 3px solid #bdbdbd;
    border-radius: 10px;
    
    text-align: center;
  }

  /* 产品图片样式 */
  .product-card img {
    width: 300px;
    height: 250px;
  }

  /* 产品标题样式 */
  .product-card h2 {
    margin-top: 10px;
    font-size: 18px;
  }

 


  * {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

 

  /* 鼠标悬停时的效果 */
  .puzzle-piece:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* 关于我们 */
  .container {
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
  }

  .image {
    border-radius: 10px; /* 添加圆角 */
    overflow: hidden; /* 隐藏圆角之外的部分 */
  }
  .image img {
    width: 370px; /* 设置图片宽度 */
    height: 350px; /* 设置图片高度 */
    object-fit: cover; /* 等比例缩放图片，填充整个容器 */
  }


  .image2 {
    border-radius: 10px; /* 添加圆角 */
    overflow: hidden; /* 隐藏圆角之外的部分 */
  }

  .image2 img {
    width: 370px; /* 设置图片宽度 */
    height: 350px; /* 设置图片高度 */
    object-fit: cover; /* 等比例缩放图片，填充整个容器 */
  }

  .text {
    padding: 0 20px;
  }