index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. .b {
  37. margin-left: 30px;
  38. .s {
  39. color: #4299FF;
  40. }
  41. }
  42. .icon {
  43. margin-left: 10px;
  44. }
  45. }
  46. }
  47. }
  48. .layout-footer {
  49. position: fixed;
  50. bottom: 0;
  51. left: 0;
  52. right: 0;
  53. height: 60px;
  54. line-height: 60px;
  55. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  56. .left {
  57. position: absolute;
  58. left: 30px;
  59. top: 0;
  60. }
  61. .right {
  62. position: absolute;
  63. right: 30px;
  64. top: 0;
  65. .button.lager {
  66. font-weight: 500;
  67. }
  68. }
  69. .center {
  70. padding-left: 108px;
  71. padding-right: 165px;
  72. display: flex;
  73. .p {
  74. flex: 1;
  75. margin-top: 22px;
  76. }
  77. .t {
  78. width: 40px;
  79. text-align: right;
  80. }
  81. }
  82. .progress.basic {
  83. background: #8897A8;
  84. .progress-item {
  85. background: #217DFF;
  86. }
  87. }
  88. }
  89. .layout-body {
  90. background: #fff;
  91. flex: 1;
  92. overflow: hidden;
  93. overflow-y: auto;
  94. position: relative;
  95. padding: 20px 30px;
  96. margin-bottom: 60px;
  97. .title {
  98. color: #050930;
  99. margin-bottom: 10px;
  100. }
  101. .desc {
  102. color: #050930;
  103. margin-bottom: 30px;
  104. user-select: none;
  105. cursor: pointer;
  106. font-size: 14px;
  107. span.user {
  108. color: #217DFF;
  109. }
  110. span.true {
  111. background-color: rgba(23, 165, 27, 0.06);
  112. }
  113. span.false {
  114. background-color: rgba(253, 247, 247, 1);
  115. }
  116. }
  117. .label {
  118. color: #000000;
  119. margin-bottom: 10px;
  120. font-weight: 600;
  121. }
  122. .input {
  123. margin-bottom: 20px;
  124. display: block;
  125. }
  126. .select {
  127. border-radius: 2px;
  128. border: 1px solid rgba(200, 209, 218, 1);
  129. padding: 10px 20px;
  130. margin-bottom: 40px;
  131. .select-title {
  132. color: #050930;
  133. margin-bottom: 10px;
  134. }
  135. }
  136. .analysis {
  137. .tabs {
  138. width: 320px;
  139. margin: 0 -2px;
  140. .tab {
  141. margin: 0 2px;
  142. }
  143. .tab.active,
  144. .tab:hover {
  145. background: #F4F9FE;
  146. }
  147. }
  148. .text-block {
  149. padding: 20px;
  150. background: #F4F9FE;
  151. }
  152. }
  153. }
  154. }