123456789101112131415161718192021222324252627282930313233 |
- .manage{
- padding: 20px 50px;
- width: 100%;
- background: #F9F9F9;
- border-radius: 10px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left{
- .row{
- display: flex;
- color: #231C1F99;
- font-family: PingFang SC;
- font-size: 16px;
- font-weight: 400;
- line-height: 24px;
- text-align: right;
- margin-bottom: 10px;
- width: 250px;
- justify-content: space-between;
- }
- }
- }
- .footer{
- position: absolute;
- bottom: 10px;
- width: 100%;
- right: 0;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding: 0 10px;
- }
|