123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- .i-cell {
- position: relative;
- padding: 24rpx 30rpx;
- display: flex;
- background: #fff;
- align-items: center;
- line-height: 1.4;
- font-size: 28rpx;
- 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: 1px;
- left: 15px;
- right: 0
- }
- .i-cell-last::after {
- display: none
- }
- .i-cell-icon {
- margin-right: 5px
- }
- .i-cell-icon:empty {
- display: none
- }
- .i-cell-bd {
- flex: 1
- }
- .i-cell-text {
- line-height: 24px;
- font-size: 14px
- }
- .i-cell-desc {
- line-height: 1.2;
- font-size: 12px;
- color: #80848f
- }
- .i-cell-ft {
- position: relative;
- text-align: right;
- color: #495060
- }
- .i-cell-access .i-cell-ft {
- padding-right: 13px
- }
- .i-cell-access .i-cell-ft::after {
- content: " ";
- display: inline-block;
- width: 6px;
- height: 6px;
- position: absolute;
- top: 50%;
- right: 2px;
- border-width: 2px 2px 0 0;
- border-color: #dddee1;
- border-style: solid;
- transform: translateY(-50%) matrix(.71, .71, -.71, .71, 0, 0)
- }
- .i-input {
- padding: 7px 15px;
- color: #495060
- }
- .i-input-wrapped {
- margin: 20rpx 30rpx;
- background-color: #fff
- }
- .i-input-wrapped::after {
- left: 0;
- border-width: 1px;
- border-radius: 4px
- }
- .i-input-error {
- color: #ed3f14
- }
- .i-input-title {
- color: #495060;
- min-width: 65px;
- padding-right: 10px
- }
- .i-input-input {
- flex: 1;
- line-height: 1.6;
- padding: 4px 0;
- min-height: 22px;
- height: auto;
- font-size: 14px
- }
- .i-input-placeholder {
- font-size: 14px
- }
- .i-input-input-right {
- text-align: right
- }
- .i-input.i-input-wrapped::after {
- display: block
- }
- .i-input-wrapped.i-input-error::after {
- border-color: #ed3f14
- }
|