/*!
 * 加载等待的指示器样式
 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3; /* 设置边框样式 */
    border-top: 16px solid #3498db; /* 设置顶部边框颜色 */
    border-radius: 50%; /* 设置圆角 */
    width: 120px; /* 设置宽度和高度 */
    height: 120px;
    animation: spin 2s linear infinite; /* 设置旋转动画 */
}

@keyframes spin { /* 定义旋转动画 */
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#picwnd {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    text-align: center;
}

#picwnd-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#picwnd-download {
    margin-top: 10px;
}
