index.wxss 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .c-popup {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. background: no-repeat center / cover;
  8. background-color: white;
  9. animation: fadeIn 0.2s;
  10. z-index: 9999;
  11. }
  12. .c-popup__border {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. .c-popup-alert {
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: center;
  23. align-items: center;
  24. position: absolute;
  25. top: 30vh;
  26. left: 50%;
  27. width: 263rpx;
  28. height: 263rpx;
  29. background: rgba(183, 138, 45, 0.3);
  30. box-shadow: 0px 7rpx 7rpx 0px rgba(0, 0, 0, 0.3);
  31. border-radius: 7rpx;
  32. font-size: 28rpx;
  33. font-weight: bold;
  34. color: white;
  35. transform: translateX(-50%);
  36. }
  37. .c-popup-alert image {
  38. margin-bottom: 25rpx;
  39. width: 80rpx;
  40. height: 80rpx;
  41. }
  42. .c-popup__recording {
  43. position: absolute;
  44. top: 80rpx;
  45. left: 80rpx;
  46. width: 188rpx;
  47. }
  48. @keyframes fadeIn {
  49. 0% {
  50. opacity: 0;
  51. }
  52. 100% {
  53. opacity: 1;
  54. }
  55. }