skillsTrainingDetails.scss 3.4 KB

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