index.module.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .B4form {
  2. position: relative;
  3. background-image: url('../../assets/img/selectCourse/bg.jpg');
  4. background-size: cover;
  5. :global {
  6. .B4main {
  7. height: calc(100% - 100px);
  8. padding: 26px 24px;
  9. .B4top {
  10. height: 130px;
  11. position: relative;
  12. left: -8px;
  13. width: calc(100% + 16px);
  14. background-image: url(../../assets/img/order/top.png);
  15. background-size: 100% 100%;
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: center;
  19. padding: 0 0 4px 13%;
  20. font-size: 16px;
  21. color: #828282;
  22. & > p {
  23. padding-right: 20px;
  24. margin-bottom: 6px;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. white-space: nowrap;
  28. & > span {
  29. font-weight: 700;
  30. color: var(--themeColor2);
  31. }
  32. }
  33. }
  34. .B4addBtn {
  35. height: 60px;
  36. border-radius: 6px;
  37. background-color: var(--themeColor2);
  38. color: #fff;
  39. font-size: 18px;
  40. font-weight: 700;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. margin-bottom: 15px;
  45. }
  46. }
  47. }
  48. }