123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* pages/payment/record/record.wxss */
- .payment-record {
- padding: 0;
- margin: 0;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .payment-record .top-opt {
- width: calc(100% - 80rpx);
- padding: 0 40rpx;
- height: 80rpx;
- background: rgba(250, 252, 255, 1);
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .payment-record .picker {
- height: 80rpx;
- display: flex;
- align-items: center;
- font-size:28rpx;
- font-family:PingFangSC-Regular,PingFang SC;
- color:rgba(104,107,120,1);
- }
- .payment-record .picker .icon-up {
- display: inline-block;
- width: 16rpx;
- height: 10rpx;
- margin-left: 22rpx;
- }
- .payment-record .top-opt .right {
- font-size: 28rpx;
- color: rgba(0, 145, 255, 1);
- }
- .payment-record .weui-tabs-bar__wrp {
- border-bottom: 1rpx solid #CFD2D5;
- }
- .payment-record .weui-tabs-bar__item .weui-tabs-bar__title {
- height: 90rpx;
- width: 80rpx;
- font-size: 28rpx;
- color: rgba(104, 107, 120, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 10rpx;
- }
- .payment-record .tabs-swiper {
- height: calc(100% - 180rpx);
- display: block;
- position: absolute;
- width: 100%;
- }
- .payment-record .tabs-swiper .wrap {
- height: calc(100vh - 180rpx);
- width: 100%;
- }
- .payment-record .tabs-swiper .wrap .card {
- position: relative;
- background: rgba(249, 250, 252, 1);
- border-radius: 16rpx;
- border: 2rpx solid rgba(241, 241, 241, 1);
- padding: 40rpx;
- margin: 40rpx;
- }
- .payment-record .tabs-swiper .wrap .card .item {
- font-size: 28rpx;
- color: rgba(104, 107, 120, 1);
- line-height: 40rpx;
- margin-bottom: 10rpx;
- }
- .payment-record .tabs-swiper .wrap .card .item .label{
- min-width: 170rpx;
- display: inline-block;
- }
- .icon-method {
- width: 120rpx;
- height: 80rpx;
- position: absolute;
- top: 40rpx;
- right: 0;
- }
- .payment-record .tabs-swiper .wrap .card .item .block{
- display: block;
- }
|