1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- $placeholderColor: #bbb;
- *::-webkit-input-placeholder {
- font-size: 29rpx;
- color: $placeholderColor !important;
- }
- .wk-field {
- font-size: $wk-font-medium;
- color: #333;
- background-color: white;
- margin-bottom: 15rpx;
- // @include left;
-
- .wk-field__label {
- width: 100%;
- padding: 15rpx 0;
- @include left;
- .line {
- width: 8rpx;
- height: 30rpx;
- background-color: $error;
- margin-right: 10rpx;
- }
- }
-
- .wk-field__body {
- width: 100%;
- min-height: 70rpx;
- border: 1rpx solid #E1E1E1;
- border-radius: 8rpx;
- padding: 10rpx 15rpx;
- @include left;
-
- .wk-field__body-core {
- flex: 1;
- text-align: inherit;
- font-size: inherit;
- display: block;
- }
-
- .icon-right {
- font-size: $wk-font-base;
- color: $placeholderColor;
- }
- }
-
- // .wk-field__right {
- // width: 36rpx;
- // text-align: right;
- // .icon-right {
- // font-size: 30rpx;
- // color: $placeholderColor;
- // }
- // }
- }
|