.thumbnail-container {
    width: 20%;
    box-sizing: border-box;
    float: left;
    /* padding: 10px;     */
    /*padding 为11时导航栏下面没有白色条，为10时有一像素的白色条*/
    padding: 12.5px;
    text-decoration: none; /* 移除默认的下划线样式 */
    color: black;
}

.thumbnail-container:hover {
    color: rgb(254, 100, 69); /* 鼠标悬停时文字颜色为碧蓝色 */
}

.thumbnail-container:active {
    color: purple; /* 鼠标点击时文字颜色为紫色 */
}

.thumbnail {    
    border: 0.1px solid rgb(162, 157, 157);
    text-align: center;
    /* border-radius: 1%; */
    /* border-end-end-radius: 15px; */
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.thumbnail-image {
    /* max-width: 100%; */
    width: 100%;
    /* height: 28vh; */
    /* border-radius: 1%; */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    
    /* border: 1px solid rgb(255, 255, 255); */
}

.thumbnail-title {
    margin-top: -4px;   /*margin-top 是文字栏与上方图片的距离，-3是正好文字栏与图片底部街上*/
    font-size: 13px;
    /* font-weight: bold; */
    /* border: 1px solid rgb(0, 0, 0); */
    min-height: 45px;
    background-color: white;
    /* border-radius: 1%; */
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* #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); */
    }
}