123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .wrap {
- position: relative;
- }
- .wrap .content {
- position: relative;
- z-index: 1;
- overflow: hidden;
- }
- .wrap .content.animate {
- transition: transform 0.3s;
- background: #F6F8FB;
- }
- .wrap .action-wrap {
- position: absolute;
- display: flex;
- width: 120rpx;
- top: 0;
- bottom: 0;
- right: 0;
- overflow: hidden;
- border-radius: 0 24rpx 24rpx 0;
- }
- .wrap .action {
- display: flex;
- width: 120rpx;
- height: 100%;
- justify-content: center;
- align-items: center;
- color: white;
- background: #327BF9;
- }
- .wrap .delete {
- background: #FF8200;
- }
- .wrap .action text {
- font-size: 24rpx;
- color: #fff;
- }
|