style.css 888 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .jqfivefile{
  2. position: relative;
  3. margin-bottom: 10px;
  4. overflow: hidden;
  5. }
  6. .jqfivefile input{
  7. position: absolute;
  8. font-size: 100px;
  9. right: 0;
  10. top: 0;
  11. opacity: 0;
  12. filter:Alpha(opacity=0);
  13. cursor: pointer;
  14. }
  15. .imgsbox{
  16. width: 100%;
  17. overflow: hidden;
  18. }
  19. .imgsbox .imgbox{
  20. overflow: hidden;
  21. display: inline-block;
  22. position: relative;
  23. width: 80px;
  24. height: 80px;
  25. border: 1px solid #ccc;
  26. padding: 2px;
  27. margin: 0 5px 5px 0;
  28. }
  29. .imgsbox .imgbox img{
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .imgsbox .imgbox .removePic{
  34. width: 24px;
  35. height: 24px;
  36. line-height: 24px;
  37. font-size: 20px;
  38. text-align: center;
  39. border-radius: 12px;
  40. background-color: #000;
  41. background-color: rgba(0,0,0,0.5);
  42. color: #fff;
  43. position: absolute;
  44. z-index: 10;
  45. right: 4px;
  46. top: 4px;
  47. cursor: pointer;
  48. }