goods.css 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .ip-layout {
  2. flex: 1;
  3. }
  4. .upload-list {
  5. display: inline-block;
  6. width: 60px;
  7. height: 60px;
  8. text-align: center;
  9. line-height: 60px;
  10. border: 1px solid transparent;
  11. border-radius: 4px;
  12. overflow: hidden;
  13. background: #fff;
  14. position: relative;
  15. box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  16. margin-right: 4px;
  17. }
  18. .upload-list img {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .upload-list-cover {
  23. display: none;
  24. position: absolute;
  25. top: 0;
  26. bottom: 0;
  27. left: 0;
  28. right: 0;
  29. background: rgba(0, 0, 0, .6);
  30. }
  31. .upload-list:hover .upload-list-cover {
  32. display: block;
  33. }
  34. .upload-list-cover i {
  35. color: #fff;
  36. font-size: 20px;
  37. cursor: pointer;
  38. margin: 0 2px;
  39. }
  40. .h-val li {
  41. flex: 1;
  42. text-align: center;
  43. }