professionalIntroduction.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* 专业介绍 */
  2. .professional {
  3. min-height: 100vh;
  4. background-color: #f2f2f2;
  5. &-bg {
  6. height: 430rpx;
  7. background-image: url(../../../static/img/upgrade-bg.png);
  8. background-repeat: no-repeat;
  9. background-position: center center;
  10. background-size: cover;
  11. margin-top: -190rpx;
  12. }
  13. &-content {
  14. padding: 0 30rpx;
  15. margin-top: -200rpx;
  16. &-info {
  17. background-color: #fff;
  18. border-radius: 10rpx;
  19. padding: 40rpx 36rpx;
  20. display: flex;
  21. // justify-content: space-between;
  22. &-left {
  23. margin-right: 24rpx;
  24. }
  25. &-right {
  26. .name {
  27. display: flex;
  28. align-items: center;
  29. // justify-content: space-between;
  30. view {
  31. &:first-child {
  32. background: linear-gradient(153deg, #F89E42, #FF7833);
  33. font-size: 20rpx;
  34. width: 100rpx;
  35. padding: 4rpx 0;
  36. text-align: center;
  37. border-radius: 20rpx;
  38. color: #fff;
  39. }
  40. &:nth-child(2) {
  41. font-size: 34rpx;
  42. color: #3D5D4C;
  43. font-weight: 500;
  44. margin: 0 10rpx;
  45. }
  46. &:last-child {
  47. color: #585858;
  48. font-size: 26rpx;
  49. }
  50. }
  51. }
  52. .study {
  53. // display: flex;
  54. // justify-content: space-between;
  55. // align-items: center;
  56. font-size: 24rpx;
  57. margin-top: 18rpx;
  58. margin-bottom: 20rpx;
  59. color: #A2A2A2;
  60. }
  61. .price {
  62. width: 400rpx;
  63. height: 78rpx;
  64. line-height: 78rpx;
  65. text-align: center;
  66. border-radius: 40rpx;
  67. background-color: #E0EFE3;
  68. font-size: 32rpx;
  69. color: #646464;
  70. text {
  71. color: #355A3E;
  72. font-weight: 500;
  73. }
  74. }
  75. }
  76. }
  77. &-preview {
  78. background-color: #fff;
  79. border-radius: 10rpx;
  80. margin-top: 20rpx;
  81. padding: 40rpx 32rpx;
  82. &-video {
  83. padding-bottom: 34rpx;
  84. border-bottom: solid 1px #CDCDCD;
  85. .title {
  86. display: flex;
  87. justify-content: space-between;
  88. align-content: center;
  89. line-height: 34rpx;
  90. margin-bottom: 20rpx;
  91. view {
  92. font-size: 26rpx;
  93. color: #9D9D9D;
  94. text {
  95. color: #424242;
  96. font-size: 36rpx;
  97. margin-right: 22rpx;
  98. }
  99. }
  100. }
  101. .list {
  102. .swiper {
  103. height: 290rpx;
  104. }
  105. .swiper-item {
  106. width: 50%!important;
  107. .classes-name {
  108. color: #2E2E2E;
  109. font-size: 26rpx;
  110. margin-top: 20rpx;
  111. }
  112. .classes-teacher {
  113. font-size: 24rpx;
  114. color: #818181;
  115. margin-top: 10rpx;
  116. }
  117. }
  118. }
  119. }
  120. &-introduction {
  121. margin-top: 32rpx;
  122. .title {
  123. font-size: 26rpx;
  124. color: #9D9D9D;
  125. margin-bottom: 14rpx;
  126. text {
  127. color: #424242;
  128. font-size: 36rpx;
  129. margin-right: 22rpx;
  130. }
  131. }
  132. .content {
  133. font-size: 24rpx;
  134. color: #545454;
  135. line-height: 50rpx;
  136. }
  137. }
  138. }
  139. }
  140. }