RecordFastSleep.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. @import '@/utils/common.scss';
  2. .time_operate_item {
  3. padding-top: 40px;
  4. padding-bottom: 40px;
  5. margin-left: 46px;
  6. margin-right: 46px;
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. background-color: $boxColor;
  11. border-radius: $boxBorderRadius;
  12. padding-left: 40px;
  13. padding-right: 40px;
  14. margin-top: 20px;
  15. position: relative;
  16. overflow: hidden;
  17. box-sizing: border-box;
  18. // margin-bottom: 16px;
  19. }
  20. .btnDelete{
  21. position: absolute;
  22. right: 0;
  23. top: 0;
  24. bottom: 0;
  25. width: 120px;
  26. background-color: red;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. color: #fff;
  31. text-align: center;
  32. transition: all 0.2s;
  33. transform: translateX(120px);
  34. }
  35. .btnDeleteAni{
  36. transform: translateX(0);
  37. }
  38. .modalTitle1 {
  39. font-size: 40px;
  40. line-height: 40px;
  41. }
  42. .segment_detail {
  43. width: 578px;
  44. }
  45. .fast_sleep_item1 {
  46. // display: 'flex',position:'relative', flex-: 'row', alignItems: 'center'
  47. display: flex;
  48. position: relative;
  49. flex-direction: row;
  50. align-items: center;
  51. width: 562px;
  52. // padding-top: 20px;
  53. // padding-bottom: 20px;
  54. }
  55. .duration_bg {
  56. margin-left: 50px;
  57. display: flex;
  58. flex-direction: column;
  59. flex: 1;
  60. }
  61. .duration_title {
  62. font-size: 32px;
  63. line-height: 32px;
  64. color: #fff;
  65. opacity: 0.6;
  66. font-weight: 400;
  67. }
  68. .duration_value {
  69. margin-top: 2px;
  70. font-size: 36px;
  71. line-height: 36px;
  72. font-weight: 500;
  73. margin-bottom: 12px;
  74. }
  75. .arrow2 {
  76. width: 40px;
  77. height: 40px;
  78. opacity: 0.2;
  79. }
  80. .recordTime {
  81. font-size: 28px;
  82. line-height: 28px;
  83. height: 28px;
  84. color: #ffffff;
  85. opacity: 0.4;
  86. font-weight: 400;
  87. }
  88. .record_arrow_bg {
  89. position: absolute;
  90. right: -10px;
  91. bottom: -10px;
  92. display: flex;
  93. flex-direction: row;
  94. align-items: center;
  95. height: 40px;
  96. width: 300px;
  97. }
  98. .single_check_nor {
  99. margin-bottom: 16px;
  100. height: 84px;
  101. border-radius: 42px;
  102. border: solid 4px $fastColor;
  103. box-sizing: border-box;
  104. margin-left: 46px;
  105. margin-right: 46px;
  106. display: flex;
  107. flex-direction: row;
  108. align-items: center;
  109. padding-left: 44px;
  110. padding-right: 44px;
  111. }
  112. .single_check_sel {
  113. margin-bottom: 16px;
  114. height: 84px;
  115. border-radius: 42px;
  116. background-color: $fastColor;
  117. margin-left: 46px;
  118. margin-right: 46px;
  119. display: flex;
  120. flex-direction: row;
  121. align-items: center;
  122. padding-left: 44px;
  123. padding-right: 44px;
  124. box-sizing: border-box;
  125. }
  126. .single_check_text_nor {
  127. color: $fastColor;
  128. font-weight: bold;
  129. font-size: 32px;
  130. flex: 1;
  131. }
  132. .single_check_text_sel {
  133. color: #000;
  134. font-weight: bold;
  135. font-size: 32px;
  136. flex: 1;
  137. }
  138. .single_checked {
  139. width: 48px;
  140. height: 48px;
  141. }
  142. .more_stage {
  143. display: flex;
  144. align-items: center;
  145. justify-content: center;
  146. border-radius: 23px;
  147. height: 46px;
  148. padding-left: 24px;
  149. padding-right: 24px;
  150. background-color: #252525;
  151. // margin-bottom: 20px;
  152. }
  153. .more_stage_text {
  154. font-weight: bold;
  155. color: $fastColor;
  156. font-size: 20px;
  157. line-height: 20px;
  158. }