/* 添加在目标css文件内 （无具体要求） */
#floating-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #image-row {
    display: flex;

  }
  
  #image-row img {
    width: 120px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    object-fit: cover;
    transition: none;
    cursor: pointer;
  }

  #close-btn {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    background-color: #ff5555;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: none;
  }
  
  #close-btn:hover {
    background-color: #e04444;
  }
  