permissions.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* pages/permissions/permissions.wxss */
  2. .canmer-box {
  3. width: 750rpx;
  4. height: 900rpx;
  5. position: relative;
  6. }
  7. .scanmodal {
  8. width: 100%;
  9. height: 900rpx;
  10. background: transparent;
  11. opacity: 0.5;
  12. position: absolute;
  13. top: 0;
  14. }
  15. .line {
  16. height: calc(100% - 2px);
  17. width: 100%;
  18. background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, #45A6B5 211%);
  19. border-bottom: 3px solid #45A6B5;
  20. transform: translateY(-100%);
  21. animation: radar-beam 2s infinite;
  22. animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
  23. animation-delay: 1.4s;
  24. }
  25. .top-modal {
  26. width: 100%;
  27. height: 150rpx;
  28. background: #000000;
  29. opacity: 0.5;
  30. position: absolute;
  31. top: 0;
  32. }
  33. .bottom-modal {
  34. width: 100%;
  35. height: 150rpx;
  36. background: #000000;
  37. opacity: 0.5;
  38. position: absolute;
  39. bottom: 0;
  40. }
  41. .left-modal {
  42. width: 75rpx;
  43. height: 603rpx;
  44. background: #000000;
  45. opacity: 0.5;
  46. position: absolute;
  47. left: 0;
  48. top: 150rpx;
  49. }
  50. .right-modal {
  51. width: 75rpx;
  52. height: 603rpx;
  53. background: #000000;
  54. opacity: 0.5;
  55. position: absolute;
  56. right: 0;
  57. bottom: 150rpx;
  58. }
  59. .tips {
  60. font-size: 30rpx;
  61. font-weight: bold;
  62. color: #333333;
  63. text-indent: 30rpx;
  64. margin-top: 30rpx;
  65. }
  66. @keyframes radar-beam {
  67. 0% {
  68. transform: translateY(-100%);
  69. }
  70. 100% {
  71. transform: translateY(0);
  72. }
  73. }