123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /* pages/cash/cash.wxss */
- page{
- background-color: #413668;
- }
- .c-head-bg{
- position: absolute;
- width: 671rpx;
- height: 272rpx;
- left: 40rpx;
- top: 40rpx;
- }
- .c-head{
- position: relative;
- margin: 40rpx 40rpx 0;
- height: 272rpx;
- }
- .c-head text{
- color: #fff;
- }
- .c-head > .title{
- display: inline-block;
- height: 48rpx;
- line-height: 48rpx;
- margin: 50rpx 56rpx 0;
- font-size: 26rpx;
- }
- .c-head > button{
- float: right;
- width: 128rpx;
- height: 48rpx;
- line-height: 48rpx;
- margin: 50rpx 40rpx 0;
- padding: 0;
- font-size: 24rpx;
- color: #fff;
- background: transparent;
- border: 1rpx solid #fff;
- border-radius: 32rpx;
- }
- .c-head > button::after{
- border: 0;
- }
- .c-head .balance{
- display: block;
- line-height: 116rpx;
- margin: 0 56rpx;
- font-size: 100rpx;
- font-family: 'Trebuchet MS', Tahoma, sans-serif;
- }
- .c-body{
- position: relative;
- height: 420rpx;
- margin: -15rpx 40rpx 0;
- background-color: #fff;
- border-radius: 20rpx;
- }
- .c-body > .title{
- display: inline-block;
- height: 48rpx;
- line-height: 48rpx;
- margin: 66rpx 56rpx 52rpx;
- font-size: 32rpx;
- color: #333333;
- }
- .c-body > view.out{
- margin: 0 56rpx 20rpx;
- padding-bottom: 36rpx;
- border-bottom: 1rpx solid #e5e5e5;
- }
- .c-body > view.out > text{
- display: inline-block;
- height: 80rpx;
- line-height: 80rpx;
- margin-right: 20rpx;
- font-size: 60rpx;
- color: #333333;
- vertical-align: top;
- }
- .c-body > view.out > input{
- display: inline-block;
- width: 500rpx;
- height: 80rpx;
- min-height: 80rpx;
- line-height: 80rpx;
- color: #333333;
- font-size: 68rpx;
- font-family: 'Trebuchet MS', Tahoma, sans-serif;
- }
- .c-body .tip{
- display: inline-block;
- margin: 0 56rpx;
- line-height: 44rpx;
- font-size: 26rpx;
- color: #999999;
- }
- .c-body text.yellow{
- color: #fc874f;
- }
- .c-body text.red{
- color: #fb444c;
- }
- .btn-cash{
- margin: 60rpx 40rpx 34rpx;
- height: 92rpx;
- line-height: 92rpx;
- min-height: 92rpx;
- background: linear-gradient(to right, #dd7fff, #625af7);
- border-radius: 46rpx;
- color: #fff;
- font-size: 34rpx;
- font-weight: bold;
- }
- .c-footer{
- display: block;
- opacity: 0.7;
- margin-bottom: 10rpx;
- text-align: center;
- font-size: 26rpx;
- color: #bfbdff;
- }
- .dialog-body-cash{
- position: relative;
- width: 500rpx;
- margin: 0 75rpx;
- padding: 56rpx 50rpx 66rpx;
- background-color: #fff;
- border-radius: 40rpx;
- text-align: center;
- }
- .dialog-body-cash .title{
- display: block;
- line-height: 48rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- }
- .dialog-body-cash .sub-title{
- display: block;
- margin-top: 15rpx;
- line-height: 36rpx;
- padding-bottom: 30rpx;
- font-size: 26rpx;
- color: #808080;
- text-align: left;
- border-bottom: 1rpx solid #e5e5e5;
- }
- .dialog-body-cash input{
- height: 108rpx;
- line-height: 108rpx;
- border-bottom: 1rpx solid #e5e5e5;
- color: #333333;
- font-size: 32rpx;
- }
- .dialog-body-cash button{
- height: 92rpx;
- line-height: 92rpx;
- font-size: 34rpx;
- margin-top: 54rpx;
- background: linear-gradient(to right, #dd7fff, #625af7);
- color: #fff;
- border-radius: 52rpx;
- }
|