如何在移动设备上将 Cookie Popup 锚定到屏幕底部?

How to make Cookie Popup anchor to bottom of screen on mobile devices?

我有一个即将进行的项目的 cookie 弹出窗口,它在桌面上运行良好: Screenshot Here. But when I tested it on mobile, it looked like this trash. Does anyone know how to anchor the element to the bottom of the screen on mobile devices? Thanks. Website Preview

当页面在移动屏幕尺寸上打开时,只需将宽度更改为 100%。

@media (max-width: 600px) {
   #cookiePopup {
     width: 100%
   }
}