knowledgeMap.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .knowledgeMapWrapper{
  2. min-width: 1200px;
  3. .title{
  4. position: relative;
  5. height: 40px;
  6. line-height: 40px;
  7. background-image: linear-gradient(to right, #5A8EEE , #7EABFF);
  8. }
  9. .titleTxt{
  10. position: relative;
  11. width: 1200px;
  12. left: 50%;
  13. margin-left: -600px;
  14. }
  15. .content{
  16. position: relative;
  17. width: 1200px;
  18. left: 50%;
  19. margin-left: -600px;
  20. cursor: pointer;
  21. height: 100%;
  22. }
  23. .left{
  24. float: left;
  25. background: #fff;
  26. height: 100%;
  27. margin: 10px 0 0 0;
  28. }
  29. .right{
  30. // background: #fff;
  31. width: 394px;
  32. float: right;
  33. height: 100%;
  34. margin: 10px 0 0 0;
  35. .top{
  36. position: relative;
  37. width:394px;
  38. height:80px;
  39. background:#FFFFFF;
  40. border-radius:2px;
  41. margin: 0 0 10px 0;
  42. .select{
  43. display: inline-block;
  44. width:92px;
  45. height:40px;
  46. background:#E2ECFF;
  47. border-radius:4px;
  48. margin: 20px 10px 10px;
  49. .selectedName{
  50. display: inline-block;
  51. width: 60px;
  52. height: 40px;
  53. text-align: center;
  54. line-height: 40px;
  55. color: #5A8EEE;
  56. position: relative;
  57. }
  58. .selectList{
  59. position: absolute;
  60. display: none;
  61. width:92px;
  62. line-height: 30px;
  63. text-align: center;
  64. background: #fff;
  65. }
  66. .selectItem:hover{
  67. background: #abcdef;
  68. }
  69. }
  70. .search{
  71. position: absolute;
  72. display: inline-block;
  73. width:272px;
  74. top: 20px;
  75. left: 112px;
  76. input{
  77. width:192px;
  78. padding: 0 10px;
  79. height:40px;
  80. border:1px solid rgba(230,230,230,1);
  81. border-radius: 4px 0 0 4px;
  82. box-sizing: border-box;
  83. }
  84. .searchBtn{
  85. position: absolute;;
  86. display: inline-block;
  87. width:60px;
  88. height:40px;
  89. text-align: center;
  90. line-height: 40px;
  91. background:#5A8EEE;
  92. border-radius:0px 4px 4px 0px;
  93. color: #fff;
  94. }
  95. .tabNameList{
  96. position: relative;
  97. top: 5px;
  98. display: none;
  99. width:192px;
  100. padding: 0 10px;
  101. max-height:200px;
  102. background: #fff;
  103. border:1px solid rgba(230,230,230,1);
  104. border-radius: 4px 0 0 4px;
  105. box-sizing: border-box;
  106. overflow-y: auto;
  107. li{
  108. height: 40px;
  109. }
  110. li:hover{
  111. background: #abcdef;
  112. }
  113. }
  114. }
  115. }
  116. .bottom{
  117. background: #fff;
  118. padding: 0 10px;
  119. .tabList{
  120. width: 100%;
  121. height: 43px;
  122. box-sizing: border-box;
  123. border-bottom: 1px solid #E6E6E6;
  124. .tab{
  125. display: inline-block;
  126. height: 42px;
  127. line-height: 42px;
  128. padding: 0 20px 0 10px;
  129. font-size: 12px;
  130. color: #777;
  131. }
  132. .activeTab{
  133. font-size: 16px;
  134. color: #5A8EEE;
  135. font-weight: bold;
  136. border-bottom: 3px solid #5A8EEE;
  137. box-sizing: border-box;
  138. }
  139. }
  140. .radioList{
  141. height: 60px;
  142. line-height: 60px;
  143. }
  144. .radioItem{
  145. font-size: 12px;
  146. color: #333;
  147. }
  148. }
  149. }
  150. .ztree{
  151. overflow: auto;
  152. }
  153. }