reply.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #reply {
  2. .reply-box {
  3. background: #ffffff;
  4. padding: 10px;
  5. .hint {
  6. color: #da4224;
  7. background: #f4ffc1;
  8. p {
  9. padding: 10px;
  10. line-height: 20px;
  11. i {
  12. font-size: 20px;
  13. }
  14. }
  15. }
  16. .tabs {
  17. padding: 10px 0;
  18. .title {
  19. font-size: 20px;
  20. font-weight: bold;
  21. }
  22. .controls {
  23. .check-item {
  24. color: #676a6c;
  25. display: inline-block;
  26. margin-right: 10px;
  27. font-size: 16px;
  28. cursor: pointer;
  29. }
  30. }
  31. #myTabContent {
  32. padding-top: 20px;
  33. position: relative;
  34. .select {
  35. border: 1px dashed #ddd;
  36. width: 308px;
  37. height: auto;
  38. background: #eee;
  39. text-align: center;
  40. color: #333;
  41. cursor: pointer;
  42. :hover {
  43. color: #58b4ef;
  44. }
  45. p {
  46. height: 200px;
  47. line-height: 200px;
  48. }
  49. .delete {
  50. display: none;
  51. position: absolute;
  52. top: 20px;
  53. left: 285px;
  54. font-size: 20px;
  55. }
  56. }
  57. .btn {
  58. margin-top: 20px;
  59. display: inline-block;
  60. padding: 12px 50px;
  61. font-size: 16px;
  62. line-height: 20px;
  63. color: #fff;
  64. text-align: center;
  65. vertical-align: middle;
  66. cursor: pointer;
  67. background: #44b549;
  68. border: none;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. .modal {
  75. .modal-header {
  76. background: #eeeeee;
  77. color: #333333;
  78. font-size: 16px;
  79. }
  80. .modal-body {
  81. padding: 0;
  82. .no-material {
  83. padding: 100px;
  84. text-align: center;
  85. display: none;
  86. }
  87. .have-material {
  88. padding: 10px;
  89. .seek {
  90. float: right;
  91. width: 200px;
  92. margin-right: 15px;
  93. }
  94. .material-table {
  95. margin-top: 60px;
  96. .table {
  97. th {
  98. background: none;
  99. border-bottom: none;
  100. &:first-child {
  101. width: 35px;
  102. }
  103. &:nth-child(2) {
  104. width: 45px;
  105. text-align: center;
  106. }
  107. }
  108. .no {
  109. text-align: center;
  110. }
  111. }
  112. }
  113. &.img-list {
  114. div {
  115. padding: 10px;
  116. img {
  117. display: block;
  118. width: 100%;
  119. height: 240px;
  120. }
  121. }
  122. .img-box {
  123. border: 1px solid #dddddd;
  124. position: relative;
  125. &:after {
  126. content: ' ';
  127. position: absolute;
  128. top: 0;
  129. right: 0;
  130. bottom: 0;
  131. left: 0;
  132. background: rgba(0, 0, 0, .4);
  133. z-index: 100;
  134. text-align: center;
  135. padding-top: 100px;
  136. display: none;
  137. }
  138. &:hover:after {
  139. display: block;
  140. cursor: pointer;
  141. }
  142. }
  143. }
  144. }
  145. }
  146. }