ty-video.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view class="page u-flex u-row-between">
  3. <view class="item" v-for="(item,index) in 20" :key="index">
  4. <image src="/static/logo.png" style="width: 334rpx;height: 204rpx;" mode=""></image>
  5. <view class="title u-line-1">武忠祥领衔|25考研数学3213</view>
  6. <view class="write">齐春峰</view>
  7. <view class="money">¥1288.00</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: "ty-video",
  14. data() {
  15. return {
  16. };
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .item {
  22. margin-top: 24rpx;
  23. }
  24. .page {
  25. width: 750rpx;
  26. min-height: 70vh;
  27. background: #FFFFFF;
  28. border-radius: 28rpx 28rpx 0rpx 0rpx;
  29. padding: 8rpx 28rpx 34rpx;
  30. flex-wrap: wrap;
  31. }
  32. .title {
  33. font-size: 28rpx;
  34. font-family: PingFangSC, PingFang SC;
  35. font-weight: 500;
  36. color: #333333;
  37. width: 330rpx;
  38. height: 40rpx;
  39. margin-top: 20rpx;
  40. }
  41. .write {
  42. font-size: 24rpx;
  43. font-family: PingFangSC, PingFang SC;
  44. font-weight: 400;
  45. color: #444444;
  46. margin-top: 8rpx;
  47. }
  48. .money {
  49. font-size: 28rpx;
  50. font-family: SFPro, SFPro;
  51. font-weight: 500;
  52. color: #CC3300;
  53. margin-top: 12rpx;
  54. }
  55. </style>