pages.scss 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  1. /***** 这里放页面样式 *****/
  2. // 课程完成
  3. .course-finish-dialog{
  4. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  5. background-image: url("@/static/images/exam/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/exam/fh-btn.png");}
  11. .continue-btn{background-image: url("@/static/images/exam/jx-btn.png");}
  12. @media (max-height: 600px) {margin-bottom: 40%;}
  13. @include mediaSmall() {
  14. width: 488rpx;height: 813rpx;margin:0 auto 20%;
  15. .return-btn,.continue-btn{width: 75rpx;height: 88rpx;margin: 0 23rpx;}
  16. .course-btn-box{bottom: 130rpx;}
  17. }
  18. @include mediaBig() {
  19. width: 1200rpx;height: 2000rpx;margin-bottom: 20%;
  20. .return-btn,.continue-btn{width: 185rpx;height: 216rpx;margin: 0 58rpx;}
  21. .course-btn-box{bottom: 320rpx;}
  22. }
  23. }
  24. // 绑定手机号弹窗
  25. .my-tel-dialog{
  26. background-color: rgba(0,0,0, 0.76);
  27. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  28. justify-content: center;align-items: center;z-index: 3;
  29. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  30. background-image: url("@/static/images/common/close-icon.png");}
  31. .my-tel-content{
  32. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 42rpx;
  33. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  34. }
  35. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 32rpx;}
  36. .tel-row{border-bottom: 1px dashed #70cbf4;}
  37. .yzm-row{padding-top: 36rpx;}
  38. /***** 输入手机号页面*****/
  39. .my-input-box{
  40. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  41. display: flex;align-items: center;border: 1rpx solid #ddd;border-radius: 16rpx;
  42. @include ezy-no-repeat-cover;
  43. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #666;flex: 1;}
  44. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  45. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  46. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  47. }
  48. .get-yzm-btn{color: #3b73bf;margin:46rpx 0 32rpx;font-size: 32rpx;}
  49. .get-yzm-disabled{color: #666;}
  50. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  51. .my-bind-btn{
  52. width:540rpx;height: 92rpx;text-align: center;line-height: 92rpx;color: #fff;margin-top: 36rpx;
  53. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  54. }
  55. }
  56. // 兑换码
  57. .duihuan-dialog{
  58. .tip-content-box{padding: 42rpx 42rpx;}
  59. .duihuan-input{
  60. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  61. display: flex;align-items: center;margin: 0 auto;color: #666;
  62. border: 1rpx solid #e3e3e3;border-radius: 16rpx;font-size: 32rpx;
  63. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  64. }
  65. }
  66. /***************** 新数学 *********************/
  67. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  68. .ezy-login-page {
  69. width:100%;height:100vh; background-color: #f9f9fb;position: relative;
  70. box-sizing: border-box;padding-top: 240rpx;
  71. .login-img{
  72. width: 272rpx;height: 260rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  73. background-image: url("@/static/images/common/login/login-logo.png");display: block;
  74. }
  75. .login-body-box{
  76. display: flex;flex-direction: column;align-items: center;margin: 160rpx auto 0;
  77. }
  78. /***** 输入手机号页面*****/
  79. .phone-input-box{
  80. width: 662rpx;height: 122rpx;
  81. display: flex;align-items: center;@include ezy-no-repeat-cover;
  82. background-image: url("@/static/images/common/login/login-tel-bj.png");
  83. .phone-prefix {
  84. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
  85. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  86. }
  87. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
  88. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #fff;flex: 1;overflow: hidden;}
  89. .uni-input-placeholder {font-size: 34rpx;color: #ffffffd9;
  90. }
  91. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  92. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  93. }
  94. .agreement-checkbox-box {
  95. display: flex;justify-content: center;margin-top: 32rpx;line-height: 1;margin-left: -42rpx;
  96. uni-checkbox-group{font-size: 0;}
  97. .agreement-checkbox-input{width: 80rpx;height: 80rpx;border: 0;font-size: 0;}
  98. .uni-checkbox-input{
  99. width: 80rpx;height: 80rpx;border: 0;background-color: unset;position: relative;
  100. svg {
  101. width: 19rpx;height: 19rpx;top: 32rpx;left: 48rpx;display: block;
  102. background-color: #379af8;border-radius: 999rpx;transform: unset;position: absolute;
  103. path{display: none;}
  104. }
  105. }
  106. .uni-checkbox-input::before{
  107. content: '';width: 31rpx;height: 31rpx;border: 1rpx solid #379af8;border-radius: 999rpx;
  108. box-sizing: border-box;position: absolute;top: 26rpx;left: 42rpx;
  109. }
  110. .agreement-text-box {
  111. color: #333;font-size: 28rpx;flex-direction: row;display: flex;align-items: center;
  112. .agreement-text{color: #379af8;display: contents;}
  113. }
  114. }
  115. .bottom-btn-box{
  116. position: absolute;bottom:8%;left: 50%;transform: translateX(-50%);
  117. .bottom-tip{color: #999;font-size: 28rpx;text-align: center;margin-bottom: 60rpx;}
  118. .btn-box{
  119. display: flex;
  120. .wx-btn,.yk-btn,.apple-btn{
  121. width: 170rpx;display: flex;align-items: center;flex-direction: column;
  122. color: #666;font-size: 26rpx;
  123. icon{width: 50rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 12rpx;}
  124. }
  125. .wx-btn icon{background-image: url("@/static/images/common/login/login-wx-btn.jpg");}
  126. .yk-btn icon{background-image: url("@/static/images/common/login/login-yk-btn.jpg");}
  127. .apple-btn icon{background-image: url("@/static/images/common/login/login-apple-btn.jpg");}
  128. }
  129. }
  130. /***** 输入验证码页面*****/
  131. .yzm-nav-bar-icon{z-index: 99;}
  132. .yzm-show{width: 662rpx;font-size: 30rpx;color: #666;margin: 0 0 24rpx 12rpx;}
  133. .yzm-btn{margin-top: 42rpx;}
  134. .cxfs-btn{font-size: 30rpx;color: #3257b9;display: inline-block;margin: 60rpx auto 160rpx;}
  135. .cxfs-btn-disabled{color: #777;}
  136. .login-text{
  137. font-size: 30rpx;color: #888;margin: 16rpx auto 0 56rpx;
  138. text{color: #64a8e3;}
  139. }
  140. /* 针对小屏幕设备 */
  141. @media (max-height: 750px) {
  142. padding-top: 200rpx;
  143. .login-body-box{margin: 100rpx auto 0; }
  144. .login-btn{margin-top: 56rpx;}
  145. // 验证码
  146. .yzm-btn{margin-top: 36rpx;}
  147. }
  148. @media (max-height: 650px) {
  149. padding-top: 180rpx;
  150. .login-body-box{margin: 60rpx auto 0; }
  151. .login-btn{margin-top: 32rpx;}
  152. .bottom-btn-box{
  153. bottom: 5%;
  154. .bottom-tip{margin-bottom: 32rpx;}
  155. }
  156. // 验证码
  157. .cxfs-btn{margin: 32rpx auto 52rpx;}
  158. }
  159. @media (max-height: 550px) {
  160. min-height: 1100rpx;
  161. }
  162. @include mediaSmall() {
  163. padding-top: 156rpx;
  164. .login-img{width: 177rpx;height: 169rpx;}
  165. .login-body-box{margin: 104rpx auto 0;}
  166. .phone-input-box{
  167. width: 430rpx;height: 79rpx;
  168. .phone-prefix {
  169. width: 59rpx;margin-left:12rpx;font-size: 25rpx;
  170. &::after{height: 26rpx;}
  171. }
  172. .phone-input {font-size: 25rpx;padding: 0 20rpx;}
  173. .uni-input-placeholder {font-size: 22rpx;}
  174. .close-btn{width: 27rpx;height: 27rpx;margin-right: 20rpx;}
  175. }
  176. .agreement-checkbox-box {
  177. margin-top: 21rpx;margin-left: -27rpx;
  178. .agreement-checkbox-input{width: 52rpx;height: 52rpx;}
  179. .uni-checkbox-input{
  180. width: 52rpx;height: 52rpx;
  181. svg {width: 12rpx;height: 12rpx;top: 21rpx;left: 31rpx;}
  182. }
  183. .uni-checkbox-input::before{width: 20rpx;height: 20rpx;top: 17rpx;left: 27rpx;}
  184. .agreement-text-box {font-size: 18rpx;}
  185. }
  186. .bottom-btn-box{
  187. .bottom-tip{font-size: 18rpx;margin-bottom: 39rpx;}
  188. .btn-box{
  189. .wx-btn,.yk-btn,.apple-btn{
  190. width: 111rpx;font-size: 17rpx;
  191. icon{width: 33rpx;height: 27rpx;margin-bottom: 8rpx;}
  192. }
  193. }
  194. }
  195. /***** 输入验证码页面*****/
  196. .yzm-show{width: 430rpx;font-size: 20rpx;margin: 0 0 16rpx 8rpx;}
  197. .yzm-btn{margin-top: 27rpx;}
  198. .cxfs-btn{font-size: 20rpx;margin: 39rpx auto 104rpx;}
  199. .login-text{
  200. width: 430rpx;font-size: 20rpx;margin: 10rpx auto 0;
  201. }
  202. }
  203. @include mediaBig() {
  204. padding-top: 384rpx;
  205. .login-img{width: 435rpx;height: 416rpx;}
  206. .login-body-box{margin: 256rpx auto 0;}
  207. .phone-input-box{
  208. width: 1059rpx;height: 195rpx;
  209. .phone-prefix {
  210. width: 144rpx;margin-left:29rpx;font-size: 61rpx;
  211. &::after{height: 64rpx;}
  212. }
  213. .phone-input {font-size: 61rpx;padding: 0 48rpx;}
  214. .uni-input-placeholder {font-size: 54rpx;}
  215. .close-btn{width: 67rpx;height: 67rpx;margin-right: 48rpx;}
  216. }
  217. .agreement-checkbox-box {
  218. margin-top: 51rpx;margin-left: -67rpx;
  219. .agreement-checkbox-input{width: 128rpx;height: 128rpx;}
  220. .uni-checkbox-input{
  221. width: 128rpx;height: 128rpx;
  222. svg {width: 30rpx;height: 30rpx;top: 51rpx;left: 77rpx;}
  223. }
  224. .uni-checkbox-input::before{width: 50rpx;height: 50rpx;top: 42rpx;left: 67rpx;}
  225. .agreement-text-box {font-size: 45rpx;}
  226. }
  227. .bottom-btn-box{
  228. .bottom-tip{font-size: 45rpx;margin-bottom: 96rpx;}
  229. .btn-box{
  230. .wx-btn,.yk-btn,.apple-btn{
  231. width: 272rpx;font-size: 42rpx;
  232. icon{width: 80rpx;height: 67rpx;margin-bottom: 19rpx;}
  233. }
  234. }
  235. }
  236. /***** 输入验证码页面*****/
  237. .yzm-show{width: 1059rpx;font-size: 48rpx;margin: 0 0 38rpx 19rpx;}
  238. .yzm-btn{margin-top: 67rpx;}
  239. .cxfs-btn{font-size: 48rpx;margin: 96rpx auto 256rpx;}
  240. .login-text{width: 1059rpx;font-size: 48rpx;margin: 26rpx auto 0;}
  241. }
  242. }
  243. // 快捷登录
  244. .go-login-page{
  245. /* .mt24{margin-top: 24rpx;}
  246. .yzm-text-btn{color: #035493;font-size: 34rpx;margin-right: 24rpx;} */
  247. .yzm-row{
  248. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  249. .phone-input-box{flex:1;width: auto;border-radius: 28rpx;}
  250. .yzm-text-btn{
  251. width:250rpx;height: 120rpx;line-height: 120rpx;text-align: center;@include ezy-no-repeat-cover;
  252. background-image: url("@/static/images/common/tip-confirm-btn.png");border-radius: 28rpx;
  253. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  254. }
  255. }
  256. @include mediaSmall() {
  257. .yzm-row{
  258. width: 430rpx;margin: 23rpx 0 0;
  259. .phone-input-box{border-radius: 18rpx;}
  260. .yzm-text-btn{
  261. width: 163rpx;height: 76rpx;line-height: 76rpx;
  262. border-radius: 18rpx;margin-left: 10rpx;font-size: 22rpx;
  263. }
  264. }
  265. }
  266. @include mediaBig() {
  267. .yzm-row{
  268. width: 1059rpx;
  269. margin: 58rpx 0 0;
  270. .phone-input-box{border-radius: 45rpx;}
  271. .yzm-text-btn{
  272. width: 400rpx;height: 192rpx;line-height: 192rpx;
  273. border-radius: 45rpx;margin-left: 26rpx;font-size: 54rpx;
  274. }
  275. }
  276. }
  277. /* .tel-input{
  278. width: 662rpx;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  279. display: flex;align-items: center;
  280. .phone-prefix {
  281. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #acacae;
  282. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  283. }
  284. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ccc;}
  285. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  286. .uni-input-placeholder {font-size: 34rpx;color: #acacae;
  287. }
  288. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  289. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  290. }
  291. .yzm-row{
  292. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  293. .tel-input{width: auto;}
  294. .yzm-btn{
  295. width:270rpx;height: 100rpx;line-height: 100rpx;text-align: center;@include ezy-no-repeat-cover;
  296. background-image: url("@/static/images/common/tip-confirm-btn.png");
  297. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;margin-top: 0;
  298. }
  299. } */
  300. }
  301. // 绑定手机号
  302. .bind-tel-page{
  303. width: 100%;height: 100vh;display: flex;flex-direction: column;
  304. .bind-tel-body{width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;}
  305. .tel-input{
  306. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  307. display: flex;align-items: center;
  308. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  309. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  310. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  311. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  312. }
  313. .yzm-row{
  314. width: 100%;margin: 36rpx 0 0;display: flex;align-items: center;
  315. .yzm-btn{
  316. width:270rpx;height: 100rpx;line-height: 100rpx;text-align: center;@include ezy-no-repeat-cover;
  317. background-image: url("@/static/images/common/tip-confirm-btn.png");
  318. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  319. }
  320. }
  321. @include mediaSmall() {
  322. .bind-tel-body{padding: 23rpx;}
  323. .tel-input{
  324. width: 671rpx;height: 65rpx;border-radius: 10rpx;margin: 0 auto;
  325. .phone-input {font-size: 22rpx;padding: 0 20rpx;}
  326. .uni-input-placeholder {font-size: 22rpx;}
  327. .close-btn{width: 27rpx;height: 27rpx;margin-right: 20rpx;}
  328. }
  329. .yzm-row{
  330. width: 671rpx;margin: 23rpx auto 0;
  331. .yzm-btn{
  332. width: 176rpx;height: 65rpx;line-height: 65rpx;
  333. margin-left: 16rpx;font-size: 22rpx;
  334. }
  335. }
  336. .bd-btn{width: 671rpx;height: 53rpx;line-height: 53rpx;font-size: 22rpx;font-weight: normal;margin: 55rpx auto 0;}
  337. .login-btn-normal.bd-btn{background-image: url("@/static/images/pad/common/btn-bj.png");}
  338. }
  339. @include mediaBig() {
  340. .bind-tel-body{padding: 58rpx;}
  341. .tel-input{
  342. width: 1800rpx;height: 160rpx;border-radius: 26rpx;
  343. .phone-input {font-size: 54rpx;padding: 0 48rpx;}
  344. .uni-input-placeholder {font-size: 54rpx;}
  345. .close-btn{width: 67rpx;height: 67rpx;margin-right: 48rpx;}
  346. }
  347. .yzm-row{
  348. width: 1800rpx;margin: 58rpx auto 0;
  349. .yzm-btn{
  350. width: 432rpx;height: 160rpx;line-height: 160rpx;
  351. margin-left: 32rpx;font-size: 54rpx;
  352. }
  353. }
  354. .bd-btn{
  355. width: 1800rpx;height: 142rpx;line-height: 142rpx;font-size: 54rpx;margin: 134rpx auto 0;
  356. }
  357. }
  358. }
  359. // 用户协议弹窗
  360. .agree-sections-dialog{
  361. width: 700rpx;height: 490rpx;padding: 80rpx 0 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  362. background-image: url("@/static/images/common/login/agree-dialog-bg.png");@include ezy-no-repeat-cover;
  363. .agree-title{color:#111;font-size: 40rpx;}
  364. .agree-tip{color:#666;font-size: 30rpx;margin-top: 46rpx;}
  365. .confirm-btn{width: 588rpx;height: 92rpx;@include ezy-no-repeat-cover;margin: 42rpx auto 0;
  366. background-image: url("@/static/images/common/login/agree-dialog-btn.png");}
  367. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 32rpx 0 0;display: inline-block;}
  368. @include mediaSmall() {
  369. width: 455rpx;height: 319rpx;padding: 52rpx 0 27rpx;
  370. .agree-title{font-size: 24rpx;}
  371. .agree-tip{font-size: 20rpx;margin-top: 30rpx;}
  372. .confirm-btn{width: 382rpx;height: 60rpx;margin: 27rpx auto 0;}
  373. .not-confirm-btn{font-size: 20rpx;padding: 21rpx 0 0;}
  374. }
  375. @include mediaBig() {
  376. width: 1120rpx;height: 784rpx;padding: 128rpx 0 67rpx;
  377. .agree-title{font-size: 54rpx;}
  378. .agree-tip{font-size: 46rpx;margin-top: 74rpx;}
  379. .confirm-btn{width: 941rpx;height: 147rpx;margin: 67rpx auto 0;}
  380. .not-confirm-btn{font-size: 56rpx;padding: 46rpx 0 0;}
  381. }
  382. }
  383. // 用户协议详情弹窗
  384. .agree-content-dialog{
  385. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  386. .agree-content-box{
  387. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  388. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  389. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  390. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  391. }
  392. .agree-title{font-size: 42rpx;text-align: center;margin-bottom: 42rpx;flex-shrink: 0;}
  393. .agree-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;
  394. position: absolute;top: 64rpx;right: 44rpx;
  395. background-image: url("@/static/images/common/close-icon.png");}
  396. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;word-break: break-all;}
  397. @include mediaSmall() {
  398. .agree-content-box{margin: 10rpx auto 0;padding: 24rpx 0;}
  399. .agree-title{font-size: 22rpx;}
  400. .agree-section-box{font-size: 20rpx;padding: 0 24rpx;}
  401. }
  402. @include mediaBig() {
  403. .agree-content-box{margin: 24rpx auto 0;padding: 56rpx 0;}
  404. .agree-title{font-size: 54rpx;}
  405. .agree-section-box{font-size: 46rpx;padding: 0 56rpx;}
  406. }
  407. }
  408. // 选课
  409. .ezy-xuanke-page{
  410. width: 100%;height: 100vh;display: flex;flex-direction: column;padding-bottom: 100rpx;overflow: hidden;
  411. .sx-card-list{overflow-y: auto;flex: 1;padding: 12rpx 0 0;}
  412. .sx-card-box{
  413. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;overflow: hidden;
  414. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);position: relative;
  415. .card-head-box{
  416. display: flex;position: relative;z-index: 4;
  417. .head-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 12rpx;}
  418. .head-right-box{
  419. margin-left: 24rpx;
  420. .head-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  421. .head-content{font-size: 26rpx;color: #666;text-align: justify;margin-bottom: 24rpx;@include multi-line-ellipsis(4);}
  422. }
  423. }
  424. .card-body-box{
  425. border-top: 3rpx dashed #eee;margin-top: 42rpx;position: relative;z-index: 4;
  426. .body-title{color: #7db0f4;margin: 24rpx 0 16rpx;font-size: 30rpx;}
  427. .dj-item-row{
  428. display: flex;flex-wrap: wrap;
  429. }
  430. .dj-item{
  431. width: 202rpx;height: 77rpx;line-height: 77rpx;color: #fff;font-size: 30rpx;
  432. text-align: center;@include ezy-no-repeat-cover;margin: 12rpx 16rpx 12rpx 0;
  433. background-image: url("@/static/images/phone/xuanke/dj-item.png");
  434. }
  435. .dj-item.active{background-image: url("@/static/images/phone/xuanke/dj-item-a.png");}
  436. .dj-item:nth-child(3n) {
  437. margin-right: 0;
  438. }
  439. }
  440. }
  441. .sx-card-box::before,.sx-card-box::after{
  442. content: '';@include ezy-no-repeat-cover;
  443. position: absolute;z-index: 3;opacity: 0.7;
  444. }
  445. .sx-card-box::before{width: 500rpx;height: 473rpx;background-image: url("@/static/images/common/xk-mask-img1.png");top: -120rpx;left:-140rpx;}
  446. .sx-card-box::after{background-image: url("@/static/images/common/xk-mask-img2.png");width: 280rpx;height: 265rpx;bottom: -40rpx;right:-60rpx;}
  447. @include mediaSmall() {
  448. padding-bottom: 80rpx;
  449. .sx-card-list{padding: 4rpx 0 0;}
  450. .sx-card-box{
  451. border-radius: 6rpx;margin: 0 24rpx 20rpx;padding: 20rpx 20rpx 24rpx;
  452. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  453. .card-head-box{
  454. .head-img{width: 110rpx;height: 154rpx;border-radius: 8rpx;}
  455. .head-right-box{
  456. margin-left: 16rpx;
  457. .head-title{font-size: 22rpx;margin-bottom: 12rpx;}
  458. .head-content{font-size: 20rpx;margin-bottom: 6rpx;line-height: 1.8;@include multi-line-ellipsis(2);}
  459. }
  460. }
  461. .card-body-box{
  462. border-top: 1rpx dashed #ddd;margin-top: 6rpx;
  463. .body-title{margin: 12rpx 0 6rpx;font-size: 20rpx;}
  464. .dj-item{
  465. width: 100rpx;height: 46rpx;line-height: 46rpx;font-size: 22rpx;margin: 8rpx 12rpx 8rpx 0;
  466. background-image: url("@/static/images/pad/xuanke/dj-item.png");@include ezy-no-repeat-contain;
  467. }
  468. .dj-item.active{background-image: url("@/static/images/pad/xuanke/dj-item-a.png");}
  469. .dj-item:nth-child(3n) {margin-right: 12rpx;}
  470. .dj-item:nth-child(6n) {margin-right: 0;}
  471. }
  472. }
  473. .sx-card-box::before{width:300rpx;height: 284rpx;top: -120rpx;left:-100rpx;}
  474. .sx-card-box::after{width: 120rpx;height: 114rpx;bottom: -25rpx;right:-30rpx;}
  475. }
  476. @include mediaBig() {
  477. padding-bottom: 180rpx;
  478. .sx-card-list{padding: 42rpx 0 0;}
  479. .sx-card-box{
  480. border-radius: 16rpx;margin: 0 56rpx 52rpx;padding: 46rpx 46rpx 48rpx;
  481. box-shadow: 0 0rpx 12rpx rgba(100, 159, 241, 0.3);
  482. .card-head-box{
  483. .head-img{width: 240rpx;height: 336rpx;border-radius: 16rpx;}
  484. .head-right-box{
  485. margin-left: 42rpx;
  486. .head-title{font-size: 54rpx;margin-bottom: 12rpx;}
  487. .head-content{font-size: 46rpx;margin-bottom: 6rpx;line-height: 1.8;@include multi-line-ellipsis(2);}
  488. }
  489. }
  490. .card-body-box{
  491. border-top: 4rpx dashed #ddd;margin-top: 36rpx;
  492. .body-title{margin: 32rpx 0 24rpx;font-size: 46rpx;}
  493. .dj-item{
  494. width: 280rpx;height: 128rpx;line-height: 128rpx;font-size: 52rpx;margin: 16rpx 32rpx 16rpx 0;
  495. }
  496. .dj-item:nth-child(3n) {margin-right: 32rpx;}
  497. .dj-item:nth-child(6n) {margin-right: 0;}
  498. }
  499. }
  500. .sx-card-box::before{width:640rpx;height: 606rpx;top: -240rpx;left:-200rpx;}
  501. .sx-card-box::after{width: 280rpx;height: 265rpx;bottom: -50rpx;right:-60rpx;}
  502. }
  503. }
  504. // 选版本
  505. .ezy-xbb-page{
  506. width: 100%;height: 100vh;display: flex;flex-direction: column;
  507. .xbb-list-box{
  508. display: flex;flex-direction: column;
  509. background-color: #fff;flex: 1;overflow-y: auto;padding-bottom: 32rpx;
  510. .xbb-item-box{
  511. width: 731rpx;height:273rpx;@include ezy-no-repeat-cover;
  512. background-image: url("@/static/images/phone/xuanke/xbb-item-bj.png");
  513. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  514. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  515. }
  516. .item-img-box{width: 180rpx;height: 220rpx;border-radius: 12rpx;margin-right: 32rpx;flex-shrink: 0;}
  517. .item-content-box{
  518. line-height: 1.5;
  519. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 16rpx;}
  520. .item-bb{color: #444;font-size: 30rpx;}
  521. }
  522. .item-play-btn{
  523. width: 100rpx;height: 100rpx;z-index: 2;
  524. display: flex;align-items: center;justify-content: center;
  525. position: absolute;bottom: 12rpx;right: 12rpx;
  526. &::before{
  527. content: '';width: 46rpx;height: 48rpx;display: block;
  528. background-image: url("@/static/images/common/xbb-item-jt.png");@include ezy-no-repeat-cover;
  529. }
  530. }
  531. }
  532. @include mediaSmall() {
  533. .xbb-list-box{
  534. padding-bottom: 21rpx;
  535. .xbb-item-box{width: 717rpx;height: 178rpx;padding: 17rpx 23rpx;margin: 0 auto 10rpx;
  536. background-image: url("@/static/images/pad/xuanke/xbb-item-bj.png");}
  537. .item-img-box{width: 117rpx;height: 143rpx;border-radius: 8rpx;margin-right: 21rpx;}
  538. .item-content-box{
  539. .item-name{font-size: 22rpx;margin-bottom: 10rpx;}
  540. .item-bb{font-size: 20rpx;}
  541. }
  542. .item-play-btn{
  543. width: 65rpx;height: 65rpx;bottom: 20rpx;right: 24rpx;
  544. &::before{width: 30rpx;height: 31rpx;@include ezy-no-repeat-contain;}
  545. }
  546. }
  547. }
  548. @include mediaBig() {
  549. .xbb-list-box{
  550. padding-bottom: 51rpx;
  551. .xbb-item-box{width: 1964rpx;height: 488rpx;padding: 42rpx 58rpx;margin: 0 42rpx 26rpx;}
  552. .item-img-box{width: 288rpx;height: 352rpx;border-radius: 19rpx;margin-right: 51rpx;}
  553. .item-content-box{
  554. .item-name{font-size: 54rpx;margin-bottom: 26rpx;}
  555. .item-bb{font-size: 46rpx;}
  556. }
  557. .item-play-btn{
  558. width: 160rpx;height: 160rpx;bottom: 40rpx;right: 60rpx;
  559. &::before{width: 74rpx;height: 77rpx;}
  560. }
  561. }
  562. }
  563. }
  564. // 学习大纲
  565. .xuexi-dagang-page{
  566. width: 100%;height: calc(95vh - var(--status-bar-height));border-radius: 16rpx 16rpx 0 0;z-index: 10;position: relative;
  567. background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  568. display: flex;flex-direction: column;
  569. box-sizing: border-box;padding: 36rpx 0 120rpx;
  570. position: fixed;bottom: 0;
  571. .xuexi-dagang-body{overflow-y: auto;padding: 24rpx 0 0;}
  572. .dagang-title{
  573. width: 80%;line-height: 1.5;margin: 24rpx auto 0;
  574. text-align: center;font-size: 36rpx;color: #000;position: relative;
  575. icon{
  576. width: 100rpx;height: 100rpx;display: flex;align-items: center;justify-content: center;
  577. position: absolute;right: -13%;top: -60rpx;
  578. }
  579. icon::after{
  580. content: '';width: 52rpx;height: 52rpx;@include ezy-no-repeat-cover;
  581. background-image: url("@/static/images/common/close-icon.png");
  582. }
  583. }
  584. // 您将学会
  585. .dagang-xh-box{
  586. width: 690rpx;margin: 64rpx auto 0;
  587. .xh-title{font-size: 32rpx;font-weight: bold;text-align: left;color: #333;margin-left: 6rpx;}
  588. .xh-content-box{
  589. width: 100%;border-radius: 16rpx;margin-top: 32rpx;
  590. box-sizing: border-box;padding: 24rpx;
  591. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  592. }
  593. .text-row{
  594. display: flex;font-size: 32rpx;color: #333;margin: 12rpx 0;line-height: 1.6;
  595. icon{
  596. width: 13rpx;height: 13rpx;border-radius: 50%;flex-shrink: 0;
  597. background-color: #2c7bf4;margin: 22rpx 12rpx 0 0;}
  598. }
  599. }
  600. //学习大纲
  601. .dagang-content-box{
  602. background-color: #e3f7fe;margin-top: 200rpx;position: relative;
  603. .dagang-content-title{
  604. font-size: 32rpx;font-weight: bold;text-align: left;color: #333;
  605. margin-left: 36rpx;position: relative;z-index: 1;
  606. }
  607. .dagang-item-list{padding: 56rpx 0 32rpx;}
  608. .dagang-content-item{
  609. width: 690rpx;display: flex;align-items: center;border-radius: 12rpx;color: #4b4b4b;;
  610. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;background-color: #fff;
  611. line-height: 1.5;font-size: 32rpx;
  612. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  613. .content-title{margin-left: 32rpx;position: relative;}
  614. .content-title:nth-child(1)::before{
  615. width: 13rpx;height: 13rpx;border-radius: 50%;display: block;
  616. background-color: #2c7bf4;content:'';
  617. position: absolute;left: -24rpx;top: 22rpx;
  618. }
  619. }
  620. .dagang-content-item:last-child{margin-bottom: 0;}
  621. }
  622. .dagang-content-box::before{
  623. content: '';width: 750rpx;height: 193rpx;display: block;@include ezy-no-repeat-cover;
  624. background-image: url("@/static/images/xuexi/dagang-img.png");
  625. position: absolute;top: -138rpx;left: 0;z-index: 1;
  626. }
  627. @include mediaSmall() {
  628. border-radius: 10rpx 10rpx 0 0;
  629. padding: 23rpx 0 78rpx;
  630. .xuexi-dagang-body{padding: 16rpx 0 0;}
  631. .dagang-title{
  632. font-size: 22rpx;margin: 16rpx auto 0;
  633. icon{width: 65rpx;height: 65rpx;top: -39rpx;right: -13%;}
  634. icon::after{width: 34rpx;height: 34rpx;}
  635. }
  636. .dagang-xh-box{
  637. width: 690rpx;margin: 42rpx auto 0;
  638. .xh-title{font-size: 22rpx;margin-left: 4rpx;}
  639. .xh-content-box{
  640. border-radius: 10rpx;margin-top: 21rpx;padding: 16rpx;
  641. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  642. }
  643. .text-row{
  644. font-size: 20rpx;margin: 16rpx 0;
  645. icon{width: 8rpx;height: 8rpx;margin: 14rpx 8rpx 0 0;}
  646. }
  647. }
  648. .dagang-content-box{
  649. margin-top: 180rpx;
  650. .dagang-content-title{font-size: 22rpx;margin-left: 23rpx;}
  651. .dagang-item-list{padding: 36rpx 0 21rpx;}
  652. .dagang-content-item{
  653. width: 690rpx;border-radius: 8rpx;margin: 0 auto 16rpx;
  654. padding: 13rpx;font-size: 20rpx;
  655. img{width: 78rpx;height: 78rpx;border-radius: 8rpx;margin-right: 16rpx;}
  656. .content-title{margin-left: 21rpx;}
  657. .content-title:nth-child(1)::before{
  658. width: 8rpx;height: 8rpx;left: -16rpx;top: 14rpx;
  659. }
  660. }
  661. }
  662. .dagang-content-box::before{width: 749rpx;height: 192rpx;top: -140rpx;}
  663. }
  664. @include mediaBig() {
  665. border-radius: 26rpx 26rpx 0 0;padding: 58rpx 0 192rpx;
  666. .xuexi-dagang-body{padding: 38rpx 0 0;}
  667. .dagang-title{
  668. font-size: 54rpx;margin: 38rpx auto 0;
  669. icon{width: 160rpx;height: 160rpx;top: -96rpx;right: -13%;}
  670. icon::after{width: 83rpx;height: 83rpx;}
  671. }
  672. .dagang-xh-box{
  673. width: 1940rpx;margin: 102rpx auto 0;
  674. .xh-title{font-size: 54rpx;margin-left: 10rpx;}
  675. .xh-content-box{
  676. border-radius: 26rpx;margin-top: 51rpx;padding: 38rpx;
  677. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  678. }
  679. .text-row{
  680. font-size: 46rpx;margin: 19rpx 0;
  681. icon{width: 21rpx;height: 21rpx;margin: 35rpx 19rpx 0 0;}
  682. }
  683. }
  684. .dagang-content-box{
  685. margin-top: 320rpx;
  686. .dagang-content-title{font-size: 54rpx;margin-left: 58rpx;}
  687. .dagang-item-list{padding: 90rpx 0 51rpx;}
  688. .dagang-content-item{
  689. width: 1940rpx;border-radius: 19rpx;margin: 0 auto 38rpx;padding: 32rpx;font-size: 51rpx;
  690. img{width: 192rpx;height: 192rpx;border-radius: 19rpx;margin-right: 38rpx;}
  691. .content-title{margin-left: 51rpx;}
  692. .content-title:nth-child(1)::before{width: 21rpx;height: 21rpx;left: -38rpx;top: 35rpx;}
  693. }
  694. }
  695. .dagang-content-box::before{width: 1200rpx;height: 309rpx;top: -221rpx;}
  696. }
  697. }
  698. // 学习
  699. .ezy-xuexi-page{
  700. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  701. .xuexi-page-body{padding:0 0 100rpx;overflow-y: auto;border-radius: 0;position: relative;}
  702. .xxjl-card-box-padding{padding-top: 64rpx;}
  703. .xx-scroll-view{position: relative;}
  704. .item-dy-box{
  705. display: flex;align-items: center;justify-content: center;
  706. color: #fff;margin-bottom: 24rpx;
  707. .dy-left-box{
  708. width: 174rpx;height: 127rpx;@include ezy-no-repeat-cover;font-size: 64rpx;
  709. display: flex;align-items: center;box-sizing: border-box;padding:0 24rpx;
  710. background-image: url("@/static/images/phone/xuexi/xx-ml-left.png");
  711. }
  712. .dy-left-box::after{
  713. content: '';width: 32rpx;height: 34rpx;@include ezy-no-repeat-cover;margin-left: auto;
  714. background-image: url("@/static/images/common/xuexi/xx-ml-jt.png");display: block;
  715. }
  716. .dy-right-box{
  717. width: 518rpx;height: 127rpx;@include ezy-no-repeat-cover;
  718. display: flex;align-items: flex-start;flex-direction: column;justify-content: center;
  719. box-sizing: border-box;padding:0 24rpx;font-size: 28rpx;
  720. background-image: url("@/static/images/phone/xuexi/xx-ml-right.png");
  721. .right-content{width: 100%;height: 90rpx;overflow: hidden;}
  722. .dy-name{font-size: 34rpx;margin-bottom: 6rpx;}
  723. }
  724. }
  725. .item-fixed{
  726. width: 100%;padding: 24rpx 0;transition: opacity 0.2s ease-in-out;
  727. position:sticky;position:-webkit-sticky;margin-bottom: 0;
  728. top: 0;z-index: 10;background-color: #fff;border-radius: 16rpx 16rpx 0 0;
  729. }
  730. // 学习记录
  731. .xxjl-card-box{
  732. width: 692rpx;margin: 0 auto 24rpx;padding: 72rpx 24rpx 24rpx 24rpx;box-sizing: border-box;
  733. background-color: #5795f6;border-radius: 16rpx;position: relative;
  734. .card-body-box{
  735. display: flex;
  736. img{width: 190rpx;height: 242rpx;border-radius: 16rpx;}
  737. .body-right{
  738. width: 100%;color: #c8e4f8;margin-left: 24rpx;font-size: 30rpx;
  739. display: flex;flex-direction: column;justify-content: space-between;
  740. .right-name{font-size: 34rpx;color: #fff;margin-top: 2rpx;}
  741. }
  742. }
  743. .card-progress-box{
  744. display: flex;align-items: center;margin-top: 10rpx;
  745. .xx-progress-box{flex: 1;margin-right: 64rpx;color: #fff;font-size: 28rpx;}
  746. .xx-progress{border-radius: 40rpx;overflow: hidden;margin-top: 10rpx;}
  747. .jxxx-btn{
  748. width: 177rpx;height: 89rpx;@include ezy-no-repeat-cover;margin-right: 24rpx;
  749. background-image: url("@/static/images/common/xuexi/jx-xx-btn.png");
  750. }
  751. }
  752. }
  753. .xxjl-card-box::before{
  754. content: '学习记录';width: 289rpx;height: 77rpx;line-height: 77rpx;@include ezy-no-repeat-cover;
  755. background-image: url("@/static/images/common/xuexi/xx-jl-bj.png");display: block;
  756. position: absolute;top: -28rpx;text-align: center;color: #fff;font-size: 34rpx;
  757. }
  758. // 学习进度
  759. .xx-jd-box{
  760. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  761. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  762. .xx-progress-btn-box{
  763. width: 100%;
  764. display: flex;align-items: center;justify-content: space-between;
  765. }
  766. .xx-progress-box{
  767. flex: 1;font-size: 32rpx;color: #333;margin-right: 42rpx;
  768. .xx-progress{border-radius: 20rpx;overflow: hidden;margin-top: 16rpx;}
  769. }
  770. .jxxx-btn{
  771. width: 217rpx;height: 85rpx;display: block;@include ezy-no-repeat-cover;
  772. background-image: url("@/static/images/xuexi/jxxx-icon.png");flex-shrink: 0;
  773. }
  774. //学习进度按钮
  775. .jd-item-box{
  776. display: flex;border-top: 1rpx dashed #97dbf8;margin-top: 32rpx;padding-top: 32rpx;
  777. icon{width:54rpx;height: 54rpx;@include ezy-no-repeat-cover;
  778. position: relative;margin-right: 52rpx;}
  779. icon::before{
  780. content: '';width: 1rpx;height: 70rpx;background-color: #fff;display: block;
  781. position: absolute;right: -24rpx;top: -10rpx;
  782. }
  783. .dydg-icon{background-image: url("@/static/images/xuexi/dy-dg-icon.png");}
  784. .dyml-icon{background-image: url("@/static/images/xuexi/kc-ml-icon.png");}
  785. .jd-item-btn{
  786. background-color: #ddf7ff;border-radius: 16rpx;flex: 1;text-align: center;
  787. box-sizing: border-box;padding: 24rpx;display: flex;align-items: center;}
  788. .jd-item-btn:first-child{margin-right: 24rpx;}
  789. }
  790. }
  791. // 学习目录
  792. .xx-item-list{
  793. padding-bottom: 24rpx;
  794. .xx-item-title{text-align: center;margin: 32rpx 0;font-size: 32rpx;color: #444;}
  795. .xx-more-btn{
  796. width: 630rpx;height: 89rpx;@include ezy-no-repeat-cover;margin: 0 auto 32rpx;
  797. background-image: url("@/static/images/phone/xuexi/more-btn.png");
  798. }
  799. .xx-item-box{
  800. width: 691rpx;height: 172rpx;
  801. display: flex;align-items: center;justify-content: space-between;color: #4b4b4b;;
  802. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;border-radius: 12rpx;
  803. line-height: 1.5;font-size: 32rpx;position: relative;@include ezy-no-repeat-cover;
  804. background-image: url("@/static/images/phone/xuexi/xx-ml-bj.png");
  805. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  806. .xx-item-status{
  807. width: 89rpx;height: 87rpx;@include ezy-no-repeat-cover;
  808. position: absolute;top:2rpx;left: 0;
  809. }
  810. .completed-status{background-image: url("@/static/images/common/xuexi/xw-status.png");}
  811. .xx-text-box{flex: 1;}
  812. .xx-item-btn,.xx-item-lock-btn{width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;}
  813. .xx-item-btn{background-image: url("@/static/images/common/xuexi/xx-ml-play-icon.png");}
  814. .xx-item-lock-btn{background-image: url("@/static/images/common/xuexi/xx-ml-lock-icon.png");}
  815. }
  816. .xx-disabled-item-box{
  817. background-image: url("@/static/images/phone/xuexi/xx-ml-disabled-bj.png");
  818. }
  819. }
  820. .xx-next-btn{
  821. width: 655rpx;height: 92rpx;line-height: 92rpx;margin: 32rpx auto;
  822. font-size: 32rpx;color: #fff;text-align: center;@include ezy-no-repeat-cover;
  823. background-image: url("@/static/images/common/login/login-btn-bj.png");
  824. }
  825. .xx-xw-text{text-align: center;font-size: 32rpx;color: #666;margin: 32rpx auto;}
  826. // 回到顶部
  827. .go-top-btn{
  828. width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;
  829. background-image: url("@/static/images/xuexi/go-top-btn.png");
  830. position: fixed;z-index: 9;bottom: 300rpx;right:10rpx;
  831. }
  832. @include mediaSmall() {
  833. .xuexi-page-body{padding:0 0 65rpx;}
  834. .xxjl-card-box-padding{padding-top: 42rpx;}
  835. .item-dy-box{margin-bottom: 16rpx;
  836. .dy-left-box{width: 135rpx;height: 71rpx;font-size: 42rpx;padding:0 24rpx;
  837. background-image: url("@/static/images/pad/xuexi/xx-ml-left.png");}
  838. .dy-left-box::after{width: 21rpx;height: 22rpx;}
  839. .dy-right-box{
  840. width: 580rpx;height: 71rpx;padding:0 16rpx;font-size: 18rpx;
  841. background-image: url("@/static/images/pad/xuexi/xx-ml-right.png");
  842. .right-content{height: 59rpx;}
  843. .dy-name{font-size: 22rpx;margin-bottom: 4rpx;}
  844. }
  845. }
  846. .item-fixed{padding: 16rpx 0;border-radius: 10rpx 10rpx 0 0;}
  847. .xxjl-card-box{
  848. width: 715rpx;margin: 0 auto 16rpx;padding: 47rpx 16rpx 16rpx 16rpx;
  849. border-radius: 10rpx;position: relative;
  850. .card-body-box{
  851. img{width: 124rpx;height: 157rpx;border-radius: 10rpx;}
  852. .body-right{
  853. margin-left: 16rpx;font-size: 20rpx;display: block;
  854. .right-name{font-size: 22rpx;margin: 5rpx 0;}
  855. .right-item{width: 50%;display: inline-block;vertical-align: middle;margin: 5rpx 0;}
  856. .right-item-mini{width: 40%;}
  857. }
  858. }
  859. .card-progress-box{
  860. position: absolute;bottom: 12rpx;left:140rpx;right: 10rpx;margin-top: 0;
  861. .xx-progress-box{margin-right: 42rpx;font-size: 18rpx;}
  862. .xx-progress{margin-top: 0;}
  863. .progress-title{display: none;}
  864. .jxxx-btn{width: 104rpx;height: 50rpx;margin-right: 16rpx;}
  865. }
  866. }
  867. .xxjl-card-box::before{width: 188rpx;height: 50rpx;line-height: 50rpx;top: -18rpx;font-size: 22rpx;}
  868. .xx-jd-box{border-radius: 10rpx;margin: 0 16rpx 21rpx;padding: 21rpx;
  869. .xx-progress-box{font-size: 21rpx;margin-right: 27rpx;
  870. .xx-progress{margin-top: 10rpx;}}
  871. .jxxx-btn{width: 141rpx;height: 55rpx;}
  872. .jd-item-box{margin-top: 21rpx;padding-top: 21rpx;
  873. icon{width: 35rpx;height: 35rpx;margin-right: 34rpx;}
  874. icon::before{height: 46rpx;right: -16rpx;top: -7rpx;}
  875. .jd-item-btn{border-radius: 10rpx;padding: 16rpx;}
  876. .jd-item-btn:first-child{margin-right: 16rpx;}
  877. }
  878. }
  879. .xx-item-list{
  880. padding-bottom: 16rpx;
  881. .xx-item-title{margin: 20rpx 0;font-size: 20rpx;}
  882. .xx-more-btn{width: 676rpx;height: 65rpx;margin: 0 auto 21rpx;
  883. background-image: url("@/static/images/pad/xuexi/more-btn.png");}
  884. .xx-item-box{
  885. width: 718rpx;height: 92rpx;margin: 0 auto 16rpx;padding: 10rpx;border-radius: 12rpx;font-size: 21rpx;
  886. background-image: url("@/static/images/pad/xuexi/xx-ml-bj.png");
  887. img{width: 72rpx;height: 72rpx;border-radius: 8rpx;margin-right: 16rpx;}
  888. .xx-item-status{width: 58rpx;height: 57rpx;top:1rpx;}
  889. .xx-item-btn,.xx-item-lock-btn{width: 50rpx;height: 50rpx;margin-right: 12rpx;}
  890. }
  891. .xx-disabled-item-box{
  892. background-image: url("@/static/images/pad/xuexi/xx-ml-disabled-bj.png");
  893. }
  894. }
  895. .xx-next-btn{width: 426rpx;height: 60rpx;line-height: 60rpx;margin: 21rpx auto;font-size: 21rpx;}
  896. .xx-xw-text{font-size: 21rpx;margin: 21rpx auto;}
  897. .go-top-btn{width: 50rpx;height: 50rpx;bottom: 195rpx;right:7rpx;}
  898. }
  899. @include mediaBig() {
  900. .xuexi-page-body{padding:0 0 160rpx;}
  901. .xxjl-card-box-padding{padding-top: 102rpx;}
  902. .item-dy-box{
  903. margin-bottom: 38rpx;
  904. .dy-left-box{width: 363rpx;height: 194rpx;font-size: 102rpx;padding:0 64rpx;}
  905. .dy-left-box::after{width: 51rpx;height: 54rpx;}
  906. .dy-right-box{
  907. width: 1577rpx;height: 194rpx;padding:0 38rpx;font-size: 46rpx;
  908. .right-content{height: 144rpx;}
  909. .dy-name{font-size: 54rpx;margin-bottom: 10rpx;}
  910. }
  911. }
  912. .item-fixed{padding: 38rpx 0;border-radius: 26rpx 26rpx 0 0;}
  913. .xxjl-card-box{
  914. width: 1940rpx;margin: 0 auto 38rpx;padding: 115rpx 38rpx 38rpx 38rpx;
  915. border-radius: 26rpx;position: relative;
  916. .card-body-box{
  917. img{width: 304rpx;height: 387rpx;border-radius: 26rpx;}
  918. .body-right{
  919. margin-left: 38rpx;font-size: 46rpx;
  920. .right-name{font-size: 54rpx;margin: 16rpx 0;}
  921. .right-item{width: 50%;display: inline-block;vertical-align: middle;margin: 16rpx 0;}
  922. view{margin: 16rpx 0;}
  923. .right-item-mini{width: 40%;}
  924. }
  925. }
  926. .card-progress-box{
  927. position: absolute;bottom: 36rpx;left:360rpx;right: 16rpx;
  928. .xx-progress-box{margin-right: 102rpx;font-size: 45rpx;}
  929. .xx-progress{margin-top: 0;}
  930. .progress-title{display: none;}
  931. .jxxx-btn{width: 263rpx;height: 122rpx;margin-right: 38rpx;}
  932. }
  933. }
  934. .xxjl-card-box::before{width: 462rpx;height: 123rpx;line-height: 123rpx;top: -45rpx;font-size: 54rpx;}
  935. .xx-jd-box{
  936. border-radius: 26rpx;margin: 0 38rpx 51rpx;padding: 51rpx;
  937. .xx-progress-box{
  938. margin-right: 67rpx;
  939. .xx-progress{margin-top: 26rpx;}
  940. }
  941. .jxxx-btn{width: 347rpx;height: 136rpx;}
  942. .jd-item-box{
  943. margin-top: 51rpx;padding-top: 51rpx;
  944. icon{width: 86rpx;height: 86rpx;margin-right: 83rpx;}
  945. icon::before{height: 112rpx;right: -38rpx;top: -16rpx;}
  946. .jd-item-btn{border-radius: 26rpx;padding: 38rpx;}
  947. .jd-item-btn:first-child{margin-right: 38rpx;}
  948. }
  949. }
  950. .xx-item-list{
  951. padding-bottom: 38rpx;
  952. .xx-item-title{margin: 51rpx 0;font-size: 46rpx;}
  953. .xx-more-btn{width: 1880rpx;height: 182rpx;margin: 0 auto 51rpx;}
  954. .xx-item-box{width: 1950rpx;height: 253rpx;margin: 0 auto 38rpx;padding: 32rpx;border-radius: 19rpx;font-size: 46rpx;
  955. img{width: 192rpx;height: 192rpx;border-radius: 19rpx;margin-right: 38rpx;}
  956. .xx-item-status{width: 142rpx;height: 139rpx;top:3rpx;}
  957. .xx-item-btn,.xx-item-lock-btn{width: 123rpx;height: 123rpx;margin-right: 19rpx;}
  958. }
  959. }
  960. .xx-next-btn{width: 1048rpx;height: 147rpx;line-height: 147rpx;margin: 51rpx auto;font-size: 51rpx;}
  961. .xx-xw-text{font-size: 51rpx;margin: 51rpx auto;}
  962. .go-top-btn{width: 123rpx;height: 123rpx;bottom: 480rpx;right:16rpx;}
  963. }
  964. }
  965. // 答案解析
  966. .ezy-dajx-page{
  967. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  968. .shiti-frame-box{overflow-y: auto;}
  969. .dajx-video-box{width: 95%;}
  970. .dajx-content-box{
  971. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  972. .slfx-title,.spjj-title{
  973. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  974. }
  975. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  976. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  977. .slfx-content{
  978. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  979. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  980. display: block;@include ezy-rich-text;
  981. }
  982. }
  983. }
  984. // 看视频
  985. .ezy-ksp-page{
  986. width: 100%;height: 100vh;display: flex;flex-direction: column;
  987. .ksp-tab-box{
  988. flex-shrink:0;display: flex;justify-content: space-evenly;border-bottom: 1rpx solid #b7defd;
  989. .tab-item{color: #9a9a9a;font-size: 34rpx;padding: 16rpx 24rpx;}
  990. .active{color: #5895f7;border-bottom: 4rpx solid #1684fc;}
  991. }
  992. .ksp-scroll-view{overflow-y: auto;}
  993. .ksp-page-body{padding: 24rpx 0 0;}
  994. .jstx-ksp-page-body{padding: 0;}
  995. .ksp-video-box{
  996. width: 95%;height: 423rpx;padding: 8px;box-sizing: border-box;
  997. border-radius: 16rpx;margin:32rpx auto;flex-shrink: 0;
  998. .prism-big-play-btn{
  999. width: 100rpx;height: 100rpx;opacity: 0.8;
  1000. background-image: url("@/static/images/xuexi/play-btn.png");
  1001. }
  1002. }
  1003. .ksp-item-list{
  1004. width: 95%;margin: 12rpx auto 24rpx;border-radius: 16rpx;position: relative;
  1005. background-color: #5894f6;padding: 20rpx 0;box-sizing: border-box;
  1006. box-shadow: 0 0rpx 12rpx rgba(100, 159, 241, 0.4);
  1007. }
  1008. .ksp-item-list::before{
  1009. content: '';width: 100%;height: 97rpx;@include ezy-no-repeat-cover;
  1010. background-image: url("@/static/images/xuexi/ksp-item-top-bj.png");
  1011. position: absolute;left: 0;right: 0;top: 0;z-index: 1;
  1012. }
  1013. .list-head{
  1014. width: 95%;display: flex;align-items: center;justify-content: space-between;
  1015. position: relative;z-index: 2;padding:0 0 24rpx;margin: 0 auto;
  1016. .list-title{color: #fff;font-size: 36rpx;}
  1017. .list-btn{
  1018. width: 210rpx;height: 72rpx;@include ezy-no-repeat-cover;
  1019. background-image: url("@/static/images/xuexi/ksp-video-play.png");
  1020. }
  1021. }
  1022. .list-body{
  1023. width: 95%;position: relative;z-index: 2;border-radius: 16rpx;
  1024. padding: 16rpx;box-sizing: border-box;margin: 0 auto;
  1025. color: #444;font-size: 32rpx;background-color: #fff;
  1026. img{max-width: 100%;margin: 10rpx auto 0;display: block;}
  1027. }
  1028. .ksp-item-box{
  1029. width: 670rpx;height: 150rpx;
  1030. display: flex;align-items: center;position: relative;
  1031. @include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/ksp-item-bj.png");
  1032. .ksp-icon{
  1033. width: 104rpx;height: 104rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  1034. @include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/xx-ksp-icon.png");
  1035. }
  1036. .ksp-title{color: #444;font-size: 32rpx;margin-right: auto;
  1037. margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  1038. }
  1039. @include mediaSmall() {
  1040. .ksp-tab-box{
  1041. .tab-item{font-size: 26rpx;padding: 12rpx 24rpx;}
  1042. .active{border-bottom: 3rpx solid #1684fc;}
  1043. }
  1044. .ksp-page-body{padding: 16rpx 0 0;}
  1045. .ksp-video-box{
  1046. height: 420rpx;border-radius: 10rpx;margin: 20rpx auto 10rpx;
  1047. .prism-big-play-btn{width: 65rpx;height: 65rpx;}
  1048. }
  1049. .ksp-item-list{
  1050. margin: 8rpx auto 16rpx;border-radius: 10rpx;padding: 13rpx 0;
  1051. box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.4);
  1052. &::before{height: 63rpx;}
  1053. }
  1054. .list-head{
  1055. padding: 0 0 12rpx;
  1056. .list-title{font-size: 22rpx;}
  1057. .list-btn{width: 137rpx;height: 47rpx;}
  1058. }
  1059. .list-body{
  1060. border-radius: 10rpx;padding: 10rpx;font-size: 20rpx;
  1061. img{margin: 6rpx auto 0;max-width: 60%;}
  1062. }
  1063. .ksp-item-box{
  1064. width: 436rpx;height: 98rpx;
  1065. .ksp-icon{width: 68rpx;height: 68rpx;}
  1066. .ksp-title{font-size: 22rpx;margin-left: 6rpx;height: 33rpx;}
  1067. }
  1068. }
  1069. @include mediaBig() {
  1070. .ksp-tab-box{
  1071. .tab-item{font-size: 64rpx;padding: 26rpx 38rpx;}
  1072. .active{border-bottom: 6rpx solid #1684fc;}
  1073. }
  1074. .ksp-page-body{padding: 38rpx 0 0;}
  1075. .ksp-video-box{
  1076. height: 1100rpx;border-radius: 26rpx;margin: 50rpx auto 24rpx;
  1077. .prism-big-play-btn{width: 160rpx;height: 160rpx;}
  1078. }
  1079. .ksp-item-list{
  1080. margin: 19rpx auto 38rpx;border-radius: 26rpx;padding: 32rpx 0;
  1081. box-shadow: 0 0rpx 19rpx rgba(100, 159, 241, 0.4);
  1082. &::before{height: 155rpx;}
  1083. }
  1084. .list-head{
  1085. padding: 0 0 38rpx;
  1086. .list-title{font-size: 54rpx;}
  1087. .list-btn{width: 336rpx;height: 115rpx;}
  1088. }
  1089. .list-body{
  1090. border-radius: 26rpx;padding: 26rpx;font-size: 46rpx;
  1091. img{margin: 16rpx auto 0;}
  1092. }
  1093. .ksp-item-box{
  1094. width: 1072rpx;height: 240rpx;
  1095. .ksp-icon{width: 166rpx;height: 166rpx;}
  1096. .ksp-title{font-size: 54rpx;margin-left: 16rpx;height: 80rpx;}
  1097. }
  1098. }
  1099. }
  1100. // 考试页
  1101. .ezy-exam-page{
  1102. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  1103. display: flex;flex-direction: column;
  1104. .exam-body{
  1105. z-index: 1;position: relative;flex: 1;display: flex;flex-direction: column;
  1106. }
  1107. .xx-jd-box{
  1108. width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1109. border-radius: 16rpx;box-sizing: border-box;padding:36rpx 36rpx 42rpx;margin: 20rpx auto 0;
  1110. .xx-row{display: flex;justify-content: space-between;align-items: center;margin-bottom: 24rpx;}
  1111. .text-row{color: #5d5e61;}
  1112. .dq-jd-text{color: #5693f5;font-size: 52rpx;}
  1113. .dq-jd-line{margin: 0 6rpx;}
  1114. }
  1115. .exam-progress-box{border-radius: 20rpx;overflow: hidden;}
  1116. .ezy-exam-swiper{
  1117. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  1118. uni-swiper-item{overflow-y: auto;}
  1119. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  1120. }
  1121. .exam-submit-btn{
  1122. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  1123. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  1124. }
  1125. .tip-mask-box{
  1126. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  1127. }
  1128. .swiper-tip-box{
  1129. font-size: 30rpx;color: #5989e2;justify-content: center;margin-top: 16rpx;
  1130. display: flex;flex-direction: row;align-items: center;
  1131. }
  1132. .swiper-tip-box::before,.swiper-tip-box::after{
  1133. content: '';width: 12rpx;height: 26rpx;display: block;
  1134. background-image: url("@/static/images/common/h-jt-icon.png");@include ezy-no-repeat-cover;
  1135. }
  1136. .swiper-tip-box::before{transform: rotate(180deg);margin-right: 32rpx;}
  1137. .swiper-tip-box::after{margin-left: 32rpx;}
  1138. .shiti-jj-btn{
  1139. width: 630rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  1140. background-image: url("@/static/images/common/login/login-btn-bj.png");
  1141. color: #fff;text-align: center;margin: 10rpx auto;font-size:32rpx;
  1142. }
  1143. @include mediaSmall() {
  1144. .xx-jd-box{
  1145. border-radius: 10rpx;padding: 23rpx 23rpx 27rpx;margin: 13rpx auto 0;
  1146. .xx-row{margin-bottom: 16rpx;font-size: 20rpx;}
  1147. .dq-jd-text{font-size: 34rpx;}
  1148. .dq-jd-line{margin: 0 4rpx;}
  1149. }
  1150. .exam-progress-box{border-radius: 13rpx;}
  1151. .exam-submit-btn{width: 57rpx;height: 81rpx;margin: 6rpx 27rpx 0 auto;}
  1152. .swiper-tip-box{
  1153. font-size: 20rpx;margin-top: 10rpx;
  1154. &::before,&::after{width: 8rpx;height: 17rpx;}
  1155. &::before{margin-right: 21rpx;}
  1156. &::after{margin-left: 21rpx;}
  1157. }
  1158. .shiti-jj-btn{
  1159. width:640rpx;height: 50rpx;line-height: 50rpx;margin: 6rpx auto;
  1160. background-image: url("@/static/images/pad/common/btn-bj.png");font-size:20rpx;}
  1161. }
  1162. @include mediaBig() {
  1163. .xx-jd-box{
  1164. border-radius: 26rpx;padding: 58rpx 58rpx 67rpx;margin: 32rpx auto 0;
  1165. .xx-row{margin-bottom: 38rpx;font-size: 46rpx;}
  1166. .dq-jd-text{font-size: 83rpx;}
  1167. .dq-jd-line{margin: 0 10rpx;}
  1168. }
  1169. .exam-progress-box{border-radius: 32rpx;}
  1170. .exam-submit-btn{width: 139rpx;height: 200rpx;margin: 16rpx 67rpx 0 auto;}
  1171. .swiper-tip-box{
  1172. font-size: 48rpx;margin-top: 26rpx;
  1173. &::before,&::after{width: 19rpx;height: 42rpx;}
  1174. &::before{margin-right: 51rpx;}
  1175. &::after{margin-left: 51rpx;}
  1176. }
  1177. .shiti-jj-btn{width: 1800rpx;height: 142rpx;line-height: 142rpx;margin: 16rpx auto;font-size:46rpx;}
  1178. }
  1179. }
  1180. // 单元测试
  1181. .dycs-dialog{
  1182. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  1183. .dycs-body{overflow-y: auto;}
  1184. .dycs-img{
  1185. width: 430rpx;height: 350rpx;margin: 92rpx auto 32rpx;flex-shrink: 0;
  1186. background-image: url("@/static/images/exam/shiti-dialog-img.png");@include ezy-no-repeat-cover;
  1187. }
  1188. .dycs-tip{
  1189. text-align: center;color: #333;font-size: 35rpx;
  1190. }
  1191. .dycs-fenshu-box{
  1192. width: 560rpx;margin: 72rpx auto;padding: 42rpx 32rpx;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  1193. display: flex;justify-content: center;align-items: center;border-radius: 12rpx;font-size: 32rpx;
  1194. .fenshu-item-box{width: 49%;text-align: center;font-size: 32rpx;color: #333;}
  1195. .item-number{font-size: 56rpx;margin-bottom: 10rpx;}
  1196. .red-number{color: #f60000;}
  1197. .item-line{width: 1rpx;height: 120rpx;background: #f3f5f9;}
  1198. }
  1199. .dycs-btn-box{
  1200. display: flex;justify-content: center;margin-top: 64rpx;
  1201. .cxcs-btn,.ckda-btn{
  1202. width: 275rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  1203. text-align: center;color: #fff;font-size: 32rpx;margin: 0 10rpx;
  1204. }
  1205. .cxcs-btn{background-image: url("@/static/images/exam/shiti-btn-blue-bj.png");}
  1206. .ckda-btn{background-image: url("@/static/images/exam/shiti-btn-orange-bj.png");}
  1207. }
  1208. @media (max-height: 700px) {
  1209. .dycs-img{margin: 64rpx auto 16rpx;}
  1210. .dycs-fenshu-box{margin: 46rpx auto;}
  1211. .dycs-btn-box{margin-top: 36rpx;}
  1212. }
  1213. @include mediaSmall() {
  1214. .dycs-img{width: 280rpx;height: 228rpx;margin: 16% auto 21rpx;}
  1215. .dycs-tip{font-size: 22rpx;}
  1216. .dycs-fenshu-box{
  1217. width: 364rpx;margin: 47rpx auto;padding: 27rpx 21rpx;border-radius: 8rpx;font-size: 22rpx;
  1218. .fenshu-item-box{font-size: 22rpx;}
  1219. .item-number{font-size: 36rpx;margin-bottom: 6rpx;}
  1220. .item-line{height: 78rpx;}
  1221. }
  1222. .dycs-btn-box{
  1223. margin-top: 42rpx;
  1224. .cxcs-btn,.ckda-btn{width: 179rpx;height: 57rpx;line-height: 57rpx;font-size: 22rpx;margin: 0 6rpx;}
  1225. }
  1226. }
  1227. @include mediaBig() {
  1228. .dycs-img{width: 688rpx;height: 560rpx;margin: 20% auto 51rpx;}
  1229. .dycs-tip{font-size: 54rpx;}
  1230. .dycs-fenshu-box{
  1231. width: 896rpx;margin: 115rpx auto;padding: 67rpx 51rpx;border-radius: 19rpx;font-size: 54rpx;
  1232. .fenshu-item-box{font-size: 54rpx;}
  1233. .item-number{font-size: 90rpx;margin-bottom: 16rpx;}
  1234. .item-line{height: 192rpx;}
  1235. }
  1236. .dycs-btn-box{
  1237. margin-top: 102rpx;
  1238. .cxcs-btn,.ckda-btn{width: 440rpx;height: 141rpx;line-height: 141rpx;font-size: 54rpx;margin: 0 16rpx;}
  1239. }
  1240. }
  1241. }
  1242. // 成绩页
  1243. .ezy-result-page{
  1244. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  1245. display: flex;flex-direction: column;
  1246. .result-exam-swiper{
  1247. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  1248. uni-swiper-item{overflow-y: auto;}
  1249. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  1250. }
  1251. .answer-content-box{
  1252. margin-top: 24rpx;
  1253. .answer-title{
  1254. width: 208rpx;height: 91rpx;line-height: 91rpx;
  1255. font-size: 32rpx;text-align: center;margin-left: 10rpx;color: #fff;
  1256. background-image: url("@/static/images/exam/shiti-anser-title.png");@include ezy-no-repeat-cover;
  1257. }
  1258. .answer-text-title{font-size: 32rpx;color: #f6aa1d;margin: 24rpx 0;}
  1259. .answer-content-border{
  1260. width: 96%;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  1261. border-radius: 12rpx;font-size: 32rpx;margin: 42rpx auto 56rpx;}
  1262. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #499141;
  1263. border-radius: 4px;box-sizing: border-box;padding: 24rpx;min-height: 80rpx;
  1264. .tiankong-answer-title{color: #333;margin-bottom: 10rpx;}
  1265. .answer-index-box{
  1266. font-size: 24rpx;border: 1rpx solid #499141;border-radius: 24rpx;margin-right: 10rpx;
  1267. line-height: 1;text-align: center;padding: 2rpx 7rpx;display: inline-block;
  1268. flex-shrink: 0;min-width: 16rpx;
  1269. }
  1270. .tiankong-answer-row{
  1271. word-break: break-all;margin-bottom: 10rpx;margin: 24rpx 0;
  1272. display: flex;align-items: center;line-height: 1;
  1273. }
  1274. .tiankong-answer-row:last-child{margin-bottom: 0;}
  1275. }
  1276. .answer-btn-box{display: flex;height: 135rpx;}
  1277. .answer-item-left,.answer-item-right{
  1278. width: 100%;flex: 1;align-items: center;justify-content: center;
  1279. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  1280. .answer-item-title{font-size: 30rpx;color: #333;margin-bottom: 10rpx;}
  1281. .answer-item-error{font-size: 30rpx;color: #ef1417;min-height: 36rpx;}
  1282. .answer-item-correct{font-size: 30rpx;color: #15ab2e;min-height: 36rpx;}
  1283. }
  1284. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  1285. .answer-item-right{border-radius: 0 4px 4px 0;}
  1286. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  1287. }
  1288. .answer-stjx-box{
  1289. width: 96%;margin: 0 auto;
  1290. .answer-rich-text{
  1291. font-size: 32rpx;color: #333;line-height: 1.8;
  1292. }
  1293. }
  1294. .answer-video-box{
  1295. position: relative;margin-bottom:24rpx;
  1296. img{width: 100%;}
  1297. }
  1298. .answer-video-box::before{
  1299. content: '';display: block;position: absolute;
  1300. width: 90rpx;height: 90rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/xuexi/video-play-btn.png");
  1301. top: 52%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;
  1302. }
  1303. @include mediaSmall() {
  1304. .answer-content-box{
  1305. margin-top: 16rpx;
  1306. .answer-title{width: 135rpx;height: 59rpx;line-height: 59rpx;font-size: 21rpx;margin-left: 6rpx;}
  1307. .answer-text-title{font-size: 21rpx;margin: 16rpx 0;}
  1308. .answer-content-border{border-radius: 8rpx;font-size: 21rpx;margin: 27rpx auto 36rpx;}
  1309. .tiankong-answer-content-box{
  1310. font-size: 21rpx;
  1311. padding: 16rpx;
  1312. min-height: 52rpx;
  1313. .tiankong-answer-title{margin-bottom: 6rpx;}
  1314. .answer-index-box{
  1315. font-size: 16rpx;border-radius: 16rpx;margin-right: 6rpx;
  1316. padding: 1rpx 5rpx;min-width: 10rpx;}
  1317. .tiankong-answer-row{margin: 16rpx 0;}
  1318. }
  1319. .answer-btn-box{height: 88rpx;}
  1320. .answer-item-left,.answer-item-right{
  1321. .answer-item-title{font-size: 20rpx;margin-bottom: 6rpx;}
  1322. .answer-item-error{font-size: 20rpx;min-height: 23rpx;}
  1323. .answer-item-correct{font-size: 20rpx;min-height: 23rpx;}
  1324. }
  1325. .answer-line{top: 10rpx;bottom: 10rpx;}
  1326. }
  1327. .answer-stjx-box{
  1328. .answer-rich-text{font-size: 21rpx;line-height: 1.8;}
  1329. }
  1330. .answer-video-box{
  1331. margin-bottom: 16rpx;
  1332. &::before{width: 59rpx;height: 59rpx;}
  1333. }
  1334. }
  1335. @include mediaBig() {
  1336. .answer-content-box{
  1337. margin-top: 38rpx;
  1338. .answer-title{
  1339. width: 333rpx;height: 146rpx;line-height: 146rpx;
  1340. font-size: 54rpx;margin-left: 16rpx;
  1341. }
  1342. .answer-text-title{font-size: 54rpx;margin: 38rpx 0;}
  1343. .answer-content-border{border-radius: 19rpx;font-size: 46rpx;margin: 67rpx auto 90rpx;}
  1344. .tiankong-answer-content-box{
  1345. font-size: 46rpx;padding: 38rpx;min-height: 128rpx;
  1346. .tiankong-answer-title{margin-bottom: 16rpx;}
  1347. .answer-index-box{
  1348. font-size: 46rpx;border-radius: 38rpx;
  1349. margin-right: 16rpx;padding: 3rpx 11rpx;min-width: 26rpx;
  1350. }
  1351. .tiankong-answer-row{margin: 38rpx 0;}
  1352. }
  1353. .answer-btn-box{height: 216rpx;}
  1354. .answer-item-left,.answer-item-right{
  1355. .answer-item-title{font-size: 54rpx;margin-bottom: 16rpx;}
  1356. .answer-item-error{font-size: 46rpx;min-height: 58rpx;}
  1357. .answer-item-correct{font-size: 46rpx;min-height: 58rpx;}
  1358. }
  1359. .answer-line{top: 26rpx;bottom: 26rpx;}
  1360. }
  1361. .answer-stjx-box{
  1362. .answer-rich-text{font-size: 46rpx;line-height: 1.8;}
  1363. }
  1364. .answer-video-box{
  1365. margin-bottom: 38rpx;
  1366. &::before{width: 144rpx;height: 144rpx;}
  1367. }
  1368. }
  1369. }
  1370. // 我的页面
  1371. .ezy-my-page{
  1372. width: 100%;height: 100vh;position: relative;overflow: auto;background: #f9f9fb;
  1373. .my-title-navBar-box{padding-top: 24rpx;}
  1374. .my-page-box{position: relative;z-index: 1;margin: 0;}
  1375. .my-head-box{
  1376. width: 100%;padding: 0 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  1377. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  1378. .head-content-box{font-size: 30rpx;}
  1379. }
  1380. .my-banner-img{
  1381. width: 730rpx;height: 413rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  1382. background-image: url("@/static/images/phone/my/my-banner.png");border-radius: 16rpx;
  1383. }
  1384. // list
  1385. .my-list-box{
  1386. width:710rpx;margin: 24rpx auto;display: flex;flex-wrap: wrap;padding: 42rpx 6rpx 0;
  1387. background-color: #fff;border-radius: 16rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1388. .list-item{color: #444;width: 25%;text-align: center;font-size: 28rpx;margin-bottom: 36rpx;}
  1389. .list-icon{width: 64rpx;height: 64rpx;display: block;
  1390. margin: 0 auto 12rpx;@include ezy-no-repeat-cover;}
  1391. .yysz-icon{background-image: url("@/static/images/common/my/list-icon1.png");}
  1392. .sc-icon{background-image: url("@/static/images/common/my/sc-icon.png");}
  1393. .dd-icon{background-image: url("@/static/images/common/my/dd-icon.png");}
  1394. .dhm-icon{background-image: url("@/static/images/common/my/dhm-icon.png");}
  1395. .dhm-icon{background-image: url("@/static/images/common/my/dhm-icon.png");}
  1396. .bdsjh-icon{background-image: url("@/static/images/common/my/sjbd-icon.png");}
  1397. }
  1398. .kefu-dialog{
  1399. .not-confirm-btn{display: none;}
  1400. .confirm-btn{margin: 24rpx auto;}
  1401. }
  1402. @include mediaSmall() {
  1403. .my-title-navBar-box{
  1404. padding-top: 12rpx;
  1405. &::before{height: 288rpx;background-image: url("@/static/images/pad/common/my-page-header-bj.png");}
  1406. }
  1407. .my-head-box{
  1408. padding: 0 16rpx 24rpx;
  1409. .head-img-box{width: 130rpx;height: 130rpx;margin: 0 16rpx 0 8rpx;}
  1410. .head-content-box{font-size: 28rpx;}
  1411. }
  1412. .my-banner-img{width: 712rpx;height: 300rpx;border-radius: 10rpx;
  1413. background-image: url("@/static/images/pad/my/my-banner.png");}
  1414. .my-list-box{
  1415. width: 712rpx;margin: 16rpx auto;padding: 30rpx 4rpx 0;border-radius: 16rpx;
  1416. justify-content: space-around;
  1417. .list-item{width: 20%;font-size: 22rpx;margin-bottom: 30rpx;}
  1418. .list-icon{width: 60rpx;height: 60rpx;margin: 0 auto 8rpx;}
  1419. }
  1420. .kefu-dialog{
  1421. .confirm-btn{margin: 16rpx auto;}
  1422. }
  1423. }
  1424. @include mediaBig() {
  1425. min-height: 2200rpx;
  1426. .my-title-navBar-box{
  1427. padding-top: 4rpx;
  1428. &::before{height: 720rpx;}
  1429. }
  1430. .my-head-box{
  1431. width: 1940rpx;margin: 0 auto 32rpx;
  1432. .head-img-box{width: 350rpx;height: 350rpx;margin: 0 38rpx 0 19rpx;}
  1433. .head-content-box{font-size: 66rpx;}
  1434. }
  1435. .my-banner-img{width: 1940rpx;height: 818rpx;border-radius: 26rpx;}
  1436. .my-list-box{
  1437. width: 1940rpx;margin: 38rpx auto;padding: 75rpx 10rpx 0;border-radius: 26rpx;
  1438. .list-item{font-size: 45rpx;margin-bottom: 75rpx;}
  1439. .list-icon{width: 160rpx;height: 160rpx;margin: 0 auto 19rpx;}
  1440. }
  1441. .kefu-dialog{
  1442. .confirm-btn{margin: 38rpx auto;}
  1443. }
  1444. }
  1445. }
  1446. // 应用设置
  1447. .ezy-yysz-page{
  1448. width: 100%;height: 100vh;min-height: 1400rpx;background: #f9f9fb;position: relative;overflow: auto;
  1449. display: flex;flex-direction: column;
  1450. .yysz-page-box{position: relative;z-index: 1;}
  1451. .yysz-row-box{width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1452. border-radius: 16rpx;margin: 16rpx auto 0;color: #333;font-size: 30rpx;}
  1453. .yysz-item{display: flex;align-items: center;justify-content: space-between;
  1454. padding: 32rpx 32rpx 32rpx 0;position: relative;margin: 0 32rpx 0 32rpx;}
  1455. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1456. .img-item{padding: 32rpx 32rpx 0 0;}
  1457. .item-text{color: #888;}
  1458. .yysz-item::after{
  1459. content: '';width: 14rpx;height: 24rpx;@include ezy-no-repeat-cover;
  1460. background-image: url("@/static/images/my/list-jt.png");
  1461. position: absolute;right: 0;
  1462. }
  1463. .yysz-img-box{width: 72rpx;height: 72rpx;border-radius: 50%;@include ezy-no-repeat-cover}
  1464. @include mediaSmall() {
  1465. min-height: 1000rpx;
  1466. .yysz-row-box{margin: 10rpx auto 0;font-size: 22rpx;}
  1467. .yysz-item{padding: 26rpx 42rpx 26rpx 0;margin: 0 21rpx 0 21rpx;}
  1468. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1469. .img-item{padding: 26rpx 42rpx 0 0;}
  1470. .yysz-item::after{width: 10rpx;height: 20rpx;}
  1471. .yysz-img-box{width: 76rpx;height: 76rpx;}
  1472. }
  1473. @include mediaBig() {
  1474. .yysz-row-box{border-radius: 26rpx;margin: 26rpx auto 0;font-size: 54rpx;}
  1475. .yysz-item{padding: 51rpx 82rpx 51rpx 0;margin: 0 51rpx 0 51rpx;}
  1476. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1477. .img-item{padding: 51rpx 82rpx 0 0;}
  1478. .yysz-item::after{width: 26rpx;height: 42rpx;}
  1479. .yysz-img-box{width: 120rpx;height: 120rpx;}
  1480. }
  1481. }
  1482. // 关于我们
  1483. .ezy-about-page{
  1484. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  1485. .about-body-border{
  1486. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  1487. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  1488. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  1489. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  1490. }
  1491. .about-body-box{
  1492. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  1493. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  1494. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  1495. }
  1496. .content-top-box{
  1497. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  1498. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #ccc;
  1499. .about-icon-box{
  1500. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  1501. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  1502. }
  1503. .about-name{
  1504. font-size: 30rpx;margin: 20rpx 0 42rpx;
  1505. }
  1506. .about-text{margin: 16rpx 0;}
  1507. }
  1508. .content-box{
  1509. font-size: 30rpx;margin-top: 32rpx;line-height: 2;color: #333;
  1510. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  1511. }
  1512. @media (max-height: 600px) {
  1513. .about-body-border{margin: 12rpx auto 150rpx;}
  1514. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  1515. .content-top-box{padding-bottom: 24rpx;}
  1516. .content-box{margin-top: 20rpx;}
  1517. }
  1518. }
  1519. // 资料
  1520. .ezy-ziliao-page{
  1521. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1522. padding-bottom: 100rpx;box-sizing: border-box;
  1523. .zl-card-list{width: 100%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;padding: 12rpx 0 0;}
  1524. .jstx-card-box{
  1525. border-radius: 16rpx;margin: 0 24rpx 32rpx;font-size: 0;
  1526. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  1527. .jstx-card-img{width: 100%;border-radius: 16rpx 16rpx 0 0;}
  1528. .jstx-card-title{
  1529. padding: 32rpx 24rpx 42rpx;text-align: center;
  1530. font-size: 32rpx;color: #333;@include single-line-ellipsis;
  1531. }
  1532. }
  1533. @include mediaSmall() {
  1534. padding-bottom: 80rpx;
  1535. .zl-card-list{padding: 4rpx 0 0;}
  1536. .jstx-card-box{
  1537. margin: 0 24rpx 20rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  1538. .jstx-card-title{padding: 21rpx 16rpx 27rpx;font-size: 22rpx;}
  1539. }
  1540. }
  1541. @include mediaBig() {
  1542. padding-bottom: 180rpx;
  1543. .zl-card-list{padding: 42rpx 0 0;}
  1544. .jstx-card-img{border-radius: 26rpx 26rpx 0 0;}
  1545. .jstx-card-box{
  1546. border-radius: 26rpx;margin: 0 38rpx 52rpx;
  1547. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  1548. .jstx-card-title{padding: 51rpx 38rpx 67rpx;font-size: 54rpx;}
  1549. }
  1550. }
  1551. }
  1552. // 资料---数学--计算特训题库下载
  1553. .ezy-jstx-ziliao-page{
  1554. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1555. .jstx-body{
  1556. margin: 48rpx 20rpx 0;position: relative;overflow: unset;padding: 0 24rpx;box-sizing: border-box;
  1557. height: calc(100vh - 160rpx - var(--status-bar-height));
  1558. .jstx-body-title{
  1559. width: 406rpx;height: 77rpx;display: block;overflow-x:auto;
  1560. position: absolute;left: 50%;transform: translateX(-50%);top: -28rpx;z-index: 3;
  1561. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/ziliao/select-dj-img.png");
  1562. }
  1563. .jstx-tab-box{
  1564. width: 100%;height: 64rpx;white-space: nowrap;padding: 0;
  1565. text-align:center;margin: 90rpx 0 0;overflow-x: auto;
  1566. .tab-item{
  1567. height: 64rpx;line-height: 64rpx;margin: 0 16rpx;padding: 0 20rpx;
  1568. color: #333;font-size: 36rpx;display: inline-block;text-align:center;}
  1569. .tab-item:first-child{margin-left: 0;}
  1570. .tab-item:last-child{margin-right: 0;}
  1571. .active{color: #0d7ffc;position: relative;}
  1572. .active::after{
  1573. content: '';width: 100%;height: 4rpx;background-color: #0d7ffc;
  1574. position: absolute;bottom: 0;left: 0;border-radius: 4rpx;
  1575. }
  1576. }
  1577. .jstx-card-list{
  1578. padding: 24rpx 0 0;overflow-y: auto;flex: 1;
  1579. .ziliao-card-box{
  1580. display: flex;align-items: center;justify-content: space-between;box-sizing: border-box;
  1581. background-color: #f3f3f3;padding: 20rpx;margin-bottom: 24rpx;border-radius: 16rpx;
  1582. .card-img{width: 150rpx;height: 150rpx;flex-shrink: 0;margin-right: 24rpx;}
  1583. .card-content-box{
  1584. flex: 1;line-height: 1.6;
  1585. .ziliao-name{font-size: 32rpx;color: #333;@include single-line-ellipsis;margin-bottom: 10rpx;}
  1586. .banben-name{font-size: 28rpx;color: #0d7ffc;@include single-line-ellipsis;}
  1587. }
  1588. .card-icon{
  1589. width: 58rpx;height: 62rpx;flex-shrink: 0;
  1590. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/ziliao/jstx-pdf.png");
  1591. }
  1592. }
  1593. }
  1594. }
  1595. @include mediaSmall() {
  1596. .jstx-body{
  1597. margin-top: 31rpx;padding: 0 16rpx;
  1598. height: calc(100vh - 104rpx - var(--status-bar-height));
  1599. .jstx-body-title{width: 264rpx;height: 50rpx;top: -19rpx;}
  1600. .jstx-tab-box{
  1601. height: 42rpx;margin: 60rpx 0 0;font-size: 0;
  1602. .tab-item{height: 42rpx;line-height: 42rpx;margin: 0 20rpx;padding: 0 27rpx;font-size: 22rpx;}
  1603. .active::after{height: 3rpx;}
  1604. }
  1605. .jstx-card-list{
  1606. padding: 16rpx 0 0;
  1607. .ziliao-card-box{
  1608. padding: 10rpx;margin-bottom: 16rpx;border-radius: 10rpx;
  1609. .card-img{width: 82rpx;height: 82rpx;margin-right: 16rpx;}
  1610. .card-content-box{
  1611. .ziliao-name{font-size: 22rpx;margin-bottom: 7rpx;}
  1612. .banben-name{font-size: 20rpx;}
  1613. }
  1614. .card-icon{width: 40rpx;height: 42rpx;margin-right: 12rpx;}
  1615. }
  1616. }
  1617. }
  1618. }
  1619. @include mediaBig() {
  1620. .jstx-body{
  1621. margin: 76rpx 42rpx;padding: 0 38rpx;
  1622. height: calc(100vh - 256rpx - var(--status-bar-height));
  1623. .jstx-body-title{width: 650rpx;height: 123rpx;top: -45rpx;}
  1624. .jstx-tab-box{
  1625. height: 102rpx;margin: 144rpx 0 0;
  1626. .tab-item{height: 102rpx;line-height: 102rpx;margin: 0 60rpx;padding: 0 77rpx;font-size: 54rpx;}
  1627. .active::after{height: 6rpx;}
  1628. }
  1629. .jstx-card-list{
  1630. padding: 38rpx 0 0;
  1631. .ziliao-card-box{
  1632. padding: 28rpx;margin-bottom: 38rpx;border-radius: 26rpx;
  1633. .card-img{width: 210rpx;height: 210rpx;margin-right: 38rpx;}
  1634. .card-content-box{
  1635. .ziliao-name{font-size: 54rpx;margin-bottom: 16rpx;}
  1636. .banben-name{font-size: 46rpx;}
  1637. }
  1638. .card-icon{width: 112rpx;height: 120rpx;}
  1639. }
  1640. }
  1641. }
  1642. }
  1643. }
  1644. // 资料下载弹窗
  1645. .sxtk-sc-dialog{
  1646. .tip-title{color: #343434;font-size: 38rpx;margin-bottom: 24rpx;}
  1647. .tip-content-box{
  1648. width: 625rpx;height: 587rpx;padding: 42rpx 48rpx;
  1649. background-image: url("@/static/images/my/tk-dialog-bj.png");
  1650. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1651. }
  1652. .tip-content{
  1653. display: flex;align-items: center;
  1654. min-height: 260rpx;text-align: justify;border-bottom: 1px dashed #70cbf4;
  1655. margin-bottom: 30rpx;color: #666;font-size: 32rpx;padding-bottom: 32rpx;
  1656. border-bottom: 1px dashed #70cbf4;line-height: 1.8;}
  1657. @include mediaSmall() {
  1658. .tip-title{font-size: 24rpx;margin-bottom: 16rpx;}
  1659. .tip-content-box{width: 406rpx;height: 382rpx;padding: 27rpx 31rpx;}
  1660. .tip-content{min-height: 169rpx;margin-bottom: 20rpx;font-size: 20rpx;padding-bottom: 20rpx;}
  1661. }
  1662. @include mediaBig() {
  1663. .tip-title{font-size: 54rpx;margin-bottom: 38rpx;}
  1664. .tip-content-box{width: 1000rpx;height: 939rpx;padding: 67rpx 77rpx;}
  1665. .tip-content{min-height: 416rpx;margin-bottom: 48rpx;font-size: 46rpx;padding-bottom: 46rpx;}
  1666. }
  1667. }
  1668. // 订单
  1669. .ezy-order-page{
  1670. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1671. .order-scroll-view{overflow-y: auto;}
  1672. .order-body{padding: 0;}
  1673. .order-card-box{
  1674. border-radius: 16rpx;margin: 32rpx 24rpx 0;padding: 24rpx;
  1675. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  1676. .card-head-box{
  1677. display: flex;align-items: center;justify-content: space-between;line-height: 1.6;
  1678. .head-name{font-size: 30rpx;color: #333;font-weight: bold;}
  1679. .head-status{font-size: 28rpx;color: #666;}
  1680. }
  1681. .card-body-box{
  1682. display: flex;margin-top: 16rpx;
  1683. .order-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;}
  1684. .body-right-box{
  1685. margin-left: 24rpx;flex: 1;
  1686. .body-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  1687. .taocan-text{font-size: 26rpx;color: #666;margin-bottom: 24rpx; @include multi-line-ellipsis(2);}
  1688. .tip-text{font-size: 26rpx;color: #16a245;margin-bottom: 24rpx;}
  1689. .money-text{font-size: 42rpx;color: #333;text-align: right;font-weight: normal;}
  1690. }
  1691. }
  1692. }
  1693. }
  1694. // 产品商城
  1695. .ezy-shop-page{
  1696. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1697. .shop-card-list{overflow-y: auto;flex: 1;padding: 12rpx 0 0;}
  1698. .shop-card-box{
  1699. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  1700. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);display: flex;
  1701. .shop-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;}
  1702. .card-right-box{
  1703. margin-left: 24rpx;display: flex;flex-direction: column;justify-content: space-between;
  1704. .card-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 24rpx;margin-top: 6rpx;}
  1705. .card-content{font-size: 28rpx;color: #666;text-align: justify;margin-bottom: 24rpx;@include multi-line-ellipsis(3);line-height: 1.6;}
  1706. .card-price{font-size: 34rpx;color: #ff0202;font-weight: bolder;}
  1707. }
  1708. }
  1709. @include mediaSmall() {
  1710. .shop-card-list{padding: 4rpx 0 0;}
  1711. .shop-card-box{
  1712. border-radius: 10rpx;margin: 0 16rpx 21rpx;padding: 21rpx;
  1713. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  1714. .shop-img{width: 110rpx;height: 154rpx;border-radius: 10rpx;}
  1715. .card-right-box{
  1716. margin-left: 16rpx;
  1717. .card-title{font-size: 22rpx;margin-bottom: 16rpx;margin-top: 2rpx;}
  1718. .card-content{font-size: 20rpx;margin-bottom: 16rpx;line-height: 1.6;@include multi-line-ellipsis(2);}
  1719. .card-price{font-size: 22rpx;}
  1720. }
  1721. }
  1722. }
  1723. @include mediaBig() {
  1724. .shop-card-list{padding: 42rpx 0 0;}
  1725. .shop-card-box{
  1726. border-radius: 26rpx;margin: 0 38rpx 51rpx;padding: 51rpx;
  1727. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  1728. .shop-img{width: 240rpx;height: 336rpx;border-radius: 26rpx;}
  1729. .card-right-box{
  1730. margin-left: 38rpx;
  1731. .card-title{font-size: 54rpx;margin-bottom: 16rpx;margin-top: 4rpx;}
  1732. .card-content{font-size: 45rpx;margin-bottom: 16rpx;line-height: 1.8;}
  1733. .card-price{font-size: 54rpx;}
  1734. }
  1735. }
  1736. }
  1737. }
  1738. // 产品商城详情
  1739. .ezy-shop-info-page{
  1740. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1741. .shop-info-body{
  1742. flex: 1;position: relative;z-index: 2;background-color: #fff;
  1743. display: flex;flex-direction: column;overflow: hidden;
  1744. .img-content-box{
  1745. flex: 1;overflow-y: auto;
  1746. img{width: 100%;margin: 0 auto;display: block;}
  1747. }
  1748. .fx-btn-row{
  1749. flex-shrink: 0;display: flex;align-items: center;justify-content: space-between;padding: 24rpx;
  1750. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.6);box-sizing: border-box;background-color: #f9f9f9;
  1751. .fx-btn{
  1752. width:200rpx;color: #444;font-size: 30rpx;
  1753. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1754. }
  1755. .fx-icon{
  1756. width: 43rpx;height: 38rpx;margin-bottom: 6rpx;
  1757. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/fx-icon.png");
  1758. }
  1759. .bmxx-btn{
  1760. width: 492rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1761. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/bmxx-btn.png");
  1762. }
  1763. }
  1764. }
  1765. @include mediaSmall() {
  1766. .shop-info-body{
  1767. .fx-btn-row{
  1768. padding: 10rpx;box-shadow: 0 5rpx 16rpx rgba(0, 0, 0, 0.6);
  1769. .fx-btn{width: 120rpx;font-size: 20rpx;}
  1770. .fx-icon{width: 27rpx;height: 25rpx;margin-bottom: 2rpx;}
  1771. .bmxx-btn{width: 248rpx;height: 44rpx;line-height: 44rpx;font-size: 20rpx;margin-right: 42rpx;@include ezy-no-repeat-contain;}
  1772. }
  1773. }
  1774. }
  1775. @include mediaBig() {
  1776. .shop-info-body{
  1777. .fx-btn-row{
  1778. padding: 36rpx;box-shadow: 0 12rpx 36rpx rgba(0, 0, 0, 0.6);
  1779. .fx-btn{width: 300rpx;font-size: 46rpx;}
  1780. .fx-icon{width: 75rpx;height: 67rpx;margin-bottom: 9rpx;}
  1781. .bmxx-btn{width: 736rpx;height: 132rpx;line-height: 132rpx;font-size: 54rpx;}
  1782. }
  1783. }
  1784. }
  1785. }
  1786. // 确认订单
  1787. .ezy-qrdd-page{
  1788. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1789. .qrdd-body-box{
  1790. flex: 1;position: relative;z-index: 2;
  1791. display: flex;flex-direction: column;
  1792. overflow-y: auto;
  1793. }
  1794. .dd-item-box{
  1795. width: 731rpx;height:356rpx;@include ezy-no-repeat-cover;
  1796. background-image: url("@/static/images/shop/order-bj.png");
  1797. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  1798. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  1799. .item-img-box{width: 210rpx;height: 285rpx;border-radius: 12rpx;margin-right: 24rpx;flex-shrink: 0;}
  1800. .item-content-box{
  1801. display: flex;flex-direction: column;justify-content: space-between;line-height: 1.5;
  1802. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 10rpx;}
  1803. .item-intro{color: #444;font-size: 28rpx;@include multi-line-ellipsis(4);margin-bottom: 10rpx;}
  1804. .item-xianjia{color: #ff0000;font-size: 34rpx;font-weight: bolder;}
  1805. }
  1806. }
  1807. // border-box
  1808. .qrdd-border-box{
  1809. width: 713rpx;margin:0 auto;border-radius: 20rpx;
  1810. box-shadow: 0 0rpx 16rpx rgba(100, 159, 241, 0.2);
  1811. box-sizing: border-box;padding: 0 24rpx 16rpx;margin-bottom: 24rpx;
  1812. position: relative;z-index: 2;background-color: #fff;flex-shrink: 0;
  1813. // 课程学习等级
  1814. .kcxxdj-title{color: #454545;font-size: 30rpx;font-weight: bolder;padding: 16rpx 0;}
  1815. .kcxxdj-tc-box{
  1816. width: 100%;background-color: #f9fafc;border-radius: 20rpx;
  1817. display: flex;flex-direction: row;align-items: center;flex-wrap: wrap;
  1818. box-sizing: border-box;padding: 16rpx 0;
  1819. .tc-item{
  1820. min-width:76rpx;min-height: 76rpx;box-sizing: border-box;
  1821. text-align: center;border: 1rpx solid #666;border-radius: 20rpx;
  1822. font-size: 30rpx;line-height: 1; color: #666;
  1823. padding: 20rpx 6rpx;margin: 16rpx 0 16rpx 16rpx;
  1824. }
  1825. .active{background-color: #2b9bfd;color: #fff;border: 1rpx solid #1280e1;}
  1826. }
  1827. // 商品总价
  1828. .border-row{
  1829. display: flex;justify-content: space-between;
  1830. font-size: 32rpx;color: #444;padding: 32rpx 0;
  1831. border-bottom:1rpx dashed #f1f1f1;
  1832. .jg-text{color: #ff0000;}
  1833. }
  1834. .border-row:last-child{border: 0;}
  1835. .sum-row{justify-content: flex-end;}
  1836. .sum-text{margin-right: 32rpx;}
  1837. // 支付方式
  1838. .zzfs-name-box{
  1839. display: flex;align-items: center;
  1840. icon{width: 53rpx;height: 53rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;}
  1841. .wechat-icon{background-image: url("@/static/images/shop/wx-icon.png");}
  1842. .alipay-icon{background-image: url("@/static/images/shop/zfb-icon.png");}
  1843. }
  1844. }
  1845. .qrdd-footer-box{
  1846. flex-shrink: 0;display: flex;align-items: center;justify-content: space-between;padding: 24rpx;
  1847. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.4);box-sizing: border-box;background-color: #f9f9f9;
  1848. .jg-box{color: #ff0000;}
  1849. .sum-row{display: flex;align-items: center;}
  1850. .xj-text-text{font-weight: bolder;font-size: 42rpx;}
  1851. .sum-text{font-size: 32rpx;color: #333;}
  1852. .yh-text{font-size: 28rpx;margin-top: 6rpx;}
  1853. .ljzf-btn{
  1854. width: 279rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1855. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/pay-btn.png");
  1856. }
  1857. }
  1858. }
  1859. // 手机号快捷登录弹窗
  1860. .sjh-kjdl-dialog{
  1861. .sjh-kjdl-content-box{display: flex;flex-direction: column;align-items: center;}
  1862. .kjdl-btn{
  1863. width: 496rpx;height: 88rpx;line-height: 88rpx;color: #fff;font-size: 36rpx;margin: 32rpx 0;
  1864. @include ezy-no-repeat-cover;background-image: url("@/static/images/shop/ksdl-btn.png");
  1865. }
  1866. .ykkt-text{color: #333;font-size: 32rpx;}
  1867. @include mediaSmall() {
  1868. .kjdl-btn{width: 322rpx;height: 57rpx;line-height: 57rpx;font-size: 22rpx;margin: 21rpx 0;}
  1869. .ykkt-text{font-size: 20rpx;}
  1870. }
  1871. @include mediaBig() {
  1872. .kjdl-btn{width: 794rpx;height: 141rpx;line-height: 141rpx;font-size: 54rpx;margin: 51rpx 0;}
  1873. .ykkt-text{font-size: 46rpx;}
  1874. }
  1875. }
  1876. // 兑换码
  1877. .ezy-dhm-page{
  1878. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1879. .dhm-body{
  1880. width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;
  1881. .dhm-head-box{
  1882. width: 100%;padding: 12rpx 0 56rpx;box-sizing: border-box;
  1883. display: flex;align-items: center;color: #333;line-height: 1.6;
  1884. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  1885. .head-content-box{font-size: 32rpx;}
  1886. }
  1887. .duihuan-input-box{
  1888. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  1889. display: flex;align-items: center;
  1890. .duihuan-input{width: 82%;color: #333;height: 98rpx;line-height: 98rpx;}
  1891. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  1892. .duihuan-prefix-icon {
  1893. width: 56rpx;height: 56rpx;margin:0 32rpx 0 16rpx;@include ezy-no-repeat-cover;
  1894. background-image: url("@/static/images/common/my/two-code.png");position: relative;
  1895. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  1896. }
  1897. .duihuan-prefix-icon::after{
  1898. content: '';width: 1rpx;height: 56rpx;display: inline-block;background-color: #dfdfdf;
  1899. position: absolute;bottom: 0;right: -16rpx;
  1900. }
  1901. }
  1902. .duihuan-confirm-btn{
  1903. width: 100%;height: 92rpx;line-height: 92rpx;text-align: center;font-size:32rpx;
  1904. margin-top: 42rpx;@include ezy-no-repeat-contain;font-weight: bold;
  1905. background-image: url("@/static/images/common/login/login-btn-bj.png");color:#fff;
  1906. }
  1907. }
  1908. @include mediaSmall() {
  1909. .dhm-body{
  1910. margin: 13rpx auto 0;padding: 23rpx;
  1911. .dhm-head-box{
  1912. padding: 8rpx 0 36rpx;
  1913. .head-img-box{width: 100rpx;height: 100rpx;margin: 0 16rpx 0 8rpx;}
  1914. .head-content-box{font-size: 22rpx;}
  1915. }
  1916. .duihuan-input-box{
  1917. height: 65rpx;border-radius: 10rpx;
  1918. .duihuan-input{width: 86%;font-size: 20rpx;}
  1919. .uni-input-placeholder{font-size: 20rpx;}
  1920. .duihuan-prefix-icon {width: 36rpx;height: 36rpx;margin:0 21rpx 0 10rpx;}
  1921. .duihuan-prefix-icon::after{height: 36rpx;right: -10rpx;}
  1922. }
  1923. .duihuan-confirm-btn{height: 53rpx;line-height: 53rpx;font-size: 20rpx;margin-top: 27rpx;
  1924. background-image: url("@/static/images/pad/common/btn-bj.png");}
  1925. }
  1926. }
  1927. @include mediaBig() {
  1928. .dhm-body{
  1929. margin: 32rpx auto 0;padding: 58rpx;
  1930. .dhm-head-box{
  1931. width: 1820rpx;padding: 19rpx 0 90rpx;margin: 0 auto;
  1932. .head-img-box{width: 260rpx;height: 260rpx;margin: 0 38rpx 0 19rpx;}
  1933. .head-content-box{font-size: 54rpx;}
  1934. }
  1935. .duihuan-input-box{
  1936. width: 1820rpx;height: 160rpx;border-radius: 30rpx;margin: 0 auto;
  1937. .duihuan-input{width: 88%;font-size: 54rpx;}
  1938. .uni-input-placeholder {font-size: 54rpx;}
  1939. .duihuan-prefix-icon {width: 90rpx;height: 90rpx;margin:0 51rpx 0 26rpx;}
  1940. .duihuan-prefix-icon::after{height: 90rpx;right: -26rpx;}
  1941. }
  1942. .duihuan-confirm-btn{width: 1820rpx;
  1943. height: 147rpx;line-height: 147rpx;font-size: 54rpx;margin: 67rpx auto 0;}
  1944. }
  1945. }
  1946. }