details.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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 .top {
  145. width: 100%;
  146. height: 500rpx;
  147. }
  148. .course-details .top .course-video {
  149. width: 100%;
  150. height: 100%;
  151. }
  152. .course-details .details-intro {
  153. padding: 40rpx 20rpx;
  154. background: #ffffff;
  155. border-radius: 10rpx;
  156. margin-top: 20rpx;
  157. margin-bottom: 120rpx;
  158. }
  159. .course-details .details-intro .intro-title {
  160. width: 100%;
  161. font-size: 28rpx;
  162. font-weight: bold;
  163. color: #6786FB;
  164. text-align: center;
  165. margin-bottom: 40rpx;
  166. }
  167. .course-details .details-intro .intro-text {
  168. color: #5dcafa;
  169. font-size: 28rpx;
  170. line-height: 40rpx;
  171. }
  172. .course-details .details-intro .intro-img {
  173. width: 100%;
  174. height: 400rpx;
  175. margin-top: 40rpx;
  176. }
  177. .course-details .details-intro .intro-img .img {
  178. width: 100%;
  179. height: 100%;
  180. }
  181. .course-catalogue {
  182. padding: 20rpx;
  183. }
  184. .course-catalogue .no-data {
  185. width: 100%;
  186. text-align: center;
  187. font-size: 26rpx;
  188. }
  189. .course-catalogue .course-menu {
  190. background: #ffffff;
  191. border-bottom: 1px solid #f0f0f0;
  192. padding: 20rpx;
  193. display: -webkit-box;
  194. display: -webkit-flex;
  195. display: flex;
  196. -webkit-box-align: center;
  197. -webkit-align-items: center;
  198. align-items: center;
  199. font-size: 24rpx;
  200. }
  201. .course-catalogue .course-menu image {
  202. width: 250rpx;
  203. height: 135rpx;
  204. border-radius: 15rpx;
  205. }
  206. .course-catalogue .course-menu .menu-info {
  207. padding-left: 25rpx;
  208. color: #333333;
  209. }
  210. .course-catalogue .course-menu .menu-info .title {
  211. font-size: 28rpx;
  212. }
  213. .course-catalogue .course-menu .menu-info .tip {
  214. margin: 15rpx 0rpx;
  215. }
  216. .course-catalogue .course-menu .menu-info .tip text {
  217. padding: 5rpx 10rpx;
  218. background-color: rgba(43, 121, 245, 0.18);
  219. color: #6786fb;
  220. }
  221. .course-catalogue .course-menu .menu-info .price {
  222. color: #e73932;
  223. }
  224. .course-catalogue .course-menu .menu-info .red {
  225. color: #6786fb !important;
  226. }
  227. .course-catalogue .course-menu .menu-info .free {
  228. background: #fdf8ea;
  229. border-radius: 19px;
  230. color: #f1ae27;
  231. padding: 2rpx 10rpx;
  232. }
  233. .foot-box {
  234. position: fixed;
  235. bottom: 0;
  236. width: 100%;
  237. background-color: #ffffff;
  238. padding: 0rpx 35rpx;
  239. font-size: 22rpx;
  240. color: #333333;
  241. z-index: 999;
  242. }
  243. .foot-box .home {
  244. width: 15%;
  245. text-align: center;
  246. }
  247. .foot-box .home image {
  248. width: 35rpx;
  249. height: 38rpx;
  250. }
  251. .foot-box .Topay {
  252. width: 80%;
  253. background-color: #6786fb;
  254. text-align: center;
  255. color: #ffffff;
  256. padding: 25rpx 0rpx;
  257. margin: 15rpx 0rpx;
  258. border-radius: 45rpx;
  259. }
  260. .pay-type-list {
  261. margin-top: 20rpx;
  262. background-color: #fff;
  263. padding-left: 40rpx;
  264. }
  265. .pay-type-list .type-item {
  266. height: 120rpx;
  267. padding: 20rpx 0;
  268. display: -webkit-box;
  269. display: -webkit-flex;
  270. display: flex;
  271. -webkit-box-pack: justify;
  272. -webkit-justify-content: space-between;
  273. justify-content: space-between;
  274. -webkit-box-align: center;
  275. -webkit-align-items: center;
  276. align-items: center;
  277. padding-right: 60rpx;
  278. font-size: 30rpx;
  279. position: relative;
  280. }
  281. .pay-type-list .icon {
  282. width: 100rpx;
  283. font-size: 52rpx;
  284. }
  285. .pay-type-list .img {
  286. color: #fe8e2e;
  287. width: 50rpx;
  288. height: 50rpx;
  289. }
  290. .pay-type-list .img image {
  291. width: 100%;
  292. height: 100%;
  293. }
  294. .pay-type-list .tit {
  295. font-size: 32rpx;
  296. color: #303133;
  297. margin-bottom: 4rpx;
  298. }
  299. .pay-type-list .con {
  300. -webkit-box-flex: 1;
  301. -webkit-flex: 1;
  302. flex: 1;
  303. display: -webkit-box;
  304. display: -webkit-flex;
  305. display: flex;
  306. -webkit-box-orient: vertical;
  307. -webkit-box-direction: normal;
  308. -webkit-flex-direction: column;
  309. flex-direction: column;
  310. padding-left: 25rpx;
  311. font-size: 24rpx;
  312. color: #909399;
  313. }
  314. .payment {
  315. background-color: #ffffff;
  316. border-radius: 15rpx 15rpx 0rpx 0rpx;
  317. z-index: 999;
  318. }
  319. .payment .first {
  320. border-bottom: 2rpx solid #ebeef5;
  321. padding: 38rpx 25rpx;
  322. }
  323. .payment .first .word {
  324. font-size: 28rpx;
  325. font-weight: bold;
  326. color: #303133;
  327. }
  328. .payment .first image {
  329. width: 25rpx;
  330. height: 25rpx;
  331. }
  332. .payment .one {
  333. height: 20rpx;
  334. background-color: #f6f6f6;
  335. }
  336. .payment .Third .two1 {
  337. width: 55%;
  338. background-color: #ffffff;
  339. padding-left: 25rpx;
  340. }
  341. .payment .Third .two1 .two1-1 {
  342. font-size: 28rpx;
  343. font-weight: 400;
  344. color: #303133;
  345. }
  346. .payment .Third .two1 .two1-2 {
  347. font-size: 24rpx;
  348. font-weight: bold;
  349. color: #FC4141;
  350. }
  351. .payment .Third .two1 .size {
  352. font-size: 36rpx;
  353. }
  354. .payment .Third .two2 {
  355. width: 45%;
  356. background: #FC4141;
  357. color: #ffffff;
  358. font-size: 32rpx;
  359. font-weight: 550;
  360. text-align: center;
  361. padding: 30rpx 0rpx;
  362. }
  363. .payment .Third .clickbg {
  364. background-color: #999999 !important;
  365. }