index.wxss 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*!**************************************************************************************************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].oneOf[0].use[2]!./node_modules/less-loader/dist/cjs.js!./src/plugin/pages/miniWeb/index.less ***!
  3. \**************************************************************************************************************************************************************************************************************************************************/
  4. .mini-web {
  5. width: 100vw;
  6. height: 100vh;
  7. position: relative;
  8. }
  9. .mini-web .modal {
  10. position: absolute;
  11. top: 0;
  12. bottom: 0;
  13. right: 0;
  14. left: 0;
  15. background: rgba(0, 0, 0, 0.2);
  16. display: -webkit-flex;
  17. display: -ms-flexbox;
  18. display: flex;
  19. -webkit-justify-content: center;
  20. -ms-flex-pack: center;
  21. justify-content: center;
  22. -webkit-align-items: center;
  23. -ms-flex-align: center;
  24. align-items: center;
  25. -webkit-animation-name: fadeIn;
  26. animation-name: fadeIn;
  27. -webkit-animation-duration: 1s;
  28. animation-duration: 1s;
  29. }
  30. .mini-web .modal .modal-content {
  31. background: #fff;
  32. width: 600rpx;
  33. height: 300rpx;
  34. border-radius: 10rpx;
  35. }
  36. .mini-web .modal .modal-body {
  37. height: 200rpx;
  38. line-height: 200rpx;
  39. text-align: center;
  40. font-weight: 500;
  41. font-size: 35rpx;
  42. }
  43. .mini-web .modal .modal-footer {
  44. display: -webkit-flex;
  45. display: -ms-flexbox;
  46. display: flex;
  47. height: 100rpx;
  48. }
  49. .mini-web .modal .modal-footer .button {
  50. height: 100rpx;
  51. line-height: 100rpx;
  52. -webkit-flex: 1;
  53. -ms-flex: 1;
  54. flex: 1;
  55. text-align: center;
  56. border-top: 2rpx solid #e3e0e0;
  57. font-weight: 500;
  58. font-size: 35rpx;
  59. }
  60. .mini-web .modal .modal-footer .confirm {
  61. border-left: 2rpx solid #e3e0e0;
  62. color: #3a5dcf;
  63. }
  64. @-webkit-keyframes fadeIn {
  65. from {
  66. opacity: 0;
  67. }
  68. to {
  69. opacity: 1;
  70. }
  71. }
  72. @keyframes fadeIn {
  73. from {
  74. opacity: 0;
  75. }
  76. to {
  77. opacity: 1;
  78. }
  79. }