| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @import '@/utils/common.scss';
- .box{
- margin-left: 32px;
- margin-right: 32px;
- background: #1C1C1C;
- border-radius: $boxBorderRadius;
- display: flex;
- flex-direction: column;
- // margin-top: 20px;
- }
- .header{
- margin-top: 40px;
- display: flex;
- flex-direction: row;
- flex-shrink: 0;
- height: 90px;
- }
- .item1{
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- // background-color: pink;
- flex-direction: column;
- height: 90px;
- }
- .item_title{
- font-size: 32px;
- line-height: 32px;
- }
- .subtitle{
- opacity: 0.4;
- font-size: 36px;
- margin-bottom: 20px;
- margin-left:40px;
- }
- .item_text{
- margin-top: 10px;
- font-size: 48px;
- line-height: 48px;
- font-weight: bold;
- }
- .dial_bg{
- margin-top: 40px;
- margin-bottom: 40px;
- align-items: center;
- justify-content: center;
- display: flex;
- }
- .duration_bg{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 90px;
- margin-bottom: 40px;
- margin-right: 40px;
- }
- .duration_title{
- font-size: 32px;
- line-height: 32px;
- }
- .duration_value{
- font-size: 48px;
- line-height: 48px;
- margin-top: 10px;
- text-align: center;
- font-weight: bold;
- }
- .schedule_text_value{
- color: #fff;
- }
- .schedule_text_key{
- color: #fff;
- opacity: 0.6;
- }
- .next_day{
- margin-right: 10px;
- font-size: 28px;
- color: #fff;
- opacity: 0.4;
- }
|