publicContent.less 764 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .publicContent{
  2. padding: 20px;
  3. .formItem{
  4. display: flex;
  5. align-items: center;
  6. font-size: 30px;
  7. padding-bottom: 28px;
  8. .formName{
  9. white-space: nowrap;
  10. .tips{
  11. color: #ff0000;
  12. font-size: 20px;
  13. padding-bottom: 20px;
  14. }
  15. }
  16. .formValue{
  17. text-align: right;
  18. flex: 1;
  19. display: flex;
  20. flex-flow: row nowrap;
  21. align-items: center;
  22. justify-content: flex-end;
  23. .formValueText{
  24. display: block;
  25. width: 452px;
  26. text-overflow: ellipsis;
  27. overflow: hidden;
  28. white-space: nowrap;
  29. }
  30. }
  31. }
  32. .tips{
  33. font-size: 20px;
  34. text-align: left;
  35. color: #f00;
  36. }
  37. .operation{
  38. display: flex;
  39. flex-flow: row nowrap;
  40. }
  41. }