index.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. }
  47. .scale{
  48. color: @blue;
  49. cursor: pointer;
  50. }
  51. .blue{
  52. color:#3B9ED0;
  53. cursor: pointer;
  54. }
  55. .blue + img{
  56. vertical-align: middle;
  57. }
  58. .recommend{
  59. max-width: 200px;
  60. float: right;
  61. color: #929292;
  62. cursor: pointer;
  63. }
  64. }
  65. .edit-row{
  66. width: 100%;
  67. border:1px @placeholder-color solid;
  68. border-radius: 4px;
  69. padding: 5px;
  70. }
  71. .cont{
  72. display: inline-block;
  73. min-width: 302px;
  74. width: 49%;
  75. height: 250px;
  76. margin-bottom: 20px;
  77. position: relative;
  78. .chart-box{
  79. width: 100%;
  80. height: 100%;
  81. }
  82. }
  83. .cont:nth-child(odd){
  84. /*margin-right: 2%;*/
  85. }
  86. .time-range{
  87. position: absolute;
  88. bottom: 180px;
  89. /*top: 26px;*/
  90. z-index: 2;
  91. width: 100%;
  92. text-align: center;
  93. /*margin-left: 18px;*/
  94. .range{
  95. display: inline-block;
  96. border:1px #DFDFDF solid;
  97. border-radius: 10px;
  98. background: #fff;
  99. padding: 5px 10px;
  100. margin-right: 10px;
  101. font-size: 12px;
  102. cursor: pointer;
  103. &.on{
  104. background: @blue;
  105. color: #fff;
  106. border-color: @blue;
  107. }
  108. }
  109. }
  110. }
  111. .printShow {
  112. display: none;
  113. }
  114. .footer{
  115. .print{
  116. width: 111px;
  117. height: 34px;
  118. line-height: 34px;
  119. outline: none;
  120. border-radius: 4px;
  121. /*color: #3B9ED0;*/
  122. border: 0 none;
  123. cursor: pointer;
  124. background: #fff;
  125. margin-right: 20px;
  126. img{
  127. width: 20px;
  128. vertical-align: middle;
  129. margin-right: 4px;
  130. }
  131. }
  132. .okBtn{
  133. width: 80px;
  134. height: 34px;
  135. line-height: 32px;
  136. text-align: center;
  137. outline: none;
  138. border-radius: 4px;
  139. cursor: pointer;
  140. border: 1px solid #3B9ED0;
  141. box-sizing: border-box;
  142. margin-left: 20px;
  143. background: #3B9ED0;
  144. color: #fff;
  145. float: right;
  146. margin-right: 20px;
  147. }
  148. }
  149. .forMulBtn{
  150. height: 32px;
  151. line-height: 32px;
  152. text-align: center;
  153. color: #fff;
  154. // background: #DBDBDB;
  155. background: #3B9ED0;
  156. border-radius: 4px;
  157. cursor: auto;
  158. margin-top: 15px;
  159. }
  160. .textareaStatic {
  161. display: none;
  162. line-height: 20px;
  163. white-space: pre;
  164. *white-space: pre;
  165. *word-wrap: break-word;
  166. border: 1px solid #bfbfbf;
  167. border-radius: 4px;
  168. padding: 5px;
  169. }
  170. @media print {
  171. .printShow,.textareaStatic {
  172. display: block;
  173. }
  174. .deleteIcon,.edit-row {
  175. display: none;
  176. }
  177. }