1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .zan-cell {
- position: relative;
- padding: 12px 15px;
- display: flex;
- align-items: center;
- line-height: 1.4;
- font-size: 14px;
- }
- .zan-cell::after {
- position: absolute;
- left: 15px;
- right: 0;
- bottom: 0;
- border-top: 1rpx solid #e5e5e5;
- background: #e5e5e5;
- content: ' ';
- }
- .zan-cell__bd {
- flex: 1;
- }
- .zan-cell__ft {
- position: relative;
- text-align: right;
- color: #666;
- }
- .zan-cell--last-child::after,
- .zan-cell:last-child::after {
- display: none;
- }
- .zan-cell--access .zan-cell__ft {
- padding-right: 13px;
- }
- .zan-cell--access .zan-cell__ft::after {
- position: absolute;
- top: 50%;
- right: 2px;
- content: " ";
- display: inline-block;
- height: 6px;
- width: 6px;
- border-width: 2px 2px 0 0;
- border-color: #c8c8c8;
- border-style: solid;
- transform: translateY(-50%) matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
- }
- .zan-cell--switch {
- padding-top: 6px;
- padding-bottom: 6px;
- }
|