product.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* .wrap {
  2. } */
  3. .wrap .tab {
  4. height: 5rem;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. border-bottom: 0.0625rem solid rgba(151, 151, 151, 0.2);
  9. position: relative;
  10. }
  11. .tab .tab-item {
  12. height: 5rem;
  13. width: 15rem;
  14. font-size: 1rem;
  15. font-weight: 400;
  16. color: #222222;
  17. text-align: center;
  18. line-height: 5rem;
  19. cursor: pointer;
  20. }
  21. .tab .current-tab {
  22. position: absolute;
  23. bottom: 0;
  24. width: 3.5rem;
  25. height: 0.125rem;
  26. background-color: #1d52a2;
  27. transition: all 0.25s;
  28. }
  29. .wrap .content {
  30. padding: 3.75rem 0;
  31. width: 90rem;
  32. margin: 0 auto;
  33. display: flex;
  34. flex-wrap: wrap;
  35. align-items: center;
  36. }
  37. .wrap .content > :not(:nth-child(3n)) {
  38. margin-right: 1.875rem;
  39. }
  40. .content .content-item {
  41. width: 28.75rem;
  42. height: 15.125rem;
  43. background: #f4f4f4;
  44. border: 0.0625rem solid #bfbfbf;
  45. padding: 1.875rem;
  46. margin-bottom: 1.875rem;
  47. }
  48. .content .content-item .title {
  49. height: 1.875rem;
  50. font-size: 1.375rem;
  51. font-weight: 500;
  52. color: #222222;
  53. text-overflow: ellipsis;
  54. overflow: hidden;
  55. white-space: nowrap;
  56. }
  57. .content .content-item .detail {
  58. height: 5rem;
  59. font-size: 0.875rem;
  60. font-weight: 400;
  61. color: #222222;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. display: -webkit-box;
  65. -webkit-box-orient: vertical;
  66. -webkit-line-clamp: 3;
  67. margin: 1.25rem 0;
  68. }
  69. .content .content-item .more {
  70. font-size: 0.875rem;
  71. font-weight: 400;
  72. color: #1d52a2;
  73. text-decoration: none;
  74. }