.thumbnail-container {
    width: 33%;
    box-sizing: border-box;
    float: left;
    padding: 10px;
    text-decoration: none; /* 移除默认的下划线样式 */
    color: black;
}

.thumbnail-container:hover {
    color: cyan; /* 鼠标悬停时文字颜色为碧蓝色 */
}

.thumbnail-container:active {
    color: purple; /* 鼠标点击时文字颜色为紫色 */
}

.thumbnail {
    border: 1px solid rgb(3, 3, 3);
    text-align: center;
}

.thumbnail-image {
    /* max-width: 100%; */
    width: 100%;
    height: 28vh;
    border: 1px solid rgb(255, 255, 255);
}

.thumbnail-title {
    margin-top: 0px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid rgb(0, 0, 0);
    min-height: 45px;
}
/* #app {
    min-height: 600px;
} */
@media screen and (max-width : 768px) {
    .thumbnail-container {
        width: 100%;
        box-sizing: border-box;
        float: left;
        padding: 10px;
        text-decoration: none; /* 移除默认的下划线样式 */
        color: black;
    }
    .thumbnail-image {
        /* max-width: 100%; */
        width: 100%;
        height: 150px;
        border: 1px solid rgb(255, 255, 255);
    }
}