pages.scss 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  1. /***** 这里放页面样式 *****/
  2. // 课程完成
  3. .course-finish-dialog{
  4. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  5. background-image: url("@/static/images/course/video-finish-bj.png");
  6. margin-bottom: 20%;position: relative;
  7. .text-score{display: none;}
  8. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  9. .course-btn-box{position: absolute;bottom: 200rpx;display: flex;left: 50%;transform: translateX(-50%);}
  10. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  11. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  12. @media (max-height: 600px) {margin-bottom: 40%;}
  13. }
  14. // 绑定手机号弹窗
  15. .my-tel-dialog{
  16. background-color: rgba(0,0,0, 0.76);
  17. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  18. justify-content: center;align-items: center;z-index: 3;
  19. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  20. background-image: url("@/static/images/common/close-icon.png");}
  21. .my-tel-content{
  22. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 42rpx;
  23. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  24. }
  25. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 32rpx;}
  26. .tel-row{border-bottom: 1px dashed #70cbf4;}
  27. .yzm-row{padding-top: 36rpx;}
  28. /***** 输入手机号页面*****/
  29. .my-input-box{
  30. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  31. display: flex;align-items: center;border: 1rpx solid #ddd;border-radius: 16rpx;
  32. @include ezy-no-repeat-cover;
  33. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #666;flex: 1;}
  34. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  35. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  36. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  37. }
  38. .get-yzm-btn{color: #3b73bf;margin:46rpx 0 32rpx;font-size: 32rpx;}
  39. .get-yzm-disabled{color: #666;}
  40. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  41. .my-bind-btn{
  42. width:540rpx;height: 92rpx;text-align: center;line-height: 92rpx;color: #fff;margin-top: 36rpx;
  43. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  44. }
  45. }
  46. // 兑换码
  47. .duihuan-dialog{
  48. .tip-content-box{padding: 42rpx 42rpx;}
  49. .duihuan-input{
  50. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  51. display: flex;align-items: center;margin: 0 auto;color: #666;
  52. border: 1rpx solid #e3e3e3;border-radius: 16rpx;font-size: 32rpx;
  53. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  54. }
  55. }
  56. .yxsm-popup-box{
  57. width: 684rpx;height: 1308rpx;box-sizing: border-box;padding: 120rpx 56rpx 60rpx;overflow-y: auto;
  58. background-image: url("@/static/images/login/agree-content-bj.png");@include ezy-no-repeat-cover;
  59. position: relative;text-align: justify;display: flex;flex-direction: column;position: relative;
  60. .yxsm-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;position: absolute;
  61. top: 64rpx;right: 44rpx;background-image: url("@/static/images/common/close-icon.png");}
  62. .yxsm-item-box{overflow-y: auto;line-height: 1.8;font-size: 28rpx;}
  63. .yxsm-popup-title{font-size: 36rpx;color: #333;text-align: center;margin-bottom: 32rpx;}
  64. .item-title{color: #359ae2;}
  65. .item-content{color: #555;}
  66. @media (max-height: 480px){
  67. padding: 120rpx 56rpx 120rpx;
  68. .yxsm-close-btn{top: 100rpx;}
  69. }
  70. }
  71. /***************** 新数学 *********************/
  72. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  73. .ezy-login-page {
  74. width:100%;height:100vh; background-color: #f9f9fb;position: relative;
  75. box-sizing: border-box;padding-top: 240rpx;
  76. .login-img{
  77. width: 272rpx;height: 260rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  78. background-image: url("@/static/images/login/login-logo.png");display: block;
  79. }
  80. .login-body-box{
  81. display: flex;flex-direction: column;align-items: center;margin: 160rpx auto 0;
  82. }
  83. /***** 输入手机号页面*****/
  84. .phone-input-box{
  85. width: 662rpx;height: 122rpx;
  86. display: flex;align-items: center;@include ezy-no-repeat-cover;
  87. background-image: url("@/static/images/login/login-tel-bj.png");
  88. .phone-prefix {
  89. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
  90. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  91. }
  92. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
  93. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #fff;flex: 1;overflow: hidden;}
  94. .uni-input-placeholder {font-size: 34rpx;color: #ffffffd9;
  95. }
  96. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  97. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  98. }
  99. .agreement-checkbox-box {
  100. display: flex;justify-content: center;margin-top: 32rpx;line-height: 1;margin-left: -42rpx;
  101. uni-checkbox-group{font-size: 0;}
  102. .agreement-checkbox-input{width: 80rpx;height: 80rpx;border: 0;font-size: 0;}
  103. .uni-checkbox-input{
  104. width: 80rpx;height: 80rpx;border: 0;background-color: unset;position: relative;
  105. svg {
  106. width: 19rpx;height: 19rpx;top: 32rpx;left: 48rpx;display: block;
  107. background-color: #379af8;border-radius: 999rpx;transform: unset;position: absolute;
  108. path{display: none;}
  109. }
  110. }
  111. .uni-checkbox-input::before{
  112. content: '';width: 31rpx;height: 31rpx;border: 1rpx solid #379af8;border-radius: 999rpx;
  113. box-sizing: border-box;position: absolute;top: 26rpx;left: 42rpx;
  114. }
  115. .agreement-text-box {
  116. color: #333;font-size: 28rpx;flex-direction: row;display: flex;align-items: center;
  117. .agreement-text{color: #379af8;display: contents;}
  118. }
  119. }
  120. .bottom-btn-box{
  121. position: absolute;bottom:8%;left: 50%;transform: translateX(-50%);
  122. .bottom-tip{color: #999;font-size: 28rpx;text-align: center;margin-bottom: 60rpx;}
  123. .btn-box{
  124. display: flex;
  125. .wx-btn,.yk-btn,.apple-btn{
  126. width: 170rpx;display: flex;align-items: center;flex-direction: column;
  127. color: #666;font-size: 26rpx;
  128. icon{width: 50rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 12rpx;}
  129. }
  130. .wx-btn icon{background-image: url("@/static/images/login/login-wx-btn.jpg");}
  131. .yk-btn icon{background-image: url("@/static/images/login/login-yk-btn.jpg");}
  132. .apple-btn icon{background-image: url("@/static/images/login/login-apple-btn.jpg");}
  133. }
  134. }
  135. /***** 输入验证码页面*****/
  136. .yzm-nav-bar-icon{z-index: 99;}
  137. .yzm-show{width: 662rpx;font-size: 30rpx;color: #666;margin: 0 0 24rpx 12rpx;}
  138. .yzm-btn{margin-top: 42rpx;}
  139. .cxfs-btn{font-size: 30rpx;color: #3257b9;display: inline-block;margin: 60rpx auto 160rpx;}
  140. .cxfs-btn-disabled{color: #777;}
  141. .login-text{
  142. font-size: 30rpx;color: #888;margin: 16rpx auto 0 56rpx;
  143. text{color: #64a8e3;}
  144. }
  145. /* 针对小屏幕设备 */
  146. @media (max-height: 750px) {
  147. padding-top: 200rpx;
  148. .login-body-box{margin: 100rpx auto 0; }
  149. .login-btn{margin-top: 56rpx;}
  150. // 验证码
  151. .yzm-btn{margin-top: 36rpx;}
  152. }
  153. @media (max-height: 650px) {
  154. padding-top: 180rpx;
  155. .login-body-box{margin: 60rpx auto 0; }
  156. .login-btn{margin-top: 32rpx;}
  157. .bottom-btn-box{
  158. bottom: 5%;
  159. .bottom-tip{margin-bottom: 32rpx;}
  160. }
  161. // 验证码
  162. .cxfs-btn{margin: 32rpx auto 52rpx;}
  163. }
  164. @media (max-height: 550px) {
  165. min-height: 1100rpx;
  166. }
  167. }
  168. // 快捷登录
  169. .go-login-page{
  170. /* .mt24{margin-top: 24rpx;}
  171. .yzm-text-btn{color: #035493;font-size: 34rpx;margin-right: 24rpx;} */
  172. .yzm-row{
  173. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  174. .phone-input-box{flex:1;width: auto;border-radius: 28rpx;}
  175. .yzm-text-btn{
  176. width:250rpx;height: 120rpx;line-height: 120rpx;text-align: center;@include ezy-no-repeat-cover;
  177. background-image: url("@/static/images/common/tip-confirm-btn.png");border-radius: 28rpx;
  178. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  179. }
  180. }
  181. /* .tel-input{
  182. width: 662rpx;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  183. display: flex;align-items: center;
  184. .phone-prefix {
  185. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #acacae;
  186. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  187. }
  188. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ccc;}
  189. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  190. .uni-input-placeholder {font-size: 34rpx;color: #acacae;
  191. }
  192. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  193. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  194. }
  195. .yzm-row{
  196. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  197. .tel-input{width: auto;}
  198. .yzm-btn{
  199. width:270rpx;height: 100rpx;line-height: 100rpx;text-align: center;@include ezy-no-repeat-cover;
  200. background-image: url("@/static/images/common/tip-confirm-btn.png");
  201. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;margin-top: 0;
  202. }
  203. } */
  204. }
  205. // 绑定手机号
  206. .bind-tel-page{
  207. width: 100%;height: 100vh;display: flex;flex-direction: column;
  208. .bind-tel-body{width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;}
  209. .tel-input{
  210. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  211. display: flex;align-items: center;
  212. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  213. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  214. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  215. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  216. }
  217. .yzm-row{
  218. width: 100%;margin: 36rpx 0 0;display: flex;align-items: center;
  219. .yzm-btn{
  220. width:270rpx;height: 100rpx;line-height: 100rpx;text-align: center;@include ezy-no-repeat-cover;
  221. background-image: url("@/static/images/common/tip-confirm-btn.png");
  222. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  223. }
  224. }
  225. }
  226. // 用户协议弹窗
  227. .agree-sections-dialog{
  228. width: 700rpx;height: 490rpx;padding: 80rpx 0 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  229. background-image: url("@/static/images/login/agree-dialog-bg.png");@include ezy-no-repeat-cover;
  230. .agree-title{color:#111;font-size: 40rpx;}
  231. .agree-tip{color:#666;font-size: 30rpx;margin-top: 46rpx;}
  232. .confirm-btn{width: 588rpx;height: 92rpx;@include ezy-no-repeat-cover;margin: 42rpx auto 0;
  233. background-image: url("@/static/images/login/agree-dialog-btn.png");}
  234. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 32rpx 0 0;display: inline-block;}
  235. }
  236. // 用户协议详情弹窗
  237. .agree-content-dialog{
  238. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  239. .agree-content-box{
  240. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  241. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  242. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  243. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  244. }
  245. .agree-title{font-size: 42rpx;text-align: center;margin-bottom: 42rpx;flex-shrink: 0;}
  246. .agree-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;
  247. position: absolute;top: 64rpx;right: 44rpx;
  248. background-image: url("@/static/images/common/close-icon.png");}
  249. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;word-break: break-all;}
  250. }
  251. // 选课
  252. .ezy-xuanke-page{
  253. width: 100%;height: 100vh;display: flex;flex-direction: column;padding-bottom: 100rpx;overflow: hidden;
  254. .sx-card-list{overflow-y: auto;flex: 1;padding: 24rpx 0 0;}
  255. .sx-card-box{
  256. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  257. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  258. .card-head-box{
  259. display: flex;
  260. .head-img{width: 200rpx;height: 280rpx;flex-shrink: 0;}
  261. .head-right-box{
  262. margin-left: 24rpx;
  263. .head-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  264. .head-content{font-size: 26rpx;color: #666;text-align: justify;margin-bottom: 24rpx;}
  265. }
  266. }
  267. .card-body-box{
  268. border-top: 3rpx dashed #eee;margin-top: 42rpx;
  269. .body-title{color: #7db0f4;margin: 24rpx 0 16rpx;font-size: 30rpx;}
  270. .dj-item-row{
  271. display: flex;flex-wrap: wrap;
  272. }
  273. .dj-item{
  274. width: 202rpx;height: 77rpx;line-height: 77rpx;color: #fff;
  275. text-align: center;@include ezy-no-repeat-cover;margin: 12rpx 16rpx 12rpx 0;
  276. background-image: url("@/static/images/xuanke/dj-item.png");
  277. }
  278. .dj-item.active{background-image: url("@/static/images/xuanke/dj-item-a.png");}
  279. .dj-item:nth-child(3n) {
  280. margin-right: 0;
  281. }
  282. }
  283. }
  284. }
  285. // 选版本
  286. .ezy-xbb-page{
  287. width: 100%;height: 100vh;display: flex;flex-direction: column;
  288. .xbb-list-box{
  289. display: flex;flex-direction: column;
  290. background-color: #fff;flex: 1;overflow-y: auto;padding-bottom: 32rpx;
  291. .xbb-item-box{
  292. width: 731rpx;height:273rpx;@include ezy-no-repeat-cover;
  293. background-image: url("@/static/images/xuanke/xbb-item-bj.png");
  294. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  295. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  296. }
  297. .item-img-box{width: 180rpx;height: 220rpx;border-radius: 12rpx;margin-right: 32rpx;flex-shrink: 0;}
  298. .item-content-box{
  299. line-height: 1.5;
  300. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 16rpx;}
  301. .item-bb{color: #444;font-size: 30rpx;}
  302. }
  303. .item-play-btn{
  304. width: 100rpx;height: 100rpx;z-index: 2;
  305. display: flex;align-items: center;justify-content: center;
  306. position: absolute;bottom: 12rpx;right: 12rpx;
  307. }
  308. .item-play-btn::before{
  309. content: '';width: 46rpx;height: 48rpx;display: block;
  310. background-image: url("@/static/images/xuanke/xbb-item-jt.png");@include ezy-no-repeat-cover;
  311. }
  312. }
  313. }
  314. // 学习大纲
  315. .xuexi-dagang-page{
  316. width: 100%;height: calc(95vh - var(--status-bar-height));border-radius: 16rpx 16rpx 0 0;z-index: 10;position: relative;
  317. background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  318. display: flex;flex-direction: column;
  319. box-sizing: border-box;padding: 36rpx 0 120rpx;
  320. position: fixed;bottom: 0;
  321. .xuexi-dagang-body{overflow-y: auto;padding: 24rpx 0 0;}
  322. .dagang-title{
  323. width: 80%;line-height: 1.5;margin: 24rpx auto 0;
  324. text-align: center;font-size: 36rpx;color: #000;position: relative;
  325. icon{
  326. width: 100rpx;height: 100rpx;display: flex;align-items: center;justify-content: center;
  327. position: absolute;right: -13%;top: -60rpx;
  328. }
  329. icon::after{
  330. content: '';width: 52rpx;height: 52rpx;@include ezy-no-repeat-cover;
  331. background-image: url("@/static/images/common/close-icon.png");
  332. }
  333. }
  334. // 您将学会
  335. .dagang-xh-box{
  336. width: 690rpx;margin: 64rpx auto 0;
  337. .xh-title{font-size: 32rpx;font-weight: bold;text-align: left;color: #333;margin-left: 6rpx;}
  338. .xh-content-box{
  339. width: 100%;border-radius: 16rpx;margin-top: 32rpx;
  340. box-sizing: border-box;padding: 24rpx;
  341. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  342. }
  343. .text-row{
  344. display: flex;font-size: 32rpx;color: #333;margin: 12rpx 0;line-height: 1.6;
  345. icon{
  346. width: 13rpx;height: 13rpx;border-radius: 50%;flex-shrink: 0;
  347. background-color: #2c7bf4;margin: 22rpx 12rpx 0 0;}
  348. }
  349. }
  350. //学习大纲
  351. .dagang-content-box{
  352. background-color: #e3f7fe;margin-top: 200rpx;position: relative;
  353. .dagang-content-title{
  354. font-size: 32rpx;font-weight: bold;text-align: left;color: #333;
  355. margin-left: 36rpx;position: relative;z-index: 1;
  356. }
  357. .dagang-item-list{padding: 56rpx 0 32rpx;}
  358. .dagang-content-item{
  359. width: 690rpx;display: flex;align-items: center;border-radius: 12rpx;color: #4b4b4b;;
  360. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;background-color: #fff;
  361. line-height: 1.5;font-size: 32rpx;
  362. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  363. .content-title{margin-left: 32rpx;position: relative;}
  364. .content-title:nth-child(1)::before{
  365. width: 13rpx;height: 13rpx;border-radius: 50%;display: block;
  366. background-color: #2c7bf4;content:'';
  367. position: absolute;left: -24rpx;top: 22rpx;
  368. }
  369. }
  370. .dagang-content-item:last-child{margin-bottom: 0;}
  371. }
  372. .dagang-content-box::before{
  373. content: '';width: 750rpx;height: 193rpx;display: block;@include ezy-no-repeat-cover;
  374. background-image: url("@/static/images/xuexi/dagang-img.png");
  375. position: absolute;top: -138rpx;left: 0;z-index: 1;
  376. }
  377. }
  378. // 学习
  379. .ezy-xuexi-page{
  380. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  381. .xuexi-page-body{padding:0 0 100rpx;overflow-y: auto;border-radius: 0;position: relative;}
  382. .xxjl-card-box-padding{padding-top: 64rpx;}
  383. .xx-scroll-view{position: relative;}
  384. .item-dy-box{
  385. display: flex;align-items: center;justify-content: center;
  386. color: #fff;margin-bottom: 24rpx;
  387. .dy-left-box{
  388. width: 174rpx;height: 127rpx;@include ezy-no-repeat-cover;font-size: 64rpx;
  389. display: flex;align-items: center;box-sizing: border-box;padding:0 24rpx;
  390. background-image: url("@/static/images/xuexi/xx-ml-left.png");
  391. }
  392. .dy-left-box::after{
  393. content: '';width: 32rpx;height: 34rpx;@include ezy-no-repeat-cover;margin-left: auto;
  394. background-image: url("@/static/images/xuexi/xx-ml-jt.png");display: block;
  395. }
  396. .dy-right-box{
  397. width: 518rpx;height: 127rpx;@include ezy-no-repeat-cover;
  398. display: flex;align-items: flex-start;flex-direction: column;justify-content: center;
  399. box-sizing: border-box;padding:0 24rpx;font-size: 28rpx;
  400. background-image: url("@/static/images/xuexi/xx-ml-right.png");
  401. .right-content{width: 100%;height: 90rpx;overflow: hidden;}
  402. .dy-name{font-size: 34rpx;margin-bottom: 6rpx;}
  403. }
  404. }
  405. .item-fixed{
  406. width: 100%;padding: 24rpx 0;transition: opacity 0.2s ease-in-out;
  407. position:sticky;position:-webkit-sticky;margin-bottom: 0;
  408. top: 0;z-index: 10;background-color: #fff;border-radius: 16rpx 16rpx 0 0;
  409. }
  410. // 学习记录
  411. .xxjl-card-box{
  412. width: 692rpx;margin: 0 auto 24rpx;padding: 72rpx 24rpx 24rpx 24rpx;box-sizing: border-box;
  413. background-color: #5795f6;border-radius: 16rpx;position: relative;
  414. .card-body-box{
  415. display: flex;
  416. img{width: 190rpx;height: 242rpx;border-radius: 16rpx;border: 1rpx solid #a8c3e9;}
  417. .body-right{
  418. color: #c8e4f8;margin-left: 24rpx;font-size: 30rpx;
  419. view{margin: 8rpx 0;}
  420. .right-name{font-size: 34rpx;color: #fff;}
  421. }
  422. }
  423. .card-progress-box{
  424. display: flex;align-items: center;
  425. .xx-progress-box{flex: 1;margin-right: 64rpx;color: #fff;font-size: 28rpx;}
  426. .xx-progress{border-radius: 40rpx;overflow: hidden;margin-top: 10rpx;}
  427. .jxxx-btn{
  428. width: 177rpx;height: 89rpx;@include ezy-no-repeat-cover;margin-right: 24rpx;
  429. background-image: url("@/static/images/xuexi/jx-xx-btn.png");
  430. }
  431. }
  432. }
  433. .xxjl-card-box::before{
  434. content: '学习记录';width: 289rpx;height: 77rpx;line-height: 77rpx;@include ezy-no-repeat-cover;
  435. background-image: url("@/static/images/xuexi/xx-jl-bj.png");display: block;
  436. position: absolute;top: -28rpx;text-align: center;color: #fff;font-size: 34rpx;
  437. }
  438. // 学习进度
  439. .xx-jd-box{
  440. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  441. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  442. .xx-progress-btn-box{
  443. width: 100%;
  444. display: flex;align-items: center;justify-content: space-between;
  445. }
  446. .xx-progress-box{
  447. flex: 1;font-size: 32rpx;color: #333;margin-right: 42rpx;
  448. .xx-progress{border-radius: 20rpx;overflow: hidden;margin-top: 16rpx;}
  449. }
  450. .jxxx-btn{
  451. width: 217rpx;height: 85rpx;display: block;@include ezy-no-repeat-cover;
  452. background-image: url("@/static/images/xuexi/jxxx-icon.png");flex-shrink: 0;
  453. }
  454. //学习进度按钮
  455. .jd-item-box{
  456. display: flex;border-top: 1rpx dashed #97dbf8;margin-top: 32rpx;padding-top: 32rpx;
  457. icon{width:54rpx;height: 54rpx;@include ezy-no-repeat-cover;
  458. position: relative;margin-right: 52rpx;}
  459. icon::before{
  460. content: '';width: 1rpx;height: 70rpx;background-color: #fff;display: block;
  461. position: absolute;right: -24rpx;top: -10rpx;
  462. }
  463. .dydg-icon{background-image: url("@/static/images/xuexi/dy-dg-icon.png");}
  464. .dyml-icon{background-image: url("@/static/images/xuexi/kc-ml-icon.png");}
  465. .jd-item-btn{
  466. background-color: #ddf7ff;border-radius: 16rpx;flex: 1;text-align: center;
  467. box-sizing: border-box;padding: 24rpx;display: flex;align-items: center;}
  468. .jd-item-btn:first-child{margin-right: 24rpx;}
  469. }
  470. }
  471. // 学习目录
  472. .xx-item-list{
  473. padding-bottom: 24rpx;
  474. .xx-item-title{text-align: center;margin: 32rpx 0;font-size: 32rpx;color: #444;}
  475. .xx-more-btn{
  476. width: 630rpx;height: 89rpx;@include ezy-no-repeat-cover;margin: 0 auto 32rpx;
  477. background-image: url("@/static/images/xuexi/more-btn.png");
  478. }
  479. /* 动画类 */
  480. /* .item-dy-box.item-active {
  481. animation: scalePulse 1s ease-in-out;
  482. .right-content{
  483. animation: opacityPulse 1s ease-in-out;
  484. }
  485. } */
  486. /* 定义放大动画 */
  487. @keyframes scalePulse {
  488. 0% {
  489. transform: scale(1);
  490. }
  491. 50% {
  492. transform: scale(1.05);
  493. }
  494. 100% {
  495. transform: scale(1);
  496. }
  497. }
  498. /* 定义显隐动画 */
  499. @keyframes opacityPulse {
  500. 0% {
  501. opacity: 1;
  502. }
  503. 90% {
  504. opacity: 0.2;
  505. }
  506. 100% {
  507. opacity: 1;
  508. }
  509. }
  510. .xx-item-box{
  511. width: 691rpx;height: 172rpx;
  512. display: flex;align-items: center;justify-content: space-between;color: #4b4b4b;;
  513. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;border-radius: 12rpx;
  514. line-height: 1.5;font-size: 32rpx;position: relative;@include ezy-no-repeat-cover;
  515. background-image: url("@/static/images/xuexi/xx-ml-bj.png");
  516. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  517. .xx-item-status{
  518. width: 89rpx;height: 87rpx;@include ezy-no-repeat-cover;
  519. position: absolute;top:2rpx;left: 0;
  520. }
  521. .completed-status{background-image: url("@/static/images/xuexi/xw-status.png");}
  522. .xx-text-box{flex: 1;}
  523. .xx-item-btn,.xx-item-lock-btn{width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;}
  524. .xx-item-btn{background-image: url("@/static/images/xuexi/xx-ml-play-icon.png");}
  525. .xx-item-lock-btn{background-image: url("@/static/images/xuexi/xx-ml-lock-icon.png");}
  526. }
  527. .xx-disabled-item-box{
  528. background-image: url("@/static/images/xuexi/xx-ml-disabled-bj.png");
  529. }
  530. }
  531. .xx-next-btn{
  532. width: 655rpx;height: 92rpx;line-height: 92rpx;margin: 32rpx auto;
  533. font-size: 32rpx;color: #fff;text-align: center;@include ezy-no-repeat-cover;
  534. background-image: url("@/static/images/login/login-btn-bj.png");
  535. }
  536. .xx-xw-text{text-align: center;font-size: 32rpx;color: #666;margin: 32rpx auto;}
  537. // 回到顶部
  538. .go-top-btn{
  539. width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;
  540. background-image: url("@/static/images/xuexi/go-top-btn.png");
  541. position: fixed;z-index: 9;bottom: 300rpx;right:10rpx;
  542. }
  543. }
  544. // 单元目录
  545. .xuexi-dyml-page{
  546. width: 100%;height: 92vh;border-radius: 16rpx 16rpx 0 0;
  547. background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  548. display: flex;flex-direction: column;
  549. box-sizing: border-box;padding: 36rpx 0 0;
  550. .xuexi-dyml-body{overflow-y: auto;padding: 24rpx 0 0;}
  551. .dyml-title{
  552. width: 80%;line-height: 1.5;margin: 24rpx auto 0;
  553. text-align: center;font-size: 36rpx;color: #000;position: relative;
  554. icon{
  555. width: 100rpx;height: 100rpx;display: flex;align-items: center;justify-content: center;
  556. position: absolute;right: -13%;top: -60rpx;
  557. }
  558. icon::after{
  559. content: '';width: 52rpx;height: 52rpx;@include ezy-no-repeat-cover;
  560. background-image: url("@/static/images/common/close-icon.png");
  561. }
  562. }
  563. .dyml-item-box{
  564. width: 670rpx;height: 97rpx;line-height: 97rpx;font-size: 32rpx;color: #333;
  565. @include ezy-no-repeat-cover;margin: 24rpx auto;position: relative;
  566. display: flex;
  567. .dy-num{width: 180rpx;padding-left: 24rpx;box-sizing: border-box;flex-shrink: 0;}
  568. .dy-title{margin: 0 84rpx 0 16rpx;@include single-line-ellipsis;}
  569. icon{width: 100rpx;height: 97rpx;display: flex;align-items: center;justify-content: center;
  570. position: absolute;right: 0;z-index: 3;top: 0;}
  571. icon::after{
  572. content: '';width: 37rpx;height: 39rpx;@include ezy-no-repeat-cover;
  573. background-image: url("@/static/images/xuexi/dyml-item-btn.png");
  574. }
  575. }
  576. .dyml-item-box:nth-child(odd){background-image: url("@/static/images/xuexi/dy-item-bj1.png");}
  577. .dyml-item-box:nth-child(even){background-image: url("@/static/images/xuexi/dy-item-bj2.png");}
  578. }
  579. // 答案解析
  580. .ezy-dajx-page{
  581. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  582. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  583. @include ezy-no-repeat-cover(top);
  584. .shiti-frame-box{overflow-y: auto;}
  585. .dajx-video-box{
  586. width: 95%;
  587. }
  588. .dajx-content-box{
  589. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  590. .slfx-title,.spjj-title{
  591. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  592. }
  593. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  594. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  595. .slfx-content{
  596. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  597. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  598. display: block;@include ezy-rich-text;
  599. }
  600. }
  601. }
  602. // 看视频
  603. .ezy-ksp-page{
  604. width: 100%;height: 100vh;display: flex;flex-direction: column;
  605. .ksp-tab-box{
  606. flex-shrink:0;display: flex;justify-content: space-evenly;border-bottom: 1rpx solid #b7defd;
  607. .tab-item{color: #9a9a9a;font-size: 34rpx;padding: 16rpx 24rpx;}
  608. .active{color: #5895f7;border-bottom: 4rpx solid #1684fc;}
  609. }
  610. .ksp-scroll-view{overflow-y: auto;}
  611. .ksp-page-body{padding: 24rpx 0 0;}
  612. .ksp-video-box{
  613. width: 95%;height: 423rpx;padding: 8px;box-sizing: border-box;
  614. border-radius: 16rpx;margin:32rpx auto;flex-shrink: 0;
  615. .prism-big-play-btn{
  616. width: 100rpx;height: 100rpx;opacity: 0.8;
  617. background-image: url("@/static/images/xuexi/play-btn.png");
  618. }
  619. }
  620. .ksp-item-list{
  621. width: 95%;margin: 12rpx auto 24rpx;border-radius: 16rpx;position: relative;
  622. background-color: #5894f6;padding: 20rpx 0;box-sizing: border-box;
  623. box-shadow: 0 0rpx 12rpx rgba(100, 159, 241, 0.4);
  624. }
  625. .ksp-item-list::before{
  626. content: '';width: 100%;height: 97rpx;@include ezy-no-repeat-cover;
  627. background-image: url("@/static/images/xuexi/ksp-item-top-bj.png");
  628. position: absolute;left: 0;right: 0;top: 0;z-index: 1;
  629. }
  630. .list-head{
  631. width: 95%;display: flex;align-items: center;justify-content: space-between;
  632. position: relative;z-index: 2;padding:0 0 24rpx;margin: 0 auto;
  633. .list-title{color: #fff;font-size: 36rpx;}
  634. .list-btn{
  635. width: 210rpx;height: 72rpx;@include ezy-no-repeat-cover;
  636. background-image: url("@/static/images/xuexi/ksp-video-play.png");
  637. }
  638. }
  639. .list-body{
  640. width: 95%;position: relative;z-index: 2;border-radius: 16rpx;
  641. padding: 16rpx;box-sizing: border-box;margin: 0 auto;
  642. color: #444;font-size: 32rpx;background-color: #fff;
  643. img{max-width: 100%;margin: 10rpx auto 0;display: block;}
  644. }
  645. .ksp-item-box{
  646. width: 670rpx;height: 150rpx;
  647. display: flex;align-items: center;position: relative;
  648. @include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/ksp-item-bj.png");
  649. .ksp-icon{
  650. width: 104rpx;height: 104rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  651. @include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/xx-ksp-icon.png");
  652. }
  653. .ksp-title{color: #444;font-size: 32rpx;margin-right: auto;
  654. margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  655. }
  656. }
  657. // 考试页
  658. .ezy-exam-page{
  659. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  660. display: flex;flex-direction: column;
  661. .exam-body{
  662. z-index: 1;position: relative;flex: 1;display: flex;flex-direction: column;
  663. }
  664. .xx-jd-box{
  665. width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  666. border-radius: 16rpx;box-sizing: border-box;padding:36rpx 36rpx 42rpx;margin: 20rpx auto 0;
  667. .xx-row{display: flex;justify-content: space-between;align-items: center;margin-bottom: 24rpx;}
  668. .text-row{color: #5d5e61;}
  669. .dq-jd-text{color: #5693f5;font-size: 52rpx;}
  670. .dq-jd-line{margin: 0 6rpx;}
  671. }
  672. .exam-progress-box{border-radius: 20rpx;overflow: hidden;}
  673. .ezy-exam-swiper{
  674. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  675. uni-swiper-item{overflow-y: auto;}
  676. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  677. }
  678. .exam-submit-btn{
  679. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  680. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  681. }
  682. .tip-mask-box{
  683. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  684. }
  685. .swiper-tip-box{
  686. font-size: 30rpx;color: #5989e2;justify-content: center;margin-top: 16rpx;
  687. display: flex;flex-direction: row;align-items: center;
  688. }
  689. .swiper-tip-box::before,.swiper-tip-box::after{
  690. content: '';width: 12rpx;height: 26rpx;display: block;
  691. background-image: url("@/static/images/common/h-jt-icon.png");@include ezy-no-repeat-cover;
  692. }
  693. .swiper-tip-box::before{transform: rotate(180deg);margin-right: 32rpx;}
  694. .swiper-tip-box::after{margin-left: 32rpx;}
  695. .shiti-jj-btn{
  696. width: 630rpx;height: 88rpx;@include ezy-no-repeat-cover;margin: 10rpx auto;
  697. background-image: url("@/static/images/exam/shiti-jj-btn.png");
  698. }
  699. }
  700. // 单元测试
  701. .dycs-dialog{
  702. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  703. .dycs-body{overflow-y: auto;}
  704. .dycs-img{
  705. width: 430rpx;height: 350rpx;margin: 92rpx auto 32rpx;flex-shrink: 0;
  706. background-image: url("@/static/images/exam/shiti-dialog-img.png");@include ezy-no-repeat-cover;
  707. }
  708. .dycs-tip{
  709. text-align: center;color: #333;font-size: 35rpx;
  710. }
  711. .dycs-fenshu-box{
  712. width: 560rpx;margin: 72rpx auto;padding: 42rpx 32rpx;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  713. display: flex;justify-content: center;align-items: center;border-radius: 12rpx;font-size: 32rpx;
  714. .fenshu-item-box{width: 49%;text-align: center;font-size: 32rpx;color: #333;}
  715. .item-number{font-size: 56rpx;margin-bottom: 10rpx;}
  716. .red-number{color: #f60000;}
  717. .item-line{width: 1rpx;height: 120rpx;background: #f3f5f9;}
  718. }
  719. .dycs-btn-box{
  720. display: flex;justify-content: center;margin-top: 64rpx;
  721. .cxcs-btn,.ckda-btn{
  722. width: 275rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  723. text-align: center;color: #fff;font-size: 32rpx;margin: 0 10rpx;
  724. }
  725. .cxcs-btn{background-image: url("@/static/images/exam/shiti-btn-blue-bj.png");}
  726. .ckda-btn{background-image: url("@/static/images/exam/shiti-btn-orange-bj.png");}
  727. }
  728. @media (max-height: 700px) {
  729. .dycs-img{margin: 64rpx auto 16rpx;}
  730. .dycs-fenshu-box{margin: 46rpx auto;}
  731. .dycs-btn-box{margin-top: 36rpx;}
  732. }
  733. }
  734. // 成绩页
  735. .ezy-result-page{
  736. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  737. display: flex;flex-direction: column;
  738. .result-exam-swiper{
  739. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  740. uni-swiper-item{overflow-y: auto;}
  741. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  742. }
  743. .answer-content-box{
  744. margin-top: 24rpx;
  745. .answer-title{
  746. width: 208rpx;height: 91rpx;line-height: 91rpx;
  747. font-size: 32rpx;text-align: center;margin-left: 10rpx;color: #fff;
  748. background-image: url("@/static/images/exam/shiti-anser-title.png");@include ezy-no-repeat-cover;
  749. }
  750. .answer-text-title{font-size: 32rpx;color: #f6aa1d;margin: 24rpx 0;}
  751. .answer-content-border{
  752. width: 96%;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  753. border-radius: 12rpx;font-size: 32rpx;margin: 42rpx auto 56rpx;}
  754. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #499141;
  755. border-radius: 4px;box-sizing: border-box;padding: 24rpx;min-height: 80rpx;
  756. .tiankong-answer-title{color: #333;margin-bottom: 10rpx;}
  757. .answer-index-box{
  758. font-size: 24rpx;border: 1rpx solid #499141;border-radius: 24rpx;margin-right: 10rpx;
  759. line-height: 1;text-align: center;padding: 2rpx 7rpx;display: inline-block;
  760. flex-shrink: 0;min-width: 16rpx;
  761. }
  762. .tiankong-answer-row{
  763. word-break: break-all;margin-bottom: 10rpx;margin: 24rpx 0;
  764. display: flex;align-items: center;line-height: 1;
  765. }
  766. .tiankong-answer-row:last-child{margin-bottom: 0;}
  767. }
  768. .answer-btn-box{display: flex;height: 135rpx;}
  769. .answer-item-left,.answer-item-right{
  770. width: 100%;flex: 1;align-items: center;justify-content: center;
  771. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  772. .answer-item-title{font-size: 30rpx;color: #333;margin-bottom: 10rpx;}
  773. .answer-item-error{font-size: 30rpx;color: #ef1417;min-height: 36rpx;}
  774. .answer-item-correct{font-size: 30rpx;color: #15ab2e;min-height: 36rpx;}
  775. }
  776. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  777. .answer-item-right{border-radius: 0 4px 4px 0;}
  778. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  779. }
  780. .answer-stjx-box{
  781. width: 96%;margin: 0 auto;
  782. .answer-rich-text{
  783. font-size: 32rpx;color: #333;line-height: 1.8;
  784. }
  785. }
  786. .answer-video-box{
  787. position: relative;margin-bottom:24rpx;
  788. img{width: 100%;}
  789. }
  790. .answer-video-box::before{
  791. content: '';display: block;position: absolute;
  792. width: 90rpx;height: 90rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/video-play-btn.png");
  793. top: 52%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;
  794. }
  795. }
  796. // 我的页面
  797. .ezy-my-page{
  798. width: 100%;height: 100vh;position: relative;overflow: auto;background: #f9f9fb;
  799. .my-page-box{position: relative;z-index: 1;margin: 0;}
  800. .my-head-box{
  801. width: 100%;padding: 0 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  802. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  803. .head-content-box{font-size: 30rpx;}
  804. }
  805. .my-banner-img{
  806. width: 730rpx;height: 413rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  807. background-image: url("@/static/images/my/my-banner.png");border-radius: 16rpx;
  808. }
  809. // list
  810. .my-list-box{
  811. width:710rpx;margin: 24rpx auto;display: flex;flex-wrap: wrap;padding: 42rpx 6rpx 0;
  812. background-color: #fff;border-radius: 16rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  813. .list-item{color: #444;width: 25%;text-align: center;font-size: 28rpx;margin-bottom: 36rpx;}
  814. .list-icon{width: 64rpx;height: 64rpx;display: block;
  815. margin: 0 auto 12rpx;@include ezy-no-repeat-cover;}
  816. .yysz-icon{background-image: url("@/static/images/my/list-icon1.png");}
  817. .sc-icon{background-image: url("@/static/images/my/sc-icon.png");}
  818. .dd-icon{background-image: url("@/static/images/my/dd-icon.png");}
  819. .dhm-icon{background-image: url("@/static/images/my/dhm-icon.png");}
  820. .dhm-icon{background-image: url("@/static/images/my/dhm-icon.png");}
  821. .bdsjh-icon{background-image: url("@/static/images/my/sjbd-icon.png");}
  822. }
  823. .kefu-dialog{
  824. .not-confirm-btn{display: none;}
  825. .confirm-btn{margin: 24rpx auto;}
  826. }
  827. }
  828. // 应用设置
  829. .ezy-yysz-page{
  830. width: 100%;height: 100vh;min-height: 1400rpx;background: #f9f9fb;position: relative;overflow: auto;
  831. display: flex;flex-direction: column;
  832. .yysz-page-box{position: relative;z-index: 1;}
  833. .yysz-row-box{width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  834. border-radius: 16rpx;margin: 16rpx auto 0;color: #333;font-size: 30rpx;}
  835. .yysz-item{display: flex;align-items: center;justify-content: space-between;
  836. padding: 32rpx 32rpx 32rpx 0;position: relative;margin: 0 32rpx 0 32rpx;}
  837. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  838. .img-item{padding: 32rpx 32rpx 0 0;}
  839. .item-text{color: #888;}
  840. .yysz-item::after{
  841. content: '';width: 14rpx;height: 24rpx;@include ezy-no-repeat-cover;
  842. background-image: url("@/static/images/my/list-jt.png");
  843. position: absolute;right: 0;
  844. }
  845. .yysz-img-box{width: 36px;height: 36px;border-radius: 50%;@include ezy-no-repeat-cover}
  846. }
  847. // 关于我们
  848. .ezy-about-page{
  849. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  850. .about-body-border{
  851. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  852. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  853. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  854. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  855. }
  856. .about-body-box{
  857. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  858. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  859. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  860. }
  861. .content-top-box{
  862. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  863. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #ccc;
  864. .about-icon-box{
  865. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  866. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  867. }
  868. .about-name{
  869. font-size: 30rpx;margin: 20rpx 0 42rpx;
  870. }
  871. .about-text{margin: 16rpx 0;}
  872. }
  873. .content-box{
  874. font-size: 30rpx;margin-top: 32rpx;line-height: 2;color: #333;
  875. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  876. }
  877. @media (max-height: 600px) {
  878. .about-body-border{margin: 12rpx auto 150rpx;}
  879. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  880. .content-top-box{padding-bottom: 24rpx;}
  881. .content-box{margin-top: 20rpx;}
  882. }
  883. }
  884. // 资料
  885. .ezy-ziliao-page{
  886. width: 100%;height: 100vh;display: flex;flex-direction: column;
  887. padding-bottom: 100rpx;box-sizing: border-box;
  888. .zl-card-list{width: 100%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;}
  889. .jstx-card-box{
  890. border-radius: 16rpx;margin: 0 24rpx 32rpx;font-size: 0;
  891. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  892. .jstx-card-img{width: 100%;height: 400rpx;}
  893. .jstx-card-title{
  894. padding: 32rpx 24rpx 42rpx;text-align: center;
  895. font-size: 32rpx;color: #333;@include single-line-ellipsis;
  896. }
  897. }
  898. }
  899. // 资料---数学--计算特训题库下载
  900. .ezy-jstx-ziliao-page{
  901. width: 100%;height: 100vh;display: flex;flex-direction: column;
  902. .jstx-body{
  903. margin-top: 48rpx;position: relative;overflow: unset;padding: 0 24rpx;box-sizing: border-box;
  904. height: calc(100vh - 160rpx - var(--status-bar-height));
  905. .jstx-body-title{
  906. width: 406rpx;height: 77rpx;display: block;overflow-x:auto;
  907. position: absolute;left: 50%;transform: translateX(-50%);top: -28rpx;z-index: 3;
  908. @include ezy-no-repeat-cover;background-image: url("@/static/images/ziliao/select-dj-img.png");
  909. }
  910. .jstx-tab-box{
  911. width: 100%;height: 64rpx;white-space: nowrap;padding: 0;
  912. text-align:center;margin: 90rpx 0 0;overflow-x: auto;
  913. .tab-item{
  914. height: 64rpx;line-height: 64rpx;margin: 0 18rpx;padding: 0 20rpx;
  915. color: #333;font-size: 36rpx;display: inline-block;text-align:center;}
  916. .active{color: #0d7ffc;position: relative;}
  917. .active::after{
  918. content: '';width: 100%;height: 4rpx;background-color: #0d7ffc;
  919. position: absolute;bottom: 0;left: 0;border-radius: 4rpx;
  920. }
  921. }
  922. .jstx-card-list{
  923. padding: 24rpx 0 0;overflow-y: auto;flex: 1;
  924. .ziliao-card-box{
  925. display: flex;align-items: center;justify-content: space-between;box-sizing: border-box;
  926. background-color: #f3f3f3;padding: 20rpx;margin-bottom: 24rpx;border-radius: 16rpx;
  927. .card-img{width: 150rpx;height: 150rpx;flex-shrink: 0;margin-right: 24rpx;}
  928. .card-content-box{
  929. flex: 1;line-height: 1.6;
  930. .ziliao-name{font-size: 32rpx;color: #333;@include single-line-ellipsis;margin-bottom: 10rpx;}
  931. .banben-name{font-size: 28rpx;color: #0d7ffc;@include single-line-ellipsis;}
  932. }
  933. .card-icon{
  934. width: 58rpx;height: 62rpx;flex-shrink: 0;
  935. @include ezy-no-repeat-cover;background-image: url("@/static/images/ziliao/jstx-pdf.png");
  936. }
  937. }
  938. }
  939. }
  940. }
  941. // 资料下载弹窗
  942. .sxtk-sc-dialog{
  943. .tip-title{color: #343434;font-size: 38rpx;margin-bottom: 24rpx;}
  944. .tip-content-box{
  945. width: 625rpx;height: 587rpx;padding: 42rpx 48rpx;
  946. background-image: url("@/static/images/my/tk-dialog-bj.png");
  947. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  948. }
  949. .tip-content{
  950. display: flex;align-items: center;
  951. min-height: 260rpx;text-align: justify;border-bottom: 1px dashed #70cbf4;
  952. margin-bottom: 30rpx;color: #666;font-size: 32rpx;padding-bottom: 32rpx;
  953. border-bottom: 1px dashed #70cbf4;line-height: 1.8;}
  954. }
  955. // 订单
  956. .ezy-order-page{
  957. width: 100%;height: 100vh;display: flex;flex-direction: column;
  958. .order-scroll-view{overflow-y: auto;}
  959. .order-body{padding: 0;}
  960. .order-card-box{
  961. border-radius: 16rpx;margin: 32rpx 24rpx 0;padding: 24rpx;
  962. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  963. .card-head-box{
  964. display: flex;align-items: center;justify-content: space-between;line-height: 1.6;
  965. .head-name{font-size: 30rpx;color: #333;font-weight: bold;}
  966. .head-status{font-size: 28rpx;color: #666;}
  967. }
  968. .card-body-box{
  969. display: flex;margin-top: 16rpx;
  970. .order-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;}
  971. .body-right-box{
  972. margin-left: 24rpx;flex: 1;
  973. .body-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  974. .taocan-text{font-size: 26rpx;color: #666;margin-bottom: 24rpx; @include multi-line-ellipsis(2);}
  975. .tip-text{font-size: 26rpx;color: #16a245;margin-bottom: 24rpx;}
  976. .money-text{font-size: 42rpx;color: #333;text-align: right;font-weight: normal;}
  977. }
  978. }
  979. }
  980. }
  981. // 产品商城
  982. .ezy-shop-page{
  983. width: 100%;height: 100vh;display: flex;flex-direction: column;
  984. .shop-card-list{overflow-y: auto;flex: 1;padding: 24rpx 0 0;}
  985. .shop-card-box{
  986. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  987. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);display: flex;
  988. .shop-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;}
  989. .card-right-box{
  990. margin-left: 24rpx;display: flex;flex-direction: column;justify-content: space-between;
  991. .card-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 24rpx;margin-top: 6rpx;}
  992. .card-content{font-size: 28rpx;color: #666;text-align: justify;margin-bottom: 24rpx;@include multi-line-ellipsis(3);line-height: 1.6;}
  993. .card-price{font-size: 34rpx;color: #ff0202;font-weight: bolder;}
  994. }
  995. }
  996. }
  997. // 产品商城详情
  998. .ezy-shop-info-page{
  999. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1000. .shop-info-body{
  1001. flex: 1;position: relative;z-index: 2;background-color: #fff;
  1002. display: flex;flex-direction: column;overflow: hidden;
  1003. .img-content-box{
  1004. flex: 1;overflow-y: auto;
  1005. img{max-width: 100%; margin: 0 auto;display: block;}
  1006. }
  1007. .fx-btn-row{
  1008. flex-shrink: 0;display: flex;justify-content: space-between;padding: 24rpx;
  1009. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.6);box-sizing: border-box;background-color: #f9f9f9;
  1010. .fx-btn{
  1011. width:200rpx;
  1012. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1013. }
  1014. .fx-icon{
  1015. width: 43rpx;height: 38rpx;margin-bottom: 6rpx;
  1016. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/fx-icon.png");
  1017. }
  1018. .bmxx-btn{
  1019. width: 481rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1020. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/bmxx-btn.png");
  1021. }
  1022. }
  1023. }
  1024. }
  1025. // 确认订单
  1026. .ezy-qrdd-page{
  1027. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1028. .qrdd-body-box{
  1029. flex: 1;position: relative;z-index: 2;
  1030. display: flex;flex-direction: column;
  1031. overflow-y: auto;
  1032. }
  1033. .dd-item-box{
  1034. width: 731rpx;height:356rpx;@include ezy-no-repeat-cover;
  1035. background-image: url("@/static/images/shop/order-bj.png");
  1036. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  1037. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  1038. .item-img-box{width: 210rpx;height: 285rpx;border-radius: 12rpx;margin-right: 24rpx;flex-shrink: 0;}
  1039. .item-content-box{
  1040. display: flex;flex-direction: column;justify-content: space-between;line-height: 1.5;
  1041. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 10rpx;}
  1042. .item-intro{color: #444;font-size: 28rpx;@include multi-line-ellipsis(4);margin-bottom: 10rpx;}
  1043. .item-xianjia{color: #ff0000;font-size: 34rpx;font-weight: bolder;}
  1044. }
  1045. }
  1046. // border-box
  1047. .qrdd-border-box{
  1048. width: 713rpx;margin:0 auto;border-radius: 20rpx;
  1049. box-shadow: 0 0rpx 16rpx rgba(100, 159, 241, 0.2);
  1050. box-sizing: border-box;padding: 0 24rpx 16rpx;margin-bottom: 24rpx;
  1051. position: relative;z-index: 2;background-color: #fff;flex-shrink: 0;
  1052. // 课程学习等级
  1053. .kcxxdj-title{color: #454545;font-size: 30rpx;font-weight: bolder;padding: 16rpx 0;}
  1054. .kcxxdj-tc-box{
  1055. width: 100%;background-color: #f9fafc;border-radius: 20rpx;
  1056. display: flex;flex-direction: row;align-items: center;flex-wrap: wrap;
  1057. box-sizing: border-box;padding: 16rpx 0;
  1058. .tc-item{
  1059. min-width:76rpx;min-height: 76rpx;box-sizing: border-box;
  1060. text-align: center;border: 1rpx solid #eaeaeb;border-radius: 20rpx;
  1061. font-size: 30rpx;line-height: 1; color: #333;
  1062. padding: 20rpx 6rpx;margin: 16rpx 0 16rpx 16rpx;
  1063. }
  1064. .active{background-color: #2b9bfd;color: #fff;border: 1rpx solid #1280e1;}
  1065. }
  1066. // 商品总价
  1067. .border-row{
  1068. display: flex;justify-content: space-between;
  1069. font-size: 32rpx;color: #444;padding: 32rpx 0;
  1070. border-bottom:1rpx dashed #f1f1f1;
  1071. .jg-text{color: #ff0000;}
  1072. }
  1073. .border-row:last-child{border: 0;}
  1074. .sum-row{justify-content: flex-end;}
  1075. .sum-text{margin-right: 32rpx;}
  1076. // 支付方式
  1077. .zzfs-name-box{
  1078. display: flex;align-items: center;
  1079. icon{width: 53rpx;height: 53rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;}
  1080. .wechat-icon{background-image: url("@/static/images/shop/wx-icon.png");}
  1081. .alipay-icon{background-image: url("@/static/images/shop/zfb-icon.png");}
  1082. }
  1083. }
  1084. .qrdd-footer-box{
  1085. flex-shrink: 0;display: flex;align-items: center;justify-content: space-between;padding: 24rpx;
  1086. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.4);box-sizing: border-box;background-color: #f9f9f9;
  1087. .jg-box{color: #ff0000;}
  1088. .sum-row{display: flex;align-items: center;}
  1089. .xj-text-text{font-weight: bolder;font-size: 42rpx;}
  1090. .sum-text{font-size: 32rpx;color: #333;}
  1091. .yh-text{font-size: 28rpx;margin-top: 6rpx;}
  1092. .ljzf-btn{
  1093. width: 279rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1094. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/pay-btn.png");
  1095. }
  1096. }
  1097. }
  1098. // 手机号快捷登录弹窗
  1099. .sjh-kjdl-dialog{
  1100. .sjh-kjdl-content-box{display: flex;flex-direction: column;align-items: center;}
  1101. .kjdl-btn{
  1102. width: 496rpx;height: 88rpx;line-height: 88rpx;color: #fff;font-size: 36rpx;margin: 32rpx 0;
  1103. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/ksdl-btn.png");
  1104. }
  1105. .ykkt-text{color: #333;font-size: 32rpx;}
  1106. }
  1107. // 兑换码
  1108. .ezy-dhm-page{
  1109. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1110. .dhm-body{
  1111. width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;
  1112. .dhm-head-box{
  1113. width: 100%;padding: 12rpx 0 56rpx;box-sizing: border-box;
  1114. display: flex;align-items: center;color: #333;line-height: 1.6;
  1115. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  1116. .head-content-box{font-size: 32rpx;}
  1117. }
  1118. .duihuan-input-box{
  1119. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  1120. display: flex;align-items: center;
  1121. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  1122. .duihuan-prefix-icon {
  1123. width: 56rpx;height: 56rpx;margin:0 32rpx 0 16rpx;@include ezy-no-repeat-cover;
  1124. background-image: url("@/static/images/my/two-code.png");position: relative;
  1125. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  1126. }
  1127. .duihuan-prefix-icon::after{
  1128. content: '';width: 1rpx;height: 56rpx;display: inline-block;background-color: #dfdfdf;
  1129. position: absolute;bottom: 0;right: -16rpx;
  1130. }
  1131. }
  1132. .duihuan-confirm-btn{
  1133. width: 100%;height: 92rpx;line-height: 92rpx;text-align: center;font-size:32rpx;
  1134. margin-top: 42rpx;@include ezy-no-repeat-contain;font-weight: bold;
  1135. background-image: url("@/static/images/login/login-btn-bj.png");color:#fff;
  1136. }
  1137. }
  1138. }