学员端小程序
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.

44 lines
799 B

1 year ago
  1. <template>
  2. <view class="vdo">
  3. <view class="coverBox">
  4. <view class="start">
  5. <image src="@/static/images/index/btn_bofang.png" mode=""></image>
  6. </view>
  7. <view class="cover">
  8. <image src="@/static/images/logo.png" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="text oneRowText">公益短片之车速决定命运</view>
  12. </view>
  13. </template>
  14. <script>
  15. </script>
  16. <style lang="scss" scoped>
  17. .coverBox {
  18. width: 100%;
  19. height: 168rpx;
  20. background: $themC;
  21. border-radius: 12rpx;
  22. position: relative;
  23. .start {
  24. position: absolute;
  25. left: 50%;
  26. top: 50%;
  27. transform: translate(-50%,-50%);
  28. width: 50rpx;
  29. height: 50rpx;
  30. z-index: 2;
  31. }
  32. .cover {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. }
  37. .text {
  38. font-size: 24rpx;
  39. padding: 20rpx 0 6rpx 0;
  40. }
  41. </style>