index.ttss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. page view {
  2. box-sizing: border-box;
  3. flex-shrink: 0;
  4. }
  5. page {
  6. font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
  7. Arial, PingFang SC-Light, Microsoft YaHei;
  8. margin: 0;
  9. }
  10. button {
  11. margin: 0;
  12. padding: 0;
  13. border: 1px solid transparent;
  14. outline: none;
  15. background-color: transparent;
  16. }
  17. button:active {
  18. opacity: 0.6;
  19. }
  20. .flex-col {
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. .flex-row {
  25. display: flex;
  26. flex-direction: row;
  27. }
  28. .flex-row-reverse {
  29. display: flex;
  30. flex-direction: row-reverse;
  31. }
  32. .bord{
  33. border: 1px solid red;
  34. }
  35. .justify-start {
  36. display: flex;
  37. justify-content: flex-start;
  38. }
  39. .justify-center {
  40. display: flex;
  41. justify-content: center;
  42. }
  43. .justify-end {
  44. display: flex;
  45. justify-content: flex-end;
  46. }
  47. .justify-evenly {
  48. display: flex;
  49. justify-content: space-evenly;
  50. }
  51. .justify-around {
  52. display: flex;
  53. justify-content: space-around;
  54. }
  55. .justify-between {
  56. display: flex;
  57. justify-content: space-between;
  58. }
  59. .align-start {
  60. display: flex;
  61. align-items: flex-start;
  62. }
  63. .align-center {
  64. display: flex;
  65. align-items: center;
  66. }
  67. .align-end {
  68. display: flex;
  69. align-items: flex-end;
  70. }
  71. .sticky {
  72. display: flex;
  73. position: -webkit-sticky;
  74. position: sticky;
  75. top: 0rpx;
  76. z-index: 99;
  77. }
  78. .bord{
  79. border: 1px solid red;
  80. }
  81. .swiper{
  82. height: 390rpx;
  83. }
  84. .swiperImgView{
  85. width: 750rpx;
  86. height: 390rpx;
  87. }
  88. .swiperImg{
  89. width: 750rpx;
  90. height: 390rpx;
  91. }
  92. .banner{
  93. margin-top: 10rpx;
  94. }
  95. .goods{
  96. padding: 10rpx 20rpx;
  97. }
  98. .goodsName{
  99. width: 710rpx;
  100. display: -webkit-box;
  101. -webkit-box-orient: vertical;
  102. -webkit-line-clamp: 2;
  103. overflow: hidden;
  104. text-overflow: ellipsis;
  105. margin-top: 10rpx;
  106. font-size: 30rpx;
  107. }
  108. .goodsImgTitle{
  109. width: 710rpx;
  110. display: -webkit-box;
  111. -webkit-box-orient: vertical;
  112. -webkit-line-clamp: 2;
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. margin-top: 10rpx;
  116. font-size: 26rpx;
  117. color: #999999;
  118. }
  119. .goodsPrice{
  120. margin-top: 10rpx;
  121. font-size: 40rpx;
  122. color: red;
  123. }
  124. .aixinView{
  125. width: 40rpx;
  126. height: 40rpx;
  127. }
  128. .aixinImg{
  129. width: 40rpx;
  130. height: 40rpx;
  131. }
  132. .goodsDetail{
  133. height: 70rpx;
  134. line-height: 70rpx;
  135. font-size: 35rpx;
  136. }
  137. .goodsDetailImgView{
  138. }
  139. .goodsDetailImg{
  140. width: 750rpx;
  141. }
  142. .goods-carts {
  143. flex-direction: column;
  144. position: fixed;
  145. left: 0;
  146. right: 0;
  147. bottom: 0;
  148. }