tips.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div class="paymentTips">
  3. <h2 class="titleTips" style="padding-top: 12px">注册说明</h2>
  4. <div class="noticeInfo">
  5. 1、您注册时所选择的乐团声部,即为乐团录取最终确认的声部,请您务必仔细填写;<br />
  6. 2、为避免因部分已注册家长放弃名额导致乐团声部失衡,系统设定各声部限额放大20%比例开放注册,系统自动按照完全完成注册的先后顺序确认录取名单,因此,超员后有可能出现无法注册的情况,请您理解。如果其他声部仍有名额,在您孩子的身体条件适合该乐器的前提下,我们将优先予以调配。
  7. </div>
  8. </div>
  9. </template>
  10. <style lang="less" scoped>
  11. .paymentTips {
  12. background: #fff;
  13. margin: 10px 12px;
  14. border-radius: 10px;
  15. overflow: hidden;
  16. }
  17. .titleTips {
  18. font-size: 16px;
  19. line-height: 28px;
  20. font-weight: 500;
  21. padding: 0 12px 12px;
  22. padding-bottom: 5px;
  23. display: flex;
  24. align-items: center;
  25. color: #1A1A1A;
  26. margin-bottom: 0;
  27. &::before {
  28. content: " ";
  29. width: 19px;
  30. height: 19px;
  31. display: inline-block;
  32. margin-right: 7px;
  33. margin-top: -3px;
  34. background: url('../../../assets/images/musicGroup/icon_tips.png') no-repeat center;
  35. background-size: contain;
  36. }
  37. }
  38. .noticeInfo {
  39. // margin: 0 012px;
  40. position: relative;
  41. background: #fff;
  42. padding: 0 12px 10px;
  43. font-size: 13px;
  44. color: #696969;
  45. line-height: 20px;
  46. }
  47. </style>