| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /* pages/recharge/index.wxss */
- /* 余额 */
- .money{
- /* padding-top: 72rpx;
- text-align: center; */
- width: 100vw;
- height: 154rpx;
- background:#295C56;
- position: relative;
- text-align: center;
- color:#FFFFFF;
- }
- .money .title{
- font-size:26rpx;
- /* color:rgba(51,51,51,1); */
- }
- .cash{
- padding-left: 20rpx;
- font-size:48rpx;
- /* color:rgba(213,76,67,1); */
- }
- .cash .cash_tag{
- font-size:30rpx;
- }
- .cash .cash_num{
- padding-left: 4rpx;
- }
- /* 下一步 */
- .actions{
- /* position: fixed;
- bottom: 48rpx;
- width: 100vw; */
- width: 100vw;
- }
- .actions .logout{
- width:690rpx;
- height:90rpx;
- background:#295C56;
- border-radius:45rpx;
- margin: 0 auto;
- font-size:34rpx;
- color:#FFFFFF;
- text-align: center;
- line-height: 90rpx;
- }
- /* 背景上的弧度 */
- .bg{
- width: 750rpx;
- height: 34rpx;
- display: block;
- }
- .square{
- content: "";
- display: block;
- width:26rpx;
- height:26rpx;
- background:rgba(255,255,255,1);
- opacity:0.1;
- border-radius:50%;
- position: absolute;
- bottom: 120rpx;
- right: 120rpx;
- }
- /* 提现 */
- .recharge_wrap{
- width:690rpx;
- background:rgba(255,255,255,1);
- box-shadow:0rpx 0rpx 21rpx 0rpx rgba(0, 0, 0, 0.09);
- border-radius:10rpx;
- position: relative;
- left: 50%;
- top: -60rpx;
- transform: translateX(-50%);
- padding: 50rpx 30rpx;
- }
- .recharge_title{
- font-size:36rpx;
- color:rgba(51,51,51,1);
- text-align: center;
- }
- .recharge{
- padding-top: 12rpx;
- }
- .recharge .card{
- width:200rpx;
- height:122rpx;
- background:rgba(255,255,255,1);
- border:1rpx solid rgba(233,233,233,1);
- border-radius:5rpx;
- margin-top: 18rpx;
- margin-right: 15rpx;
- font-size:36rpx;
- color:rgba(213,76,67,1);
- text-align: center;
- line-height: 122rpx;
- }
- .recharge .card:nth-of-type(3n){
- margin-right: 0;
- }
- .recharge .card.active{
- background:rgba(255,244,244,1);
- border:1rpx solid rgba(255,113,113,1);
- }
- /* 选择门店 */
- .selecteShop_nr{
- display: flex;
- justify-content: space-between;
- margin-top: 20rpx;
- }
- .selecteShop_nr .text{
- font-size: 28rpx;
- }
- /* 提现金额 */
- .recharge_wrap .van-cell{
- padding: 10rpx 0 !important;
- line-height: normal !important;
- border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
- }
- .recharge_wrap .van-field__body{
- font-size: 30rpx;
- padding-top: 30rpx;
- }
|