| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .nut-leftslip {
- position: relative;
- overflow: hidden;
- &:first-child .nut-slip-main {
- border-top: 1px solid #d8d8d8;
- }
- .slip-main {
- padding: 10px;
- position: relative;
- overflow: hidden;
- display: flex;
- border-bottom: 1px solid #d8d8d8;
- background: #fff;
- }
- .nut-leftslip-item {
- transition: all 0.6s ease;
- }
- .delbtn {
- position: absolute;
- right: -52px;
- top: 0;
- min-width: 40px;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- // transform: translateX(100%);
- background: #ff4949;
- color: #fff;
- padding: 0 5px;
- font-size: 14px;
- span {
- // width: 40px;
- display: flex;
- position: absolute;
- right: 0;
- width: 50px;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- }
- .slipbtns {
- position: absolute;
- right: 0;
- top: 0;
- // width: 80px;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- transform: translateX(100%);
- a {
- display: flex;
- width: 40px;
- background: #ff4949;
- color: #fff;
- height: 100%;
- padding: 0 5px;
- font-size: 14px;
- align-items: center;
- justify-content: center;
- text-align: center;
- }
- }
- }
|