| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .detail{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- color: #fff;
- background-color: #000;
- }
- .title{
- color: #fff;
- font-size: 48px;
- line-height: 48px;
- margin-bottom: 8px;
- }
- .time{
- color: #fff;
- opacity: 0.4;
- font-size: 32px;
- line-height: 48px;
- }
- .detail_item{
- display: flex;
- flex: 1;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .title_bg{
- padding-top: 9px;
- position: relative;
- width: 100px;
- }
- .badge{
- position: absolute;
- right: -9px;
- top: 0px;
- width: 18px;
- height: 18px;
- border-radius: 50%;
- background-color: #AAFF00;
- }
|