index.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. @charset "utf-8";
  2. #paper-process-sentence {
  3. height: 100%;
  4. .layout {
  5. background: #fff;
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. .layout-header {
  11. height: 84px;
  12. margin: 0 30px;
  13. border-bottom: 1px solid rgba(233, 239, 248, 1);
  14. text-align: center;
  15. .left {
  16. line-height: 84px;
  17. position: absolute;
  18. .title {
  19. color: #000000;
  20. display: inline-block;
  21. font-size: 20px;
  22. font-weight: 600;
  23. }
  24. }
  25. .right {
  26. float: right;
  27. text-align: right;
  28. padding: 20px 0;
  29. color: #5E677B;
  30. .text {
  31. line-height: 22px;
  32. img {
  33. margin-right: 5px;
  34. }
  35. }
  36. }
  37. }
  38. }
  39. .layout-footer {
  40. position: fixed;
  41. bottom: 0;
  42. left: 0;
  43. right: 0;
  44. height: 60px;
  45. line-height: 60px;
  46. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  47. .left {
  48. position: absolute;
  49. left: 30px;
  50. top: 0;
  51. }
  52. .right {
  53. position: absolute;
  54. right: 30px;
  55. top: 0;
  56. .button.lager {
  57. font-weight: 500;
  58. }
  59. }
  60. .center {
  61. padding-left: 108px;
  62. padding-right: 165px;
  63. display: flex;
  64. .p {
  65. flex: 1;
  66. margin-top: 22px;
  67. }
  68. .t {
  69. width: 40px;
  70. text-align: right;
  71. }
  72. }
  73. .progress.basic {
  74. background: #8897A8;
  75. .progress-item {
  76. background: #217DFF;
  77. }
  78. }
  79. }
  80. .layout-body {
  81. background: #fff;
  82. flex: 1;
  83. overflow: hidden;
  84. overflow-y: auto;
  85. position: relative;
  86. padding: 20px 30px;
  87. margin-bottom: 60px;
  88. .title {
  89. color: #050930;
  90. margin-bottom: 10px;
  91. }
  92. .desc {
  93. color: #050930;
  94. margin-bottom: 30px;
  95. user-select: none;
  96. cursor: pointer;
  97. font-size: 14px;
  98. span.user {
  99. color: #217DFF;
  100. }
  101. span.true {
  102. background-color: rgba(23, 165, 27, 0.06);
  103. }
  104. span.false {
  105. background-color: rgba(253, 247, 247, 1);
  106. }
  107. }
  108. .label {
  109. color: #000000;
  110. margin-bottom: 10px;
  111. font-weight: 600;
  112. }
  113. .input {
  114. margin-bottom: 20px;
  115. display: block;
  116. }
  117. .select {
  118. border-radius: 2px;
  119. border: 1px solid rgba(200, 209, 218, 1);
  120. padding: 10px 20px;
  121. margin-bottom: 40px;
  122. .select-title {
  123. color: #050930;
  124. margin-bottom: 10px;
  125. }
  126. }
  127. .analysis {
  128. .tabs {
  129. width: 320px;
  130. .tab.active,
  131. .tab:hover {
  132. background: #F4F9FE;
  133. }
  134. }
  135. .text-block {
  136. padding: 20px;
  137. background: #F4F9FE;
  138. }
  139. }
  140. }
  141. }