scaner.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/scaner/scaner.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. .loading {
  8. width: 100vw;
  9. height: 100vh;
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. z-index: 1000;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. flex-direction: column;
  18. color: white;
  19. }
  20. .loading_bg {
  21. background-color: rgba(0, 0, 0, 0.65);
  22. z-index: 999;
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. width: 100vw;
  27. height: 100vh;
  28. }
  29. .loading image {
  30. position: relative;
  31. z-index: 1000;
  32. width: 140px;
  33. height: 140px;
  34. fill: white;
  35. color: white;
  36. }
  37. .loading .cap {
  38. padding: 10px 0;
  39. position: relative;
  40. z-index: 1000;
  41. color: white;
  42. }
  43. .loading text {
  44. position: relative;
  45. z-index: 1000;
  46. color: white;
  47. }
  48. .guide_line {
  49. width: 100vw;
  50. height: 100vh;
  51. position: absolute;
  52. top: 0;
  53. left: 0;
  54. z-index: 1000;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. flex-direction: column;
  59. color: white;
  60. }
  61. .guide_line image {
  62. }