| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- @import '@/utils/common.scss';
- .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_value2{
- font-size: 36px;
- line-height: 36px;
- font-weight: 500;
- margin-bottom: 12px;
- }
- .arrow1{
- width: 48px;
- height: 48px;
- }
- .tip_bg2{
- height: 80px;
- width: 100%;
- box-sizing: border-box;
- // background-color: rgba(250, 81, 81, 0.1);
- display: flex;
- flex-direction: column;
- // padding-left: 40px;
- }
- .tip_text2{
- line-height: 80px;
- color: #fff;
- opacity: 0.8;
- font-size: 28px;
- }
- .schedule_more{
- display: flex;
- flex-direction: row;
- height: 84px;
- align-items: center;
- color: $fastColor;
- }
- .schedule_box{
- margin-left: 46px;
- margin-right: 46px;
- margin-bottom: 24px;
- background-color: $boxColor;
- border-radius: $boxBorderRadius;
- display: flex;
- flex-direction: column;
- padding-top: 40px;
- padding-left: 40px;
- padding-bottom: 34px;
- }
- .schedule_line{
- margin-bottom: 30px;
- height: 2px;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- background-color: #fff;
- opacity: 0.1;
- }
- .schedule_row{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- box-sizing: border-box;
- margin-right: 40px;
- align-items: center;
- }
|