#global-blur { background-color: rgba(255, 255, 255, 0); position: fixed; top: 0; left: 0; width: 100%; height: 100%; backdrop-filter: blur(8px); /* 模糊度可以根据需要调整 */ transition: display; z-index: 1; /* 保证遮罩在页面上方 */ pointer-events: none; /* 确保遮罩不影响下方元素的交互 */ opacity: 0; transition: opacity 0.3s ease } #popup-container { background-color: #f1f1f1; height: 100%; width: 250px; position: fixed; top: 0; right: 0; overflow-x: hidden; padding-top: 60px; z-index: 2; transition: transform 0.4s ease; transform: translateX(250px); } #popup-container.show { transform: translateX(0); } #close-popup { position: absolute; top: 10px; right: 10px; } #dropdown { margin: auto; width: 80%; /* 让