/*弹出预览*/
        /* 覆盖层样式 */
        #popupOverlay {
            display: none; /* 默认隐藏 */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
            justify-content: center;
            align-items: center;
            z-index: 1000; /* 确保在最上层 */
        }
#popupText{padding-top:20px;}
        /* 弹出层内容样式 */
        #popupContent {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            position: relative;
            width: 480px; /* 宽度设置为 380px */
            height: 880px; /* 高度设置为 780px */
            overflow-y: auto; /* 如果内容超出高度，显示滚动条 */
        }

        /* 关闭按钮样式 */
        #closePopup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        #closePopup:hover {
            color: #000;
        }