publicContent.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. display: flex;
  11. align-items: center;
  12. .formNameTips {
  13. color: #ff0000;
  14. font-size: 20px;
  15. padding-left: 10px;
  16. }
  17. .tips {
  18. color: #ff0000;
  19. font-size: 20px;
  20. padding-bottom: 20px;
  21. }
  22. }
  23. .formValue {
  24. text-align: right;
  25. flex: 1;
  26. display: flex;
  27. flex-flow: row nowrap;
  28. align-items: center;
  29. justify-content: flex-end;
  30. .time {
  31. flex: 1;
  32. font-size: 30px;
  33. color: #bfbdbd;
  34. .timeContent {
  35. display: flex;
  36. flex-flow: column nowrap;
  37. align-items: flex-end;
  38. justify-content: center;
  39. }
  40. }
  41. .formValueText {
  42. display: block;
  43. width: 452px;
  44. text-overflow: ellipsis;
  45. overflow: hidden;
  46. white-space: nowrap;
  47. }
  48. }
  49. }
  50. .formItems {
  51. display: flex;
  52. flex-direction: row;
  53. align-items: flex-start;
  54. font-size: 30px;
  55. padding-bottom: 28px;
  56. .formNames {
  57. white-space: nowrap;
  58. display: flex;
  59. align-items: center;
  60. .formNameTips {
  61. color: #ff0000;
  62. font-size: 20px;
  63. padding-left: 10px;
  64. }
  65. .tips {
  66. color: #ff0000;
  67. font-size: 20px;
  68. padding-bottom: 20px;
  69. }
  70. }
  71. .formValues {
  72. display: flex;
  73. flex-direction: row;
  74. flex-wrap: wrap;
  75. .fitems {
  76. margin-left: 20px;
  77. margin-bottom: 20px;
  78. display: flex;
  79. flex-direction: row;
  80. position: relative;
  81. padding-right: 40px;
  82. .fclose {
  83. position: absolute;
  84. right: 0;
  85. top: -20px;
  86. }
  87. }
  88. .addbuttom {
  89. font-size: 20px;
  90. padding: 0 10px;
  91. margin-left: 20px;
  92. }
  93. }
  94. }
  95. .tips {
  96. font-size: 20px;
  97. text-align: left;
  98. color: #f00;
  99. }
  100. .operation {
  101. display: flex;
  102. flex-flow: row nowrap;
  103. }
  104. }