list.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. 
  2. .sp-menu .sp-menu-first {
  3. float: left;
  4. width: 100%;
  5. line-height: 38px;
  6. background-color: #fff;
  7. color: #000;
  8. cursor: pointer;
  9. -moz-box-sizing: border-box;
  10. -webkit-box-sizing: border-box;
  11. box-sizing: border-box;
  12. }
  13. .sp-menu .sp-menu-first:hover {
  14. /*background-color: #1E74D5;*/
  15. background-color: #7FAFE5;
  16. color: #fff;
  17. }
  18. .sp-menu .sp-menu-first .sp-menu-ltitle {
  19. float: left;
  20. padding-left: 10px;
  21. white-space: nowrap;
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. color: inherit;
  25. }
  26. .sp-menu .sp-menu-first > i {
  27. float: left;
  28. width: 23px;
  29. padding-left: 10px;
  30. line-height: 38px;
  31. }
  32. .sp-menu .sp-menu-second {
  33. float: left;
  34. width: 100%;
  35. line-height: 38px;
  36. background-color: #fff;
  37. color: #000;
  38. cursor: pointer;
  39. -moz-box-sizing: border-box;
  40. -webkit-box-sizing: border-box;
  41. box-sizing: border-box;
  42. }
  43. .sp-menu .sp-menu-second:hover {
  44. /*background-color: #1E74D5;*/
  45. background-color: #7FAFE5;
  46. color: #fff;
  47. }
  48. .sp-menu .sp-menu-second .sp-menu-ltitle {
  49. float: left;
  50. color: inherit;
  51. padding-left: 30px;
  52. white-space: nowrap;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. }
  56. .sp-menu .sp-menu-third {
  57. float: left;
  58. width: 100%;
  59. line-height: 38px;
  60. background-color: #fff;
  61. color: #000;
  62. cursor: pointer;
  63. -moz-box-sizing: border-box;
  64. -webkit-box-sizing: border-box;
  65. box-sizing: border-box;
  66. }
  67. .sp-menu .sp-menu-third:hover {
  68. /*background-color: #1E74D5;*/
  69. background-color: #7FAFE5;
  70. color: #fff;
  71. }
  72. .sp-menu .sp-menu-third .sp-menu-ltitle {
  73. float: left;
  74. color: inherit;
  75. padding-left: 50px;
  76. white-space: nowrap;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. }
  80. .sp-menu span.sp-menu-ltitle {
  81. width: 100%;
  82. border-bottom: 1px solid #E8E8E8;
  83. }
  84. .sp-menu .sp-menu-icon {
  85. position: relative;
  86. float: right;
  87. display: inline-block;
  88. margin-right: 10px;
  89. width: 10px;
  90. }
  91. .sp-menu .sp-menu-icon i {
  92. width: 8px;
  93. }
  94. .sp-bg-brown {
  95. background: #E8E8E8;
  96. }
  97. .listType {
  98. width: 32px;
  99. height: 32px;
  100. float: left;
  101. padding: 5px;
  102. margin: 0 5px;
  103. border: 1px solid #c6c6c6;
  104. display: inline-block;
  105. cursor: pointer;
  106. }
  107. .list-item {
  108. width: 100px;
  109. height: 100px;
  110. float: left;
  111. margin: auto 0.5%;
  112. padding: 5px;
  113. border: 1px dashed #c6c6c6;
  114. position: relative;
  115. cursor: pointer;
  116. }
  117. .list-item img {
  118. width: 65px;
  119. position: absolute;
  120. left: 50%;
  121. transform: translateX(-50%);
  122. }
  123. .list-item div {
  124. width: 90px;
  125. height: 20px;
  126. line-height: 20px;
  127. overflow: hidden;
  128. text-overflow: ellipsis;
  129. white-space: nowrap;
  130. text-align: center;
  131. position: absolute;
  132. bottom: 5px;
  133. }
  134. .list-item i {
  135. display: none;
  136. position: absolute;
  137. top: 5px;
  138. right: 5px;
  139. }
  140. .list-item:hover i {
  141. display: inline;
  142. }
  143. .pointer {
  144. cursor: pointer;
  145. }
  146. .upload {
  147. float: left;
  148. overflow: hidden;
  149. position: relative;
  150. top: 2px;
  151. }
  152. .upload-btn-single {
  153. outline: none;
  154. border: 0;
  155. height: 28px;
  156. line-height: 28px;
  157. padding: 0 5px;
  158. color: #fff !important;
  159. background: #1c84c6;
  160. cursor: pointer !important;
  161. border-radius: 5px;
  162. }
  163. .upload-tip {
  164. float: left;
  165. width: 100%;
  166. margin-top: 35px;
  167. padding: 0 10px;
  168. color: #666;
  169. font-size: 13px !important;
  170. border-radius: 5px;
  171. display: none;
  172. text-align: left;
  173. }
  174. .upload-file-single {
  175. position: absolute;
  176. width: 100%;
  177. height: 100%;
  178. left: 0;
  179. top: 0;
  180. opacity: 0;
  181. font-size: 0;
  182. filter: alpha(opacity=0);
  183. }
  184. .upload-loading {
  185. display: inline-block;
  186. width: 100%;
  187. height: 100%;
  188. padding: 3px;
  189. text-align: center;
  190. background: #E8E8E8;
  191. opacity: 0.4;
  192. position: absolute;
  193. left: 0;
  194. top: 0;
  195. z-index: 10;
  196. }