.main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 0 100vh 0;
}


.list-page {
    height: 550px;
    width: 1200px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 35px;
    border-radius: 20px;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    /* background-color: rgba(0, 255, 255, 0.4); */
    box-sizing: border-box;
    overflow-y: auto;
}

.link-item {
    position: relative;
    overflow: hidden;
    flex: 0 0 140px;
    max-width: 140px;
    height: 140px;
    background: rgba(250, 250, 250, 0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
    border-radius: 14px;
}

.link-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    z-index: 1;
}

.link-item p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 12px 8px 12px;
    color: #222;
    font-size: 1rem;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 2;
    pointer-events: none;
}