knowledgeTree.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .knowledgeTreeWrapper{
  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. color: #fff;
  15. font-size: 14px;
  16. }
  17. .titleLogo{
  18. position: relative;
  19. top: 3px;
  20. height: 20px;
  21. }
  22. .tipsInfo{
  23. margin: 0 0 20px 0;
  24. cursor: default;
  25. }
  26. .tips{
  27. color: #777;
  28. font-size: 12px;
  29. line-height: 18px;
  30. }
  31. .content{
  32. background: #fff;
  33. position: relative;
  34. width: 1160px;
  35. padding: 20px;
  36. left: 50%;
  37. margin-left: -600px;
  38. cursor: pointer;
  39. height: 100%;
  40. .searchTxt{
  41. min-height: 33px;
  42. width: 1140px;
  43. font-size: 14px;
  44. color: #333;
  45. resize: none;
  46. outline: none;
  47. padding: 10px;
  48. background: #F7F8FA;
  49. border: none;
  50. }
  51. input::-webkit-input-placeholder{
  52. color: #ccc;
  53. }
  54.     input:-moz-placeholder,textarea:-moz-placeholder{
  55. color: #ccc;
  56. }
  57.     input::-moz-placeholder,textarea::-moz-placeholder{
  58. color: #ccc;
  59. }
  60.     input:-ms-input-placeholder,textarea:-ms-input-placeholder{
  61. color: #ccc;
  62. }
  63. .btnBox{
  64. height: 60px;
  65. text-align: center;
  66. }
  67. .sumbit{
  68. padding: 8px 36px;
  69. background: #5A8EEE;
  70. color: #fff;
  71. position: relative;
  72. border-radius: 4px;
  73. top: 20px;
  74. font-size: 14px;
  75. cursor: pointer;
  76. }
  77. .mainBox{
  78. position: relative;
  79. }
  80. .empty{
  81. position: absolute;
  82. width: 216px;
  83. height: 140px;
  84. top: 50%;
  85. left: 50%;
  86. margin: -70px 0 0 -108px;
  87. display: none;
  88. .emptyImg{
  89. width: 216px;
  90. }
  91. .emptyTxt{
  92. width: 216px;
  93. font-size:12px;
  94. margin: 40px 0 0 0;
  95. text-align: center;
  96. color: #ccc;
  97. }
  98. }
  99. .mainWrapper{
  100. border: 1px solid #E6E6E6;
  101. cursor: pointer;
  102. }
  103. }
  104. .disabled{
  105. opacity: 0.5;
  106. }
  107. }