123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .list-item {
- width: 100%;
- border-bottom: 1rpx solid $border-color;
- padding: 28rpx 32rpx;
- line-height: 1.8;
- background-color: white;
- &:last-child {
- border-bottom: 0 none;
- }
- .list-item-main {
- @include left;
- .left {
- flex: 1;
- font-size: 30rpx;
- color: $dark;
- }
- .right {
- color: $gray;
- font-size: 30rpx;
- }
- }
- .list-item-desc {
- font-size: 28rpx;
- color: #666;
- margin-top: 10rpx;
- @include left;
- .left {
- flex: 1;
- }
- .right {}
- }
- }
- .wk-button {
- .list-item {
- background-color: unset;
- border-bottom: 1rpx solid $border-color;
- }
- &:last-child .list-item {
- border-bottom: 0 none;
- }
- }
|