12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* dispatcher/pages/withdraw_library/withdraw_library.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- .header {
- background: #fff;
- padding: 24rpx 30rpx;
- }
- .list {
- padding: 0;
- }
- .li {
- margin: 20rpx;
- background: rgba(255,255,255,1);
- border-radius: 18rpx;
- padding: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .li-flex {
- flex: 1;
- }
- .li-arrow {
- margin-left: 50rpx;
- }
- .li-arrow-icon {
- width: 16rpx;
- height: 26rpx;
- margin-left: 13rpx;
- }
- .text-black {
- color: #333;
- font-size: 32rpx;
- line-height: 45rpx;
- }
- .text-gray {
- color: #999;
- font-size: 28rpx;
- line-height: 38rpx;
- }
|