
/* 弹窗容器样式 */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
}

/* 弹窗显示时的样式 */
.modal-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* 弹窗内容样式 */
.modal-content {
    background-color: white;
    border-radius: 8px 8px 0 0;
    width: 100%;
    max-width: 400px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

/* 弹窗滑入时的样式 */
.modal-container.active .modal-content {
    transform: translateY(0);
}

/* 图片样式 */
.modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
}

/* 底部说明文字 */
.modal-footer {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-radius:0 0  8px 8px;
}