div,img{ padding: 0; margin: 0;}
#app{
    padding-bottom: 0 !important;
}
.image-gallery {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    gap: 0; /* 去除间距 */
}
.image-container {
    position: relative;
    margin: 0;
    padding: 0;
}
.image-container img {
    display: block; /* 去除img元素底部的默认间距 */
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.image-container span{
    position: absolute;
    top:40px;
    left:110px;
    width: 120px;
    height: 30px;
    background-color: rgba(0, 255, 0, 0.0)
}

.large-image-container {
        display:none;
        position: fixed;
        top: 0%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
.large-image-container img {
    height: auto;
    width: 100%;
    position: relative;
    top:35%
}
/* 禁止滚动 */
body.no-scroll {
    overflow: hidden;
}
/* 当屏幕宽度小于等于550px时 */
@media (max-width: 550px) {
    .image-container span {
        top: 40px;
        left: 110px;
    }
}

/* 当屏幕宽度大于550px时 */
@media (min-width: 551px) {
    .image-container span {
        top: 60px;
        left: 170px;
    }
}