product-detail-mobile.css 1.8 KB

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