123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /* pages/outmoney/outmoney.wxss */
- text {
- font-size: 32rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #959595;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 32rpx;
- height: 32rpx;
- min-height: 32rpx;
- }
- .money_input {
- margin: 50rpx 30rpx 10rpx 30rpx;
- padding: 0 21rpx;
- border-top: 1rpx solid #f7f7f7;
- border-bottom: 1rpx solid #f7f7f7;
- line-height: 100rpx;
- height: 100rpx;
- min-height: 100rpx;
- }
- .section_phcolor {
- font-size: 28rpx;
- line-height: 100rpx;
- height: 100rpx;
- min-height: 100rpx;
- color: #aaaaaa;
- }
- .money_input text {
- display: inline-block;
- color: #434343;
- line-height: 100rpx;
- height: 100rpx;
- min-height: 100rpx;
- }
- .money_input input {
- padding: 0 20rpx;
- display: inline-block;
- width: 380rpx;
- height: 100rpx;
- line-height: 100rpx;
- min-height: 100rpx;
- color: #aaaaaa;
- font-size: 28rpx;
- }
- .money_input picker {
- padding: 0 20rpx;
- display: inline-block;
- width: 540rpx;
- height: 100rpx;
- line-height: 100rpx;
- min-height: 100rpx;
- color: #aaaaaa;
- font-size: 28rpx;
- text-align: right;
- }
- .money_input picker text{
- color: #aaaaaa;
- font-size: 28rpx;
- }
- .outmoney{
- margin: 0 30rpx;
- padding: 0 20rpx;
- }
- .outmoney text{
- color: #aaaaaa;
- font-size: 28rpx;
- }
- .outmoney_button{
- position: absolute;
- bottom: 0;
- width: calc(100% - 60rpx);
- font-size: 32rpx;
- margin: 50rpx 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #ffffff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #00a8dc;
- }
- .outmoney_button_disable{
- position: absolute;
- bottom: 0;
- width: calc(100% - 60rpx);
- font-size: 32rpx;
- margin: 50rpx 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #ffffff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #c9c9c9;
- }
- .outmoney_button.button-hover{
- background-color: #1ca05e;
- }
|