uploadstyle.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /********************************
  2. *
  3. * COMMENTS
  4. *
  5. ********************************/
  6. /*demo样式*/
  7. #picker {
  8. display: inline-block;
  9. line-height: 1.428571429;
  10. vertical-align: middle;
  11. margin: 0 12px 0 0;
  12. }
  13. #picker .webuploader-pick {
  14. padding: 6px 12px;
  15. display: block;
  16. }
  17. #uploader-demo .thumbnail {
  18. width: 110px;
  19. height: 110px;
  20. }
  21. #uploader-demo .thumbnail img {
  22. width: 100%;
  23. }
  24. .uploader-list {
  25. width: 100%;
  26. overflow: hidden;
  27. }
  28. .file-item {
  29. float: left;
  30. position: relative;
  31. margin: 0 20px 20px 0;
  32. padding: 4px;
  33. }
  34. .file-item .error {
  35. position: absolute;
  36. top: 4px;
  37. left: 4px;
  38. right: 4px;
  39. background: red;
  40. color: white;
  41. text-align: center;
  42. height: 20px;
  43. font-size: 14px;
  44. line-height: 23px;
  45. }
  46. .file-item .info {
  47. position: absolute;
  48. left: 4px;
  49. bottom: 4px;
  50. right: 4px;
  51. height: 20px;
  52. line-height: 20px;
  53. text-indent: 5px;
  54. background: rgba(0, 0, 0, 0.6);
  55. color: white;
  56. overflow: hidden;
  57. white-space: nowrap;
  58. text-overflow: ellipsis;
  59. font-size: 12px;
  60. z-index: 10;
  61. }
  62. .upload-state-done:after {
  63. content: "\f00c";
  64. font-family: FontAwesome;
  65. font-style: normal;
  66. font-weight: normal;
  67. line-height: 1;
  68. -webkit-font-smoothing: antialiased;
  69. -moz-osx-font-smoothing: grayscale;
  70. font-size: 32px;
  71. position: absolute;
  72. bottom: 0;
  73. right: 4px;
  74. color: #4cae4c;
  75. z-index: 99;
  76. }
  77. .file-item .progress {
  78. position: absolute;
  79. right: 4px;
  80. bottom: 4px;
  81. height: 3px;
  82. left: 4px;
  83. height: 4px;
  84. overflow: hidden;
  85. z-index: 15;
  86. margin: 0;
  87. padding: 0;
  88. border-radius: 0;
  89. background: transparent;
  90. }
  91. .file-item .progress span {
  92. display: block;
  93. overflow: hidden;
  94. width: 0;
  95. height: 100%;
  96. background: #d14 url(../Images/progress.png) repeat-x;
  97. -webit-transition: width 200ms linear;
  98. -moz-transition: width 200ms linear;
  99. -o-transition: width 200ms linear;
  100. -ms-transition: width 200ms linear;
  101. transition: width 200ms linear;
  102. -webkit-animation: progressmove 2s linear infinite;
  103. -moz-animation: progressmove 2s linear infinite;
  104. -o-animation: progressmove 2s linear infinite;
  105. -ms-animation: progressmove 2s linear infinite;
  106. animation: progressmove 2s linear infinite;
  107. -webkit-transform: translateZ(0);
  108. }
  109. @-webkit-keyframes progressmove {
  110. 0% {
  111. background-position: 0 0;
  112. }
  113. 100% {
  114. background-position: 17px 0;
  115. }
  116. }
  117. @-moz-keyframes progressmove {
  118. 0% {
  119. background-position: 0 0;
  120. }
  121. 100% {
  122. background-position: 17px 0;
  123. }
  124. }
  125. @keyframes progressmove {
  126. 0% {
  127. background-position: 0 0;
  128. }
  129. 100% {
  130. background-position: 17px 0;
  131. }
  132. }
  133. a.travis {
  134. position: relative;
  135. top: -4px;
  136. right: 15px;
  137. }
  138. .tc_table_cp {
  139. width: 800px;
  140. margin: 0 auto;
  141. }
  142. .tc_table_cp td {
  143. height: 36px;
  144. font-family: "微软雅黑";
  145. font-size: 14px;
  146. color: #1f2020;
  147. line-height: 36px;
  148. }
  149. .tc_table_cp input {
  150. width: 390px;
  151. height: 30px;
  152. border: 1px solid #d1ddfa;
  153. background: #edf0f7;
  154. padding: 0 6px;
  155. border-radius: 3px;
  156. }
  157. .tc_table_cp .tc_text_hui {
  158. height: 36px;
  159. font-family: "微软雅黑";
  160. font-size: 14px;
  161. color: #b7b7b7;
  162. line-height: 36px;
  163. }
  164. .bd_text {
  165. border: 1px solid #c4c4c4;
  166. height: 22px;
  167. line-height: 30px;
  168. padding: 4px 10px;
  169. font-size: 14px;
  170. color: #666;
  171. font-family: "微软雅黑";
  172. border-radius: 3px;
  173. }
  174. .tc_table_cp .bd_width230 {
  175. width: 238px;
  176. }
  177. .tc_table_cp .bd_width620 {
  178. width: 628px;
  179. }
  180. .tc_table_cp tr td font {
  181. padding-left: 6px;
  182. }
  183. .cpup_img {
  184. width: 91px;
  185. height: 91px;
  186. float: left;
  187. border: 1px solid #d3d3d3;
  188. margin-right: 16px;
  189. position: relative;
  190. }
  191. .cpup_img img {
  192. width: 91px;
  193. height: 91px;
  194. }
  195. .upcp_img_jian {
  196. width: 91px;
  197. height: 91px;
  198. position: absolute;
  199. background: url(../Images/cp_img_sc.png) no-repeat;
  200. top: 0;
  201. left: 0;
  202. z-index: 100;
  203. display: none;
  204. }
  205. .cp_img_jia {
  206. width: 91px;
  207. height: 91px;
  208. float: left;
  209. border: 1px solid #d3d3d3;
  210. margin-right: 16px;
  211. background: url(../Images/cp_img_tj.png) no-repeat;
  212. }
  213. .cp_img_jia:hover {
  214. background: url(../Images/cp_img_tj_a.png) no-repeat;
  215. }
  216. .fgx {
  217. width: 800px;
  218. height: 1px;
  219. margin: 40px auto 20px;
  220. background: #d3d3d3;
  221. }