| 1234567891011121314151617181920212223 |
- /**
- *默认样式
- */
- .inputStyle {
- word-break: break-all;
- font-size:var(--fontSize--);
- color:var(--color--);
- font-weight:var(--fontWeight--);
- text-decoration:var(--textDecoration--);
- }
- /**
- *需要布局的模式
- */
- .inputLayoutStyle{
- font-size:var(--fontSize--);
- color:var(--color--);
- font-weight:var(--fontWeight--);
- width: 110rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
|