| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .ring_center {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- align-items: center;
- justify-content: center;
- display: flex;
- flex-direction: column;
- }
- .badge {
- width: 16px;
- height: 16px;
- border-radius: 8px;
- background-color: red;
- position: absolute;
- right: 20px;
- top: 10px;
- }
- .log_row {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- width: 652px;
- padding-bottom: 20px;
- margin-bottom: 20px;
- border-bottom: solid 2px #99999966;
- }
- .fast_log_btn {
- display: flex;
- height: 88px;
- border-radius: 44px;
- padding: 0 52px;
- align-items: center;
- justify-content: center;
- background-color: rgba(2, 182, 253, 0.2);
- color: #02B6FD;
- position: relative;
- }
- .fast_log_btn_disable {
- background-color: rgba(202, 202, 202, 0.2);
- color: #CACACA;
- }
- .fast_log_eat_btn{
- color:#FE810C;
- background-color: rgba(254, 129, 12, 0.2);
- }
- .schedule {
- display: flex;
- flex-direction: column;
- }
- .schedule_name {
- color: #CACACA;
- font-size: 24px;
- }
- .schedule_time {
- color: #818080;
- font-weight: bold;
- font-size: 40px;
- }
|