123456789101112131415161718192021222324252627282930313233343536 |
- .cl-textarea {
- border: 1rpx solid #dcdfe6;
- border-radius: 8rpx;
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- position: relative;
- padding: 10rpx 10rpx 10rpx 16rpx;
- line-height: 36rpx;
- textarea {
- font-size: 24rpx;
- width: 100%;
- box-sizing: border-box;
- font-size: 26rpx;
- }
- &.is-disabled {
- background-color: #f5f7fa;
- }
- &__count {
- position: absolute;
- right: 10rpx;
- bottom: 4rpx;
- font-size: 24rpx;
- letter-spacing: 1rpx;
- color: #999;
- }
- &.is-count {
- /* #ifndef MP-ALIPAY */
- padding-bottom: 40rpx;
- /* #endif */
- }
- }
|