index.module.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .A4selectCourse {
  2. position: relative;
  3. :global {
  4. .A4main {
  5. height: calc(100% - 60px);
  6. overflow-y: auto;
  7. background-image: url('../../assets/img/selectCourse/bg.jpg');
  8. background-size: 100% 100%;
  9. .A4row {
  10. margin-top: 20px;
  11. margin-bottom: 70px;
  12. .A4row1 {
  13. height: 54px;
  14. line-height: 54px;
  15. display: inline-block;
  16. padding: 0 24px 0 50px;
  17. border-radius: 0 30px 30px 0;
  18. background-color: var(--themeColor2);
  19. font-size: 20px;
  20. color: #fff;
  21. box-shadow: 0px 4px 5px 0px rgba(109, 170, 31, 0.5);
  22. position: relative;
  23. & > img {
  24. position: absolute;
  25. top: 50%;
  26. transform: translateY(-50%);
  27. left: 24px;
  28. }
  29. }
  30. .A4row2 {
  31. width: 90%;
  32. height: 550px;
  33. background-image: url('../../assets/img/selectCourse/pop.png');
  34. background-size: 100% 100%;
  35. margin: 25px auto;
  36. .A4row2_1 {
  37. padding-left: 25px;
  38. height: 60px;
  39. line-height: 58px;
  40. width: 70%;
  41. font-weight: 700;
  42. font-size: 20px;
  43. color: #fff;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. }
  48. .A4row2_2 {
  49. height: 380px;
  50. padding: 30px 30px 0;
  51. & > div {
  52. width: 100%;
  53. height: 100%;
  54. border-bottom: 2px dashed #bebebe;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: center;
  58. padding-bottom: 30px;
  59. .A4row2_2tit {
  60. font-weight: 700;
  61. font-size: 16px;
  62. color: var(--themeColor);
  63. margin-bottom: 5px;
  64. }
  65. & > p {
  66. min-height: 66px;
  67. text-align: justify;
  68. font-size: 16px;
  69. display: -webkit-box;
  70. overflow: hidden;
  71. white-space: normal !important;
  72. text-overflow: ellipsis;
  73. word-wrap: break-word;
  74. line-clamp: 3;
  75. -webkit-line-clamp: 3;
  76. -webkit-box-orient: vertical;
  77. margin-bottom: 12px;
  78. }
  79. .A4row2_2No {
  80. width: 100%;
  81. text-align: center;
  82. font-size: 30px;
  83. color: var(--themeColor);
  84. }
  85. }
  86. }
  87. // 按钮
  88. .A4row2_3 {
  89. padding: 0 30px;
  90. margin-top: 20px;
  91. height: 50px;
  92. display: flex;
  93. justify-content: space-between;
  94. & > div {
  95. width: 46%;
  96. height: 100%;
  97. border-radius: 6px;
  98. box-shadow: 3px 3px 4px 0px rgba(125, 190, 43, 0.25);
  99. background-color: var(--themeColor2);
  100. color: #fff;
  101. font-weight: 700;
  102. font-size: 18px;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. &:nth-of-type(1) {
  107. background-color: #f18101;
  108. box-shadow: 3px 3px 4px 0px rgba(241, 129, 1, 0.25);
  109. }
  110. }
  111. .A4row2_3No {
  112. background-color: #d9d9d9 !important;
  113. pointer-events: none;
  114. color: #aeaeae;
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. }