detail.wxss 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .swiper {
  12. width: 100%;
  13. background-color: #ffffff;
  14. }
  15. .swiper .swiper-box {
  16. width: 100%;
  17. height: 500rpx;
  18. overflow: hidden;
  19. position: relative;
  20. z-index: 1;
  21. }
  22. .swiper .swiper-box swiper {
  23. width: 100%;
  24. height: 500rpx;
  25. }
  26. .swiper .swiper-box swiper swiper-item image {
  27. width: 100%;
  28. height: 500rpx;
  29. }
  30. .swiper .swiper-box .indicator {
  31. position: absolute;
  32. bottom: 20rpx;
  33. left: 20rpx;
  34. background-color: rgba(255, 255, 255, 0.4);
  35. width: 150rpx;
  36. height: 5rpx;
  37. border-radius: 3rpx;
  38. overflow: hidden;
  39. display: -webkit-box;
  40. display: -webkit-flex;
  41. display: flex;
  42. }
  43. .swiper .swiper-box .indicator .dots {
  44. width: 0rpx;
  45. background-color: white;
  46. -webkit-transition: all 0.3s ease-out;
  47. transition: all 0.3s ease-out;
  48. }
  49. .swiper .swiper-box .indicator .dots.on {
  50. width: 33.33333%;
  51. }
  52. .swiper-name {
  53. width: 100%;
  54. padding: 35rpx 30rpx;
  55. }
  56. .swiper-name .item-box {
  57. position: relative;
  58. }
  59. .swiper-name .item-box .item-name {
  60. position: relative;
  61. top: 0rpx;
  62. font-size: 36rpx;
  63. width: 90%;
  64. }
  65. .swiper-name .item-box .item-collection {
  66. text-align: center;
  67. position: absolute;
  68. top: 0rpx;
  69. right: 0;
  70. }
  71. .swiper-name .item-box .item-collection image {
  72. width: 55rpx;
  73. height: 50rpx;
  74. }
  75. .swiper-name .item-box .item-collection .collection {
  76. font-size: 26rpx;
  77. color: #999999;
  78. }
  79. .swiper-name .tip-box {
  80. padding: 15rpx 0rpx;
  81. }
  82. .swiper-name .tip-box text {
  83. background-color: #e3e9fe;
  84. color: #6786fb;
  85. font-size: 22rpx;
  86. padding: 8rpx 15rpx;
  87. border-radius: 10rpx;
  88. margin-right: 15rpx;
  89. }
  90. .swiper-name .price-box {
  91. font-size: 26rpx;
  92. color: #999999;
  93. }
  94. .swiper-name .price-box .price {
  95. color: #e73932;
  96. }
  97. .swiper-name .price-box .price text {
  98. font-size: 35rpx;
  99. font-weight: bold;
  100. }
  101. .top {
  102. width: 100%;
  103. height: 500rpx;
  104. }
  105. .top .course-video {
  106. width: 100%;
  107. height: 100%;
  108. }
  109. .navbar {
  110. display: -webkit-box;
  111. display: -webkit-flex;
  112. display: flex;
  113. height: 40px;
  114. padding: 0 5px;
  115. background: #fff;
  116. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  117. position: relative;
  118. z-index: 10;
  119. }
  120. .navbar .nav-item {
  121. -webkit-box-flex: 1;
  122. -webkit-flex: 1;
  123. flex: 1;
  124. display: -webkit-box;
  125. display: -webkit-flex;
  126. display: flex;
  127. -webkit-box-pack: center;
  128. -webkit-justify-content: center;
  129. justify-content: center;
  130. -webkit-box-align: center;
  131. -webkit-align-items: center;
  132. align-items: center;
  133. height: 100%;
  134. font-size: 30rpx;
  135. color: #303133;
  136. position: relative;
  137. }
  138. .navbar .nav-item.current {
  139. color: #6786FB;
  140. }
  141. .course-details {
  142. padding: 20rpx;
  143. }
  144. .course-details .details-content {
  145. background: #ffffff;
  146. border-radius: 10rpx;
  147. text-align: center;
  148. }
  149. .course-details .details-content .details-title {
  150. padding: 30rpx 0;
  151. border-bottom: 1px solid #f0f0f0;
  152. font-size: 28rpx;
  153. font-weight: bold;
  154. color: #333333;
  155. }
  156. .course-details .details-content .details-num {
  157. display: -webkit-box;
  158. display: -webkit-flex;
  159. display: flex;
  160. padding: 30rpx 0;
  161. font-size: 26rpx;
  162. font-weight: bold;
  163. color: #666666;
  164. }
  165. .course-details .details-content .details-num text {
  166. -webkit-box-flex: 1;
  167. -webkit-flex: 1;
  168. flex: 1;
  169. }
  170. .course-details .details-content .details-num .interval {
  171. width: 2px;
  172. background-color: #eeeeee;
  173. }
  174. .course-details .details-intro {
  175. padding: 40rpx 20rpx;
  176. background: #ffffff;
  177. border-radius: 10rpx;
  178. margin-top: 20rpx;
  179. margin-bottom: 120rpx;
  180. }
  181. .course-details .details-intro .intro-title {
  182. width: 100%;
  183. font-size: 36rpx;
  184. font-weight: bold;
  185. color: #6786FB;
  186. text-align: center;
  187. margin-bottom: 40rpx;
  188. }
  189. .course-details .details-intro .intro-text {
  190. color: #5dcafa;
  191. font-size: 28rpx;
  192. line-height: 40rpx;
  193. }
  194. .course-details .details-intro .intro-img {
  195. width: 100%;
  196. height: 400rpx;
  197. margin-top: 40rpx;
  198. }
  199. .course-details .details-intro .intro-img .img {
  200. width: 100%;
  201. height: 100%;
  202. }
  203. .course-catalogue {
  204. padding: 20rpx;
  205. }
  206. .course-catalogue .no-data {
  207. width: 100%;
  208. text-align: center;
  209. font-size: 26rpx;
  210. }
  211. .course-catalogue .course-menu {
  212. background: #ffffff;
  213. border-bottom: 1px solid #f0f0f0;
  214. padding: 20rpx;
  215. display: -webkit-box;
  216. display: -webkit-flex;
  217. display: flex;
  218. -webkit-box-align: center;
  219. -webkit-align-items: center;
  220. align-items: center;
  221. font-size: 24rpx;
  222. }
  223. .course-catalogue .course-menu image {
  224. width: 250rpx;
  225. height: 135rpx;
  226. border-radius: 15rpx;
  227. }
  228. .course-catalogue .course-menu .menu-info {
  229. padding-left: 25rpx;
  230. color: #333333;
  231. }
  232. .course-catalogue .course-menu .menu-info .title {
  233. font-size: 28rpx;
  234. }
  235. .course-catalogue .course-menu .menu-info .tip {
  236. margin: 15rpx 0rpx;
  237. }
  238. .course-catalogue .course-menu .menu-info .tip text {
  239. padding: 5rpx 10rpx;
  240. background-color: rgba(43, 121, 245, 0.18);
  241. color: #6786fb;
  242. }
  243. .course-catalogue .course-menu .menu-info .price {
  244. color: #e73932;
  245. }
  246. .course-catalogue .course-menu .menu-info .red {
  247. color: #6786fb !important;
  248. }
  249. .course-catalogue .course-menu .menu-info .free {
  250. background: #fdf8ea;
  251. border-radius: 19px;
  252. color: #f1ae27;
  253. padding: 2rpx 10rpx;
  254. }
  255. .foot-box {
  256. position: fixed;
  257. bottom: 0;
  258. width: 100%;
  259. background-color: #ffffff;
  260. padding: 0rpx 35rpx;
  261. font-size: 22rpx;
  262. color: #333333;
  263. }
  264. .foot-box .home {
  265. width: 15%;
  266. text-align: center;
  267. }
  268. .foot-box .home image {
  269. width: 35rpx;
  270. height: 38rpx;
  271. }
  272. .foot-box .Topay {
  273. width: 80%;
  274. background-color: #6786fb;
  275. text-align: center;
  276. color: #ffffff;
  277. padding: 25rpx 0rpx;
  278. margin: 15rpx 0rpx;
  279. border-radius: 45rpx;
  280. }
  281. .pay-type-list {
  282. margin-top: 20rpx;
  283. background-color: #fff;
  284. padding-left: 40rpx;
  285. }
  286. .pay-type-list .type-item {
  287. height: 120rpx;
  288. padding: 20rpx 0;
  289. display: -webkit-box;
  290. display: -webkit-flex;
  291. display: flex;
  292. -webkit-box-pack: justify;
  293. -webkit-justify-content: space-between;
  294. justify-content: space-between;
  295. -webkit-box-align: center;
  296. -webkit-align-items: center;
  297. align-items: center;
  298. padding-right: 60rpx;
  299. font-size: 30rpx;
  300. position: relative;
  301. }
  302. .pay-type-list .icon {
  303. width: 100rpx;
  304. font-size: 52rpx;
  305. }
  306. .pay-type-list .img {
  307. color: #fe8e2e;
  308. width: 50rpx;
  309. height: 50rpx;
  310. }
  311. .pay-type-list .img image {
  312. width: 100%;
  313. height: 100%;
  314. }
  315. .pay-type-list .tit {
  316. font-size: 32rpx;
  317. color: #303133;
  318. margin-bottom: 4rpx;
  319. }
  320. .pay-type-list .con {
  321. -webkit-box-flex: 1;
  322. -webkit-flex: 1;
  323. flex: 1;
  324. display: -webkit-box;
  325. display: -webkit-flex;
  326. display: flex;
  327. -webkit-box-orient: vertical;
  328. -webkit-box-direction: normal;
  329. -webkit-flex-direction: column;
  330. flex-direction: column;
  331. padding-left: 25rpx;
  332. font-size: 24rpx;
  333. color: #909399;
  334. }
  335. .payment {
  336. background-color: #ffffff;
  337. border-radius: 15rpx 15rpx 0rpx 0rpx;
  338. z-index: 999;
  339. }
  340. .payment .first {
  341. border-bottom: 2rpx solid #ebeef5;
  342. padding: 38rpx 25rpx;
  343. }
  344. .payment .first .word {
  345. font-size: 28rpx;
  346. font-weight: bold;
  347. color: #303133;
  348. }
  349. .payment .first image {
  350. width: 25rpx;
  351. height: 25rpx;
  352. }
  353. .payment .one {
  354. height: 20rpx;
  355. background-color: #f6f6f6;
  356. }
  357. .payment .Third .two1 {
  358. width: 55%;
  359. background-color: #ffffff;
  360. padding-left: 25rpx;
  361. }
  362. .payment .Third .two1 .two1-1 {
  363. font-size: 28rpx;
  364. font-weight: 400;
  365. color: #303133;
  366. }
  367. .payment .Third .two1 .two1-2 {
  368. font-size: 24rpx;
  369. font-weight: bold;
  370. color: #FC4141;
  371. }
  372. .payment .Third .two1 .size {
  373. font-size: 36rpx;
  374. }
  375. .payment .Third .two2 {
  376. width: 45%;
  377. background: #FC4141;
  378. color: #ffffff;
  379. font-size: 32rpx;
  380. font-weight: 550;
  381. text-align: center;
  382. padding: 30rpx 0rpx;
  383. }
  384. .payment .Third .clickbg {
  385. background-color: #999999 !important;
  386. }