header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
     padding-left: 5%;
    padding-right: 5%;
   background-color: #ffffff;
  }
  .logo img {
    height: 50px;
  }
    .logo{
    color: black;
}
.image-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  
  .image-module img {
    width: calc(33.33% - 30px);
    height: 300px;
    object-fit: cover;
  }
  
  .image-name {
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .action-button {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}
  
  /* 手机屏幕上每行显示一个商品 */
  @media (max-width: 500px) {
    .product-item {
      width: 100%;
    }}
    #image-container {
        display: flex;
        flex-wrap: wrap;
      }
      
      #image-container > * {
        flex-grow: 1;
        max-width: calc(33.33% - 10px);
        margin: 20px;
      }
     .goods #results {
        height: 45px;
        float: right;
       display: flex;
        align-items: center; /* 上下居中 */
        text-decoration: none;
      }

      .goods {
      display: block;
        height: 50px;

        justify-content: space-between;
        overflow: auto; /* 或者 scroll，视需求而定 */
        align-items: center; /* 上下居中 */
      }
      .footer2 {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 30px;
        background-color: #f2f2f2;
        text-align: center;
        padding-top: 15px;
        font-size: 15px;
        color: #666;
        display: flex;
        justify-content: center; /* 水平居中对齐 */
        align-items: center; /* 垂直居中对齐 */
      }
      .footer2 p{
        font-size: 15px;

  margin-right: 10px; /* 右侧间距为10px */
      }
      .link-text {
        display: inline-block;
        position: relative;
        cursor: pointer;
        font-size: 18px;
        color: #000;

      }
    
      .link-text:before {
        content: attr(data-link);
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        white-space: nowrap;
      }
    
      .link-text:hover:before {
        opacity: 1;
        visibility: visible;
        background-color: #fff;
        padding: 4px;
        border: 1px solid #000;
        border-radius: 4px;
      }

      .left-module {
        flex-grow: 1;
        width: 40%;
        float: left;
      }
      .goods {
       
        clear: both;
      }