groupPlaying.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <!-- 拼团玩法 -->
  3. <view class="playing">
  4. <view class="rd-14rpx bg--w111-fff mt-20 pt-32 pl-24 pr-24 pb-32">
  5. <view class="flex-between-center">
  6. <text class="fs-30 fw-500 lh-42rpx">拼团玩法</text>
  7. </view>
  8. <view class="flex-between-center mt-38 px-28">
  9. <view class="w-118 flex-col flex-center">
  10. <view class="w-80 h-80 rd-50-p111- bg-primary-light flex-center mb-24">
  11. <text class="iconfont icon-ic_user1 fs-44 text-red"></text>
  12. </view>
  13. <text class="fs-26 lh-36rpx">开团/参团</text>
  14. </view>
  15. <image class="dot-line" src="../../static/images/arrow.png"></image>
  16. <view class="w-118 flex-col flex-center">
  17. <view class="w-80 h-80 rd-50-p111- bg-primary-light flex-center mb-24">
  18. <text class="iconfont icon-ic_invite fs-44 text-red"></text>
  19. </view>
  20. <text class="fs-26 lh-36rpx">邀请好友</text>
  21. </view>
  22. <image class="dot-line" src="../../static/images/arrow.png"></image>
  23. <view class="w-118 flex-col flex-center">
  24. <view class="w-80 h-80 rd-50-p111- bg-primary-light flex-center mb-24">
  25. <text class="iconfont icon-ic_box fs-44 text-red"></text>
  26. </view>
  27. <text class="fs-26 lh-36rpx">满员发货</text>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. </script>
  35. <style lang="scss" scoped>
  36. .playing{
  37. padding: 0 26rpx;
  38. margin: 22rpx 0;
  39. }
  40. .bg-primary-light{
  41. background: rgba(233, 51, 35, 0.1);
  42. }
  43. .text-red{
  44. color: #e93323;
  45. }
  46. .dot-line{
  47. width: 76rpx;
  48. height: 12rpx;
  49. margin-bottom: 66rpx;
  50. }
  51. .iconfont{
  52. font-size: 44rpx !important;
  53. }
  54. </style>