index.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. @charset "utf-8";
  2. #result {
  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: 60px;
  12. line-height: 60px;
  13. padding: 0 50px;
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. box-shadow: 0px 4px 14px 0px rgba(189, 199, 215, 0.16);
  19. .no {
  20. font-size: 20px;
  21. display: inline-block;
  22. color: #303036;
  23. font-size: 20px;
  24. margin-right: 25px;
  25. }
  26. .title {
  27. color: #A7A7B7;
  28. display: inline-block;
  29. font-size: 20px;
  30. }
  31. .right {
  32. float: right;
  33. text-align: right;
  34. .b {
  35. margin-left: 30px;
  36. .s {
  37. color: #4299FF;
  38. }
  39. }
  40. .assets {
  41. margin-right: 10px;
  42. }
  43. }
  44. }
  45. }
  46. .layout-footer {
  47. position: fixed;
  48. bottom: 0;
  49. left: 0;
  50. right: 0;
  51. height: 60px;
  52. line-height: 60px;
  53. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  54. .left {
  55. width: 30%;
  56. display: inline-block;
  57. padding-left: 50px;
  58. }
  59. .right {
  60. width: 30%;
  61. display: inline-block;
  62. text-align: right;
  63. padding-right: 50px;
  64. }
  65. .center {
  66. width: 40%;
  67. display: inline-block;
  68. text-align: center;
  69. .item {
  70. display: inline-block;
  71. width: 72px;
  72. height: 36px;
  73. line-height: 36px;
  74. margin: 0 10px;
  75. color: #787883;
  76. cursor: pointer;
  77. }
  78. .item:hover {
  79. color: #4299FF;
  80. }
  81. }
  82. }
  83. .layout-body {
  84. background: #fff;
  85. flex: 1;
  86. overflow: hidden;
  87. overflow-y: auto;
  88. margin: 60px 0;
  89. .layout-content {
  90. display: flex;
  91. height: 100%;
  92. .content-left {
  93. flex: 1;
  94. }
  95. .content-right {
  96. flex: 1;
  97. background: #EFF3F7;
  98. padding: 20px 20px 0 20px;
  99. display: flex;
  100. flex-direction: column;
  101. .tabs.card {
  102. background: none;
  103. margin: 0 -5px;
  104. >a {
  105. width: 100%;
  106. padding: 0 5px;
  107. }
  108. .tab {
  109. background: #E5E8EE;
  110. border-radius: 4px 4px 0px 0px;
  111. }
  112. .tab.active,
  113. .tab:hover {
  114. background: #fff;
  115. }
  116. }
  117. .detail {
  118. flex: 1;
  119. background: #fff;
  120. padding: 30px 50px;
  121. overflow: hidden;
  122. overflow-y: auto;
  123. font-size: 16px;
  124. color: #686872;
  125. }
  126. }
  127. }
  128. }
  129. .modal {
  130. position: fixed;
  131. top: 0;
  132. left: 0;
  133. right: 0;
  134. bottom: 0;
  135. .body {
  136. position: absolute;
  137. left: 50%;
  138. top: 50%;
  139. transform: translate(-50%, -50%);
  140. background: #006DAA;
  141. width: 400px;
  142. color: #fff;
  143. .title {
  144. height: 38px;
  145. line-height: 38px;
  146. font-size: 18px;
  147. padding-left: 25px;
  148. border-bottom: 1px solid #fff;
  149. }
  150. .desc {
  151. text-align: center;
  152. margin-top: 20px;
  153. margin-bottom: 20px;
  154. }
  155. .btn-list {
  156. text-align: center;
  157. margin-bottom: 15px;
  158. .btn {
  159. display: inline-block;
  160. width: 70px;
  161. line-height: 35px;
  162. height: 35px;
  163. border: 1px solid #fff;
  164. background: #006DAA;
  165. cursor: pointer;
  166. }
  167. .btn:hover {
  168. background: darken(#006DAA, 5);
  169. }
  170. }
  171. }
  172. }
  173. }