Course.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. .page-course{
  2. background:#000;
  3. background-repeat: no-repeat;
  4. width:100vw;
  5. min-height: 100vh;
  6. display:flex;
  7. flex-direction: column;
  8. padding-bottom:50px;
  9. .section0{
  10. display: flex;
  11. margin-left: 10px;
  12. margin-right: 10px;
  13. .image{
  14. width:100%;
  15. height:340px;
  16. overflow: hidden;
  17. border-radius: 7px;
  18. .img{
  19. width:100%;
  20. height:100%;
  21. }
  22. }
  23. }
  24. .section1{
  25. margin-left:10px;
  26. margin-right: 10px;
  27. display: flex;
  28. flex-direction:column;
  29. margin-top:10px;
  30. height:60px;
  31. .title{
  32. height:30px;
  33. width:100%;
  34. display: flex;
  35. flex-direction:row;
  36. color:#FFF;
  37. .text{
  38. width:50%;
  39. .name{
  40. color:$teacher_main_color;
  41. font-size:14px;
  42. font-weight: bold;
  43. height:30px;
  44. line-height: 30px;
  45. }
  46. .tags{
  47. display:flex;
  48. flex-direction: row;
  49. .tag{
  50. border:1px solid $teacher_main_color;
  51. color:$teacher_main_color;
  52. font-size:12px;
  53. border-radius: 5px;
  54. padding:2px 5px;
  55. margin-right:10px;
  56. }
  57. }
  58. }
  59. .sign{
  60. color:#FFF;
  61. width:50%;
  62. display: flex;
  63. flex-direction: row;
  64. justify-content: flex-end;
  65. >view{
  66. .img{
  67. margin-right: 10px;
  68. .icon{
  69. width:14px;
  70. height:14px;
  71. }
  72. }
  73. }
  74. }
  75. }
  76. }
  77. .section2{
  78. margin-top:10px;
  79. }
  80. .section3{
  81. margin-top:10px;
  82. }
  83. .section4{
  84. margin-top:10px;
  85. }
  86. .section5{
  87. margin-top:10px;
  88. .cate{
  89. display:flex;
  90. flex-direction: row;
  91. margin-left: 10px;
  92. border-radius: 5px;
  93. margin-right: 10px;
  94. height:30px;
  95. background:#1a1a1a;
  96. .name{
  97. width:33%;
  98. height:100%;
  99. color:#FFF;
  100. display:flex;
  101. justify-content: center;
  102. align-items: center;
  103. font-size:12px;
  104. }
  105. }
  106. .intro{
  107. background:#1a1a1a;
  108. border-radius: 10px;
  109. margin-top:10px;
  110. margin-left:10px;
  111. margin-right: 10px;
  112. .title{
  113. height:30px;
  114. line-height: 30px;
  115. border-bottom: 1px solid #333;
  116. margin:10px;
  117. color:$teacher-main-color;
  118. font-size:14px;
  119. font-weight: bold;
  120. }
  121. .text{
  122. font-size:12px;
  123. color:#CCC;
  124. padding:10px;
  125. }
  126. }
  127. }
  128. .footer{
  129. position: fixed;
  130. bottom:0px;
  131. left:0px;
  132. width:100%;
  133. height:50px;
  134. background:#FFF;
  135. display:flex;
  136. flex-direction: row;
  137. border-top:1px solid #000;
  138. .left{
  139. width:50%;
  140. height:100%;
  141. .price{
  142. display:flex;
  143. flex-direction: row;
  144. width:100%;
  145. height:100%;
  146. justify-content: flex-start;
  147. align-items: center;
  148. padding-left:20px;
  149. color:#eb5c20;
  150. .sign{
  151. margin-top:5px;
  152. font-size:12px;
  153. }
  154. .text{
  155. font-size:24px;
  156. }
  157. }
  158. }
  159. .right{
  160. width:50%;
  161. display:flex;
  162. flex-direction: row;
  163. height:100%;
  164. justify-content: flex-start;
  165. align-items: center;
  166. .share{
  167. display:flex;
  168. width:50%;
  169. background:#000;
  170. color:#FFF;
  171. height:100%;
  172. justify-content: center;
  173. align-items: center;
  174. font-size:12px;
  175. }
  176. .yy{
  177. background:#eb5c20;
  178. height:100%;
  179. width:50%;
  180. justify-content: center;
  181. align-items: center;
  182. font-size:12px;
  183. display:flex;
  184. color:#FFF;
  185. }
  186. }
  187. }
  188. .yy-form{
  189. width:100%;
  190. background:#FFF;
  191. padding:10px;
  192. background:#000;
  193. height:500px;
  194. .yy-title{
  195. width:100%;
  196. height:30px;
  197. line-height:30px;
  198. .txt{
  199. font-size:12px;
  200. color:#FFF;
  201. margin-left:15px;
  202. }
  203. }
  204. .yy-list{
  205. height:95%;
  206. overflow: hidden;
  207. overflow-y: auto;
  208. }
  209. }
  210. }