 
.list {
    list-style-type: none;
    padding: 0;
    background-color: #f8f8f8;
    border-radius: 5px;
    width: 98%;
    top: 60px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 6 * 250px; /* 6 items * item height */
    overflow-y: auto;
}
   .List-Block {
    padding: 10px;
    border-bottom: 1px solid #bcbbbb;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    width: 150px;
    height: 250px;

   }
   .List-Block img {
    width: 100%;
    height: auto;
    border-radius: 5px;
   }
   .list-button {
    width: 100%;
    padding: 5px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px 0px;
    cursor: pointer;
    bottom: 0;
    margin-bottom: 0px;
    float: bottom;

   }
   .List-Block b {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    height: 40px;
   }
.squre {
 width: 100%;
 height: 12px;
 background: linear-gradient(90deg, #e0e0e0 0%, #b2bec3 100%);
 border-radius: 6px;
 box-shadow: 0 2px 8px rgba(44, 62, 80, 0.18), 0 1.5px 4px rgba(52, 73, 94, 0.12);
 margin: 32px 0 0 0;
}
a {
    text-decoration: none;
    color: inherit;
}