index.css 3.3 KB

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