123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /* pages/payment/payment.wxss */
- .payment {
- background-color: #FAFCFF;
- padding: 40rpx 40rpx 0;
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- overflow: auto;
- }
- .payment .card {
- background-color: #FFF;
- padding: 10rpx 40rpx;
- position: relative;
- border-radius: 10rpx;
- box-shadow: 0 2rpx 20rpx 0 rgba(0, 0, 0, 0.1);
- }
- .payment .card .box {
- position: relative;
- z-index: 2;
- }
- .payment .card .box .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx 0;
- border-bottom: 2rpx solid rgba(174, 203, 228, 0.3);
- font-size: 28rpx;
- color: #686B78;
- }
- .payment .card .box .item:last-child {
- border: none;
- }
- .payment .card .box .item text:last-child {
- display: inline-block;
- width: calc(100% - 160rpx);
- text-align: right;
- }
- .payment .card .box picker {
- width: 100%;
- height: 100%;
- }
- .payment .card .box .picker {
- width: 100%;
- height: 100%;
- color: #0091FF;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .payment .card .box .picker .icon-up {
- display: inline-block;
- width: 18rpx;
- height: 12rpx;
- margin-left: 20rpx;
- transform: rotate(270deg);
- }
- .payment .card .bg {
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- width: 100%;
- height: 98rpx;
- }
- .payment .volume .box {
- margin: 40rpx 0;
- }
- .payment .volume .title {
- font-size: 28rpx;
- font-weight: bold;
- color: #686B78;
- display: flex;
- align-items: center;
- }
- .payment .volume .title.line::before {
- content: "";
- display: inline-block;
- width: 6rpx;
- height: 16rpx;
- background: rgba(0, 145, 255, 1);
- border-radius: 2rpx;
- margin-right: 12rpx;
- }
- .payment .volume .input {
- height: 72rpx;
- margin: 20rpx 0 40rpx;
- border-bottom: 2rpx solid #CFD2D5;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .payment .volume .input .shuidi {
- display: inline-block;
- width: 38rpx;
- height: 38rpx;
- margin-right: 20rpx;
- }
- .payment .volume .input input {
- width: calc(100% - 100rpx);
- }
- .payment .volume .input .unit {
- font-size: 32rpx;
- color: rgba(66, 70, 86, 0.5);
- }
- .payment .volume .input input {
- display: inline-block;
- }
- .payment .volume .tags {
- display: flex;
- justify-content: space-between;
- }
- .payment .volume .tags button {
- margin: 0;
- width: 140rpx;
- height: 60rpx;
- background: rgba(240, 242, 246, 1);
- border-radius: 4rpx;
- border: none;
- font-size: 24rpx;
- color: rgba(104, 107, 120, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .payment .volume .tags .tag.disabled {
- background: rgba(244, 247, 249, 1);
- color: rgba(224, 225, 227, 1);
- }
- .payment .volume .tags .tag.active {
- background: rgba(0, 145, 255, 1);
- color: #FFF;
- }
- .payment .payable {
- font-size: 26rpx;
- font-weight: normal;
- }
- .payment .payable .h {
- font-size: 28rpx;
- font-weight: bold;
- color: #686B78;
- }
- .payment .payable .amount {
- width: 200rpx;
- font-weight: normal;
- text-align: center;
- }
- .payment .payable .unit {
- font-size: 26rpx;
- font-weight: normal;
- color: rgba(66, 70, 86, 0.5);
- margin-right: 20rpx;
- }
- .payment .payable .arrears-tip {
- font-size: 26rpx;
- font-weight: normal;
- color: #F56C6C;
- }
- .payment .btn-big {
- margin: 40rpx auto 40rpx;
- }
- .payment .tips {
- margin: 0;
- font-size: 24rpx;
- color: rgba(255, 113, 113, 1);
- line-height: 34rpx;
- }
- .payment .nav {
- font-size: 24rpx;
- color: rgba(0, 145, 255, 1);
- height: 114rpx;
- line-height: 114rpx;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 40rpx;
- }
- .payment .nav .line {
- font-size: 16rpx;
- color: #CFD2D5;
- margin: 0 40rpx;
- }
|