keyboard-input.wxss 499 B

123456789101112131415161718192021222324252627282930
  1. .tui-pwd-box {
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. box-sizing: border-box;
  6. vertical-align: top;
  7. }
  8. .tui-inner-box {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .tui-input {
  14. height: 80rpx;
  15. position: relative;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. margin-right: 20rpx;
  20. border-bottom: 2px solid #666;
  21. }
  22. .tui-margin-right{
  23. margin-right: 30rpx;
  24. }
  25. .tui-input:last-child {
  26. margin-right: 0 !important;
  27. }