| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- .form-input {
- &.l-input {
- padding: 0 !important;
- .l-input__label {
- font-weight: 400;
- font-size: 28rpx;
- color: #6e7580;
- }
- .l-input__control {
- font-weight: 400;
- font-size: 28rpx;
- color: #131415;
- padding: 20rpx;
- background-color: #f5f7fa;
- border-radius: 8rpx;
- }
- .l-input__placeholder {
- font-weight: 400;
- font-size: 28rpx;
- color: #999999;
- }
- }
- &::after {
- display: none !important;
- opacity: 0 !important;
- }
- }
- .form-textarea {
- &.l-textarea {
- padding: 0 !important;
- .l-textarea__wrapper {
- padding: 20rpx;
- background-color: #f5f7fa;
- border-radius: 8rpx;
- }
- .l-textarea__label {
- font-weight: 400;
- font-size: 28rpx;
- color: #6e7580;
- padding-bottom: 0 !important;
- margin-bottom: 16rpx;
- }
- .l-textarea__control {
- font-weight: 400;
- font-size: 28rpx;
- color: #131415;
- }
- .l-textarea__placeholder {
- font-weight: 400;
- font-size: 28rpx;
- color: #999999 !important;
- }
- }
- &::after {
- display: none !important;
- opacity: 0 !important;
- }
- }
- /* 全局样式 - 确保在所有平台生效 */
- .l-input__placeholder {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #999999 !important;
- }
- .l-textarea__placeholder {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #999999 !important;
- }
- .l-textarea__control {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #131415 !important;
- }
- /* uni 原生 input 样式 */
- .uni-input-input {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #131415 !important;
- }
- /* uni 原生 textarea 样式 */
- .uni-textarea-textarea {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #131415 !important;
- }
- /* uni 原生 placeholder 样式 */
- .uni-input-placeholder,
- .uni-textarea-placeholder {
- font-weight: 400 !important;
- font-size: 28rpx !important;
- color: #999999 !important;
- }
|