1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .slider-left-item {
- overflow: hidden;
- background-color: #fff;
- /* movable-area重置默认高度 */
- height: auto;
- }
- .slider-left-content {
- display: flex;
- align-items: center;
- height: 100%;
- background: inherit;
- color: inherit;
- /* movable-view重置默认绝对定位 */
- position: relative;
- z-index: 1;
- }
- .slider-left-handle {
- height: 100%;
- display: flex;
- justify-content: flex-end;
- position:absolute;
- top:0;
- left:0;
- right:0;
- z-index: 0;
- }
- .handle-delete {
- background-color: #FF4E4E;
- width: 150rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 20px;
- padding-right: 15px;
- }
|