| 12345678910111213141516171819202122232425262728293031323334 |
- .box{
- margin-left: 32px;
- margin-right: 32px;
- background: #1C1C1C;
- border-radius: 56px;
- display: flex;
- flex-direction: column;
- height: 1000px;
- }
- .header{
- margin-top: 40px;
- display: flex;
- flex-direction: row;
- }
- .item{
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- }
- .duration{
- font-size: 48px;
- margin-bottom: 40px;
- text-align: center;
- }
- .tz_note_desc{
- opacity: 0.4;
- color: #FA5151;
- font-size: 24px;
- }
|