1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/pay/pay.wxss */
- .pay{
- .title{
- font-weight: 600;
- }
- .red{
- font-weight: 600;
- padding: 20rpx;
- color: #f03;
- }
- .user-address{
- .user-address-h1{
- font-weight: 600;
- }
- .user-address-h2{
- max-width: 85vw;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- }
- .pay-list{
- margin: 20rpx 0;
- .container{
- width: 100vw;
- padding: 10rpx 16rpx;
- background-color: white;
- box-sizing: border-box;
- .scroll{
- width: 100%;
- height: 200rpx;
- white-space:nowrap;
- .img{
- height: 90%;
- display: inline-block;
- padding: 10rpx;
- }
- }
- }
- }
- .pay-setup {
- margin: 20rpx 0;
- .pay-flex{
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- }
- .pay-type{
- .type{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- };
- }
- .balance{
- padding: 10px 16px;background-color: #fff;
- .txt{color: #f03;}
- }
- }
|