123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /* pages/payment/history/history.wxss */
- .payment-history {
- padding: 0;
- margin: 0;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .payment-history .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-history .picker {
- height: 80rpx;
- display: flex;
- align-items: center;
- font-size:28rpx;
- font-family:PingFangSC-Regular,PingFang SC;
- color:rgba(104,107,120,1);
- }
- .payment-history .picker .icon-up {
- display: inline-block;
- width: 16rpx;
- height: 10rpx;
- margin-left: 22rpx;
- }
- .payment-history .top-opt .right {
- font-size: 28rpx;
- color: rgba(0, 145, 255, 1);
- }
- .payment-history .weui-tabs-bar__wrp {
- border-bottom: 1rpx solid #CFD2D5;
- }
- .payment-history .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-history .tabs-swiper {
- height: calc(100% - 180rpx);
- display: block;
- position: absolute;
- width: 100%;
- }
- .payment-history .tabs-swiper .wrap {
- height: calc(100vh - 180rpx);
- width: 100%;
- }
- .payment-history .tabs-swiper .wrap .card {
- position: relative;
- background: rgba(249, 250, 252, 1);
- border-radius: 16rpx;
- border: 2rpx solid rgba(241, 241, 241, 1);
- padding: 20rpx 40rpx;
- margin: 40rpx;
- }
- .payment-history .tabs-swiper .wrap .card .top {
- padding: 30rpx;
- background:rgba(255,249,247,1);
- border-radius:10rpx;
- border:2rpx solid rgba(255,212,212,1);
- margin:10rpx 0;
- }
- .payment-history .tabs-swiper .wrap .card .bottom{
- padding: 30rpx;
- background:rgba(255,249,247,1);
- border-radius:10rpx;
- border:2rpx solid rgba(255,212,212,1);
- margin:10rpx 0;
- }
- .payment-history .tabs-swiper .wrap .card .item {
- font-size: 28rpx;
- color: rgba(104, 107, 120, 1);
- line-height: 40rpx;
- margin-bottom: 10rpx;
- }
- .payment-history .tabs-swiper .wrap .card .item .label{
- min-width: 170rpx;
- display: inline-block;
- }
- .icon-method {
- width: 176rpx;
- height: 176rpx;
- position: absolute;
- top: 380rpx;
- right: 54rpx;
- }
- .icon-bg{
- width:590rpx;
- height: 20rpx;
- }
|