skillsTrainingDetails.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /* 我的技能培训详情 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. }
  7. .details {
  8. padding-bottom: 100rpx;
  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: 224rpx;
  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: 176rpx;
  52. }
  53. }
  54. .right {
  55. font-size: 28rpx;
  56. color: #3E3E3E;
  57. line-height: 40rpx;
  58. .name {
  59. display: flex;
  60. align-items: center;
  61. color: #3D5D4C;
  62. font-size: 36rpx;
  63. font-weight: 500;
  64. margin-bottom: 10rpx;
  65. .tip {
  66. text-align: center;
  67. padding: 0 10rpx;
  68. background: linear-gradient(153deg, #F89E42 0%, #FF7833 100%);
  69. border-radius: 20rpx;
  70. font-size: 20rpx;
  71. color: #fff;
  72. margin-right: 20rpx;
  73. }
  74. .professional {
  75. // width: 70%;
  76. // overflow: hidden;
  77. // text-overflow: ellipsis;
  78. // white-space: nowrap;
  79. }
  80. }
  81. .class {
  82. text {
  83. color: #555555;
  84. font-size: 24rpx;
  85. margin-right: 24rpx;
  86. }
  87. }
  88. .hardly {
  89. margin: 10rpx 0;
  90. }
  91. }
  92. }
  93. &-course {
  94. background-color: #fff;
  95. border-radius: 10rpx;
  96. padding: 40rpx 34rpx;
  97. margin-top: 20rpx;
  98. &-btn {
  99. display: flex;
  100. justify-content: space-between;
  101. .item {
  102. width: calc(50% - 8rpx);
  103. height: 82rpx;
  104. display: flex;
  105. justify-content: center;
  106. align-items: center;
  107. border: solid 1px #D3D3D3;
  108. border-radius: 10rpx;
  109. font-size: 28rpx;
  110. color: #555555;
  111. .name {
  112. margin: 0 34rpx 0 20rpx;
  113. }
  114. }
  115. }
  116. &-progress {
  117. margin-top: 42rpx;
  118. .title {
  119. color: #424242;
  120. font-size: 36rpx;
  121. }
  122. }
  123. &-tab {
  124. display: flex;
  125. margin-top: 44rpx;
  126. margin-bottom: 18rpx;
  127. view {
  128. color: #797979;
  129. font-size: 30rpx;
  130. margin-right: 56rpx;
  131. }
  132. .active {
  133. color: #000;
  134. font-weight: 600;
  135. }
  136. }
  137. &-online {
  138. .online-list {
  139. &-item {
  140. display: flex;
  141. border-bottom: solid 1px #DBDBDB;
  142. padding: 32rpx 0;
  143. .left {
  144. margin-right: 26rpx;
  145. }
  146. .right {
  147. color: #0B0B0B;
  148. font-size: 30rpx;
  149. view {
  150. &:last-child {
  151. font-size: 24rpx;
  152. color: #9A9A9A;
  153. margin-top: 10rpx;
  154. }
  155. }
  156. }
  157. }
  158. }
  159. }
  160. &-offline {
  161. .notice {
  162. font-size: 24rpx;
  163. color: #545454;
  164. }
  165. .offline-list {
  166. &-item {
  167. display: flex;
  168. border-bottom: solid 1px #DBDBDB;
  169. padding: 32rpx 0;
  170. .left {
  171. margin-right: 26rpx;
  172. }
  173. .right {
  174. font-size: 24rpx;
  175. color: #9A9A9A;
  176. view {
  177. line-height: 40rpx;
  178. &:first-child {
  179. color: #0B0B0B;
  180. font-size: 30rpx;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  187. }
  188. }
  189. }
  190. .no-data {
  191. padding: 60rpx 0;
  192. }