CareerTitleCard.vue 719 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="index-block bg-white fx-column pl30 pr30">
  3. <div class="content-wrapper pt30">
  4. <div class="f24 bold f-999">{{ english }}</div>
  5. <div class="f24 bold f-333 mt15">{{ name }}</div>
  6. <div class="bg-primary mt10" style="width:40px;height:4px;" />
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'CareerTitleCard',
  13. props: {
  14. name: {
  15. type: String,
  16. default: ''
  17. },
  18. english: {
  19. type: String,
  20. default: ''
  21. }
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. .content-wrapper {
  27. padding: 30px 0;
  28. background-image: url("~@/assets/images/career/icon_colleges.png");
  29. background-repeat: no-repeat;
  30. background-position: bottom right;
  31. }
  32. </style>