webview.wxss 354 B

12345678910111213141516171819202122
  1. /* pages/webview/webview.wxss */
  2. /* 提示窗 */
  3. .modal_wrap{
  4. position: fixed;
  5. top:0;
  6. left:50%;
  7. width: 50%;
  8. height: 100%;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. margin-left:-25%;
  13. }
  14. .modal{
  15. font-size: 28rpx;
  16. color:#fff;
  17. padding:15rpx 20rpx;
  18. background-color: rgba(0,0,0,0.6);
  19. }
  20. .hidden{
  21. display: none;
  22. }