reply.css 3.0 KB

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