bottom-popup.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @charset "UTF-8";
  2. /***
  3. 全局scss 变量和方法 存放处
  4. */
  5. /* 引入minxin */
  6. /* 颜色变量 */
  7. /*图片地址*/
  8. /* 行为相关颜色 */
  9. /* 文字基本颜色 */
  10. /* 背景颜色 */
  11. /* 边框颜色 */
  12. /* 尺寸变量 */
  13. /* 文字尺寸 */
  14. /* 图片尺寸 */
  15. /* Border Radius */
  16. /* 水平间距 */
  17. /* 垂直间距 */
  18. /* 透明度 */
  19. /* 文章场景相关 */
  20. .tui-bottom-popup.data-v-65f899fb {
  21. width: 100%;
  22. position: fixed;
  23. left: 0;
  24. right: 0;
  25. bottom: 0;
  26. z-index: 999;
  27. visibility: hidden;
  28. -webkit-transform: translate3d(0, 100%, 0);
  29. transform: translate3d(0, 100%, 0);
  30. -webkit-transform-origin: center;
  31. transform-origin: center;
  32. -webkit-transition: all 0.3s ease-in-out;
  33. transition: all 0.3s ease-in-out;
  34. min-height: 20rpx;
  35. padding-bottom: env(safe-area-inset-bottom);
  36. }
  37. .tui-popup-show.data-v-65f899fb {
  38. -webkit-transform: translate3d(0, 0, 0);
  39. transform: translate3d(0, 0, 0);
  40. visibility: visible;
  41. }
  42. .tui-popup-mask.data-v-65f899fb {
  43. position: fixed;
  44. top: 0;
  45. left: 0;
  46. right: 0;
  47. bottom: 0;
  48. background: rgba(0, 0, 0, 0.6);
  49. z-index: 996;
  50. -webkit-transition: all 0.3s ease-in-out;
  51. transition: all 0.3s ease-in-out;
  52. opacity: 0;
  53. visibility: hidden;
  54. }
  55. .tui-mask-show.data-v-65f899fb {
  56. opacity: 1;
  57. visibility: visible;
  58. }