product-detail.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .wrap {
  2. padding-top: 5.25rem;
  3. }
  4. .wrap .product {
  5. height: 25rem;
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. width: 80rem;
  10. margin: 3.125rem auto;
  11. }
  12. .product .product-info {
  13. height: 18.75rem;
  14. width: 45rem;
  15. }
  16. .product .product-info .info-name {
  17. font-size: 2rem;
  18. font-weight: 500;
  19. color: #1d52a2;
  20. }
  21. .product .product-info .info-desc {
  22. font-size: 1rem;
  23. font-weight: 400;
  24. color: #333333;
  25. margin-top: 3.125rem;
  26. }
  27. .product .product-image {
  28. width: 31.25rem;
  29. /* height: 25rem; */
  30. background-color: #000;
  31. }
  32. .wrap .title {
  33. width: 80rem;
  34. margin: 0 auto;
  35. text-align: center;
  36. padding: 3.125rem 0 1.875rem;
  37. border-top: 0.0625rem solid rgba(151, 151, 151, 0.2);
  38. font-size: 2rem;
  39. font-weight: 500;
  40. color: #333333;
  41. }
  42. .wrap .content {
  43. width: 80rem;
  44. margin: 0 auto 6.25rem;
  45. font-size: 1rem;
  46. font-weight: 400;
  47. color: #222222;
  48. }
  49. .wrap .feature {
  50. display: flex;
  51. flex-wrap: wrap;
  52. align-items: center;
  53. }
  54. .feature .feature-item {
  55. width: calc((100% - 3.75rem) / 3);
  56. aspect-ratio: 19 / 10;
  57. background: #f4f4f4;
  58. border-radius: 0.625rem;
  59. padding: 1.875rem;
  60. box-sizing: border-box;
  61. margin-top: 1.875rem;
  62. }
  63. .feature .feature-item .feature-title {
  64. font-weight: 500;
  65. font-size: 1.5rem;
  66. color: #000000;
  67. }
  68. .feature .feature-item .feature-content {
  69. font-weight: 400;
  70. font-size: 0.875rem;
  71. color: #333333;
  72. margin-top: 1.25rem;
  73. }
  74. .feature :not(:nth-child(3n)) {
  75. margin-right: 1.875rem;
  76. }
  77. .wrap .sku {
  78. display: flex;
  79. align-items: flex-start;
  80. flex-wrap: wrap;
  81. }
  82. .sku .sku-item {
  83. width: calc(100% / 3);
  84. display: flex;
  85. align-items: flex-start;
  86. margin-top: 1.25rem;
  87. }
  88. .sku .sku-item .sku-content {
  89. width: calc(100% - 1.75rem);
  90. /* overflow: hidden;
  91. text-overflow: ellipsis;
  92. white-space: nowrap; */
  93. line-height: 1.25rem;
  94. font-weight: 400;
  95. font-size: 1rem;
  96. color: #222222;
  97. padding-right: 0.625rem;
  98. }
  99. .sku .sku-item .sku-mark {
  100. width: 0.5rem;
  101. height: 0.5rem;
  102. margin: 0.375rem;
  103. background: #777777;
  104. margin-right: 1.25rem;
  105. border-radius: 50%;
  106. }