1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .wux-cell-group--card {
- margin: 30rpx
- }
- .wux-cell-group__hd {
- padding: 30rpx 30rpx 18rpx;
- font-size: 28rpx;
- color: rgba(0,0,0,.45);
- width: 100%;
- box-sizing: border-box
- }
- .wux-cell-group__bd {
- position: relative;
- background-color: #fff;
- overflow: hidden
- }
- .wux-cell-group--has-line > .wux-cell-group__bd::after {
- content: " ";
- position: absolute;
- top: 0;
- left: 0;
- width: 200%;
- height: 200%;
- transform: scale(.5);
- transform-origin: 0 0;
- pointer-events: none;
- box-sizing: border-box;
- border: 0 solid #d9d9d9;
- border-top-width: 1PX;
- border-bottom-width: 1PX
- }
- .wux-cell-group__ft {
- padding: 18rpx 30rpx 30rpx;
- font-size: 28rpx;
- color: rgba(0,0,0,.45)
- }
- .wux-cell-group--card > .wux-cell-group__hd {
- padding-left: 0;
- padding-right: 0
- }
- .wux-cell-group--card > .wux-cell-group__bd,
- .wux-cell-group--card > .wux-cell-group__ft {
- border-radius: 12rpx
- }
- .wux-cell-group--card > .wux-cell-group__bd::after,
- .wux-cell-group--card > .wux-cell-group__ft::after {
- display: none!important
- }
|