Нет описания

seeDetail.css 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .table {
  2. margin: 20px;
  3. width: 97%;
  4. }
  5. .table th {
  6. width: 10%;
  7. font-weight: bold;
  8. text-align: center;
  9. }
  10. .table td {
  11. width: 90%;
  12. table-layout: fixed;
  13. word-break: break-all;
  14. overflow: hidden;
  15. }
  16. .file_imgs {
  17. padding: 10px 5px;
  18. list-style: none;
  19. margin-bottom: 60px;
  20. margin-left: -15px;
  21. }
  22. .file_imgs li {
  23. float: left;
  24. position: relative;
  25. width: 109px;
  26. height: 109px;
  27. margin-left: 10px;
  28. margin-right: 10px;
  29. margin-bottom: 40px;
  30. padding-top: 0;
  31. padding-bottom: 0;
  32. }
  33. .file_imgs li:hover .img_mask {
  34. display: block;
  35. }
  36. .file_imgs .img_mask {
  37. display: none;
  38. position: absolute;
  39. left: 0;
  40. top: 0;
  41. background-color: rgba(0, 0, 0, .3);
  42. width: 100%;
  43. height: 22px;
  44. z-index: 1;
  45. }
  46. .file_imgs .img_mask i {
  47. position: absolute;
  48. right: 5px;
  49. top: 5px;
  50. display: inline-block;
  51. width: 13px;
  52. height: 12px;
  53. cursor: pointer;
  54. background: url(../../img/file_img_icons.png) no-repeat 0 0;
  55. }
  56. .file_imgs .file_name {
  57. width: 100%;
  58. display: inline-block;
  59. text-align: center;
  60. /*overflow: hidden;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;*/
  63. word-break: break-all;
  64. padding-top: 8px;
  65. }
  66. .file_imgs li img {
  67. width: 100%;
  68. height: 100%;
  69. border: 0;
  70. vertical-align: middle;
  71. }
  72. .file_imgs .upload-state-done .img_state {
  73. display: block;
  74. position: absolute;
  75. right: 0;
  76. bottom: 0;
  77. width: 0;
  78. height: 0;
  79. border-bottom: 40px solid #01b2fe;
  80. border-left: 40px solid transparent;
  81. overflow: inherit;
  82. }
  83. .file_imgs .img_state i {
  84. position: absolute;
  85. right: 4px;
  86. bottom: -32px;
  87. display: inline-block;
  88. width: 15px;
  89. height: 11px;
  90. background: url(../../img/file_img_icons.png) no-repeat 0 -16px;
  91. }
  92. .error {
  93. color: red;
  94. text-align: center;
  95. }
  96. .noThumb {
  97. width: 109px;
  98. height: 109px;
  99. text-align: center;
  100. color: #1aaad0;
  101. }
  102. .glyphicon.glyphicon-paperclip {
  103. font-size: 80px;
  104. text-align: center;
  105. }
  106. .img-box {
  107. float: left;
  108. width: 120px;
  109. height: 120px;
  110. background-size: 100% 100%;
  111. display: inline-block;
  112. position: relative;
  113. border-radius: 5px;
  114. margin-right: 10px;
  115. border: solid 1px #e8e8e8;
  116. cursor: pointer;
  117. text-align: center;
  118. line-height: 120px
  119. }
  120. .img-box .img_mask {
  121. display: none;
  122. position: absolute;
  123. left: 0;
  124. top: 0;
  125. background-color: rgba(0, 0, 0, .3);
  126. width: 100%;
  127. height: 22px;
  128. z-index: 5;
  129. }
  130. .image-item {
  131. width: 120px;
  132. height: 120px;
  133. background-size: 100% 100%;
  134. display: inline-block;
  135. position: relative;
  136. border-radius: 5px;
  137. margin-right: 10px;
  138. /*border: solid 1px #e8e8e8;*/
  139. cursor: pointer;
  140. }
  141. .img-box .img_mask i {
  142. position: absolute;
  143. right: 5px;
  144. top: 5px;
  145. display: inline-block;
  146. width: 13px;
  147. height: 12px;
  148. cursor: pointer;
  149. color: #fff;
  150. }
  151. .img-box:hover .img_mask {
  152. display: block;
  153. }
  154. .img_filename{
  155. font-size: 30px;
  156. display: block;
  157. width: 100%;
  158. height: calc(100% - 22px);
  159. }