| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* #ifdef weapp */
- .popup_container1 {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #00000080;
- }
- /* #endif */
- /* #ifdef rn */
- .popup_container1 {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-color: #00000080;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /* #endif */
- .fast_sleep_content {
- width: 536px;
- display: flex;
- border-radius: 36px;
- flex-direction: column;
- padding-top: 48px;
- padding-bottom: 48px;
- align-items: center;
- background-color: #fff;
- }
- .pop_line1 {
- width: 440px;
- height: 1px;
- transform: scaleY(0.5);
- margin-top: 36px;
- margin-bottom: 36px;
- background-color: #000;
- opacity: 0.1;
- }
- .pop_steps {
- width: 440px;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- margin-bottom: 36px;
- }
|