Tips.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div class="tips">
  3. <table>
  4. <tr>
  5. <td><div class="tips-t-1">注:</div></td>
  6. <td></td>
  7. </tr>
  8. <tr>
  9. <td><div class="tips-i-1"></div></td>
  10. <td><div class="tips-b tips-b-1">必选流程</div></td>
  11. </tr>
  12. <tr>
  13. <td></td>
  14. <td><div class="tips-b tips-b-2">可选流程</div></td>
  15. </tr>
  16. </table>
  17. </div>
  18. </template>
  19. <script>
  20. export default {}
  21. </script>
  22. <style lang="scss" scoped>
  23. .tips {
  24. div {
  25. position: relative !important;
  26. }
  27. .tips-b {
  28. width: 150px;
  29. height: 50px;
  30. border-radius: 10px;
  31. line-height: 50px;
  32. color: #ffffff;
  33. text-align: center;
  34. font-weight: 300;
  35. font-size: 20px;
  36. }
  37. .tips-t-1 {
  38. font-weight: 400;
  39. font-size: 25px;
  40. }
  41. .tips-i-1 {
  42. width: 28.79px;
  43. height: 26.84px;
  44. margin-top: -20px;
  45. background-image: url("../../../assets/visual/1.png");
  46. }
  47. .tips-b-1 {
  48. background: #d45a6a;
  49. margin-bottom: 15px;
  50. }
  51. .tips-b-2 {
  52. background: #3084e5;
  53. }
  54. }
  55. </style>