123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .i-cell {
- position: relative;
- padding: 24rpx 30rpx;
- display: flex;
- background: #fff;
- align-items: center;
- line-height: 1.4;
- font-size: 36rpx;
- font-family:'FangSong';
- font-weight: 400;
- overflow: hidden
- }
- .i-cell::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 #e9eaec;
- border-bottom-width: 2rpx;
- left: 30rpx;
- right: 0
- }
- .i-cell-last::after {
- display: none
- }
- .i-cell-icon {
- margin-right: 10rpx
- }
- .i-cell-icon:empty {
- display: none
- }
- .i-cell-bd {
- flex: 1
- }
- .i-cell-text {
- line-height: 48rpx;
- font-size: 36rpx;
- font-family:'FangSong';
- word-break: keep-all;
- font-weight: 600;
- }
- .i-cell-desc {
- line-height: 1.5;
- font-size: 33rpx;
- font-family:'FangSong';
- color: #80848f
- }
- .i-cell-ft {
- position: relative;
- text-align: right;
- color: #495060
- }
- .i-cell-access .i-cell-ft {
- padding-right: 26rpx
- }
- .i-cell-access .i-cell-ft::after {
- content: " ";
- display: inline-block;
- width: 12rpx;
- height: 12rpx;
- position: absolute;
- top: 50%;
- right: 4rpx;
- border-width: 4rpx 4rpx 0 0;
- border-color: #dddee1;
- border-style: solid;
- transform: translateY(-50%) matrix(.71, .71, -.71, .71, 0, 0)
- }
|