skillsPackage.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* 技能包 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. }
  7. .package {
  8. padding-bottom: 150rpx;
  9. &-bg {
  10. &-1 {
  11. width: 100%;
  12. height: 140rpx;
  13. background-color: #3D5D4C;
  14. }
  15. &-2 {
  16. width: 120%;
  17. height: 180rpx;
  18. background-color: #3D5D4C;
  19. border-radius: 60%;
  20. margin-top: -88rpx;
  21. margin-left: -10%;
  22. }
  23. }
  24. &-content {
  25. padding: 0 30rpx;
  26. margin-top: -200rpx;
  27. &-title {
  28. padding: 40rpx 36rpx;
  29. background-color: #fff;
  30. border-radius: 10rpx;
  31. display: flex;
  32. .left {
  33. height: 220rpx;
  34. margin-right: 22rpx;
  35. position: relative;
  36. border: solid 1px #E0E0E0;
  37. border-radius: 10rpx;
  38. padding: 2rpx;
  39. &-weekly {
  40. width: 204rpx;
  41. height: 44rpx;
  42. line-height: 44rpx;
  43. text-align: center;
  44. background-color: #DDB100;
  45. font-size: 22rpx;
  46. font-weight: 700;
  47. color: #fff;
  48. border-bottom-left-radius: 10rpx;
  49. border-bottom-right-radius: 10rpx;
  50. position: absolute;
  51. top: 196rpx;
  52. }
  53. }
  54. .right {
  55. width: calc(100% - 226rpx);
  56. font-size: 28rpx;
  57. color: #545454;
  58. line-height: 40rpx;
  59. .name {
  60. display: flex;
  61. align-items: center;
  62. color: #3D5D4C;
  63. font-size: 36rpx;
  64. font-weight: 500;
  65. margin-bottom: 10rpx;
  66. .tip {
  67. text-align: center;
  68. padding: 0 10rpx;
  69. background: linear-gradient(153deg, #F89E42 0%, #FF7833 100%);
  70. border-radius: 20rpx;
  71. font-size: 20rpx;
  72. color: #fff;
  73. margin-right: 20rpx;
  74. }
  75. .professional {
  76. // width: 70%;
  77. // overflow: hidden;
  78. // text-overflow: ellipsis;
  79. // white-space: nowrap;
  80. }
  81. }
  82. .class {
  83. text {
  84. color: #555555;
  85. font-size: 24rpx;
  86. margin-right: 24rpx;
  87. }
  88. }
  89. .hardly {
  90. margin: 6rpx 0;
  91. display: flex;
  92. justify-content: space-between;
  93. }
  94. .status {
  95. background-color: #709078;
  96. width: 120rpx;
  97. height: 50rpx;
  98. line-height: 50rpx;
  99. text-align: center;
  100. border-radius: 40rpx;
  101. font-size: 24rpx;
  102. color: #fff;
  103. margin-top: 20rpx;
  104. }
  105. }
  106. }
  107. &-details {
  108. padding: 40rpx 32rpx;
  109. background-color: #fff;
  110. border-radius: 10rpx;
  111. margin-top: 20rpx;
  112. &-classes {
  113. border-bottom: solid 1px #CDCDCD;
  114. padding-bottom: 20rpx;
  115. margin-bottom: 32rpx;
  116. .title {
  117. display: flex;
  118. justify-content: space-between;
  119. align-items: center;
  120. font-size: 28rpx;
  121. color: #9D9D9D;
  122. padding-bottom: 34rpx;
  123. text {
  124. color: #424242;
  125. font-size: 38rpx;
  126. margin-right: 22rpx;
  127. }
  128. }
  129. .list {
  130. .swiper-item {
  131. width: 50%!important;
  132. height: 100%;
  133. .classes-name {
  134. color: #2E2E2E;
  135. font-size: 26rpx;
  136. margin: 10rpx 0;
  137. }
  138. .img {
  139. border: solid 1px #E0E0E0;
  140. border-radius: 10rpx;
  141. padding: 2rpx;
  142. }
  143. .classes-subtitle {
  144. font-size: 24rpx;
  145. color: #818181;
  146. }
  147. }
  148. }
  149. }
  150. &-skill {
  151. .title {
  152. display: flex;
  153. justify-content: space-between;
  154. align-items: center;
  155. font-size: 26rpx;
  156. color: #9D9D9D;
  157. padding-bottom: 34rpx;
  158. text {
  159. color: #424242;
  160. font-size: 38rpx;
  161. margin-right: 22rpx;
  162. }
  163. }
  164. }
  165. }
  166. }
  167. &-btn {
  168. width: 100%;
  169. height: 96rpx;
  170. line-height: 96rpx;
  171. text-align: center;
  172. font-size: 36rpx;
  173. color: #fff;
  174. background-color: #709078;
  175. position: fixed;
  176. bottom: 0;
  177. left: 0;
  178. }
  179. }