template.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .item {
  2. border: 1px solid #e7eaec;
  3. height: 340px;
  4. width: 198px;
  5. padding: 10px;
  6. float: left;
  7. margin-left: 15px;
  8. margin-bottom: 15px;
  9. position: relative;
  10. }
  11. .item img {
  12. display: block;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .item .title {
  17. height: 40px;
  18. width: 100%;
  19. display: none;
  20. position: absolute;
  21. bottom: 0;
  22. left: 0;
  23. color: #fff;
  24. font-size: 14px;
  25. text-align: center;
  26. line-height: 40px;
  27. z-index: 2;
  28. }
  29. .item .cate .label,
  30. .item .title .label {
  31. margin-right: 2px;
  32. padding: 2px 4px;
  33. font-weight: 100;
  34. }
  35. .item .mask {
  36. position: absolute;
  37. background: rgba(0, 0, 0, 0.6);
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. bottom: 0;
  42. display: none;
  43. z-index: 1
  44. }
  45. .item .btns {
  46. height: auto;
  47. width: 60%;
  48. position: absolute;
  49. top: 135px;
  50. left: 50%;
  51. margin-left: -30%;
  52. }
  53. .item .btns .btn {
  54. margin-bottom: 10px;
  55. }
  56. .item .cate {
  57. position: absolute;
  58. top: 10px;
  59. left: 10px;
  60. right: 10px;
  61. height: 40px;
  62. z-index: 1;
  63. padding: 10px;
  64. }