index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. @import '/app.wxss';
  2. .product-window {
  3. position: fixed;
  4. bottom: 0;
  5. width: 100%;
  6. left: 0;
  7. background-color: #fff;
  8. z-index: 88;
  9. border-radius: 16rpx 16rpx 0 0;
  10. padding-bottom: 140rpx;
  11. transform: translate3d(0, 100%, 0);
  12. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  13. }
  14. .product-window.on {
  15. transform: translate3d(0, 0, 0);
  16. }
  17. .product-window.join {
  18. padding-bottom: 30rpx;
  19. }
  20. .product-window .textpic {
  21. padding: 0 130rpx 0 30rpx;
  22. margin-top: 29rpx;
  23. position: relative;
  24. }
  25. .product-window .textpic .pictrue {
  26. width: 150rpx;
  27. height: 150rpx;
  28. }
  29. .product-window .textpic .pictrue image {
  30. width: 100%;
  31. height: 100%;
  32. border-radius: 10rpx;
  33. }
  34. .product-window .textpic .text {
  35. width: 410rpx;
  36. font-size: 32rpx;
  37. color: #202020;
  38. }
  39. .product-window .textpic .text .money {
  40. font-size: 24rpx;
  41. margin-top: 40rpx;
  42. }
  43. .product-window .textpic .text .money .num {
  44. font-size: 36rpx;
  45. }
  46. .product-window .textpic .text .money .stock {
  47. color: #999;
  48. margin-left: 18rpx;
  49. }
  50. .product-window .textpic .iconfont {
  51. position: absolute;
  52. right: 30rpx;
  53. top: -5rpx;
  54. font-size: 35rpx;
  55. color: #8a8a8a;
  56. }
  57. .product-window .productWinList {
  58. max-height: 395rpx;
  59. overflow: auto;
  60. margin-top: 36rpx;
  61. }
  62. .product-window .productWinList .item~.item {
  63. margin-top: 36rpx;
  64. }
  65. .product-window .productWinList .item .title {
  66. font-size: 30rpx;
  67. color: #999;
  68. padding: 0 30rpx;
  69. }
  70. .product-window .productWinList .item .listn {
  71. padding: 0 30rpx 0 16rpx;
  72. }
  73. .product-window .productWinList .item .listn .itemn {
  74. border: 1px solid #bbb;
  75. font-size: 26rpx;
  76. color: #282828;
  77. padding: 7rpx 33rpx;
  78. border-radius: 6rpx;
  79. margin: 14rpx 0 0 14rpx;
  80. }
  81. .product-window .productWinList .item .listn .itemn.on {
  82. color: #fff;
  83. background-color: #ff3700;
  84. border-color: #ff3700;
  85. }
  86. .product-window .cart {
  87. margin-top: 36rpx;
  88. padding: 0 30rpx;
  89. }
  90. .product-window .cart .title {
  91. font-size: 30rpx;
  92. color: #999;
  93. }
  94. .product-window .cart .carnum {
  95. height: 54rpx;
  96. margin-top: 24rpx;
  97. }
  98. .product-window .cart .carnum view {
  99. border: 1px solid #a4a4a4;
  100. width: 84rpx;
  101. text-align: center;
  102. height: 100%;
  103. line-height: 54rpx;
  104. color: #a4a4a4;
  105. font-size: 45rpx;
  106. }
  107. .product-window .cart .carnum .reduce {
  108. border-right: 0;
  109. border-radius: 6rpx 0 0 6rpx;
  110. line-height: 48rpx;
  111. }
  112. .product-window .cart .carnum .reduce.on {
  113. border-color: #e3e3e3;
  114. color: #dedede;
  115. }
  116. .product-window .cart .carnum .plus {
  117. border-left: 0;
  118. border-radius: 0 6rpx 6rpx 0;
  119. line-height: 46rpx;
  120. }
  121. .product-window .cart .carnum .plus.on {
  122. border-color: #e3e3e3;
  123. color: #dedede;
  124. }
  125. .product-window .cart .carnum .num {
  126. color: #282828;
  127. font-size: 28rpx;
  128. }
  129. .product-window .joinBnt {
  130. font-size: 30rpx;
  131. width: 620rpx;
  132. height: 86rpx;
  133. border-radius: 50rpx;
  134. text-align: center;
  135. line-height: 86rpx;
  136. color: #fff;
  137. margin: 21rpx auto 0 auto;
  138. }
  139. .product-window .joinBnt.on {
  140. background-color: #bbb;
  141. color: #fff;
  142. }
  143. .fontcolor{
  144. color: #D70615;
  145. }