123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- view {
- box-sizing: border-box;
- }
-
- .container {
- min-height: 100vh;
- background:#F7F8FB ;
- .mainBox{
- .list{
- overflow-y: scroll;
- overflow-x: hidden;
- // min-height: 100vh;
- padding: 30rpx;
- padding-top: 110rpx;
- .item{
- // height: 154rpx;
- // background: #FFFFFF;
- // box-shadow: 0rpx 4rpx 16rpx -8rpx rgba(0,103,104,0.16);
- // border-radius: 32rpx;
-
- padding: 40rpx 32rpx;
- position: relative;
- margin-bottom: 8rpx;
-
- background-repeat: no-repeat;
- background-size: 100% 100%;
- .water{
- width: 114rpx;
- height: 120rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 0;
-
- border-radius:0 0 0 32rpx;
- }
- .top{
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- z-index: 1;
- .name{
- font-size: 28rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- .money{
- font-size: 32rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- color: #333333;
- padding-right: 18rpx;
- }
- }
- .bot{
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 14rpx;
- position: relative;
- z-index: 1;
- .count{
- font-size: 24rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #666666;
-
- width: 110rpx;
- height: 32rpx;
- background: #C5E1FF;
- border-radius: 0rpx 14rpx 0rpx 14rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .time{
- font-size: 24rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- }
- }
- }
-
- ::v-deep .u-tabs{
- background: #FFFFFF!important;
- box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(0,0,0,0.05)!important;
- border-radius: 0rpx 0rpx 32rpx 32rpx!important;
-
- position: fixed;
- width: 100%;
- z-index: 3;
- }
-
- ::v-deep .u-tabs__wrapper__nav__item__text{
- font-size: 28rpx!important;
- }
|