@media (max-width: 1000px) {
  .workFulls {
    /* width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px; /* 可選：設置色塊之間的間距 */
    width: 100%;
    max-width: 300px;
    grid-auto-rows: 300px;
  }

  .listTitle {
    height: 60px;
    margin-bottom: 15px;
  }
}
