index.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /* pages/tabber/home/index.wxss */
  2. page{
  3. padding-bottom: 50rpx;
  4. }
  5. .infoBoxs{
  6. position: fixed;
  7. width: 512rpx;
  8. height: 153rpx;
  9. z-index: 20;
  10. right: 0;
  11. }
  12. .infoBoxs .close{
  13. width: 30rpx;
  14. height: 30rpx;
  15. position: absolute;
  16. right: 40rpx;
  17. top: 50rpx;
  18. }
  19. .topBg {
  20. width: 750rpx;
  21. height: 536rpx;
  22. position: relative;
  23. z-index: 1;
  24. }
  25. .topBg .contioner {
  26. position: absolute;
  27. left: 50%;
  28. top: 50%;
  29. transform: translate(-50%, -50%);
  30. }
  31. .topBg .contioner .tit {
  32. color: #191C27;
  33. width: 240rpx;
  34. height: 60rpx;
  35. display: block;
  36. margin: auto;
  37. }
  38. .topBg .contioner .tips {
  39. margin: 30rpx auto;
  40. font-size: 32rpx;
  41. color: #191C27;
  42. letter-spacing: 6rpx;
  43. }
  44. .shoppingBoxs {
  45. width: 702rpx;
  46. height: 168rpx;
  47. background: #FFFFFF;
  48. box-shadow: 0px 10rpx 16rpx 0px rgba(17, 48, 105, 0.04), 0px -10px 16px 0px rgba(17, 48, 105, 0.04);
  49. border-radius: 12rpx;
  50. position: absolute;
  51. left: 50%;
  52. bottom: -15%;
  53. transform: translate(-50%, 0%);
  54. padding: 24rpx;
  55. }
  56. .shoppingBoxs .le .content {
  57. line-height: 48rpx;
  58. display: flex;
  59. flex-direction: column;
  60. margin-left: 25rpx;
  61. }
  62. .shoppingBoxs .le .content .tit {
  63. font-size: 28rpx;
  64. font-weight: 500;
  65. color: #191C27;
  66. }
  67. .shoppingBoxs .le .content .message {
  68. font-size: 24rpx;
  69. color: #999999;
  70. }
  71. .shoppingBoxs .le .content .tags {
  72. font-size: 22rpx;
  73. color: #4699FF;
  74. height: 30rpx;
  75. background: #E8F2FF;
  76. border-radius: 2rpx;
  77. text-align: center;
  78. line-height: 30rpx;
  79. }
  80. .shoppingBoxs .le .pic {
  81. width: 120rpx;
  82. height: 120rpx;
  83. }
  84. .shoppingBoxs .lr {
  85. position: relative;
  86. width: 100rpx;
  87. }
  88. .shoppingBoxs .lr::before {
  89. content: '';
  90. display: block;
  91. width: 2rpx;
  92. height: 100%;
  93. background: #E9E9E9;
  94. position: absolute;
  95. left: 0;
  96. top: 0;
  97. }
  98. .shoppingBoxs .lr .icon {
  99. width: 40rpx;
  100. height: 40rpx;
  101. display: block;
  102. margin: auto;
  103. }
  104. .shoppingBoxs .lr .tips {
  105. font-size: 24rpx;
  106. color: #666666;
  107. text-align: center;
  108. margin-top: 10rpx;
  109. }
  110. .mainBoxs {
  111. padding: 120rpx 65rpx;
  112. }
  113. .mainBoxs .mainItem .icon {
  114. width: 48rpx;
  115. height: 48rpx;
  116. display: block;
  117. margin: auto;
  118. }
  119. .mainBoxs .mainItem .text {
  120. font-size: 24rpx;
  121. text-align: center;
  122. color: #191C27;
  123. margin-top: 15rpx;
  124. }
  125. .btns {
  126. margin: auto;
  127. width: 686rpx;
  128. height: 98rpx;
  129. box-shadow: 0px 10rpx 20rpx 0px rgba(35, 107, 248, 0.2);
  130. border-radius: 49rpx;
  131. text-align: center;
  132. line-height: 98rpx;
  133. font-size: 32rpx;
  134. font-weight: 500;
  135. position: relative;
  136. margin-bottom: 80rpx;
  137. }
  138. .btns.skyBlue {
  139. background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
  140. color: #FFFFFF;
  141. }
  142. .btns.gray {
  143. color: #FFFFFF;
  144. background: #CCCCCC;
  145. }
  146. .btns .tips {
  147. height: 38rpx;
  148. background: #FF663D;
  149. border-radius: 19rpx 19rpx 19rpx 0px;
  150. position: absolute;
  151. right: 0;
  152. top: -20rpx;
  153. font-size: 22rpx;
  154. color: #FFFFFF;
  155. padding: 0 8rpx;
  156. }
  157. .footerTips {
  158. position: fixed;
  159. z-index: 10;
  160. left: 0;
  161. bottom: 0;
  162. width: 750rpx;
  163. height: 104rpx;
  164. background: #FDFCEC;
  165. padding: 0 24rpx;
  166. }
  167. .footerTips .tips {
  168. width: 32rpx;
  169. height: 32rpx;
  170. }
  171. .footerTips .message {
  172. font-size: 24rpx;
  173. color: #FF663D;
  174. line-height: 30rpx;
  175. width: 660rpx;
  176. }