1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .wallet{
- margin: 30px;
- font-weight: bold;
- .dayClass{
- height: 68px;
- background: #F8F8F8;
- font-size: 30px;
- color: #333333;
- line-height: 68px;
- margin-top: 30px;
- padding-left: 20px;
- }
- .walletCell{
- background: #FFF;
- box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.12);
- font-weight: bold;
- display: flex;
- align-items: center;
- padding: 30px 20px;
- margin-bottom: 1px;
- .content{
- width: 63vw;
- font-size: 32px;
- line-height: 32px;
- color: #333;
- .withDrawalDetail{
- margin-top: 26px;
- font-style: 30px;
- color: #666;
- font-weight:400;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- }
- .money{
- font-size: 40px;
- color: #FF3F3F;
- position: absolute;
- right: 30px;
- }
- .revenue{
- font-size: 30px;
- color: #00AE3A;
- }
- }
- }
|