index.vue 760 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="content">
  3. <div class="w1603 h885 bg-white pl50 pt30">
  4. <div class="flex items-center">
  5. <div class="vertical-line mr10"></div>
  6. <span class="font20 font-bold mr15">技巧练习</span>
  7. <div class="w64 lh34 bg-primary-yellow radius4">试听</div>
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. setup() {
  15. return {};
  16. },
  17. };
  18. </script>
  19. <style lang="scss" scoped>
  20. .radius4{
  21. border-radius: 4px;
  22. }
  23. .bg-primary-yellow {
  24. background-color: #f9de5b;
  25. }
  26. .w1603 {
  27. width: 1603px;
  28. }
  29. .content {
  30. padding: 0 30px;
  31. padding-top: 21px;
  32. .vertical-line {
  33. width: 5px;
  34. height: 20px;
  35. background: #f9de5b;
  36. border-radius: 4px 4px 4px 4px;
  37. opacity: 1;
  38. }
  39. }
  40. </style>