学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
903 B

1 year ago
  1. <template>
  2. <view class="tabCon">
  3. <view class="tab1">
  4. <view class="card">
  5. <view class="name">C2自动挡一对一VIP班</view>
  6. <view class="flex-b">
  7. <view class="price">2566</view>
  8. <view class="btn">导航</view>
  9. </view>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .tabCon {
  20. width: 100%;
  21. .tab1 {
  22. width: 100%;
  23. .card {
  24. margin-top: 24rpx;
  25. padding: 28rpx 28rpx 28rpx 36rpx;
  26. .name {
  27. font-size: 32rpx;
  28. color: #333;
  29. margin-bottom: 36rpx;
  30. }
  31. .flex-b {
  32. .price {
  33. font-size: 44rpx;
  34. color: #ED733E;
  35. }
  36. .btn {
  37. width: 130rpx;
  38. height: 60rpx;
  39. background: #1989FA;
  40. border-radius: 8rpx;
  41. font-size: 28rpx;
  42. color: #fff;
  43. text-align: center;
  44. line-height: 60rpx;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. </style>