| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- @import '@/utils/common.scss';
- .time_operate_item {
- padding-top: 40px;
- padding-bottom: 40px;
- margin-left: 46px;
- margin-right: 46px;
- display: flex;
- flex-direction: row;
- align-items: center;
- background-color: $boxColor;
- border-radius: $boxBorderRadius;
- padding-left: 40px;
- padding-right: 40px;
- margin-top: 20px;
- position: relative;
- overflow: hidden;
- box-sizing: border-box;
- // margin-bottom: 16px;
- }
- .btnDelete{
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- width: 120px;
- background-color: red;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- text-align: center;
- transition: all 0.2s;
- transform: translateX(120px);
- }
- .btnDeleteAni{
- transform: translateX(0);
- }
- .modalTitle1 {
- font-size: 40px;
- line-height: 40px;
- }
- .segment_detail {
- width: 578px;
- }
- .fast_sleep_item1 {
- // display: 'flex',position:'relative', flex-: 'row', alignItems: 'center'
- display: flex;
- position: relative;
- flex-direction: row;
- align-items: center;
- width: 562px;
- // padding-top: 20px;
- // padding-bottom: 20px;
- }
- .duration_bg {
- margin-left: 50px;
- display: flex;
- flex-direction: column;
- flex: 1;
- }
- .duration_title {
- font-size: 32px;
- line-height: 32px;
- color: #fff;
- opacity: 0.6;
- font-weight: 400;
- }
- .duration_value {
- margin-top: 2px;
- font-size: 36px;
- line-height: 36px;
- font-weight: 500;
- margin-bottom: 12px;
- }
- .arrow2 {
- width: 40px;
- height: 40px;
- opacity: 0.2;
- }
- .recordTime {
- font-size: 28px;
- line-height: 28px;
- height: 28px;
- color: #ffffff;
- opacity: 0.4;
- font-weight: 400;
- }
- .record_arrow_bg {
- position: absolute;
- right: -10px;
- bottom: -10px;
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 40px;
- width: 300px;
- }
- .single_check_nor {
- margin-bottom: 16px;
- height: 84px;
- border-radius: 42px;
- border: solid 4px $fastColor;
- box-sizing: border-box;
- margin-left: 46px;
- margin-right: 46px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-left: 44px;
- padding-right: 44px;
- }
- .single_check_sel {
- margin-bottom: 16px;
- height: 84px;
- border-radius: 42px;
- background-color: $fastColor;
- margin-left: 46px;
- margin-right: 46px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-left: 44px;
- padding-right: 44px;
- box-sizing: border-box;
- }
- .single_check_text_nor {
- color: $fastColor;
- font-weight: bold;
- font-size: 32px;
- flex: 1;
- }
- .single_check_text_sel {
- color: #000;
- font-weight: bold;
- font-size: 32px;
- flex: 1;
- }
- .single_checked {
- width: 48px;
- height: 48px;
- }
- .more_stage {
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 23px;
- height: 46px;
- padding-left: 24px;
- padding-right: 24px;
- background-color: #252525;
- // margin-bottom: 20px;
- }
- .more_stage_text {
- font-weight: bold;
- color: $fastColor;
- font-size: 20px;
- line-height: 20px;
- }
|