group.less 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #group {
  2. .group-box {
  3. background: #ffffff;
  4. .tab-content {
  5. .hint {
  6. color: #da4224;
  7. background: #f4ffc1;
  8. padding: 10px;
  9. margin: 10px 0;
  10. line-height: 20px;
  11. i {
  12. font-size: 20px;
  13. }
  14. }
  15. .tab-contents {
  16. background: #eaeaea;
  17. padding: 20px 10px;
  18. margin-top: 20px;
  19. .controls {
  20. .check-item {
  21. color: #676a6c;
  22. display: inline-block;
  23. margin-right: 10px;
  24. font-size: 16px;
  25. cursor: pointer;
  26. }
  27. }
  28. .message-list {
  29. margin-top: 20px;
  30. .title {
  31. line-height: 30px;
  32. color: #333333;
  33. font-size: 15px;
  34. }
  35. .dropdown {
  36. margin: 20px 0;
  37. button {
  38. width: 120px;
  39. }
  40. }
  41. .select-assign {
  42. border: 1px solid #ccc;
  43. border-radius: 3px;
  44. color: #888;
  45. padding: 5px 12px;
  46. vertical-align: middle;
  47. width: 123px;
  48. text-align: center;
  49. margin: 20px 0;
  50. cursor: pointer;
  51. }
  52. .preview {
  53. margin: 20px 0;
  54. }
  55. .button-box {
  56. button {
  57. padding: 8px 30px;
  58. margin-right: 10px;
  59. }
  60. }
  61. }
  62. }
  63. .middle-tab-content {
  64. padding-top: 20px;
  65. position: relative;
  66. .select {
  67. height: auto;
  68. padding: 10px;
  69. background: #ffffff;
  70. text-align: center;
  71. color: #333;
  72. cursor: pointer;
  73. //:hover{
  74. // color: #58b4ef;
  75. //}
  76. p {
  77. border: 1px dashed #ddd;
  78. width: 308px;
  79. background: #eee;
  80. text-align: center;
  81. color: #333;
  82. margin: 0;
  83. height: 240px;
  84. line-height: 240px;
  85. }
  86. textarea {
  87. resize: none;
  88. width: 100%;
  89. height: 235px;
  90. border: 1px solid #dddddd;
  91. padding: 6px;
  92. font-size: 15px;
  93. }
  94. .add-text {
  95. position: absolute;
  96. bottom: 20px;
  97. left: 16px;
  98. cursor: pointer;
  99. color: rgb(136, 136, 136);
  100. border-radius: 5px;
  101. border: 1px solid rgb(204, 204, 204);
  102. padding: 5px 20px;
  103. background-color: rgb(238, 238, 238);
  104. display: block;
  105. }
  106. .delete {
  107. display: none;
  108. position: absolute;
  109. top: 20px;
  110. left: 285px;
  111. font-size: 20px;
  112. }
  113. }
  114. .btn {
  115. margin-top: 20px;
  116. display: inline-block;
  117. padding: 12px 50px;
  118. font-size: 16px;
  119. line-height: 20px;
  120. color: #fff;
  121. text-align: center;
  122. vertical-align: middle;
  123. cursor: pointer;
  124. background: #44b549;
  125. border: none;
  126. }
  127. }
  128. }
  129. }
  130. }
  131. .modal {
  132. .modal-header {
  133. background: #eeeeee;
  134. color: #333333;
  135. font-size: 16px;
  136. }
  137. .modal-body {
  138. padding: 0;
  139. .no-material {
  140. padding: 100px;
  141. text-align: center;
  142. display: none;
  143. }
  144. .have-material {
  145. padding: 10px;
  146. .seek {
  147. float: right;
  148. width: 200px;
  149. margin-right: 15px;
  150. }
  151. .material-table {
  152. margin-top: 60px;
  153. .table {
  154. th {
  155. background: none;
  156. border-bottom: none;
  157. &:first-child {
  158. width: 35px;
  159. }
  160. &:nth-child(2) {
  161. width: 45px;
  162. text-align: center;
  163. }
  164. }
  165. .no {
  166. text-align: center;
  167. }
  168. }
  169. }
  170. &.img-list {
  171. div {
  172. padding: 10px;
  173. img {
  174. display: block;
  175. width: 100%;
  176. height: 240px;
  177. }
  178. }
  179. .img-box {
  180. border: 1px solid #dddddd;
  181. position: relative;
  182. &:after {
  183. content: ' ';
  184. position: absolute;
  185. top: 0;
  186. right: 0;
  187. bottom: 0;
  188. left: 0;
  189. background: rgba(0, 0, 0, .4);
  190. z-index: 100;
  191. text-align: center;
  192. padding-top: 100px;
  193. display: none;
  194. }
  195. &:hover:after {
  196. display: block;
  197. cursor: pointer;
  198. }
  199. }
  200. }
  201. }
  202. .uploading-tab {
  203. margin-top: 10px;
  204. }
  205. .uploading-content {
  206. padding: 10px 25px;
  207. .uploading-img {
  208. .img-box {
  209. float: left;
  210. margin-right: 10px;
  211. width: 128px;
  212. height: 128px;
  213. }
  214. .uploading-buttom {
  215. float: left;
  216. width: 128px;
  217. height: 128px;
  218. text-align: center;
  219. line-height: 128px;
  220. background: #000;
  221. cursor: pointer;
  222. color: #ffffff;
  223. i {
  224. font-size: 20px;
  225. }
  226. }
  227. }
  228. }
  229. }
  230. }