1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/my/myCash/myCash.wxss */
- /* 背景 小条框 */
- .bj-center{
- height:20rpx;
- background-color: #f8f9fb;
- }
- /* 提现金额 */
- .cash{
- height:500rpx;
- /* background-color: blue; */
- }
- .cash-txt1{
- top: 20rpx;
- }
- /* yuan */
- .cash image{
- position: absolute;
- width: 60rpx;
- height:60rpx;
- top:160rpx;
- left: 60rpx;
- }
- .cash-txt2{
- top: 140rpx;
- left: 110rpx;
- }
- .cash-txt3{
- top: 290rpx;
- left: 75rpx;
- color: #C6C7CC;
- }
- /* 全部提现按钮 */
- .tx-min{
- width: 195rpx;
- height: 70rpx;
- background-color: #fff;
- border-radius: 20px;
- top: 269rpx;
- left: 510rpx;
- border: 1px solid #f5a907;
- color: #f5a907;
- text-align: center;
- }
- /* 底部 提现 按钮 */
- .cash-bottom{
- height: 100%;
- background-color: #f8f9fb;
- }
- .cash-but{
- background-color: #FFF100;
- width: 600rpx;
- height: 100rpx;
- border-radius: 20px;
- text-align: center;
- }
|