index.less 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. @import "~@less/variables.less";
  2. .assess-cont{
  3. padding: 15px;
  4. }
  5. .assess-item{
  6. h2{
  7. line-height: 40px;
  8. font-size: 16px;
  9. /*background: #e5eefe;*/
  10. padding: 0 15px;
  11. font-weight: bold;
  12. }
  13. .item-content{
  14. padding: 0 15px;
  15. .choose-item{
  16. margin-right: 12px;
  17. display: inline-block;
  18. i{
  19. color: @blue;
  20. }
  21. }
  22. input[type=checkbox]{
  23. width: 14px;
  24. height: 14px;
  25. vertical-align: middle;
  26. margin-right: 4px;
  27. background-color: #fff;
  28. -webkit-appearance: none;
  29. border: 1px solid #c9c9c9;
  30. border-radius: 4px;
  31. outline: none;
  32. cursor: pointer;
  33. }
  34. }
  35. li {
  36. line-height: 35px;
  37. .row{
  38. display: inline-block;
  39. }
  40. .results{
  41. position: relative;
  42. }
  43. .chooseItem{
  44. display: inline-block;
  45. margin-right: 10px;
  46. .recomand{
  47. color: @blue;
  48. }
  49. }
  50. .scale{
  51. color: @blue;
  52. cursor: pointer;
  53. }
  54. .blue{
  55. color:#3B9ED0;
  56. cursor: pointer;
  57. }
  58. .blue + img{
  59. vertical-align: middle;
  60. }
  61. .recommend{
  62. max-width: 200px;
  63. float: right;
  64. color: #929292;
  65. cursor: pointer;
  66. }
  67. }
  68. .edit-row{
  69. width: 100%;
  70. border:1px @placeholder-color solid;
  71. border-radius: 4px;
  72. padding: 5px;
  73. }
  74. .cont{
  75. display: inline-block;
  76. min-width: 302px;
  77. width: 49%;
  78. height: 250px;
  79. margin: 15px 0 5px;
  80. position: relative;
  81. .chart-box{
  82. width: 100%;
  83. height: 100%;
  84. }
  85. }
  86. .cont:nth-child(odd){
  87. /*margin-right: 2%;*/
  88. }
  89. .time-range{
  90. position: absolute;
  91. bottom: 224px;
  92. /*top: 26px;*/
  93. z-index: 2;
  94. width: 100%;
  95. text-align: center;
  96. /*margin-left: 18px;*/
  97. .range{
  98. display: inline-block;
  99. border:1px #DFDFDF solid;
  100. border-radius: 10px;
  101. background: #fff;
  102. padding: 5px 10px;
  103. margin-right: 10px;
  104. font-size: 12px;
  105. cursor: pointer;
  106. &.on{
  107. background: @blue;
  108. color: #fff;
  109. border-color: @blue;
  110. }
  111. }
  112. }
  113. }
  114. .printShow {
  115. display: none;
  116. }
  117. .footer{
  118. .print{
  119. .btnCom;
  120. width: 111px;
  121. height: 34px;
  122. line-height: 34px;
  123. background: #fff;
  124. margin-right: 20px;
  125. img{
  126. width: 20px;
  127. vertical-align: middle;
  128. margin-right: 4px;
  129. }
  130. }
  131. .okBtn{
  132. .btnCom;
  133. width: 80px;
  134. height: 34px;
  135. line-height: 32px;
  136. border: 1px solid #3B9ED0;
  137. box-sizing: border-box;
  138. margin-left: 20px;
  139. background: #3B9ED0;
  140. color: #fff;
  141. float: right;
  142. margin-right: 20px;
  143. }
  144. }
  145. .forMulBtn{
  146. .btnCom;
  147. height: 32px;
  148. line-height: 32px;
  149. color: #fff;
  150. background: #3B9ED0;
  151. margin-top: 15px;
  152. cursor: pointer;
  153. }
  154. .textareaStatic {
  155. display: none;
  156. line-height: 20px;
  157. white-space: pre;
  158. *white-space: pre;
  159. *word-wrap: break-word;
  160. border: 1px solid #bfbfbf;
  161. border-radius: 4px;
  162. padding: 5px;
  163. }
  164. .legend{
  165. padding: 0 36px;
  166. /*margin-bottom: 15px;*/
  167. &>div{
  168. display: inline-block;
  169. margin-top: 10px;
  170. }
  171. span{
  172. margin-right: 20px;
  173. }
  174. img{
  175. vertical-align: middle;
  176. width: 18px;
  177. margin-right: 3px;
  178. }
  179. }
  180. .loading{
  181. text-align: center;
  182. position: absolute;
  183. top: 49%;
  184. left: 49%;
  185. img{
  186. width: 40px;
  187. }
  188. }
  189. .no-data{
  190. color: #a5a3a3;
  191. text-align: center;
  192. margin-top: 40px;
  193. font-size: 18px;
  194. font-weight: bold;
  195. }
  196. @media print {
  197. .printShow,.textareaStatic {
  198. display: block;
  199. }
  200. .deleteIcon,.edit-row {
  201. display: none;
  202. }
  203. }