123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .wux-cell {
- padding: 0;
- margin: 0;
- border-radius: 0;
- color: inherit!important;
- background: 0 0!important;
- font-size: inherit;
- font-weight: 400;
- line-height: inherit;
- text-align: inherit;
- text-decoration: none;
- overflow: visible;
- min-height: 0!important;
- width: auto!important;
- box-sizing: border-box;
- -webkit-tap-highlight-color: transparent;
- padding: 20rpx 30rpx;
- position: relative;
- display: flex;
- align-items: center;
- background: #fff
- }
- .wux-cell::after {
- display: block;
- position: static;
- top: auto;
- left: auto;
- width: auto;
- height: auto;
- border: none;
- border-radius: 0;
- transform: none;
- transform-origin: 0 0
- }
- .wux-cell--align-flex-start {
- align-items: flex-start
- }
- .wux-cell--align-center {
- align-items: center
- }
- .wux-cell--has-line.wux-cell::after {
- content: " ";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1PX;
- border-bottom: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 100%;
- transform: scaleY(.5);
- left: 30rpx
- }
- .wux-cell--has-line.wux-cell--last::after {
- display: none
- }
- .wux-cell--hover {
- background-color: #ececec!important
- }
- .wux-cell--disabled {
- opacity: .3
- }
- .wux-cell__thumb {
- width: 40rpx;
- height: 40rpx;
- display: block;
- margin-right: 10rpx
- }
- .wux-cell__bd {
- flex: 1
- }
- .wux-cell__text {
- text-align: left
- }
- .wux-cell__desc {
- text-align: left;
- line-height: 1.2;
- font-size: 24rpx;
- color: rgba(0,0,0,.45)
- }
- .wux-cell__ft {
- display: flex;
- align-self: center;
- text-align: right;
- color: rgba(0,0,0,.45)
- }
- .wux-cell__arrow:not(:empty) {
- flex: none;
- display: flex;
- align-items: center;
- margin-left: 10rpx
- }
- .wux-cell--access > .wux-cell__ft {
- padding-right: 38rpx;
- position: relative
- }
- .wux-cell--access > .wux-cell__ft::after {
- content: " ";
- display: inline-block;
- width: 30rpx;
- height: 30rpx;
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2226%22%20viewBox%3D%220%200%2016%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2%200L0%202l11.5%2011L0%2024l2%202%2014-13z%22%20fill%3D%22%23c7c7cc%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
- background-size: contain;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- transform: rotate(0);
- transform: rotate(0) translateY(-50%);
- position: absolute;
- top: 50%;
- right: 0
- }
|