| 1234567891011121314151617181920212223242526272829 |
- /* pages/setting/setting.wxss */
- page {
- background: #F8F8F8;
- padding: 24rpx;
- box-sizing: border-box;
- }
- .abelCell {
- padding: 24rpx 20rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- }
- .abelCellItem {
- position: relative;
- line-height: 80rpx;
- /* text-align: justify; */
- /* text-justify: distribute-all-line; */
- }
- .abelCellItem::after {
- content: "\e615";
- position: absolute;
- right: 0;
- color: #A2A2A2;
- }
|