home.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. *
  2. {
  3. padding:0px;
  4. border: 0px;
  5. margin: 0px;
  6. font-size: 16px;
  7. }
  8. html, body {
  9. height: 100%;
  10. width: 100%;
  11. margin: 0px;
  12. padding: 0px;
  13. line-height: 20px;
  14. }
  15. /*------------------*/
  16. body
  17. {
  18. display:flex;
  19. justify-content: flex-start;
  20. }
  21. #LeftBoard
  22. {
  23. border-right: 1px solid #EFF0F0;
  24. width:262px;
  25. height: 100%;
  26. }
  27. #LoginArea
  28. {
  29. height: 180px;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. justify-content: center;
  34. flex-wrap: nowrap;
  35. }
  36. #Login1
  37. {
  38. height:36px;
  39. line-height: 36px;
  40. display: flex;
  41. justify-content: center;
  42. }
  43. #LoginBtn
  44. {
  45. cursor:pointer;
  46. }
  47. #Icon1
  48. {
  49. margin-right: 10px;
  50. }
  51. #BBLIcon
  52. {
  53. height:36px;
  54. }
  55. #Login2
  56. {
  57. display: none;
  58. flex-direction: column;
  59. align-items: center;
  60. text-align: center;
  61. width: 262px;
  62. }
  63. #UserAvatarIcon
  64. {
  65. height: 85px;
  66. }
  67. #UserName
  68. {
  69. white-space: nowrap;
  70. text-overflow: ellipsis;
  71. text-align: center;
  72. overflow: hidden;
  73. width: 80%;
  74. }
  75. #LogoutBtn
  76. {
  77. font-size: 14px;
  78. height: 24px;
  79. line-height: 24px;
  80. color: #00B731;
  81. border: 1px solid #00AE42;
  82. border-radius: 4px;
  83. cursor: pointer;
  84. margin-top: 5px;
  85. padding: 0px 8px;
  86. }
  87. #LogoutBtn:hover
  88. {
  89. background: #00B731;
  90. color: #fff;
  91. }
  92. /*------------------*/
  93. #BtnArea
  94. {
  95. }
  96. .BtnItem
  97. {
  98. padding-left:40px;
  99. height:50px;
  100. line-height: 50px;
  101. display: flex;
  102. justify-content:flex-start;
  103. cursor: pointer;
  104. }
  105. .BtnItem:hover
  106. {
  107. background-color: #E0FCEB;
  108. }
  109. .BtnItemSelected
  110. {
  111. background-color: #E0FCEB;
  112. }
  113. .BtnIcon
  114. {
  115. margin-right:6px;
  116. display: flex;
  117. flex-direction: column;
  118. justify-content: center;
  119. }
  120. .LeftIcon
  121. {
  122. width:20px;
  123. height: 20px;
  124. }
  125. /*--------------------*/
  126. #RightBoard
  127. {
  128. width: 100%;
  129. height: 100%;
  130. overflow-y:auto;
  131. }
  132. #ContentBoard
  133. {
  134. overflow-y:hidden;
  135. padding: 0px 40px;
  136. display: flex;
  137. flex-direction: column;
  138. }
  139. #MenuArea
  140. {
  141. height: 140px;
  142. display: flex;
  143. align-items: center;
  144. }
  145. .MenuItem
  146. {
  147. border: 1px solid #4CAA50;
  148. border-radius: 12px;
  149. height: 101px;
  150. width: 253px;
  151. padding-left: 20px;
  152. display: flex;
  153. justify-content: flex-start;
  154. align-items: center;
  155. margin-right: 16px;
  156. cursor: pointer;
  157. }
  158. .MenuItem:hover
  159. {
  160. background-color: #E0FCEB;
  161. }
  162. .MenuIcon
  163. {
  164. margin-right: 1em;
  165. }
  166. .MenuIcon img
  167. {
  168. width:56px;
  169. height: 56px;
  170. }
  171. .MenuDesc
  172. {
  173. color: #A8A8A8;
  174. }
  175. .Content-Title
  176. {
  177. line-height: 30px;
  178. font-weight: 700;
  179. }
  180. #HotspotWEB
  181. {
  182. width:100%;
  183. height: 420px;
  184. }
  185. #RecentFileArea
  186. {
  187. margin-top: 10px;
  188. flex: 1;
  189. display: flex;
  190. flex-direction: column;
  191. }
  192. #RecentTitle
  193. {
  194. border-bottom: 1px solid #D9D9D9;
  195. }
  196. #FileList
  197. {
  198. flex: 1;
  199. display: flex;
  200. flex-wrap: wrap;
  201. align-content: flex-start;
  202. overflow-y: auto;
  203. }
  204. .FileItem
  205. {
  206. width: 184px;
  207. white-space: nowrap;
  208. text-overflow: ellipsis;
  209. overflow: hidden;
  210. word-break: break-all;
  211. position: relative;
  212. cursor: pointer;
  213. margin: 8px;
  214. }
  215. .FileTip
  216. {
  217. position: absolute;
  218. top: 0px;
  219. left: 0px;
  220. right: 0px;
  221. bottom: 0px;
  222. }
  223. .FileImg
  224. {
  225. text-align: center;
  226. background-color: #E4E4E4;
  227. border-radius: 8px;
  228. width: 184px;
  229. height: 184px;
  230. }
  231. .FileItem img
  232. {
  233. width: 184px;
  234. height: 184px;
  235. border-radius: 8px;
  236. display: inline-block;
  237. }
  238. .FileDate
  239. {
  240. color: #A8A8A8;
  241. }
  242. /*--------Mall------*/
  243. #MallBoard
  244. {
  245. height: 100%;
  246. max-width: 1600px;
  247. overflow-y: hidden;
  248. padding: 0px 40px;
  249. display: none;
  250. }
  251. #MallWeb
  252. {
  253. width: 100%;
  254. height: 95%;
  255. border: 1px solid #D9D9D9;
  256. }
  257. /*------Manual------*/
  258. #ManualBoard
  259. {
  260. height: 100%;
  261. max-width: 1600px;
  262. overflow-y: hidden;
  263. padding: 0px 40px;
  264. display: none;
  265. }
  266. #ManualWeb
  267. {
  268. width: 100%;
  269. height: 95%;
  270. border: 1px solid #D9D9D9;
  271. }