dk-text.wxss 427 B

1234567891011121314151617181920212223
  1. /**
  2. *默认样式
  3. */
  4. .inputStyle {
  5. word-break: break-all;
  6. font-size:var(--fontSize--);
  7. color:var(--color--);
  8. font-weight:var(--fontWeight--);
  9. text-decoration:var(--textDecoration--);
  10. }
  11. /**
  12. *需要布局的模式
  13. */
  14. .inputLayoutStyle{
  15. font-size:var(--fontSize--);
  16. color:var(--color--);
  17. font-weight:var(--fontWeight--);
  18. width: 110rpx;
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-between;
  22. }