fast_sleep_popup.scss 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* #ifdef weapp */
  2. .popup_container1 {
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. bottom: 0;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. background-color: #00000080;
  12. }
  13. /* #endif */
  14. /* #ifdef rn */
  15. .popup_container1 {
  16. position: absolute;
  17. left: 0;
  18. right: 0;
  19. top: 0;
  20. bottom: 0;
  21. background-color: #00000080;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. }
  26. /* #endif */
  27. .fast_sleep_content {
  28. width: 536px;
  29. display: flex;
  30. border-radius: 36px;
  31. flex-direction: column;
  32. padding-top: 48px;
  33. padding-bottom: 48px;
  34. align-items: center;
  35. background-color: #fff;
  36. }
  37. .pop_line1 {
  38. width: 440px;
  39. height: 1px;
  40. transform: scaleY(0.5);
  41. margin-top: 36px;
  42. margin-bottom: 36px;
  43. background-color: #000;
  44. opacity: 0.1;
  45. }
  46. .pop_steps {
  47. width: 440px;
  48. display: flex;
  49. flex-direction: column;
  50. align-items: flex-start;
  51. margin-bottom: 36px;
  52. }