index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. page {
  2. width: 100%;
  3. /* height: 100%; */
  4. background: #f9f9f9;
  5. }
  6. .container {
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. }
  13. .swiper {
  14. width: 100%;
  15. height: 300rpx;
  16. }
  17. .swiper image {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. .title {
  22. width: 90%;
  23. display: flex;
  24. flex-direction: column;
  25. background: white;
  26. margin: -50rpx auto 0;
  27. border: 1rpx solid #fafafa;
  28. height: 170rpx;
  29. z-index: 2;
  30. padding: 15rpx 20rpx;
  31. border-radius: 10rpx;
  32. }
  33. .title text:nth-of-type(1) {
  34. font-size: 50rpx;
  35. }
  36. .title text:nth-of-type(2) {
  37. font-size: 28rpx;
  38. }
  39. .tabbar {
  40. width: 100%;
  41. background: white;
  42. display: flex;
  43. align-items: center;
  44. height: 80rpx;
  45. margin-top: 20rpx;
  46. border-bottom: 1rpx solid #ccc;
  47. }
  48. .tabbar .view {
  49. display: flex;
  50. width: 50%;
  51. justify-content: center;
  52. box-sizing: border-box;
  53. height: 100%;
  54. /* align-items: center; */
  55. line-height: 76rpx;
  56. }
  57. .tabbar .active {
  58. color: #43E0B8;
  59. border-bottom: 2rpx solid #43E0B8;
  60. }
  61. .wxparse{
  62. width: 100%;
  63. background: white;
  64. font-size: 28rpx;
  65. padding: 20rpx 20rpx;
  66. box-sizing: border-box;
  67. }
  68. .wxParse-p{
  69. padding: 0 !important;
  70. width: 100%;
  71. }
  72. .wxparse .wxParse-br{
  73. height: 20rpx;
  74. width: 100%;
  75. }
  76. .parseTitle {
  77. font-size: 40rpx;
  78. padding: 10rpx 0rpx;
  79. border-bottom: 2rpx dashed #666;
  80. width: 100%;
  81. text-align: center;
  82. display: inline-block;
  83. background: white;
  84. margin-top: 20rpx;
  85. }
  86. .tabSwiper{
  87. width: 100%;
  88. height: 450rpx;
  89. background: white;
  90. }
  91. .tabSwiper .swiper-item{
  92. width: 100%;
  93. height: 100%;
  94. display: flex;
  95. flex-direction: column;
  96. align-items: center;
  97. }
  98. .tabSwiper .view{
  99. width: 95%;
  100. display: flex;
  101. align-items: center;
  102. height: 100rpx;
  103. padding: 15rpx 0rpx;
  104. border-bottom: 1rpx solid #ccc;
  105. margin: 10rpx 0rpx;
  106. }
  107. .tabSwiper .view .left{
  108. display: flex;
  109. flex-direction: column;
  110. align-items: center;
  111. width: 50%;
  112. height: 100%;
  113. justify-content: space-around;
  114. }
  115. .tabSwiper .view .center{
  116. width: 25%;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. height: 100%;
  121. color: #43E0B8;
  122. font-size: 30rpx;
  123. }
  124. .tabSwiper .view .right{
  125. width: 25%;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. height: 100%;
  130. }
  131. .tabSwiper .view .right view{
  132. width: 80%;
  133. display: flex;
  134. align-items: center;
  135. justify-content: center;
  136. height: 60rpx;
  137. font-size: 26rpx;
  138. color: white;
  139. background: #43E0B8;
  140. border-radius: 10rpx;
  141. }
  142. .background{
  143. width: 100%;
  144. height: 100%;
  145. background: #ccc;
  146. opacity: 0.5;
  147. position: fixed;
  148. top: 0;
  149. left: 0;
  150. right: 0;
  151. bottom: 0;
  152. z-index: 88;
  153. }
  154. .model{
  155. width: 500rpx;
  156. height: 430rpx;
  157. position: fixed;
  158. top: 50%;
  159. left: 50%;
  160. transform: translate(-50%,-50%);
  161. display: flex;
  162. flex-direction: column;
  163. align-items: center;
  164. z-index: 99;
  165. border-radius: 20rpx;
  166. background: white;
  167. justify-content: space-between;
  168. }
  169. .model .text{
  170. font-size: 30rpx;
  171. width: 100%;
  172. display: flex;
  173. align-items: center;
  174. justify-content: center;
  175. height: 70rpx;
  176. }
  177. .model .center{
  178. display: flex;
  179. flex-direction: column;
  180. font-size: 28rpx;
  181. color: #43E0B8;
  182. width: 92%;
  183. height: 100rpx;
  184. background: #ccc;
  185. justify-content: center;
  186. padding-left: 30rpx;
  187. box-sizing: border-box;
  188. }
  189. .model .bottom{
  190. width: 92%;
  191. display: flex;
  192. align-items: center;
  193. justify-content: space-between;
  194. }
  195. .model .bottom .right{
  196. display: flex;
  197. align-items: center;
  198. width: 200rpx;
  199. height: 65rpx;
  200. border: 2rpx solid #d6e4ef;
  201. }
  202. .model .bottom .right view{
  203. display: flex;
  204. height: 100%;
  205. align-items: center;
  206. justify-content: center;
  207. box-sizing: border-box;
  208. }
  209. .model .coupon{
  210. width: 92%;
  211. display: flex;
  212. justify-content: space-between;
  213. font-size: 28rpx;
  214. padding: 10rpx 0rpx;
  215. }
  216. .model .anniu{
  217. width: 100%;
  218. display: flex;
  219. align-items: center;
  220. border-top: 2rpx solid #ccc;
  221. }
  222. .model .anniu view{
  223. display: flex;
  224. align-items: center;
  225. justify-content: center;
  226. width: 50%;
  227. height: 90rpx;
  228. }