pages.scss 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751
  1. /***** 这里放页面样式 *****/
  2. // 课程完成
  3. .course-finish-dialog{
  4. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  5. background-image: url("@/static/images/phone/common/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/common/exam/fh-btn.png");}
  11. .continue-btn{background-image: url("@/static/images/common/exam/jx-btn.png");}
  12. @media (max-height: 600px) {margin-bottom: 40%;}
  13. @include mediaSmall() {
  14. width: 749rpx;height: 1078rpx;margin:0 auto 20%;
  15. background-image: url("@/static/images/pad/common/video-finish-bj.png");
  16. .return-btn,.continue-btn{width: 95rpx;height: 108rpx;margin: 0 23rpx;}
  17. .course-btn-box{bottom: 200rpx;}
  18. }
  19. @include mediaBig() {
  20. width: 1870rpx;height: 2496rpx;margin-bottom: 20%;
  21. .return-btn,.continue-btn{width: 240rpx;height: 276rpx;margin: 0 58rpx;}
  22. .course-btn-box{bottom: 480rpx;}
  23. }
  24. }
  25. // 绑定手机号弹窗
  26. .my-tel-dialog{
  27. background-color: rgba(0,0,0, 0.76);
  28. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  29. justify-content: center;align-items: center;z-index: 3;
  30. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  31. background-image: url("@/static/images/common/close-icon.png");}
  32. .my-tel-content{
  33. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 42rpx;
  34. background-image: url("@/static/images/common/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  35. }
  36. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 32rpx;}
  37. .tel-row{border-bottom: 1px dashed #70cbf4;}
  38. .yzm-row{padding-top: 36rpx;}
  39. /***** 输入手机号页面*****/
  40. .my-input-box{
  41. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  42. display: flex;align-items: center;border: 1rpx solid #ddd;border-radius: 16rpx;
  43. @include ezy-no-repeat-cover;
  44. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #666;flex: 1;}
  45. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  46. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  47. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  48. }
  49. .get-yzm-btn{color: #3b73bf;margin:46rpx 0 32rpx;font-size: 32rpx;}
  50. .get-yzm-disabled{color: #666;}
  51. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  52. .my-bind-btn{
  53. width:540rpx;height: 92rpx;text-align: center;line-height: 92rpx;color: #fff;margin-top: 36rpx;
  54. background-image: url("@/static/images/common/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  55. }
  56. @include mediaSmall() {
  57. .tel-close{width: 33rpx;height: 33rpx;right: 20rpx;top: 20rpx;}
  58. .my-tel-content{width: 406rpx;height: 481rpx;padding: 65rpx 27rpx;}
  59. .my-tel-title{font-size: 22rpx;margin-bottom: 21rpx;}
  60. .yzm-row{padding-top: 23rpx;}
  61. .my-input-box{
  62. width: 351rpx;height: 57rpx;line-height: 57rpx;border-radius: 10rpx;
  63. .my-input {font-size: 20rpx;padding: 0 14rpx;}
  64. .uni-input-placeholder {font-size: 20rpx;}
  65. .close-btn{width: 23rpx;height: 23rpx;margin-right: 20rpx;}
  66. }
  67. .get-yzm-btn{margin: 30rpx 0 21rpx;font-size: 20rpx;}
  68. .yzm-tip{margin: 0 0 16rpx;font-size: 20rpx;}
  69. .my-bind-btn{width: 351rpx;height: 60rpx;line-height: 60rpx;margin-top: 23rpx;font-size: 20rpx;}
  70. }
  71. @include mediaBig() {
  72. .tel-close{width: 80rpx;height: 80rpx;right: 48rpx;top: 48rpx;}
  73. .my-tel-content{width: 1000rpx;height: 1184rpx;padding: 160rpx 67rpx;}
  74. .my-tel-title{font-size: 54rpx;margin-bottom: 51rpx;}
  75. .yzm-row{padding-top: 58rpx;}
  76. .my-input-box{
  77. width: 864rpx;height: 141rpx;line-height: 141rpx;border-radius: 26rpx;
  78. .my-input {font-size: 46rpx;padding: 0 35rpx;}
  79. .uni-input-placeholder {font-size: 46rpx;}
  80. .close-btn{width: 58rpx;height: 58rpx;margin-right: 48rpx;}
  81. }
  82. .get-yzm-btn{margin: 74rpx 0 51rpx;font-size: 46rpx;}
  83. .yzm-tip{margin: 0 0 38rpx;font-size: 46rpx;}
  84. .my-bind-btn{width: 864rpx;height: 147rpx;line-height: 147rpx;margin-top: 58rpx;font-size: 46rpx;}
  85. }
  86. }
  87. /***************** 新数学 *********************/
  88. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  89. .ezy-login-page {
  90. width:100%;height:100vh; background-color: #f9f9fb;position: relative;
  91. box-sizing: border-box;padding-top: 240rpx;
  92. .login-img{
  93. width: 272rpx;height: 260rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  94. background-image: url("@/static/images/common/login/login-logo.png");display: block;
  95. }
  96. .login-body-box{
  97. display: flex;flex-direction: column;align-items: center;margin: 160rpx auto 0;
  98. }
  99. /***** 输入手机号页面*****/
  100. .phone-input-box{
  101. width: 662rpx;height: 122rpx;
  102. display: flex;align-items: center;@include ezy-no-repeat-cover;
  103. background-image: url("@/static/images/common/login/login-tel-bj.png");
  104. .phone-prefix {
  105. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
  106. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  107. }
  108. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
  109. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #fff;flex: 1;overflow: hidden;}
  110. .uni-input-placeholder {font-size: 34rpx;color: #ffffffd9;
  111. }
  112. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  113. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  114. }
  115. .agreement-checkbox-box {
  116. display: flex;justify-content: center;margin-top: 32rpx;line-height: 1;margin-left: -42rpx;
  117. uni-checkbox-group{font-size: 0;}
  118. .agreement-checkbox-input{width: 80rpx;height: 80rpx;border: 0;font-size: 0;}
  119. .uni-checkbox-input{
  120. width: 80rpx;height: 80rpx;border: 0;background-color: unset;position: relative;
  121. svg {
  122. width: 19rpx;height: 19rpx;top: 32rpx;left: 48rpx;display: block;
  123. background-color: #379af8;border-radius: 999rpx;transform: unset;position: absolute;
  124. path{display: none;}
  125. }
  126. }
  127. .uni-checkbox-input::before{
  128. content: '';width: 31rpx;height: 31rpx;border: 1rpx solid #379af8;border-radius: 999rpx;
  129. box-sizing: border-box;position: absolute;top: 26rpx;left: 42rpx;
  130. }
  131. .agreement-text-box {
  132. color: #333;font-size: 28rpx;flex-direction: row;display: flex;align-items: center;
  133. .agreement-text{color: #379af8;display: contents;}
  134. }
  135. }
  136. .bottom-btn-box{
  137. position: absolute;bottom:8%;left: 50%;transform: translateX(-50%);
  138. .bottom-tip{color: #999;font-size: 28rpx;text-align: center;margin-bottom: 60rpx;}
  139. .btn-box{
  140. display: flex;
  141. .wx-btn,.yk-btn,.apple-btn{
  142. width: 170rpx;display: flex;align-items: center;flex-direction: column;
  143. color: #666;font-size: 26rpx;
  144. icon{width: 50rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 12rpx;}
  145. }
  146. .wx-btn icon{background-image: url("@/static/images/common/login/login-wx-btn.jpg");}
  147. .yk-btn icon{background-image: url("@/static/images/common/login/login-yk-btn.jpg");}
  148. .apple-btn icon{background-image: url("@/static/images/common/login/login-apple-btn.jpg");}
  149. }
  150. }
  151. /***** 输入验证码页面*****/
  152. .yzm-nav-bar-icon{z-index: 99;}
  153. .yzm-show{width: 662rpx;font-size: 30rpx;color: #666;margin: 0 0 24rpx 12rpx;}
  154. .yzm-btn{margin-top: 42rpx;}
  155. .cxfs-btn{font-size: 30rpx;color: #3257b9;display: inline-block;margin: 60rpx auto 160rpx;}
  156. .cxfs-btn-disabled{color: #777;}
  157. .login-text{
  158. font-size: 30rpx;color: #888;margin: 16rpx auto 0 56rpx;
  159. text{color: #64a8e3;}
  160. }
  161. /* 针对小屏幕设备 */
  162. @media (max-height: 750px) {
  163. padding-top: 200rpx;
  164. .login-body-box{margin: 100rpx auto 0; }
  165. .login-btn{margin-top: 56rpx;}
  166. // 验证码
  167. .yzm-btn{margin-top: 36rpx;}
  168. }
  169. @media (max-height: 650px) {
  170. padding-top: 180rpx;
  171. .login-body-box{margin: 60rpx auto 0; }
  172. .login-btn{margin-top: 32rpx;}
  173. .bottom-btn-box{
  174. bottom: 5%;
  175. .bottom-tip{margin-bottom: 32rpx;}
  176. }
  177. // 验证码
  178. .cxfs-btn{margin: 32rpx auto 52rpx;}
  179. }
  180. @media (max-height: 550px) {
  181. min-height: 1100rpx;
  182. }
  183. @include mediaSmall() {
  184. padding-top: 156rpx;
  185. .login-img{width: 177rpx;height: 169rpx;}
  186. .login-body-box{margin: 104rpx auto 0;}
  187. .phone-input-box{
  188. width: 430rpx;height: 79rpx;
  189. .phone-prefix {
  190. width: 59rpx;margin-left:12rpx;font-size: 25rpx;
  191. &::after{height: 26rpx;}
  192. }
  193. .phone-input {font-size: 25rpx;padding: 0 20rpx;}
  194. .uni-input-placeholder {font-size: 22rpx;}
  195. .close-btn{width: 27rpx;height: 27rpx;margin-right: 20rpx;}
  196. }
  197. .agreement-checkbox-box {
  198. margin-top: 21rpx;margin-left: -27rpx;
  199. .agreement-checkbox-input{width: 52rpx;height: 52rpx;}
  200. .uni-checkbox-input{
  201. width: 52rpx;height: 52rpx;
  202. svg {width: 12rpx;height: 12rpx;top: 21rpx;left: 31rpx;}
  203. }
  204. .uni-checkbox-input::before{width: 20rpx;height: 20rpx;top: 17rpx;left: 27rpx;}
  205. .agreement-text-box {font-size: 18rpx;}
  206. }
  207. .bottom-btn-box{
  208. .bottom-tip{font-size: 18rpx;margin-bottom: 39rpx;}
  209. .btn-box{
  210. .wx-btn,.yk-btn,.apple-btn{
  211. width: 111rpx;font-size: 17rpx;
  212. icon{width: 33rpx;height: 27rpx;margin-bottom: 8rpx;}
  213. }
  214. }
  215. }
  216. /***** 输入验证码页面*****/
  217. .yzm-show{width: 430rpx;font-size: 20rpx;margin: 0 0 16rpx 8rpx;}
  218. .yzm-btn{margin-top: 27rpx;}
  219. .cxfs-btn{font-size: 20rpx;margin: 39rpx auto 104rpx;}
  220. .login-text{
  221. width: 430rpx;font-size: 20rpx;margin: 10rpx auto 0;
  222. }
  223. }
  224. @include mediaBig() {
  225. padding-top: 384rpx;
  226. .login-img{width: 435rpx;height: 416rpx;}
  227. .login-body-box{margin: 256rpx auto 0;}
  228. .phone-input-box{
  229. width: 1059rpx;height: 195rpx;
  230. .phone-prefix {
  231. width: 144rpx;margin-left:29rpx;font-size: 61rpx;
  232. &::after{height: 64rpx;}
  233. }
  234. .phone-input {font-size: 61rpx;padding: 0 48rpx;}
  235. .uni-input-placeholder {font-size: 54rpx;}
  236. .close-btn{width: 67rpx;height: 67rpx;margin-right: 48rpx;}
  237. }
  238. .agreement-checkbox-box {
  239. margin-top: 51rpx;margin-left: -67rpx;
  240. .agreement-checkbox-input{width: 128rpx;height: 128rpx;}
  241. .uni-checkbox-input{
  242. width: 128rpx;height: 128rpx;
  243. svg {width: 30rpx;height: 30rpx;top: 51rpx;left: 77rpx;}
  244. }
  245. .uni-checkbox-input::before{width: 50rpx;height: 50rpx;top: 42rpx;left: 67rpx;}
  246. .agreement-text-box {font-size: 45rpx;}
  247. }
  248. .bottom-btn-box{
  249. .bottom-tip{font-size: 45rpx;margin-bottom: 96rpx;}
  250. .btn-box{
  251. .wx-btn,.yk-btn,.apple-btn{
  252. width: 272rpx;font-size: 42rpx;
  253. icon{width: 80rpx;height: 67rpx;margin-bottom: 19rpx;}
  254. }
  255. }
  256. }
  257. /***** 输入验证码页面*****/
  258. .yzm-show{width: 1059rpx;font-size: 48rpx;margin: 0 0 38rpx 19rpx;}
  259. .yzm-btn{margin-top: 67rpx;}
  260. .cxfs-btn{font-size: 48rpx;margin: 96rpx auto 256rpx;}
  261. .login-text{width: 1059rpx;font-size: 48rpx;margin: 26rpx auto 0;}
  262. }
  263. }
  264. // 快捷登录
  265. .go-login-page{
  266. /* .mt24{margin-top: 24rpx;}
  267. .yzm-text-btn{color: #035493;font-size: 34rpx;margin-right: 24rpx;} */
  268. .yzm-row{
  269. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  270. .phone-input-box{flex:1;width: auto;border-radius: 28rpx;}
  271. .yzm-text-btn{
  272. width:250rpx;height: 120rpx;line-height: 120rpx;text-align: center;@include ezy-no-repeat-cover;
  273. background-image: url("@/static/images/common/tip-confirm-btn.png");border-radius: 28rpx;
  274. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  275. }
  276. }
  277. @include mediaSmall() {
  278. .yzm-row{
  279. width: 430rpx;margin: 23rpx 0 0;
  280. .phone-input-box{border-radius: 18rpx;}
  281. .yzm-text-btn{
  282. width: 163rpx;height: 76rpx;line-height: 76rpx;
  283. border-radius: 18rpx;margin-left: 10rpx;font-size: 22rpx;
  284. }
  285. }
  286. }
  287. @include mediaBig() {
  288. .yzm-row{
  289. width: 1059rpx;
  290. margin: 58rpx 0 0;
  291. .phone-input-box{border-radius: 45rpx;}
  292. .yzm-text-btn{
  293. width: 400rpx;height: 192rpx;line-height: 192rpx;
  294. border-radius: 45rpx;margin-left: 26rpx;font-size: 54rpx;
  295. }
  296. }
  297. }
  298. /* .tel-input{
  299. width: 662rpx;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  300. display: flex;align-items: center;
  301. .phone-prefix {
  302. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #acacae;
  303. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  304. }
  305. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ccc;}
  306. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  307. .uni-input-placeholder {font-size: 34rpx;color: #acacae;
  308. }
  309. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  310. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  311. }
  312. .yzm-row{
  313. width: 662rpx;margin: 36rpx 0 0;display: flex;align-items: center;
  314. .tel-input{width: auto;}
  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;margin-top: 0;
  319. }
  320. } */
  321. }
  322. // 绑定手机号
  323. .bind-tel-page{
  324. width: 100%;height: 100vh;display: flex;flex-direction: column;
  325. .bind-tel-body{width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;}
  326. .tel-input{
  327. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  328. display: flex;align-items: center;
  329. .phone-input {font-size: 38rpx;padding: 0 30rpx;box-sizing: border-box;color: #555;flex: 1;overflow: hidden;}
  330. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  331. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  332. background-image: url("@/static/images/common/login/login-close-icon.png");flex-shrink: 0;}
  333. }
  334. .yzm-row{
  335. width: 100%;margin: 36rpx 0 0;display: flex;align-items: center;
  336. .yzm-btn{
  337. width:270rpx;height: 100rpx;line-height: 100rpx;text-align: center;@include ezy-no-repeat-cover;
  338. background-image: url("@/static/images/common/tip-confirm-btn.png");
  339. flex-shrink: 0;margin-left: 16rpx;color: #fff;font-size: 34rpx;
  340. }
  341. }
  342. @include mediaSmall() {
  343. .bind-tel-body{padding: 23rpx;}
  344. .tel-input{
  345. width: 671rpx;height: 65rpx;border-radius: 10rpx;margin: 0 auto;
  346. .phone-input {font-size: 22rpx;padding: 0 20rpx;}
  347. .uni-input-placeholder {font-size: 22rpx;}
  348. .close-btn{width: 27rpx;height: 27rpx;margin-right: 20rpx;}
  349. }
  350. .yzm-row{
  351. width: 671rpx;margin: 23rpx auto 0;
  352. .yzm-btn{
  353. width: 176rpx;height: 65rpx;line-height: 65rpx;
  354. margin-left: 16rpx;font-size: 22rpx;
  355. }
  356. }
  357. .bd-btn{width: 672rpx;height: 53rpx;line-height: 53rpx;font-size: 22rpx;font-weight: normal;
  358. margin: 55rpx auto 0;@include ezy-no-repeat-contain();}
  359. .login-btn-normal.bd-btn{background-image: url("@/static/images/pad/common/btn-bj.png");}
  360. .login-btn-disabled.bd-btn{background-image: url("@/static/images/pad/common/btn-bj-disabled.png");}
  361. }
  362. @include mediaBig() {
  363. .bind-tel-body{padding: 58rpx;}
  364. .tel-input{
  365. width: 1800rpx;height: 160rpx;border-radius: 26rpx;
  366. .phone-input {font-size: 54rpx;padding: 0 48rpx;}
  367. .uni-input-placeholder {font-size: 54rpx;}
  368. .close-btn{width: 67rpx;height: 67rpx;margin-right: 48rpx;}
  369. }
  370. .yzm-row{
  371. width: 1800rpx;margin: 58rpx auto 0;
  372. .yzm-btn{
  373. width: 432rpx;height: 160rpx;line-height: 160rpx;
  374. margin-left: 32rpx;font-size: 54rpx;
  375. }
  376. }
  377. .bd-btn{
  378. width: 1800rpx;height: 142rpx;line-height: 142rpx;font-size: 54rpx;margin: 134rpx auto 0;
  379. }
  380. }
  381. }
  382. // 用户协议弹窗
  383. .agree-sections-dialog{
  384. width: 700rpx;height: 490rpx;padding: 80rpx 0 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  385. background-image: url("@/static/images/common/login/agree-dialog-bg.png");@include ezy-no-repeat-cover;
  386. .agree-title{color:#111;font-size: 40rpx;}
  387. .agree-tip{color:#666;font-size: 30rpx;margin-top: 46rpx;}
  388. .confirm-btn{width: 588rpx;height: 92rpx;@include ezy-no-repeat-cover;margin: 42rpx auto 0;
  389. background-image: url("@/static/images/common/login/agree-dialog-btn.png");}
  390. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 32rpx 0 0;display: inline-block;}
  391. @include mediaSmall() {
  392. width: 455rpx;height: 319rpx;padding: 52rpx 0 27rpx;
  393. .agree-title{font-size: 24rpx;}
  394. .agree-tip{font-size: 20rpx;margin-top: 30rpx;}
  395. .confirm-btn{width: 382rpx;height: 60rpx;margin: 27rpx auto 0;}
  396. .not-confirm-btn{font-size: 20rpx;padding: 21rpx 0 0;}
  397. }
  398. @include mediaBig() {
  399. width: 1120rpx;height: 784rpx;padding: 128rpx 0 67rpx;
  400. .agree-title{font-size: 54rpx;}
  401. .agree-tip{font-size: 46rpx;margin-top: 74rpx;}
  402. .confirm-btn{width: 941rpx;height: 147rpx;margin: 67rpx auto 0;}
  403. .not-confirm-btn{font-size: 56rpx;padding: 46rpx 0 0;}
  404. }
  405. }
  406. // 用户协议详情弹窗
  407. .agree-content-dialog{
  408. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  409. .agree-content-box{
  410. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  411. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  412. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  413. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  414. }
  415. .agree-title{font-size: 42rpx;text-align: center;margin-bottom: 42rpx;flex-shrink: 0;}
  416. .agree-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;
  417. position: absolute;top: 64rpx;right: 44rpx;
  418. background-image: url("@/static/images/common/close-icon.png");}
  419. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;word-break: break-all;}
  420. @include mediaSmall() {
  421. .agree-content-box{margin: 10rpx auto 0;padding: 24rpx 0;}
  422. .agree-title{font-size: 22rpx;}
  423. .agree-section-box{font-size: 20rpx;padding: 0 24rpx;}
  424. }
  425. @include mediaBig() {
  426. .agree-content-box{margin: 24rpx auto 0;padding: 56rpx 0;}
  427. .agree-title{font-size: 54rpx;}
  428. .agree-section-box{font-size: 46rpx;padding: 0 56rpx;}
  429. }
  430. }
  431. // 选课
  432. .ezy-xuanke-page{
  433. width: 100%;height: 100vh;display: flex;flex-direction: column;padding-bottom: 100rpx;overflow: hidden;
  434. .sx-card-list{overflow-y: auto;flex: 1;padding: 12rpx 0 0;}
  435. .sx-card-box{
  436. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;overflow: hidden;
  437. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);position: relative;
  438. .card-head-box{
  439. display: flex;position: relative;z-index: 4;
  440. .head-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 12rpx;}
  441. .head-right-box{
  442. margin-left: 24rpx;
  443. .head-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  444. .head-content{font-size: 26rpx;color: #666;text-align: justify;margin-bottom: 24rpx;@include multi-line-ellipsis(4);}
  445. }
  446. }
  447. .card-body-box{
  448. border-top: 3rpx dashed #eee;margin-top: 42rpx;position: relative;z-index: 4;
  449. .body-title{color: #7db0f4;margin: 24rpx 0 16rpx;font-size: 30rpx;}
  450. .dj-item-row{
  451. display: flex;flex-wrap: wrap;
  452. }
  453. .dj-item{
  454. width: 202rpx;height: 77rpx;line-height: 77rpx;color: #fff;font-size: 30rpx;
  455. text-align: center;@include ezy-no-repeat-cover;margin: 12rpx 16rpx 12rpx 0;
  456. background-image: url("@/static/images/phone/xuanke/dj-item.png");
  457. }
  458. .dj-item.active{background-image: url("@/static/images/phone/xuanke/dj-item-a.png");}
  459. .dj-item:nth-child(3n) {
  460. margin-right: 0;
  461. }
  462. }
  463. }
  464. .sx-card-box::before,.sx-card-box::after{
  465. content: '';@include ezy-no-repeat-cover;
  466. position: absolute;z-index: 3;opacity: 0.7;
  467. }
  468. .sx-card-box::before{width: 500rpx;height: 473rpx;background-image: url("@/static/images/common/xk-mask-img1.png");top: -120rpx;left:-140rpx;}
  469. .sx-card-box::after{background-image: url("@/static/images/common/xk-mask-img2.png");width: 280rpx;height: 265rpx;bottom: -40rpx;right:-60rpx;}
  470. @include mediaSmall() {
  471. padding-bottom: 80rpx;
  472. .sx-card-list{padding: 4rpx 0 0;}
  473. .sx-card-box{
  474. border-radius: 6rpx;margin: 0 24rpx 20rpx;padding: 20rpx 20rpx 24rpx;
  475. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  476. .card-head-box{
  477. .head-img{width: 110rpx;height: 154rpx;border-radius: 8rpx;}
  478. .head-right-box{
  479. margin-left: 16rpx;
  480. .head-title{font-size: 22rpx;margin-bottom: 12rpx;}
  481. .head-content{font-size: 20rpx;margin-bottom: 6rpx;line-height: 1.8;@include multi-line-ellipsis(2);}
  482. }
  483. }
  484. .card-body-box{
  485. border-top: 1rpx dashed #ddd;margin-top: 6rpx;
  486. .body-title{margin: 12rpx 0 6rpx;font-size: 20rpx;}
  487. .dj-item{
  488. width: 100rpx;height: 46rpx;line-height: 46rpx;font-size: 22rpx;margin: 8rpx 12rpx 8rpx 0;
  489. background-image: url("@/static/images/pad/xuanke/dj-item.png");@include ezy-no-repeat-contain;
  490. }
  491. .dj-item.active{background-image: url("@/static/images/pad/xuanke/dj-item-a.png");}
  492. .dj-item:nth-child(3n) {margin-right: 12rpx;}
  493. .dj-item:nth-child(6n) {margin-right: 0;}
  494. }
  495. }
  496. .sx-card-box::before{width: 325rpx;height: 307rpx;top: -78rpx;left: -91rpx;}
  497. .sx-card-box::after{width: 182rpx;height: 172rpx;bottom: -42rpx;right: -42rpx;}
  498. }
  499. @include mediaBig() {
  500. padding-bottom: 180rpx;
  501. .sx-card-list{padding: 42rpx 0 0;}
  502. .sx-card-box{
  503. border-radius: 16rpx;margin: 0 56rpx 52rpx;padding: 46rpx 46rpx 48rpx;
  504. box-shadow: 0 0rpx 12rpx rgba(100, 159, 241, 0.3);
  505. .card-head-box{
  506. .head-img{width: 240rpx;height: 336rpx;border-radius: 16rpx;}
  507. .head-right-box{
  508. margin-left: 42rpx;
  509. .head-title{font-size: 54rpx;margin-bottom: 12rpx;}
  510. .head-content{font-size: 46rpx;margin-bottom: 6rpx;line-height: 1.8;@include multi-line-ellipsis(2);}
  511. }
  512. }
  513. .card-body-box{
  514. border-top: 4rpx dashed #ddd;margin-top: 36rpx;
  515. .body-title{margin: 32rpx 0 24rpx;font-size: 46rpx;}
  516. .dj-item{
  517. width: 280rpx;height: 128rpx;line-height: 128rpx;font-size: 52rpx;margin: 16rpx 32rpx 16rpx 0;
  518. }
  519. .dj-item:nth-child(3n) {margin-right: 32rpx;}
  520. .dj-item:nth-child(6n) {margin-right: 0;}
  521. }
  522. }
  523. .sx-card-box::before{width: 800rpx;height: 757rpx;top: -192rpx;left: -224rpx;}
  524. .sx-card-box::after{width: 448rpx;height: 424rpx;bottom: -64rpx;right: -96rpx;}
  525. }
  526. }
  527. // 选版本
  528. .ezy-xbb-page{
  529. width: 100%;height: 100vh;display: flex;flex-direction: column;
  530. .xbb-list-box{
  531. display: flex;flex-direction: column;
  532. background-color: #fff;flex: 1;overflow-y: auto;padding-bottom: 32rpx;
  533. .xbb-item-box{
  534. width: 731rpx;height:273rpx;@include ezy-no-repeat-cover;
  535. background-image: url("@/static/images/phone/xuanke/xbb-item-bj.png");
  536. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  537. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  538. }
  539. .item-img-box{width: 180rpx;height: 220rpx;border-radius: 12rpx;margin-right: 32rpx;flex-shrink: 0;}
  540. .item-content-box{
  541. line-height: 1.5;
  542. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 16rpx;}
  543. .item-bb{color: #444;font-size: 30rpx;}
  544. }
  545. .item-play-btn{
  546. width: 100rpx;height: 100rpx;z-index: 2;
  547. display: flex;align-items: center;justify-content: center;
  548. position: absolute;bottom: 12rpx;right: 12rpx;
  549. &::before{
  550. content: '';width: 46rpx;height: 48rpx;display: block;
  551. background-image: url("@/static/images/common/xbb-item-jt.png");@include ezy-no-repeat-cover;
  552. }
  553. }
  554. }
  555. @include mediaSmall() {
  556. .xbb-list-box{
  557. padding-bottom: 21rpx;
  558. .xbb-item-box{width: 717rpx;height: 178rpx;padding: 17rpx 23rpx;margin: 0 auto 10rpx;
  559. background-image: url("@/static/images/pad/xuanke/xbb-item-bj.png");}
  560. .item-img-box{width: 117rpx;height: 143rpx;border-radius: 8rpx;margin-right: 21rpx;}
  561. .item-content-box{
  562. .item-name{font-size: 22rpx;margin-bottom: 10rpx;}
  563. .item-bb{font-size: 20rpx;}
  564. }
  565. .item-play-btn{
  566. width: 65rpx;height: 65rpx;bottom: 20rpx;right: 24rpx;
  567. &::before{width: 30rpx;height: 31rpx;@include ezy-no-repeat-contain;}
  568. }
  569. }
  570. }
  571. @include mediaBig() {
  572. .xbb-list-box{
  573. padding-bottom: 51rpx;
  574. .xbb-item-box{width: 1964rpx;height: 488rpx;padding: 42rpx 58rpx;margin: 0 42rpx 26rpx;}
  575. .item-img-box{width: 288rpx;height: 352rpx;border-radius: 19rpx;margin-right: 51rpx;}
  576. .item-content-box{
  577. .item-name{font-size: 54rpx;margin-bottom: 26rpx;}
  578. .item-bb{font-size: 46rpx;}
  579. }
  580. .item-play-btn{
  581. width: 160rpx;height: 160rpx;bottom: 40rpx;right: 60rpx;
  582. &::before{width: 74rpx;height: 77rpx;}
  583. }
  584. }
  585. }
  586. }
  587. .ezy-cjdc-xbb-page{
  588. width: 100%;height: 100vh;display: flex;flex-direction: column;
  589. .xbb-list-box{
  590. // flex: 1;overflow-y: auto;
  591. display: flex;flex-direction: column;padding-bottom: 32rpx;
  592. .xbb-item-box{
  593. }
  594. }
  595. }
  596. // 学习大纲
  597. .xuexi-dagang-page{
  598. width: 100%;height: calc(95vh - var(--status-bar-height));border-radius: 16rpx 16rpx 0 0;z-index: 10;position: relative;
  599. background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  600. display: flex;flex-direction: column;
  601. box-sizing: border-box;padding: 36rpx 0 120rpx;
  602. position: fixed;bottom: 0;
  603. .xuexi-dagang-body{overflow-y: auto;padding: 24rpx 0 0;}
  604. .dagang-title{
  605. width: 80%;line-height: 1.5;margin: 24rpx auto 0;
  606. text-align: center;font-size: 36rpx;color: #000;position: relative;
  607. icon{
  608. width: 100rpx;height: 100rpx;display: flex;align-items: center;justify-content: center;
  609. position: absolute;right: -13%;top: -60rpx;
  610. }
  611. icon::after{
  612. content: '';width: 52rpx;height: 52rpx;@include ezy-no-repeat-cover;
  613. background-image: url("@/static/images/common/close-icon.png");
  614. }
  615. }
  616. // 您将学会
  617. .dagang-xh-box{
  618. width: 690rpx;margin: 64rpx auto 0;
  619. .xh-title{font-size: 32rpx;font-weight: bold;text-align: left;color: #333;margin-left: 6rpx;}
  620. .xh-content-box{
  621. width: 100%;border-radius: 16rpx;margin-top: 32rpx;
  622. box-sizing: border-box;padding: 24rpx;
  623. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  624. }
  625. .text-row{
  626. display: flex;font-size: 32rpx;color: #333;margin: 12rpx 0;line-height: 1.6;
  627. icon{
  628. width: 13rpx;height: 13rpx;border-radius: 50%;flex-shrink: 0;
  629. background-color: #2c7bf4;margin: 22rpx 12rpx 0 0;}
  630. }
  631. }
  632. //学习大纲
  633. .dagang-content-box{
  634. background-color: #e3f7fe;margin-top: 200rpx;position: relative;
  635. .dagang-content-title{
  636. font-size: 32rpx;font-weight: bold;text-align: left;color: #333;
  637. margin-left: 36rpx;position: relative;z-index: 1;
  638. }
  639. .dagang-item-list{padding: 56rpx 0 32rpx;}
  640. .dagang-content-item{
  641. width: 690rpx;display: flex;align-items: center;border-radius: 12rpx;color: #4b4b4b;;
  642. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;background-color: #fff;
  643. line-height: 1.5;font-size: 32rpx;
  644. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  645. .content-title{margin-left: 32rpx;position: relative;}
  646. .content-title:nth-child(1)::before{
  647. width: 13rpx;height: 13rpx;border-radius: 50%;display: block;
  648. background-color: #2c7bf4;content:'';
  649. position: absolute;left: -24rpx;top: 22rpx;
  650. }
  651. }
  652. .dagang-content-item:last-child{margin-bottom: 0;}
  653. }
  654. .dagang-content-box::before{
  655. content: '';width: 750rpx;height: 193rpx;display: block;@include ezy-no-repeat-cover;
  656. background-image: url("@/static/images/phone/xuexi/dagang-img.png");
  657. position: absolute;top: -138rpx;left: 0;z-index: 1;
  658. }
  659. @include mediaSmall() {
  660. border-radius: 10rpx 10rpx 0 0;
  661. padding: 23rpx 0 78rpx;
  662. .xuexi-dagang-body{padding: 16rpx 0 0;}
  663. .dagang-title{
  664. font-size: 22rpx;margin: 16rpx auto 0;
  665. icon{width: 65rpx;height: 65rpx;top: -39rpx;right: -13%;}
  666. icon::after{width: 34rpx;height: 34rpx;}
  667. }
  668. .dagang-xh-box{
  669. width: 690rpx;margin: 42rpx auto 0;
  670. .xh-title{font-size: 22rpx;margin-left: 4rpx;}
  671. .xh-content-box{
  672. border-radius: 10rpx;margin-top: 21rpx;padding: 16rpx;
  673. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  674. }
  675. .text-row{
  676. font-size: 20rpx;margin: 16rpx 0;
  677. icon{width: 8rpx;height: 8rpx;margin: 14rpx 8rpx 0 0;}
  678. }
  679. }
  680. .dagang-content-box{
  681. margin-top: 180rpx;
  682. .dagang-content-title{font-size: 22rpx;margin-left: 23rpx;}
  683. .dagang-item-list{padding: 36rpx 0 21rpx;}
  684. .dagang-content-item{
  685. width: 690rpx;border-radius: 8rpx;margin: 0 auto 16rpx;
  686. padding: 13rpx;font-size: 20rpx;
  687. img{width: 78rpx;height: 78rpx;border-radius: 8rpx;margin-right: 16rpx;}
  688. .content-title{margin-left: 21rpx;}
  689. .content-title:nth-child(1)::before{
  690. width: 8rpx;height: 8rpx;left: -16rpx;top: 14rpx;
  691. }
  692. }
  693. }
  694. .dagang-content-box::before{width: 747rpx;height: 183rpx;top: -140rpx;
  695. background-image: url("@/static/images/pad/xuexi/dagang-img.png");}
  696. }
  697. @include mediaBig() {
  698. border-radius: 26rpx 26rpx 0 0;padding: 58rpx 0 192rpx;
  699. .xuexi-dagang-body{padding: 38rpx 0 0;}
  700. .dagang-title{
  701. font-size: 54rpx;margin: 38rpx auto 0;
  702. icon{width: 160rpx;height: 160rpx;top: -96rpx;right: -13%;}
  703. icon::after{width: 83rpx;height: 83rpx;}
  704. }
  705. .dagang-xh-box{
  706. width: 1940rpx;margin: 102rpx auto 0;
  707. .xh-title{font-size: 54rpx;margin-left: 10rpx;}
  708. .xh-content-box{
  709. border-radius: 26rpx;margin-top: 51rpx;padding: 38rpx;
  710. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  711. }
  712. .text-row{
  713. font-size: 46rpx;margin: 19rpx 0;
  714. icon{width: 21rpx;height: 21rpx;margin: 35rpx 19rpx 0 0;}
  715. }
  716. }
  717. .dagang-content-box{
  718. margin-top: 320rpx;
  719. .dagang-content-title{font-size: 54rpx;margin-left: 58rpx;}
  720. .dagang-item-list{padding: 90rpx 0 51rpx;}
  721. .dagang-content-item{
  722. width: 1940rpx;border-radius: 19rpx;margin: 0 auto 38rpx;padding: 32rpx;font-size: 51rpx;
  723. img{width: 192rpx;height: 192rpx;border-radius: 19rpx;margin-right: 38rpx;}
  724. .content-title{margin-left: 51rpx;}
  725. .content-title:nth-child(1)::before{width: 21rpx;height: 21rpx;left: -38rpx;top: 35rpx;}
  726. }
  727. }
  728. .dagang-content-box::before{width: 1200rpx;height: 309rpx;top: -221rpx;}
  729. }
  730. }
  731. // 学习
  732. .ezy-xuexi-page{
  733. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  734. .xuexi-page-body{padding:0 0 100rpx;overflow-y: auto;border-radius: 0;position: relative;}
  735. .xxjl-card-box-padding{padding-top: 64rpx;}
  736. .xx-scroll-view{position: relative;}
  737. .item-dy-box{
  738. display: flex;align-items: center;justify-content: center;
  739. color: #fff;margin-bottom: 24rpx;
  740. .dy-left-box{
  741. width: 174rpx;height: 127rpx;@include ezy-no-repeat-cover;font-size: 64rpx;
  742. display: flex;align-items: center;box-sizing: border-box;padding:0 24rpx;
  743. background-image: url("@/static/images/phone/xuexi/xx-ml-left.png");
  744. }
  745. .dy-left-box::after{
  746. content: '';width: 32rpx;height: 34rpx;@include ezy-no-repeat-cover;margin-left: auto;
  747. background-image: url("@/static/images/common/xuexi/xx-ml-jt.png");display: block;
  748. }
  749. // 没有黄色箭头
  750. .left-no-after{justify-content: center;}
  751. .left-no-after::after{display: none;}
  752. .dy-right-box{
  753. width: 518rpx;height: 127rpx;@include ezy-no-repeat-cover;
  754. display: flex;align-items: flex-start;flex-direction: column;justify-content: center;
  755. box-sizing: border-box;padding:0 24rpx;font-size: 28rpx;
  756. background-image: url("@/static/images/phone/xuexi/xx-ml-right.png");
  757. .right-content{width: 100%;height: 90rpx;overflow: hidden;}
  758. .dy-name{font-size: 34rpx;margin-bottom: 6rpx;}
  759. }
  760. }
  761. .item-fixed{
  762. width: 100%;padding: 24rpx 0;transition: opacity 0.2s ease-in-out;
  763. position:sticky;position:-webkit-sticky;margin-bottom: 0;
  764. top: 0;z-index: 10;background-color: #fff;border-radius: 16rpx 16rpx 0 0;
  765. }
  766. // 学习记录
  767. .xxjl-card-box{
  768. width: 692rpx;margin: 0 auto 24rpx;padding: 72rpx 24rpx 24rpx 24rpx;box-sizing: border-box;
  769. background-color: #5795f6;border-radius: 16rpx;position: relative;
  770. .card-body-box{
  771. display: flex;
  772. img{width: 190rpx;height: 242rpx;border-radius: 16rpx;}
  773. .body-right{
  774. width: 100%;color: #c8e4f8;margin-left: 24rpx;font-size: 30rpx;
  775. display: flex;flex-direction: column;justify-content: space-between;
  776. .right-name{font-size: 34rpx;color: #fff;margin-top: 2rpx;}
  777. }
  778. }
  779. .card-progress-box{
  780. display: flex;align-items: center;margin-top: 10rpx;
  781. .xx-progress-box{flex: 1;margin-right: 64rpx;color: #fff;font-size: 28rpx;}
  782. .xx-progress{border-radius: 40rpx;overflow: hidden;margin-top: 10rpx;}
  783. .jxxx-btn{
  784. width: 177rpx;height: 89rpx;@include ezy-no-repeat-cover;margin-right: 24rpx;
  785. background-image: url("@/static/images/common/xuexi/jx-xx-btn.png");
  786. }
  787. }
  788. }
  789. .xxjl-card-box::before{
  790. content: '学习记录';width: 289rpx;height: 77rpx;line-height: 77rpx;@include ezy-no-repeat-cover;
  791. background-image: url("@/static/images/common/xuexi/xx-jl-bj.png");display: block;
  792. position: absolute;top: -28rpx;text-align: center;color: #fff;font-size: 34rpx;
  793. }
  794. // 学习进度
  795. .xx-jd-box{
  796. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  797. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  798. .xx-progress-btn-box{
  799. width: 100%;
  800. display: flex;align-items: center;justify-content: space-between;
  801. }
  802. .xx-progress-box{
  803. flex: 1;font-size: 32rpx;color: #333;margin-right: 42rpx;
  804. .xx-progress{border-radius: 20rpx;overflow: hidden;margin-top: 16rpx;}
  805. }
  806. .jxxx-btn{
  807. width: 217rpx;height: 85rpx;display: block;@include ezy-no-repeat-cover;
  808. background-image: url("@/static/images/common/xuexi/jxxx-icon.png");flex-shrink: 0;
  809. }
  810. //学习进度按钮
  811. .jd-item-box{
  812. display: flex;border-top: 1rpx dashed #97dbf8;margin-top: 32rpx;padding-top: 32rpx;
  813. icon{width:54rpx;height: 54rpx;@include ezy-no-repeat-cover;
  814. position: relative;margin-right: 52rpx;}
  815. icon::before{
  816. content: '';width: 1rpx;height: 70rpx;background-color: #fff;display: block;
  817. position: absolute;right: -24rpx;top: -10rpx;
  818. }
  819. .dydg-icon{background-image: url("@/static/images/common/xuexi/dy-dg-icon.png");}
  820. .dyml-icon{background-image: url("@/static/images/common/xuexi/kc-ml-icon.png");}
  821. .jd-item-btn{
  822. background-color: #ddf7ff;border-radius: 16rpx;flex: 1;text-align: center;
  823. box-sizing: border-box;padding: 24rpx;display: flex;align-items: center;}
  824. .jd-item-btn:first-child{margin-right: 24rpx;}
  825. }
  826. }
  827. // 学习目录
  828. .xx-item-list{
  829. padding-bottom: 24rpx;
  830. .xx-item-title{text-align: center;margin: 32rpx 0;font-size: 32rpx;color: #444;}
  831. .xx-more-btn{
  832. width: 630rpx;height: 89rpx;@include ezy-no-repeat-cover;margin: 0 auto 32rpx;
  833. background-image: url("@/static/images/phone/xuexi/more-btn.png");
  834. }
  835. .xx-item-box{
  836. width: 691rpx;height: 172rpx;
  837. display: flex;align-items: center;justify-content: space-between;color: #4b4b4b;;
  838. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;border-radius: 12rpx;
  839. line-height: 1.5;font-size: 32rpx;position: relative;@include ezy-no-repeat-cover;
  840. background-image: url("@/static/images/phone/xuexi/xx-ml-bj.png");
  841. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  842. .xx-item-status{
  843. width: 89rpx;height: 87rpx;@include ezy-no-repeat-cover;
  844. position: absolute;top:2rpx;left: 0;
  845. }
  846. .completed-status{background-image: url("@/static/images/common/xuexi/xw-status.png");}
  847. .xx-text-box{flex: 1;}
  848. .xx-item-btn,.xx-item-lock-btn{width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;}
  849. .xx-item-btn{background-image: url("@/static/images/common/xuexi/xx-ml-play-icon.png");}
  850. .xx-item-lock-btn{background-image: url("@/static/images/common/xuexi/xx-ml-lock-icon.png");}
  851. }
  852. .xx-disabled-item-box{
  853. background-image: url("@/static/images/phone/xuexi/xx-ml-disabled-bj.png");
  854. }
  855. }
  856. .xx-next-btn{
  857. width: 655rpx;height: 92rpx;line-height: 92rpx;margin: 32rpx auto;
  858. font-size: 32rpx;color: #fff;text-align: center;@include ezy-no-repeat-cover;
  859. background-image: url("@/static/images/common/login/login-btn-bj.png");
  860. }
  861. .xx-xw-text{text-align: center;font-size: 32rpx;color: #666;margin: 32rpx auto;}
  862. // 回到顶部
  863. .go-top-btn{
  864. width: 77rpx;height: 77rpx;@include ezy-no-repeat-cover;
  865. background-image: url("@/static/images/common/xuexi/go-top-btn.png");
  866. position: fixed;z-index: 9;bottom: 300rpx;right:10rpx;
  867. }
  868. @include mediaSmall() {
  869. .xuexi-page-body{padding:0 0 65rpx;}
  870. .xxjl-card-box-padding{padding-top: 42rpx;}
  871. .item-dy-box{margin-bottom: 16rpx;
  872. .dy-left-box{width: 135rpx;height: 71rpx;font-size: 42rpx;padding:0 24rpx;
  873. background-image: url("@/static/images/pad/xuexi/xx-ml-left.png");}
  874. .dy-left-box::after{width: 21rpx;height: 22rpx;}
  875. .dy-right-box{
  876. width: 580rpx;height: 71rpx;padding:0 16rpx;font-size: 18rpx;
  877. background-image: url("@/static/images/pad/xuexi/xx-ml-right.png");
  878. .right-content{height: 59rpx;}
  879. .dy-name{font-size: 22rpx;margin-bottom: 4rpx;}
  880. }
  881. }
  882. .item-fixed{padding: 16rpx 0;border-radius: 10rpx 10rpx 0 0;}
  883. .xxjl-card-box{
  884. width: 715rpx;margin: 0 auto 16rpx;padding: 47rpx 16rpx 16rpx 16rpx;
  885. border-radius: 10rpx;position: relative;
  886. .card-body-box{
  887. img{width: 124rpx;height: 157rpx;border-radius: 10rpx;}
  888. .body-right{
  889. margin-left: 16rpx;font-size: 20rpx;display: block;
  890. .right-name{font-size: 22rpx;margin: 5rpx 0;}
  891. .right-item{width: 50%;display: inline-block;vertical-align: middle;margin: 5rpx 0;}
  892. .right-item-mini{width: 40%;}
  893. }
  894. }
  895. .card-progress-box{
  896. position: absolute;bottom: 12rpx;left:140rpx;right: 10rpx;margin-top: 0;
  897. .xx-progress-box{margin-right: 42rpx;font-size: 18rpx;}
  898. .xx-progress{margin-top: 0;}
  899. .progress-title{display: none;}
  900. .jxxx-btn{width: 104rpx;height: 50rpx;margin-right: 16rpx;}
  901. }
  902. }
  903. .xxjl-card-box::before{width: 188rpx;height: 50rpx;line-height: 50rpx;top: -18rpx;font-size: 22rpx;}
  904. .xx-jd-box{border-radius: 10rpx;margin: 0 16rpx 21rpx;padding: 21rpx;
  905. .xx-progress-box{font-size: 21rpx;margin-right: 27rpx;
  906. .xx-progress{margin-top: 10rpx;}}
  907. .jxxx-btn{width: 141rpx;height: 55rpx;}
  908. .jd-item-box{margin-top: 21rpx;padding-top: 21rpx;
  909. icon{width: 35rpx;height: 35rpx;margin-right: 34rpx;}
  910. icon::before{height: 46rpx;right: -16rpx;top: -7rpx;}
  911. .jd-item-btn{border-radius: 10rpx;padding: 16rpx;}
  912. .jd-item-btn:first-child{margin-right: 16rpx;}
  913. }
  914. }
  915. .xx-item-list{
  916. padding-bottom: 16rpx;
  917. .xx-item-title{margin: 20rpx 0;font-size: 20rpx;}
  918. .xx-more-btn{width: 676rpx;height: 65rpx;margin: 0 auto 21rpx;
  919. background-image: url("@/static/images/pad/xuexi/more-btn.png");}
  920. .xx-item-box{
  921. width: 718rpx;height: 92rpx;margin: 0 auto 16rpx;padding: 10rpx;border-radius: 12rpx;font-size: 21rpx;
  922. background-image: url("@/static/images/pad/xuexi/xx-ml-bj.png");
  923. img{width: 72rpx;height: 72rpx;border-radius: 8rpx;margin-right: 16rpx;}
  924. .xx-item-status{width: 58rpx;height: 57rpx;top:1rpx;}
  925. .xx-item-btn,.xx-item-lock-btn{width: 50rpx;height: 50rpx;margin-right: 12rpx;}
  926. }
  927. .xx-disabled-item-box{
  928. background-image: url("@/static/images/pad/xuexi/xx-ml-disabled-bj.png");
  929. }
  930. }
  931. .xx-next-btn{width: 426rpx;height: 60rpx;line-height: 60rpx;margin: 21rpx auto;font-size: 21rpx;}
  932. .xx-xw-text{font-size: 21rpx;margin: 21rpx auto;}
  933. .go-top-btn{width: 50rpx;height: 50rpx;bottom: 195rpx;right:7rpx;}
  934. }
  935. @include mediaBig() {
  936. .xuexi-page-body{padding:0 0 160rpx;}
  937. .xxjl-card-box-padding{padding-top: 102rpx;}
  938. .item-dy-box{
  939. margin-bottom: 38rpx;
  940. .dy-left-box{width: 363rpx;height: 194rpx;font-size: 102rpx;padding:0 64rpx;}
  941. .dy-left-box::after{width: 51rpx;height: 54rpx;}
  942. .dy-right-box{
  943. width: 1577rpx;height: 194rpx;padding:0 38rpx;font-size: 46rpx;
  944. .right-content{height: 144rpx;}
  945. .dy-name{font-size: 54rpx;margin-bottom: 10rpx;}
  946. }
  947. }
  948. .item-fixed{padding: 38rpx 0;border-radius: 26rpx 26rpx 0 0;}
  949. .xxjl-card-box{
  950. width: 1940rpx;margin: 0 auto 38rpx;padding: 115rpx 38rpx 38rpx 38rpx;
  951. border-radius: 26rpx;position: relative;
  952. .card-body-box{
  953. img{width: 304rpx;height: 387rpx;border-radius: 26rpx;}
  954. .body-right{
  955. margin-left: 38rpx;font-size: 46rpx;
  956. .right-name{font-size: 54rpx;margin: 16rpx 0;}
  957. .right-item{width: 50%;display: inline-block;vertical-align: middle;margin: 16rpx 0;}
  958. view{margin: 16rpx 0;}
  959. .right-item-mini{width: 40%;}
  960. }
  961. }
  962. .card-progress-box{
  963. position: absolute;bottom: 36rpx;left:360rpx;right: 16rpx;
  964. .xx-progress-box{margin-right: 102rpx;font-size: 45rpx;}
  965. .xx-progress{margin-top: 0;}
  966. .progress-title{display: none;}
  967. .jxxx-btn{width: 263rpx;height: 122rpx;margin-right: 38rpx;}
  968. }
  969. }
  970. .xxjl-card-box::before{width: 462rpx;height: 123rpx;line-height: 123rpx;top: -45rpx;font-size: 54rpx;}
  971. .xx-jd-box{
  972. border-radius: 26rpx;margin: 0 38rpx 51rpx;padding: 51rpx;
  973. .xx-progress-box{
  974. margin-right: 67rpx;
  975. .xx-progress{margin-top: 26rpx;}
  976. }
  977. .jxxx-btn{width: 347rpx;height: 136rpx;}
  978. .jd-item-box{
  979. margin-top: 51rpx;padding-top: 51rpx;
  980. icon{width: 86rpx;height: 86rpx;margin-right: 83rpx;}
  981. icon::before{height: 112rpx;right: -38rpx;top: -16rpx;}
  982. .jd-item-btn{border-radius: 26rpx;padding: 38rpx;}
  983. .jd-item-btn:first-child{margin-right: 38rpx;}
  984. }
  985. }
  986. .xx-item-list{
  987. padding-bottom: 38rpx;
  988. .xx-item-title{margin: 51rpx 0;font-size: 46rpx;}
  989. .xx-more-btn{width: 1880rpx;height: 182rpx;margin: 0 auto 51rpx;}
  990. .xx-item-box{width: 1950rpx;height: 253rpx;margin: 0 auto 38rpx;padding: 32rpx;border-radius: 19rpx;font-size: 46rpx;
  991. img{width: 192rpx;height: 192rpx;border-radius: 19rpx;margin-right: 38rpx;}
  992. .xx-item-status{width: 142rpx;height: 139rpx;top:3rpx;}
  993. .xx-item-btn,.xx-item-lock-btn{width: 123rpx;height: 123rpx;margin-right: 19rpx;}
  994. }
  995. }
  996. .xx-next-btn{width: 1048rpx;height: 147rpx;line-height: 147rpx;margin: 51rpx auto;font-size: 51rpx;}
  997. .xx-xw-text{font-size: 51rpx;margin: 51rpx auto;}
  998. .go-top-btn{width: 123rpx;height: 123rpx;bottom: 480rpx;right:16rpx;}
  999. }
  1000. }
  1001. // 答案解析
  1002. .ezy-dajx-page{
  1003. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  1004. .shiti-frame-box{overflow-y: auto;}
  1005. .dajx-video-box{width: 95%;margin-top: 16rpx;}
  1006. .dajx-content-box{
  1007. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  1008. .slfx-title,.spjj-title{
  1009. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  1010. }
  1011. .slfx-title{background-image: url("@/static/images/common/exam/slfx-title.png");}
  1012. .spjj-title{background-image: url("@/static/images/common/exam/spjj-title.png");}
  1013. .slfx-content{
  1014. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  1015. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  1016. display: block;@include ezy-rich-text;
  1017. }
  1018. }
  1019. @include mediaBig() {
  1020. .dajx-video-box{margin-top: 36rpx;}
  1021. }
  1022. }
  1023. // 看视频
  1024. .ezy-ksp-page{
  1025. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1026. .ksp-tab-box{
  1027. flex-shrink:0;display: flex;justify-content: space-evenly;border-bottom: 1rpx solid #b7defd;
  1028. .tab-item{color: #9a9a9a;font-size: 34rpx;padding: 16rpx 24rpx;}
  1029. .active{color: #5895f7;border-bottom: 4rpx solid #1684fc;}
  1030. }
  1031. .ksp-scroll-view{overflow-y: auto;}
  1032. .ksp-page-body{padding: 24rpx 0 0;}
  1033. .jstx-ksp-page-body{padding: 0;}
  1034. .ksp-video-box{
  1035. width: 95%;height: 423rpx;padding: 8px;box-sizing: border-box;
  1036. border-radius: 16rpx;margin:32rpx auto;flex-shrink: 0;
  1037. .prism-big-play-btn{
  1038. width: 100rpx;height: 100rpx;opacity: 0.8;
  1039. background-image: url("@/static/images/common/xuexi/play-btn.png");
  1040. }
  1041. }
  1042. .ksp-item-list{
  1043. width: 95%;margin: 12rpx auto 24rpx;border-radius: 16rpx;position: relative;
  1044. background-color: #5894f6;padding: 20rpx 0;box-sizing: border-box;
  1045. box-shadow: 0 0rpx 12rpx rgba(100, 159, 241, 0.4);
  1046. }
  1047. .ksp-item-list::before{
  1048. content: '';width: 100%;height: 97rpx;@include ezy-no-repeat-cover;
  1049. background-image: url("@/static/images/common/xuexi/ksp-item-top-bj.png");
  1050. position: absolute;left: 0;right: 0;top: 0;z-index: 1;
  1051. }
  1052. .list-head{
  1053. width: 95%;display: flex;align-items: center;justify-content: space-between;
  1054. position: relative;z-index: 2;padding:0 0 24rpx;margin: 0 auto;
  1055. .list-title{color: #fff;font-size: 36rpx;}
  1056. .list-btn{
  1057. width: 210rpx;height: 72rpx;@include ezy-no-repeat-cover;
  1058. background-image: url("@/static/images/common/xuexi/ksp-video-play.png");
  1059. }
  1060. }
  1061. .list-body{
  1062. width: 95%;position: relative;z-index: 2;border-radius: 16rpx;
  1063. padding: 16rpx;box-sizing: border-box;margin: 0 auto;
  1064. color: #444;font-size: 32rpx;background-color: #fff;
  1065. img{max-width: 100%;margin: 10rpx auto 0;display: block;}
  1066. }
  1067. .ksp-item-box{
  1068. width: 670rpx;height: 150rpx;
  1069. display: flex;align-items: center;position: relative;
  1070. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/xuexi/ksp-item-bj.png");
  1071. .ksp-icon{
  1072. width: 104rpx;height: 104rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  1073. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/xuexi/xx-ksp-icon.png");
  1074. }
  1075. .ksp-title{color: #444;font-size: 32rpx;margin-right: auto;
  1076. margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  1077. }
  1078. @include mediaSmall() {
  1079. .ksp-tab-box{
  1080. .tab-item{font-size: 26rpx;padding: 12rpx 24rpx;}
  1081. .active{border-bottom: 3rpx solid #1684fc;}
  1082. }
  1083. .ksp-page-body{padding: 16rpx 0 0;}
  1084. .ksp-video-box{
  1085. height: 420rpx;border-radius: 10rpx;margin: 20rpx auto 10rpx;
  1086. .prism-big-play-btn{width: 65rpx;height: 65rpx;}
  1087. }
  1088. .ksp-item-list{
  1089. margin: 8rpx auto 16rpx;border-radius: 10rpx;padding: 13rpx 0;
  1090. box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.4);
  1091. &::before{height: 63rpx;}
  1092. }
  1093. .list-head{
  1094. padding: 0 0 12rpx;
  1095. .list-title{font-size: 22rpx;}
  1096. .list-btn{width: 137rpx;height: 47rpx;}
  1097. }
  1098. .list-body{
  1099. border-radius: 10rpx;padding: 10rpx;font-size: 20rpx;
  1100. img{margin: 6rpx auto 0;max-width: 60%;}
  1101. }
  1102. .ksp-item-box{
  1103. width: 436rpx;height: 98rpx;
  1104. .ksp-icon{width: 68rpx;height: 68rpx;}
  1105. .ksp-title{font-size: 22rpx;margin-left: 6rpx;height: 33rpx;}
  1106. }
  1107. }
  1108. @include mediaBig() {
  1109. .ksp-tab-box{
  1110. .tab-item{font-size: 64rpx;padding: 26rpx 38rpx;}
  1111. .active{border-bottom: 6rpx solid #1684fc;}
  1112. }
  1113. .ksp-page-body{padding: 38rpx 0 0;}
  1114. .ksp-video-box{
  1115. height: 1100rpx;border-radius: 26rpx;margin: 50rpx auto 24rpx;
  1116. .prism-big-play-btn{width: 160rpx;height: 160rpx;}
  1117. }
  1118. .ksp-item-list{
  1119. margin: 19rpx auto 38rpx;border-radius: 26rpx;padding: 32rpx 0;
  1120. box-shadow: 0 0rpx 19rpx rgba(100, 159, 241, 0.4);
  1121. &::before{height: 155rpx;}
  1122. }
  1123. .list-head{
  1124. padding: 0 0 38rpx;
  1125. .list-title{font-size: 54rpx;}
  1126. .list-btn{width: 336rpx;height: 115rpx;}
  1127. }
  1128. .list-body{
  1129. border-radius: 26rpx;padding: 26rpx;font-size: 46rpx;
  1130. img{margin: 16rpx auto 0;}
  1131. }
  1132. .ksp-item-box{
  1133. width: 1072rpx;height: 240rpx;
  1134. .ksp-icon{width: 166rpx;height: 166rpx;}
  1135. .ksp-title{font-size: 54rpx;margin-left: 16rpx;height: 80rpx;}
  1136. }
  1137. }
  1138. }
  1139. // 考试页
  1140. .ezy-exam-page{
  1141. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  1142. display: flex;flex-direction: column;
  1143. .exam-body{
  1144. z-index: 1;position: relative;flex: 1;display: flex;flex-direction: column;
  1145. }
  1146. .xx-jd-box{
  1147. width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1148. border-radius: 16rpx;box-sizing: border-box;padding:36rpx 36rpx 42rpx;margin: 20rpx auto 0;
  1149. .xx-row{display: flex;justify-content: space-between;align-items: center;margin-bottom: 24rpx;}
  1150. .text-row{color: #5d5e61;}
  1151. .dq-jd-text{color: #5693f5;font-size: 52rpx;}
  1152. .dq-jd-line{margin: 0 6rpx;}
  1153. }
  1154. .exam-progress-box{border-radius: 20rpx;overflow: hidden;}
  1155. .ezy-exam-swiper{
  1156. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  1157. uni-swiper-item{overflow-y: auto;}
  1158. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  1159. }
  1160. .exam-submit-btn{
  1161. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  1162. background-image: url("@/static/images/common/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  1163. }
  1164. .tip-mask-box{
  1165. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  1166. }
  1167. .swiper-tip-box{
  1168. font-size: 30rpx;color: #5989e2;justify-content: center;margin-top: 16rpx;
  1169. display: flex;flex-direction: row;align-items: center;
  1170. }
  1171. .swiper-tip-box::before,.swiper-tip-box::after{
  1172. content: '';width: 12rpx;height: 26rpx;display: block;
  1173. background-image: url("@/static/images/common/h-jt-icon.png");@include ezy-no-repeat-cover;
  1174. }
  1175. .swiper-tip-box::before{transform: rotate(180deg);margin-right: 32rpx;}
  1176. .swiper-tip-box::after{margin-left: 32rpx;}
  1177. .shiti-jj-btn{
  1178. width: 630rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  1179. background-image: url("@/static/images/common/login/login-btn-bj.png");
  1180. color: #fff;text-align: center;margin: 10rpx auto;font-size:32rpx;
  1181. }
  1182. @include mediaSmall() {
  1183. .xx-jd-box{
  1184. border-radius: 10rpx;padding: 23rpx 23rpx 27rpx;margin: 13rpx auto 0;
  1185. .xx-row{margin-bottom: 16rpx;font-size: 20rpx;}
  1186. .dq-jd-text{font-size: 34rpx;}
  1187. .dq-jd-line{margin: 0 4rpx;}
  1188. }
  1189. .exam-progress-box{border-radius: 13rpx;}
  1190. .exam-submit-btn{width: 57rpx;height: 81rpx;margin: 6rpx 27rpx 0 auto;}
  1191. .swiper-tip-box{
  1192. font-size: 20rpx;margin-top: 10rpx;
  1193. &::before,&::after{width: 8rpx;height: 17rpx;}
  1194. &::before{margin-right: 21rpx;}
  1195. &::after{margin-left: 21rpx;}
  1196. }
  1197. .shiti-jj-btn{
  1198. width:640rpx;height: 50rpx;line-height: 50rpx;margin: 6rpx auto;
  1199. background-image: url("@/static/images/pad/common/btn-bj.png");font-size:20rpx;}
  1200. }
  1201. @include mediaBig() {
  1202. .xx-jd-box{
  1203. border-radius: 26rpx;padding: 58rpx 58rpx 67rpx;margin: 32rpx auto 0;
  1204. .xx-row{margin-bottom: 38rpx;font-size: 46rpx;}
  1205. .dq-jd-text{font-size: 83rpx;}
  1206. .dq-jd-line{margin: 0 10rpx;}
  1207. }
  1208. .exam-progress-box{border-radius: 32rpx;}
  1209. .exam-submit-btn{width: 139rpx;height: 200rpx;margin: 16rpx 67rpx 0 auto;}
  1210. .swiper-tip-box{
  1211. font-size: 48rpx;margin-top: 26rpx;
  1212. &::before,&::after{width: 19rpx;height: 42rpx;}
  1213. &::before{margin-right: 51rpx;}
  1214. &::after{margin-left: 51rpx;}
  1215. }
  1216. .shiti-jj-btn{width: 1800rpx;height: 142rpx;line-height: 142rpx;margin: 16rpx auto;font-size:46rpx;}
  1217. }
  1218. }
  1219. // 单元测试
  1220. .dycs-dialog{
  1221. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  1222. .dycs-body{overflow-y: auto;}
  1223. .dycs-img{
  1224. width: 430rpx;height: 350rpx;margin: 92rpx auto 32rpx;flex-shrink: 0;
  1225. background-image: url("@/static/images/common/exam/shiti-dialog-img.png");@include ezy-no-repeat-cover;
  1226. }
  1227. .dycs-tip{
  1228. text-align: center;color: #333;font-size: 35rpx;
  1229. }
  1230. .dycs-fenshu-box{
  1231. width: 560rpx;margin: 72rpx auto;padding: 42rpx 32rpx;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  1232. display: flex;justify-content: center;align-items: center;border-radius: 12rpx;font-size: 32rpx;
  1233. .fenshu-item-box{width: 49%;text-align: center;font-size: 32rpx;color: #333;}
  1234. .item-number{font-size: 56rpx;margin-bottom: 10rpx;}
  1235. .red-number{color: #f60000;}
  1236. .item-line{width: 1rpx;height: 120rpx;background: #f3f5f9;}
  1237. }
  1238. .dycs-btn-box{
  1239. display: flex;justify-content: center;margin-top: 64rpx;
  1240. .cxcs-btn,.ckda-btn{
  1241. width: 275rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  1242. text-align: center;color: #fff;font-size: 32rpx;margin: 0 10rpx;
  1243. }
  1244. .cxcs-btn{background-image: url("@/static/images/common/exam/shiti-btn-blue-bj.png");}
  1245. .ckda-btn{background-image: url("@/static/images/common/exam/shiti-btn-orange-bj.png");}
  1246. }
  1247. @media (max-height: 700px) {
  1248. .dycs-img{margin: 64rpx auto 16rpx;}
  1249. .dycs-fenshu-box{margin: 46rpx auto;}
  1250. .dycs-btn-box{margin-top: 36rpx;}
  1251. }
  1252. @include mediaSmall() {
  1253. .dycs-img{width: 280rpx;height: 228rpx;margin: 16% auto 21rpx;}
  1254. .dycs-tip{font-size: 22rpx;}
  1255. .dycs-fenshu-box{
  1256. width: 364rpx;margin: 47rpx auto;padding: 27rpx 21rpx;border-radius: 8rpx;font-size: 22rpx;
  1257. .fenshu-item-box{font-size: 22rpx;}
  1258. .item-number{font-size: 36rpx;margin-bottom: 6rpx;}
  1259. .item-line{height: 78rpx;}
  1260. }
  1261. .dycs-btn-box{
  1262. margin-top: 42rpx;
  1263. .cxcs-btn,.ckda-btn{width: 179rpx;height: 57rpx;line-height: 57rpx;font-size: 22rpx;margin: 0 6rpx;}
  1264. }
  1265. }
  1266. @include mediaBig() {
  1267. .dycs-img{width: 688rpx;height: 560rpx;margin: 20% auto 51rpx;}
  1268. .dycs-tip{font-size: 54rpx;}
  1269. .dycs-fenshu-box{
  1270. width: 896rpx;margin: 115rpx auto;padding: 67rpx 51rpx;border-radius: 19rpx;font-size: 54rpx;
  1271. .fenshu-item-box{font-size: 54rpx;}
  1272. .item-number{font-size: 90rpx;margin-bottom: 16rpx;}
  1273. .item-line{height: 192rpx;}
  1274. }
  1275. .dycs-btn-box{
  1276. margin-top: 102rpx;
  1277. .cxcs-btn,.ckda-btn{width: 440rpx;height: 141rpx;line-height: 141rpx;font-size: 54rpx;margin: 0 16rpx;}
  1278. }
  1279. }
  1280. }
  1281. // 成绩页
  1282. .ezy-result-page{
  1283. width: 100%;height: 100vh;background-color: #f9f9fb;position: relative;
  1284. display: flex;flex-direction: column;
  1285. .result-exam-swiper{
  1286. width: 100%;flex: 1;z-index: 2;margin: 0 auto;
  1287. uni-swiper-item{overflow-y: auto;}
  1288. .uni-swiper-slides{left: -2rpx;right: -2rpx;}
  1289. }
  1290. .answer-content-box{
  1291. margin-top: 24rpx;
  1292. .answer-title{
  1293. width: 208rpx;height: 91rpx;line-height: 91rpx;
  1294. font-size: 32rpx;text-align: center;margin-left: 10rpx;color: #fff;
  1295. background-image: url("@/static/images/common/exam/shiti-anser-title.png");@include ezy-no-repeat-cover;
  1296. }
  1297. .answer-text-title{font-size: 32rpx;color: #f6aa1d;margin: 24rpx 0;}
  1298. .answer-content-border{
  1299. width: 96%;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  1300. border-radius: 12rpx;font-size: 32rpx;margin: 42rpx auto 56rpx;}
  1301. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #499141;
  1302. border-radius: 4px;box-sizing: border-box;padding: 24rpx;min-height: 80rpx;
  1303. .tiankong-answer-title{color: #333;margin-bottom: 10rpx;}
  1304. .answer-index-box{
  1305. font-size: 24rpx;border: 1rpx solid #499141;border-radius: 24rpx;margin-right: 10rpx;
  1306. line-height: 1;text-align: center;padding: 2rpx 7rpx;display: inline-block;
  1307. flex-shrink: 0;min-width: 16rpx;
  1308. }
  1309. .tiankong-answer-row{
  1310. word-break: break-all;margin-bottom: 10rpx;margin: 24rpx 0;
  1311. display: flex;align-items: center;line-height: 1;
  1312. }
  1313. .tiankong-answer-row:last-child{margin-bottom: 0;}
  1314. }
  1315. .answer-btn-box{display: flex;height: 135rpx;}
  1316. .answer-item-left,.answer-item-right{
  1317. width: 100%;flex: 1;align-items: center;justify-content: center;
  1318. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  1319. .answer-item-title{font-size: 30rpx;color: #333;margin-bottom: 10rpx;}
  1320. .answer-item-error{font-size: 30rpx;color: #ef1417;min-height: 36rpx;}
  1321. .answer-item-correct{font-size: 30rpx;color: #15ab2e;min-height: 36rpx;}
  1322. }
  1323. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  1324. .answer-item-right{border-radius: 0 4px 4px 0;}
  1325. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  1326. }
  1327. .answer-stjx-box{
  1328. width: 96%;margin: 0 auto;
  1329. .answer-rich-text{
  1330. font-size: 32rpx;color: #333;line-height: 1.8;
  1331. }
  1332. }
  1333. .answer-video-box{
  1334. position: relative;margin-bottom:24rpx;
  1335. img{width: 100%;}
  1336. }
  1337. .answer-video-box::before{
  1338. content: '';display: block;position: absolute;
  1339. width: 90rpx;height: 90rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/common/xuexi/video-play-btn.png");
  1340. top: 52%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;
  1341. }
  1342. @include mediaSmall() {
  1343. .answer-content-box{
  1344. margin-top: 16rpx;
  1345. .answer-title{width: 135rpx;height: 59rpx;line-height: 59rpx;font-size: 21rpx;margin-left: 6rpx;}
  1346. .answer-text-title{font-size: 21rpx;margin: 16rpx 0;}
  1347. .answer-content-border{border-radius: 8rpx;font-size: 21rpx;margin: 27rpx auto 36rpx;}
  1348. .tiankong-answer-content-box{
  1349. font-size: 21rpx;
  1350. padding: 16rpx;
  1351. min-height: 52rpx;
  1352. .tiankong-answer-title{margin-bottom: 6rpx;}
  1353. .answer-index-box{
  1354. font-size: 16rpx;border-radius: 16rpx;margin-right: 6rpx;
  1355. padding: 1rpx 5rpx;min-width: 10rpx;}
  1356. .tiankong-answer-row{margin: 16rpx 0;}
  1357. }
  1358. .answer-btn-box{height: 88rpx;}
  1359. .answer-item-left,.answer-item-right{
  1360. .answer-item-title{font-size: 20rpx;margin-bottom: 6rpx;}
  1361. .answer-item-error{font-size: 20rpx;min-height: 23rpx;}
  1362. .answer-item-correct{font-size: 20rpx;min-height: 23rpx;}
  1363. }
  1364. .answer-line{top: 10rpx;bottom: 10rpx;}
  1365. }
  1366. .answer-stjx-box{
  1367. font-size: 20rpx;
  1368. .answer-rich-text{font-size: 20rpx;line-height: 1.8;}
  1369. }
  1370. .answer-video-box{
  1371. margin-bottom: 16rpx;
  1372. &::before{width: 59rpx;height: 59rpx;}
  1373. }
  1374. }
  1375. @include mediaBig() {
  1376. .answer-content-box{
  1377. margin-top: 38rpx;
  1378. .answer-title{
  1379. width: 333rpx;height: 146rpx;line-height: 146rpx;
  1380. font-size: 54rpx;margin-left: 16rpx;
  1381. }
  1382. .answer-text-title{font-size: 54rpx;margin: 38rpx 0;}
  1383. .answer-content-border{border-radius: 19rpx;font-size: 46rpx;margin: 67rpx auto 90rpx;}
  1384. .tiankong-answer-content-box{
  1385. font-size: 46rpx;padding: 38rpx;min-height: 128rpx;
  1386. .tiankong-answer-title{margin-bottom: 16rpx;}
  1387. .answer-index-box{
  1388. font-size: 46rpx;border-radius: 38rpx;
  1389. margin-right: 16rpx;padding: 3rpx 11rpx;min-width: 26rpx;
  1390. }
  1391. .tiankong-answer-row{margin: 38rpx 0;}
  1392. }
  1393. .answer-btn-box{height: 216rpx;}
  1394. .answer-item-left,.answer-item-right{
  1395. .answer-item-title{font-size: 54rpx;margin-bottom: 16rpx;}
  1396. .answer-item-error{font-size: 46rpx;min-height: 58rpx;}
  1397. .answer-item-correct{font-size: 46rpx;min-height: 58rpx;}
  1398. }
  1399. .answer-line{top: 26rpx;bottom: 26rpx;}
  1400. }
  1401. .answer-stjx-box{
  1402. font-size: 46rpx;
  1403. .answer-rich-text{font-size: 46rpx;line-height: 1.8;}
  1404. }
  1405. .answer-video-box{
  1406. margin-bottom: 38rpx;
  1407. &::before{width: 144rpx;height: 144rpx;}
  1408. }
  1409. }
  1410. }
  1411. // 我的页面
  1412. .ezy-my-page{
  1413. width: 100%;height: 100vh;position: relative;overflow: auto;background: #f9f9fb;
  1414. .my-title-navBar-box{padding-top: 24rpx;}
  1415. .my-page-box{position: relative;z-index: 1;margin: 0;}
  1416. .my-head-box{
  1417. width: 100%;padding: 0 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  1418. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  1419. .head-content-box{font-size: 30rpx;}
  1420. }
  1421. .my-hyqy-swiper{
  1422. width: 710rpx;height: 402rpx;margin: 0 auto;border-radius: 12rpx;overflow: hidden;
  1423. .uni-swiper-dots-horizontal{bottom: 24rpx;}
  1424. .my-banner-img{max-width: 100%;}
  1425. }
  1426. // list
  1427. .my-list-box{
  1428. width:710rpx;margin: 24rpx auto;display: flex;flex-wrap: wrap;padding: 42rpx 6rpx 0;
  1429. background-color: #fff;border-radius: 16rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1430. .list-item{color: #444;width: 25%;text-align: center;font-size: 28rpx;margin-bottom: 36rpx;}
  1431. .list-icon{width: 64rpx;height: 64rpx;display: block;
  1432. margin: 0 auto 12rpx;@include ezy-no-repeat-cover;}
  1433. .yysz-icon{background-image: url("@/static/images/common/my/list-icon1.png");}
  1434. .sc-icon{background-image: url("@/static/images/common/my/sc-icon.png");}
  1435. .dd-icon{background-image: url("@/static/images/common/my/dd-icon.png");}
  1436. .dhm-icon{background-image: url("@/static/images/common/my/dhm-icon.png");}
  1437. .dhm-icon{background-image: url("@/static/images/common/my/dhm-icon.png");}
  1438. .bdsjh-icon{background-image: url("@/static/images/common/my/sjbd-icon.png");}
  1439. }
  1440. .kefu-dialog{
  1441. .not-confirm-btn{display: none;}
  1442. .confirm-btn{margin: 24rpx auto;}
  1443. }
  1444. @include mediaSmall() {
  1445. .my-title-navBar-box{
  1446. padding-top: 12rpx;
  1447. &::before{height: 288rpx;background-image: url("@/static/images/pad/common/my-page-header-bj.png");}
  1448. }
  1449. .my-head-box{
  1450. padding: 0 16rpx 24rpx;
  1451. .head-img-box{width: 130rpx;height: 130rpx;margin: 0 16rpx 0 8rpx;}
  1452. .head-content-box{font-size: 28rpx;}
  1453. }
  1454. .my-hyqy-swiper{width: 712rpx;height: 300rpx;border-radius: 10rpx;}
  1455. .my-list-box{
  1456. width: 712rpx;margin: 16rpx auto;padding: 30rpx 4rpx 0;border-radius: 16rpx;
  1457. justify-content: space-around;
  1458. .list-item{width: 20%;font-size: 22rpx;margin-bottom: 30rpx;}
  1459. .list-icon{width: 60rpx;height: 60rpx;margin: 0 auto 8rpx;}
  1460. }
  1461. .kefu-dialog{
  1462. .confirm-btn{margin: 16rpx auto;}
  1463. }
  1464. }
  1465. @include mediaBig() {
  1466. min-height: 2200rpx;
  1467. .my-title-navBar-box{
  1468. padding-top: 4rpx;
  1469. &::before{height: 720rpx;}
  1470. }
  1471. .my-head-box{
  1472. width: 1940rpx;margin: 0 auto 32rpx;
  1473. .head-img-box{width: 350rpx;height: 350rpx;margin: 0 38rpx 0 19rpx;}
  1474. .head-content-box{font-size: 66rpx;}
  1475. }
  1476. .my-hyqy-swiper{width: 1940rpx;height: 818rpx;border-radius: 26rpx;}
  1477. .my-list-box{
  1478. width: 1940rpx;margin: 38rpx auto;padding: 75rpx 10rpx 0;border-radius: 26rpx;
  1479. .list-item{font-size: 45rpx;margin-bottom: 75rpx;}
  1480. .list-icon{width: 160rpx;height: 160rpx;margin: 0 auto 19rpx;}
  1481. }
  1482. .kefu-dialog{
  1483. .confirm-btn{margin: 38rpx auto;}
  1484. }
  1485. }
  1486. }
  1487. // 应用设置
  1488. .ezy-yysz-page{
  1489. width: 100%;height: 100vh;min-height: 1400rpx;background: #f9f9fb;position: relative;overflow: auto;
  1490. display: flex;flex-direction: column;
  1491. .yysz-page-box{position: relative;z-index: 1;}
  1492. .yysz-row-box{width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1493. border-radius: 16rpx;margin: 16rpx auto 0;color: #333;font-size: 30rpx;}
  1494. .yysz-item{display: flex;align-items: center;justify-content: space-between;
  1495. padding: 32rpx 32rpx 32rpx 0;position: relative;margin: 0 32rpx 0 32rpx;}
  1496. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1497. .img-item{padding: 32rpx 32rpx 0 0;}
  1498. .item-text{color: #888;}
  1499. .yysz-item::after{
  1500. content: '';width: 14rpx;height: 24rpx;@include ezy-no-repeat-cover;
  1501. background-image: url("@/static/images/common/my/list-jt.png");
  1502. position: absolute;right: 0;
  1503. }
  1504. .yysz-img-box{width: 72rpx;height: 72rpx;border-radius: 50%;@include ezy-no-repeat-cover}
  1505. @include mediaSmall() {
  1506. min-height: 1000rpx;
  1507. .yysz-row-box{margin: 10rpx auto 0;font-size: 22rpx;}
  1508. .yysz-item{padding: 26rpx 42rpx 26rpx 0;margin: 0 21rpx 0 21rpx;}
  1509. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1510. .img-item{padding: 26rpx 42rpx 0 0;}
  1511. .yysz-item::after{width: 10rpx;height: 20rpx;}
  1512. .yysz-img-box{width: 76rpx;height: 76rpx;}
  1513. }
  1514. @include mediaBig() {
  1515. .yysz-row-box{border-radius: 26rpx;margin: 26rpx auto 0;font-size: 54rpx;}
  1516. .yysz-item{padding: 51rpx 82rpx 51rpx 0;margin: 0 51rpx 0 51rpx;}
  1517. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  1518. .img-item{padding: 51rpx 82rpx 0 0;}
  1519. .yysz-item::after{width: 26rpx;height: 42rpx;}
  1520. .yysz-img-box{width: 120rpx;height: 120rpx;}
  1521. }
  1522. }
  1523. // 关于我们
  1524. .ezy-about-page{
  1525. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  1526. .about-body-border{
  1527. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  1528. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  1529. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  1530. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  1531. }
  1532. .about-body-box{
  1533. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  1534. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  1535. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  1536. }
  1537. .content-top-box{
  1538. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  1539. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #ccc;
  1540. .about-icon-box{
  1541. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  1542. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/my/about-icon.png");
  1543. }
  1544. .about-name{
  1545. font-size: 30rpx;margin: 20rpx 0 42rpx;
  1546. }
  1547. .about-text{margin: 16rpx 0;}
  1548. }
  1549. .content-box{
  1550. font-size: 30rpx;margin-top: 32rpx;line-height: 2;color: #333;
  1551. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  1552. }
  1553. @media (max-height: 600px) {
  1554. .about-body-border{margin: 12rpx auto 150rpx;}
  1555. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  1556. .content-top-box{padding-bottom: 24rpx;}
  1557. .content-box{margin-top: 20rpx;}
  1558. }
  1559. @include mediaSmall() {
  1560. .about-body-border{
  1561. padding: 23rpx 0;margin: 13rpx auto 0;border-radius: 10rpx 10rpx 0 0;
  1562. box-shadow: 0 3rpx 6rpx rgba(0, 0, 0, 0.1);
  1563. }
  1564. .about-body-box{
  1565. top: 13rpx;left: 13rpx;right: 13rpx;bottom: 20rpx;
  1566. border-radius: 0 0 6rpx 6rpx;padding: 34rpx 16rpx 16rpx;
  1567. }
  1568. .content-top-box{
  1569. font-size: 18rpx;padding-bottom: 27rpx;
  1570. .about-icon-box{width: 160rpx;height: 157rpx;margin-right: 23rpx;}
  1571. .about-name{font-size: 22rpx;margin: 13rpx 0 27rpx;}
  1572. .about-text{margin: 10rpx 0;}
  1573. }
  1574. .content-box{font-size: 20rpx;margin-top: 21rpx;padding: 0 6rpx;}
  1575. }
  1576. @include mediaBig() {
  1577. .about-body-border{
  1578. padding: 58rpx 0;margin: 32rpx auto 0;
  1579. border-radius: 26rpx 26rpx 0 0;
  1580. box-shadow: 0 6rpx 16rpx rgba(0, 0, 0, 0.1);
  1581. }
  1582. .about-body-box{
  1583. top: 32rpx;left: 32rpx;right: 32rpx;bottom: 48rpx;
  1584. border-radius: 0 0 16rpx 16rpx;padding: 83rpx 38rpx 38rpx;
  1585. }
  1586. .content-top-box{
  1587. font-size: 42rpx;padding-bottom: 67rpx;
  1588. .about-icon-box{width: 460rpx;height: 451rpx;margin-right: 64rpx;}
  1589. .about-name{font-size: 54rpx;margin: 80rpx 0 62rpx;}
  1590. .about-text{margin: 26rpx 0;}
  1591. }
  1592. .content-box{font-size: 46rpx;margin-top: 51rpx;line-height: 2;padding: 0 16rpx;}
  1593. }
  1594. }
  1595. // 资料
  1596. .ezy-ziliao-page{
  1597. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1598. padding-bottom: 100rpx;box-sizing: border-box;
  1599. .zl-card-list{width: 100%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;padding: 12rpx 0 0;}
  1600. .jstx-card-box{
  1601. border-radius: 16rpx;margin: 0 24rpx 32rpx;font-size: 0;
  1602. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  1603. .jstx-card-img{width: 100%;border-radius: 16rpx 16rpx 0 0;}
  1604. .jstx-card-title{
  1605. padding: 32rpx 24rpx 42rpx;text-align: center;
  1606. font-size: 32rpx;color: #333;@include single-line-ellipsis;
  1607. }
  1608. }
  1609. @include mediaSmall() {
  1610. padding-bottom: 80rpx;
  1611. .zl-card-list{padding: 4rpx 0 0;}
  1612. .jstx-card-box{
  1613. margin: 0 24rpx 20rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  1614. .jstx-card-title{padding: 21rpx 16rpx 27rpx;font-size: 22rpx;}
  1615. }
  1616. }
  1617. @include mediaBig() {
  1618. padding-bottom: 180rpx;
  1619. .zl-card-list{padding: 42rpx 0 0;}
  1620. .jstx-card-img{border-radius: 26rpx 26rpx 0 0;}
  1621. .jstx-card-box{
  1622. border-radius: 26rpx;margin: 0 38rpx 52rpx;
  1623. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  1624. .jstx-card-title{padding: 51rpx 38rpx 67rpx;font-size: 54rpx;}
  1625. }
  1626. }
  1627. }
  1628. // 资料---数学--计算特训题库下载
  1629. .ezy-jstx-ziliao-page{
  1630. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1631. .jstx-body{
  1632. margin: 48rpx 20rpx 0;position: relative;overflow: unset;padding: 0 24rpx;box-sizing: border-box;
  1633. height: calc(100vh - 160rpx - var(--status-bar-height));
  1634. .jstx-body-title{
  1635. width: 406rpx;height: 77rpx;display: block;overflow-x:auto;
  1636. position: absolute;left: 50%;transform: translateX(-50%);top: -28rpx;z-index: 3;
  1637. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/ziliao/select-dj-img.png");
  1638. }
  1639. .jstx-tab-box{
  1640. width: 100%;height: 64rpx;white-space: nowrap;padding: 0;
  1641. text-align:center;margin: 90rpx 0 0;overflow-x: auto;
  1642. .tab-item{
  1643. height: 64rpx;line-height: 64rpx;margin: 0 16rpx;padding: 0 20rpx;
  1644. color: #333;font-size: 36rpx;display: inline-block;text-align:center;}
  1645. .tab-item:first-child{margin-left: 0;}
  1646. .tab-item:last-child{margin-right: 0;}
  1647. .active{color: #0d7ffc;position: relative;}
  1648. .active::after{
  1649. content: '';width: 100%;height: 4rpx;background-color: #0d7ffc;
  1650. position: absolute;bottom: 0;left: 0;border-radius: 4rpx;
  1651. }
  1652. }
  1653. .jstx-card-list{
  1654. padding: 24rpx 0 0;overflow-y: auto;flex: 1;
  1655. .ziliao-card-box{
  1656. display: flex;align-items: center;justify-content: space-between;box-sizing: border-box;
  1657. background-color: #f3f3f3;padding: 20rpx;margin-bottom: 24rpx;border-radius: 16rpx;
  1658. .card-img{width: 150rpx;height: 150rpx;flex-shrink: 0;margin-right: 24rpx;}
  1659. .card-content-box{
  1660. flex: 1;line-height: 1.6;
  1661. .ziliao-name{font-size: 32rpx;color: #333;@include single-line-ellipsis;margin-bottom: 10rpx;}
  1662. .banben-name{font-size: 28rpx;color: #0d7ffc;@include single-line-ellipsis;}
  1663. }
  1664. .card-icon{
  1665. width: 58rpx;height: 62rpx;flex-shrink: 0;
  1666. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/ziliao/jstx-pdf.png");
  1667. }
  1668. }
  1669. }
  1670. }
  1671. @include mediaSmall() {
  1672. .jstx-body{
  1673. margin-top: 31rpx;padding: 0 16rpx;
  1674. height: calc(100vh - 104rpx - var(--status-bar-height));
  1675. .jstx-body-title{width: 264rpx;height: 50rpx;top: -19rpx;}
  1676. .jstx-tab-box{
  1677. height: 42rpx;margin: 60rpx 0 0;font-size: 0;
  1678. .tab-item{height: 42rpx;line-height: 42rpx;margin: 0 20rpx;padding: 0 27rpx;font-size: 22rpx;}
  1679. .active::after{height: 3rpx;}
  1680. }
  1681. .jstx-card-list{
  1682. padding: 16rpx 0 0;
  1683. .ziliao-card-box{
  1684. padding: 10rpx;margin-bottom: 16rpx;border-radius: 10rpx;
  1685. .card-img{width: 82rpx;height: 82rpx;margin-right: 16rpx;}
  1686. .card-content-box{
  1687. .ziliao-name{font-size: 22rpx;margin-bottom: 7rpx;}
  1688. .banben-name{font-size: 20rpx;}
  1689. }
  1690. .card-icon{width: 40rpx;height: 42rpx;margin-right: 12rpx;}
  1691. }
  1692. }
  1693. }
  1694. }
  1695. @include mediaBig() {
  1696. .jstx-body{
  1697. margin: 76rpx 42rpx;padding: 0 38rpx;
  1698. height: calc(100vh - 256rpx - var(--status-bar-height));
  1699. .jstx-body-title{width: 650rpx;height: 123rpx;top: -45rpx;}
  1700. .jstx-tab-box{
  1701. height: 102rpx;margin: 144rpx 0 0;
  1702. .tab-item{height: 102rpx;line-height: 102rpx;margin: 0 60rpx;padding: 0 77rpx;font-size: 54rpx;}
  1703. .active::after{height: 6rpx;}
  1704. }
  1705. .jstx-card-list{
  1706. padding: 38rpx 0 0;
  1707. .ziliao-card-box{
  1708. padding: 28rpx;margin-bottom: 38rpx;border-radius: 26rpx;
  1709. .card-img{width: 210rpx;height: 210rpx;margin-right: 38rpx;}
  1710. .card-content-box{
  1711. .ziliao-name{font-size: 54rpx;margin-bottom: 16rpx;}
  1712. .banben-name{font-size: 46rpx;}
  1713. }
  1714. .card-icon{width: 112rpx;height: 120rpx;}
  1715. }
  1716. }
  1717. }
  1718. }
  1719. }
  1720. // 资料下载弹窗
  1721. .sxtk-sc-dialog{
  1722. .tip-title{color: #343434;font-size: 38rpx;margin-bottom: 24rpx;}
  1723. .tip-content-box{
  1724. width: 625rpx;height: 587rpx;padding: 42rpx 48rpx;
  1725. background-image: url("@/static/images/common/my/tk-dialog-bj.png");
  1726. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1727. }
  1728. .tip-content{
  1729. display: flex;align-items: center;
  1730. min-height: 260rpx;text-align: justify;border-bottom: 1px dashed #70cbf4;
  1731. margin-bottom: 30rpx;color: #666;font-size: 32rpx;padding-bottom: 32rpx;
  1732. border-bottom: 1px dashed #70cbf4;line-height: 1.8;}
  1733. @include mediaSmall() {
  1734. .tip-title{font-size: 24rpx;margin-bottom: 16rpx;}
  1735. .tip-content-box{width: 406rpx;height: 382rpx;padding: 27rpx 31rpx;}
  1736. .tip-content{min-height: 169rpx;margin-bottom: 20rpx;font-size: 20rpx;padding-bottom: 20rpx;}
  1737. }
  1738. @include mediaBig() {
  1739. .tip-title{font-size: 54rpx;margin-bottom: 38rpx;}
  1740. .tip-content-box{width: 1000rpx;height: 939rpx;padding: 67rpx 77rpx;}
  1741. .tip-content{min-height: 416rpx;margin-bottom: 48rpx;font-size: 46rpx;padding-bottom: 46rpx;}
  1742. }
  1743. }
  1744. // 订单
  1745. .ezy-order-page{
  1746. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1747. .order-scroll-view{overflow-y: auto;}
  1748. .order-body{padding: 0;}
  1749. .order-card-box{
  1750. border-radius: 16rpx;margin: 32rpx 24rpx 0;padding: 24rpx;overflow: hidden;
  1751. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);position: relative;
  1752. .card-head-box{
  1753. display: flex;align-items: center;justify-content: space-between;
  1754. line-height: 1.6;position: relative;z-index: 4;
  1755. .head-name{font-size: 30rpx;color: #333;font-weight: bold;}
  1756. .head-status{font-size: 28rpx;color: #666;}
  1757. }
  1758. .card-body-box{
  1759. display: flex;margin-top: 16rpx;position: relative;z-index: 4;
  1760. .order-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;}
  1761. .body-right-box{
  1762. margin-left: 24rpx;flex: 1;
  1763. .body-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  1764. .taocan-text{font-size: 26rpx;color: #666;margin-bottom: 24rpx; @include multi-line-ellipsis(2);}
  1765. .tip-text{font-size: 26rpx;color: #16a245;margin-bottom: 24rpx;}
  1766. .money-text{font-size: 42rpx;color: #333;text-align: right;font-weight: normal;}
  1767. }
  1768. }
  1769. }
  1770. .order-card-box::before,.order-card-box::after{
  1771. content: '';@include ezy-no-repeat-cover;
  1772. position: absolute;z-index: 3;opacity: 0.7;
  1773. }
  1774. .order-card-box::before{width: 500rpx;height: 473rpx;background-image: url("@/static/images/common/xk-mask-img1.png");top: -120rpx;left:-140rpx;}
  1775. .order-card-box::after{background-image: url("@/static/images/common/xk-mask-img2.png");width: 280rpx;height: 265rpx;bottom: -40rpx;right:-60rpx;}
  1776. @include mediaSmall() {
  1777. .order-card-box{
  1778. border-radius: 10rpx;margin: 21rpx 16rpx 0;padding: 16rpx;
  1779. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  1780. .card-head-box{
  1781. .head-name{font-size: 20rpx;}
  1782. .head-status{font-size: 18rpx;}
  1783. }
  1784. .card-body-box{
  1785. margin-top: 10rpx;
  1786. .order-img{width: 130rpx;height: 182rpx;border-radius: 10rpx;}
  1787. .body-right-box{
  1788. margin-left: 16rpx;
  1789. .body-title{font-size: 22rpx;margin-bottom: 21rpx;}
  1790. .taocan-text{font-size: 18rpx;margin-bottom: 16rpx;}
  1791. .tip-text{font-size: 18rpx;margin-bottom: 16rpx;}
  1792. .money-text{font-size: 28rpx;}
  1793. }
  1794. }
  1795. }
  1796. .order-card-box::before{width: 325rpx;height: 307rpx;top: -78rpx;left: -91rpx;}
  1797. .order-card-box::after{width: 182rpx;height: 172rpx;bottom: -26rpx;right: -39rpx;}
  1798. }
  1799. @include mediaBig() {
  1800. .order-card-box{
  1801. border-radius: 26rpx;
  1802. margin: 51rpx 38rpx 0;
  1803. padding: 38rpx;
  1804. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  1805. .card-head-box{
  1806. .head-name{font-size: 48rpx;}
  1807. .head-status{font-size: 45rpx;}
  1808. }
  1809. .card-body-box{
  1810. margin-top: 26rpx;
  1811. .order-img{width: 320rpx;height: 448rpx;border-radius: 26rpx;}
  1812. .body-right-box{
  1813. margin-left: 38rpx;
  1814. .body-title{font-size: 54rpx;margin-bottom: 51rpx;}
  1815. .taocan-text{font-size: 46rpx;margin-bottom: 38rpx;}
  1816. .tip-text{font-size: 46rpx;margin-bottom: 38rpx;}
  1817. .money-text{font-size: 68rpx;}
  1818. }
  1819. }
  1820. }
  1821. .order-card-box::before{width: 800rpx;height: 757rpx;top: -192rpx;left: -224rpx;}
  1822. .order-card-box::after{width: 448rpx;height: 424rpx;bottom: -64rpx;right: -96rpx;}
  1823. }
  1824. }
  1825. // 产品商城
  1826. .ezy-shop-page{
  1827. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1828. .shop-card-list{overflow-y: auto;flex: 1;padding: 12rpx 0 0;}
  1829. .shop-card-box{
  1830. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;position: relative;
  1831. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);display: flex;overflow: hidden;
  1832. .shop-img{width: 200rpx;height: 280rpx;flex-shrink: 0;border-radius: 16rpx;position: relative;z-index: 4;}
  1833. .card-right-box{
  1834. margin-left: 24rpx;position: relative;z-index: 4;
  1835. display: flex;flex-direction: column;justify-content: space-between;
  1836. .card-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 24rpx;margin-top: 6rpx;}
  1837. .card-content{font-size: 28rpx;color: #666;text-align: justify;margin-bottom: 24rpx;@include multi-line-ellipsis(3);line-height: 1.6;}
  1838. .card-price{font-size: 34rpx;color: #ff0202;font-weight: bolder;}
  1839. }
  1840. }
  1841. .shop-card-box::before,.shop-card-box::after{
  1842. content: '';@include ezy-no-repeat-cover;
  1843. position: absolute;z-index: 3;opacity: 0.7;
  1844. }
  1845. .shop-card-box::before{width: 500rpx;height: 473rpx;background-image: url("@/static/images/common/xk-mask-img1.png");top: -120rpx;left:-140rpx;}
  1846. .shop-card-box::after{background-image: url("@/static/images/common/xk-mask-img2.png");width: 280rpx;height: 265rpx;bottom: -40rpx;right:-60rpx;}
  1847. @include mediaSmall() {
  1848. .shop-card-list{padding: 4rpx 0 0;}
  1849. .shop-card-box{
  1850. border-radius: 10rpx;margin: 0 16rpx 21rpx;padding: 21rpx;
  1851. box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.3);
  1852. .shop-img{width: 110rpx;height: 154rpx;border-radius: 10rpx;}
  1853. .card-right-box{
  1854. margin-left: 16rpx;
  1855. .card-title{font-size: 22rpx;margin-bottom: 16rpx;margin-top: 2rpx;}
  1856. .card-content{font-size: 20rpx;margin-bottom: 16rpx;line-height: 1.6;@include multi-line-ellipsis(2);}
  1857. .card-price{font-size: 22rpx;}
  1858. }
  1859. }
  1860. .shop-card-box::before{width: 325rpx;height: 307rpx;top: -78rpx;left: -91rpx;}
  1861. .shop-card-box::after{width: 182rpx;height: 172rpx;bottom: -26rpx;right: -39rpx;}
  1862. }
  1863. @include mediaBig() {
  1864. .shop-card-list{padding: 42rpx 0 0;}
  1865. .shop-card-box{
  1866. border-radius: 26rpx;margin: 0 38rpx 51rpx;padding: 51rpx;
  1867. box-shadow: 0 0rpx 10rpx rgba(100, 159, 241, 0.3);
  1868. .shop-img{width: 240rpx;height: 336rpx;border-radius: 26rpx;}
  1869. .card-right-box{
  1870. margin-left: 38rpx;
  1871. .card-title{font-size: 54rpx;margin-bottom: 16rpx;margin-top: 4rpx;}
  1872. .card-content{font-size: 45rpx;margin-bottom: 16rpx;line-height: 1.8;}
  1873. .card-price{font-size: 54rpx;}
  1874. }
  1875. }
  1876. .shop-card-box::before{width: 800rpx;height: 757rpx;top: -192rpx;left: -224rpx;}
  1877. .shop-card-box::after{width: 448rpx;height: 424rpx;bottom: -64rpx;right: -96rpx;}
  1878. }
  1879. }
  1880. // 产品商城详情
  1881. .ezy-shop-info-page{
  1882. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1883. .shop-info-body{
  1884. flex: 1;position: relative;z-index: 2;background-color: #fff;
  1885. display: flex;flex-direction: column;overflow: hidden;
  1886. .img-content-box{
  1887. flex: 1;overflow-y: auto;
  1888. img{width: 100%;margin: 0 auto;display: block;}
  1889. }
  1890. .fx-btn-row{
  1891. flex-shrink: 0;display: flex;align-items: center;justify-content: space-between;padding: 24rpx;
  1892. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.6);box-sizing: border-box;background-color: #f9f9f9;
  1893. .fx-btn{
  1894. width:200rpx;color: #444;font-size: 30rpx;
  1895. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1896. }
  1897. .fx-icon{
  1898. width: 43rpx;height: 38rpx;margin-bottom: 6rpx;
  1899. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/fx-icon.png");
  1900. }
  1901. .bmxx-btn{
  1902. width: 492rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1903. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/bmxx-btn.png");
  1904. }
  1905. }
  1906. }
  1907. @include mediaSmall() {
  1908. .shop-info-body{
  1909. .fx-btn-row{
  1910. padding: 10rpx;box-shadow: 0 5rpx 16rpx rgba(0, 0, 0, 0.6);
  1911. .fx-btn{width: 120rpx;font-size: 20rpx;}
  1912. .fx-icon{width: 27rpx;height: 25rpx;margin-bottom: 2rpx;}
  1913. .bmxx-btn{width: 248rpx;height: 44rpx;line-height: 44rpx;font-size: 20rpx;margin-right: 42rpx;@include ezy-no-repeat-contain;}
  1914. }
  1915. }
  1916. }
  1917. @include mediaBig() {
  1918. .shop-info-body{
  1919. .fx-btn-row{
  1920. padding: 36rpx;box-shadow: 0 12rpx 36rpx rgba(0, 0, 0, 0.6);
  1921. .fx-btn{width: 300rpx;font-size: 46rpx;}
  1922. .fx-icon{width: 75rpx;height: 67rpx;margin-bottom: 9rpx;}
  1923. .bmxx-btn{width: 736rpx;height: 132rpx;line-height: 132rpx;font-size: 54rpx;}
  1924. }
  1925. }
  1926. }
  1927. }
  1928. // 确认订单
  1929. .ezy-qrdd-page{
  1930. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1931. .qrdd-body-box{
  1932. flex: 1;position: relative;z-index: 2;
  1933. display: flex;flex-direction: column;
  1934. overflow-y: auto;
  1935. }
  1936. .dd-item-box{
  1937. width: 731rpx;height:356rpx;@include ezy-no-repeat-cover;
  1938. background-image: url("@/static/images/common/shop/order-bj.png");
  1939. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  1940. display: flex;align-items: center;margin:0 auto 16rpx;flex-shrink: 0;
  1941. .item-img-box{width: 210rpx;height: 285rpx;border-radius: 12rpx;margin-right: 24rpx;flex-shrink: 0;}
  1942. .item-content-box{
  1943. display: flex;flex-direction: column;justify-content: space-between;line-height: 1.5;
  1944. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 10rpx;}
  1945. .item-intro{color: #444;font-size: 28rpx;@include multi-line-ellipsis(4);margin-bottom: 10rpx;}
  1946. .item-xianjia{color: #ff0000;font-size: 34rpx;font-weight: bolder;}
  1947. }
  1948. }
  1949. // border-box
  1950. .qrdd-border-box{
  1951. width: 713rpx;margin:0 auto;border-radius: 20rpx;
  1952. box-shadow: 0 0rpx 16rpx rgba(100, 159, 241, 0.2);
  1953. box-sizing: border-box;padding: 0 24rpx 16rpx;margin-bottom: 24rpx;
  1954. position: relative;z-index: 2;background-color: #fff;flex-shrink: 0;
  1955. // 课程学习等级
  1956. .kcxxdj-title{color: #454545;font-size: 30rpx;font-weight: bolder;padding: 16rpx 0;}
  1957. .kcxxdj-tc-box{
  1958. width: 100%;background-color: #f9fafc;border-radius: 20rpx;
  1959. display: flex;flex-direction: row;align-items: center;flex-wrap: wrap;
  1960. box-sizing: border-box;padding: 16rpx 0;
  1961. .tc-item{
  1962. min-width:76rpx;min-height: 76rpx;box-sizing: border-box;
  1963. text-align: center;border: 1rpx solid #666;border-radius: 20rpx;
  1964. font-size: 30rpx;line-height: 1; color: #666;
  1965. padding: 20rpx 6rpx;margin: 16rpx 0 16rpx 16rpx;
  1966. }
  1967. .active{background-color: #2b9bfd;color: #fff;border: 1rpx solid #1280e1;}
  1968. }
  1969. // 商品总价
  1970. .border-row{
  1971. display: flex;justify-content: space-between;
  1972. font-size: 32rpx;color: #444;padding: 32rpx 0;
  1973. border-bottom:1rpx dashed #f1f1f1;
  1974. .jg-text{color: #ff0000;}
  1975. }
  1976. .border-row:last-child{border: 0;}
  1977. .sum-row{justify-content: flex-end;}
  1978. .sum-text{margin-right: 32rpx;}
  1979. // 支付方式
  1980. .zzfs-name-box{
  1981. display: flex;align-items: center;
  1982. icon{width: 53rpx;height: 53rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;}
  1983. .wechat-icon{background-image: url("@/static/images/common/shop/wx-icon.png");}
  1984. .alipay-icon{background-image: url("@/static/images/common/shop/zfb-icon.png");}
  1985. }
  1986. .qrdd-radio-item{transform:scale(0.7);}
  1987. }
  1988. .qrdd-footer-box{
  1989. flex-shrink: 0;display: flex;align-items: center;justify-content: space-between;padding: 24rpx;
  1990. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.4);box-sizing: border-box;background-color: #f9f9f9;
  1991. .jg-box{color: #ff0000;}
  1992. .sum-row{display: flex;align-items: center;}
  1993. .xj-text-text{font-weight: bolder;font-size: 42rpx;}
  1994. .sum-text{font-size: 32rpx;color: #333;}
  1995. .yh-text{font-size: 28rpx;margin-top: 6rpx;}
  1996. .ljzf-btn{
  1997. width: 279rpx;height: 88rpx;line-height: 88rpx;color:#fff;font-size: 32rpx;text-align: center;
  1998. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/pay-btn.png");
  1999. }
  2000. }
  2001. @include mediaSmall() {
  2002. .dd-item-box{
  2003. width: 718rpx;height: 231rpx;padding: 17rpx 23rpx;margin: 0 auto 10rpx;position: relative;
  2004. border-radius: 13rpx;box-shadow: 0 0rpx 16rpx rgba(100, 159, 241, 0.2);box-sizing: border-box;
  2005. background-color: #fff;background-image: unset;overflow: hidden;
  2006. .item-img-box{width: 137rpx;height: 185rpx;border-radius: 8rpx;margin-right: 16rpx;z-index: 4;}
  2007. .item-content-box{
  2008. z-index: 4;line-height: 1.8;
  2009. .item-name{font-size: 22rpx;margin-bottom: 6rpx;}
  2010. .item-intro{font-size: 20rpx;margin-bottom: 6rpx;@include multi-line-ellipsis(3);}
  2011. .item-xianjia{font-size: 22rpx;}
  2012. }
  2013. }
  2014. .dd-item-box::before,.dd-item-box::after{
  2015. content: '';@include ezy-no-repeat-cover;
  2016. position: absolute;z-index: 3;opacity: 0.7;
  2017. }
  2018. .dd-item-box::before{width:440rpx;height: 406rpx;top: -180rpx;left:-160rpx;
  2019. background-image: url("@/static/images/common/xk-mask-img1.png");}
  2020. .dd-item-box::after{width: 180rpx;height: 165rpx;bottom: -20rpx;right:-30rpx;
  2021. background-image: url("@/static/images/common/xk-mask-img2.png");}
  2022. .qrdd-border-box{
  2023. width: 718rpx;border-radius: 13rpx;padding: 0 16rpx 16rpx;margin-bottom: 16rpx;
  2024. .kcxxdj-title{font-size: 22rpx;padding: 16rpx 0;}
  2025. .kcxxdj-tc-box{
  2026. border-radius: 13rpx;padding: 20rpx 0;
  2027. .tc-item{
  2028. min-width: 56rpx;min-height: 56rpx;border-radius: 13rpx;
  2029. font-size: 20rpx;padding: 16rpx 4rpx;margin: 16rpx 0 16rpx 36rpx;
  2030. }
  2031. }
  2032. .border-row{font-size: 22rpx;padding: 21rpx 0;}
  2033. .sum-text{margin-right: 21rpx;}
  2034. .zzfs-name-box{
  2035. icon{width: 34rpx;height: 34rpx;margin-right: 10rpx;}
  2036. }
  2037. .qrdd-radio-item{transform:scale(0.85);}
  2038. }
  2039. .qrdd-footer-box{
  2040. padding: 16rpx;box-shadow: 0 5rpx 16rpx rgba(0, 0, 0, 0.4);
  2041. .xj-text-text{font-size: 27rpx;}
  2042. .sum-text{font-size: 22rpx;}
  2043. .yh-text{font-size: 20rpx;margin-top: 4rpx;}
  2044. .ljzf-btn{width: 181rpx;height: 57rpx;line-height: 57rpx;font-size: 21rpx;}
  2045. }
  2046. }
  2047. @include mediaBig() {
  2048. .dd-item-box{
  2049. width: 1950rpx;height: 570rpx;padding: 42rpx 58rpx;margin: 0 auto 36rpx;border-radius: 32rpx;
  2050. .item-img-box{width: 336rpx;height: 456rpx;border-radius: 19rpx;margin-right: 38rpx;}
  2051. .item-content-box{
  2052. .item-name{font-size: 54rpx;margin-bottom: 16rpx;}
  2053. .item-intro{font-size: 46rpx;margin-bottom: 16rpx;}
  2054. .item-xianjia{font-size: 54rpx;}
  2055. }
  2056. }
  2057. .dd-item-box::before{width:840rpx;height: 806rpx;top: -320rpx;left:-280rpx;}
  2058. .dd-item-box::after{width: 480rpx;height: 465rpx;bottom: -100rpx;right:-100rpx;}
  2059. .qrdd-border-box{
  2060. width: 1950rpx;border-radius: 32rpx;padding: 0 38rpx 26rpx;margin-bottom: 36rpx;
  2061. .kcxxdj-title{font-size: 54rpx;padding: 26rpx 0;}
  2062. .kcxxdj-tc-box{
  2063. border-radius: 32rpx;padding: 26rpx 0;
  2064. .tc-item{
  2065. min-width: 160rpx;min-height: 160rpx;border-radius: 40rpx;
  2066. font-size: 46rpx;padding: 55rpx 10rpx;margin: 26rpx 0 26rpx 94rpx;
  2067. }
  2068. }
  2069. .border-row{font-size: 54rpx;padding: 51rpx 0;}
  2070. .sum-text{margin-right: 51rpx;}
  2071. .zzfs-name-box{
  2072. icon{width: 85rpx;height: 85rpx;margin-right: 26rpx;}
  2073. }
  2074. }
  2075. .qrdd-footer-box{
  2076. padding: 38rpx;
  2077. box-shadow: 0 13rpx 38rpx rgba(0, 0, 0, 0.4);
  2078. .xj-text-text{font-size: 68rpx;}
  2079. .sum-text{font-size: 54rpx;}
  2080. .yh-text{font-size: 46rpx;margin-top: 10rpx;}
  2081. .ljzf-btn{width: 446rpx;height: 141rpx;line-height: 141rpx;font-size: 54rpx;}
  2082. }
  2083. }
  2084. }
  2085. // 手机号快捷登录弹窗
  2086. .sjh-kjdl-dialog{
  2087. .sjh-kjdl-content-box{display: flex;flex-direction: column;align-items: center;}
  2088. .kjdl-btn{
  2089. width: 496rpx;height: 88rpx;line-height: 88rpx;color: #fff;font-size: 36rpx;margin: 32rpx 0;
  2090. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/shop/ksdl-btn.png");
  2091. }
  2092. .ykkt-text{color: #333;font-size: 32rpx;}
  2093. @include mediaSmall() {
  2094. .kjdl-btn{width: 322rpx;height: 57rpx;line-height: 57rpx;font-size: 22rpx;margin: 21rpx 0;}
  2095. .ykkt-text{font-size: 20rpx;}
  2096. }
  2097. @include mediaBig() {
  2098. .kjdl-btn{width: 794rpx;height: 141rpx;line-height: 141rpx;font-size: 54rpx;margin: 51rpx 0;}
  2099. .ykkt-text{font-size: 46rpx;}
  2100. }
  2101. }
  2102. // 兑换码
  2103. .ezy-dhm-page{
  2104. width: 100%;height: 100vh;display: flex;flex-direction: column;
  2105. .dhm-body{
  2106. width: 95%;margin: 20rpx auto 0;box-sizing: border-box;padding: 36rpx;
  2107. .dhm-head-box{
  2108. width: 100%;padding: 12rpx 0 56rpx;box-sizing: border-box;
  2109. display: flex;align-items: center;color: #333;line-height: 1.6;
  2110. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  2111. .head-content-box{font-size: 32rpx;}
  2112. }
  2113. .duihuan-input-box{
  2114. width: 100%;height: 100rpx;border: 1rpx solid #dfdfdf;border-radius: 16rpx;
  2115. display: flex;align-items: center;
  2116. .duihuan-input{width: 82%;color: #333;height: 98rpx;line-height: 98rpx;}
  2117. .uni-input-placeholder {font-size: 34rpx;color: #acacae;}
  2118. .duihuan-prefix-icon {
  2119. width: 56rpx;height: 56rpx;margin:0 32rpx 0 16rpx;@include ezy-no-repeat-cover;
  2120. background-image: url("@/static/images/common/my/two-code.png");position: relative;
  2121. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  2122. }
  2123. .duihuan-prefix-icon::after{
  2124. content: '';width: 1rpx;height: 56rpx;display: inline-block;background-color: #dfdfdf;
  2125. position: absolute;bottom: 0;right: -16rpx;
  2126. }
  2127. }
  2128. .duihuan-confirm-btn{
  2129. width: 100%;height: 92rpx;line-height: 92rpx;text-align: center;font-size:32rpx;
  2130. margin-top: 42rpx;@include ezy-no-repeat-contain;font-weight: bold;
  2131. background-image: url("@/static/images/common/login/login-btn-bj.png");color:#fff;
  2132. }
  2133. }
  2134. @include mediaSmall() {
  2135. .dhm-body{
  2136. margin: 13rpx auto 0;padding: 23rpx;
  2137. .dhm-head-box{
  2138. padding: 8rpx 0 36rpx;
  2139. .head-img-box{width: 100rpx;height: 100rpx;margin: 0 16rpx 0 8rpx;}
  2140. .head-content-box{font-size: 22rpx;}
  2141. }
  2142. .duihuan-input-box{
  2143. height: 65rpx;border-radius: 10rpx;
  2144. .duihuan-input{width: 86%;font-size: 20rpx;}
  2145. .uni-input-placeholder{font-size: 20rpx;}
  2146. .duihuan-prefix-icon {width: 36rpx;height: 36rpx;margin:0 21rpx 0 10rpx;}
  2147. .duihuan-prefix-icon::after{height: 36rpx;right: -10rpx;}
  2148. }
  2149. .duihuan-confirm-btn{height: 53rpx;line-height: 53rpx;font-size: 20rpx;margin-top: 27rpx;
  2150. background-image: url("@/static/images/pad/common/btn-bj.png");}
  2151. }
  2152. }
  2153. @include mediaBig() {
  2154. .dhm-body{
  2155. margin: 32rpx auto 0;padding: 58rpx;
  2156. .dhm-head-box{
  2157. width: 1820rpx;padding: 19rpx 0 90rpx;margin: 0 auto;
  2158. .head-img-box{width: 260rpx;height: 260rpx;margin: 0 38rpx 0 19rpx;}
  2159. .head-content-box{font-size: 54rpx;}
  2160. }
  2161. .duihuan-input-box{
  2162. width: 1820rpx;height: 160rpx;border-radius: 30rpx;margin: 0 auto;
  2163. .duihuan-input{width: 88%;font-size: 54rpx;}
  2164. .uni-input-placeholder {font-size: 54rpx;}
  2165. .duihuan-prefix-icon {width: 90rpx;height: 90rpx;margin:0 51rpx 0 26rpx;}
  2166. .duihuan-prefix-icon::after{height: 90rpx;right: -26rpx;}
  2167. }
  2168. .duihuan-confirm-btn{width: 1820rpx;
  2169. height: 147rpx;line-height: 147rpx;font-size: 54rpx;margin: 67rpx auto 0;}
  2170. }
  2171. }
  2172. }
  2173. // 单词列表页
  2174. .word-list-page{
  2175. width: 100%;height: 100vh;position: relative;
  2176. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2177. .word-body-box{padding: 42rpx 0 0;}
  2178. .word-list-swiper-box{
  2179. height: calc(100vh - 230rpx - var(--status-bar-height));overflow-y: auto;
  2180. .word-list-swiper-item{display: flex;flex-direction: column;}
  2181. }
  2182. .word-tab-box{
  2183. display: flex;align-items: center;flex-shrink: 0;width: 100%;overflow:hidden;
  2184. box-sizing: border-box;border-bottom: 1rpx dashed #068aea;padding: 0 0 16rpx;
  2185. .tab-item-list,.uni-scroll-view-content{flex: 1;display: flex;flex-wrap: nowrap;flex-direction: row;overflow-x: auto;margin: 0 4rpx;}
  2186. // @include single-line-ellipsis
  2187. .tab-item{
  2188. min-width: 148rpx;margin: 10rpx 6rpx;border-radius: 36rpx;
  2189. border: 1rpx solid #ddd;font-size: 28rpx;text-align: center;
  2190. position: relative;padding: 16rpx 0;color: #333;line-height: 1;
  2191. box-shadow: 0 2rpx 8rpx transparent;}
  2192. .word-jt{width: 50rpx;height: 80rpx;position: relative;flex-shrink: 0;}
  2193. .word-jt::before{content: '';width:32rpx;height: 32rpx;@include ezy-no-repeat-contain;
  2194. display:block;background-image: url("@/static/images/common/xbb-item-jt.png");
  2195. position: absolute;top: 24rpx;
  2196. }
  2197. .word-jt.disabled::before{background-image: url("@/static/images/common/xbb-item-jt-white.png");}
  2198. .jt-left::before{left: 12rpx;transform: rotate(180deg);}
  2199. .jt-right::before{right: 12rpx;}
  2200. .tab-item.active{font-weight: bold;background-color: #409eff;border: 1rpx solid #409eff;
  2201. color: #fff;box-shadow: 0 4rpx 8rpx rgba(6, 138, 234, 0.5);}
  2202. }
  2203. .word-list-body{flex: 1;overflow-y: auto;box-sizing: border-box;padding: 0 24rpx;}
  2204. .no-word-box{font-size: 28rpx;color: #666;flex: 1;display: flex;align-items: center;justify-content: center;}
  2205. .word-num-box{
  2206. display: flex;align-items: center;padding: 20rpx 24rpx;box-sizing: border-box;
  2207. icon{width: 10rpx;height: 32rpx;background-color:#068aea;border-radius:4rpx;margin-right: 8rpx;}
  2208. text{font-size: 34rpx;color: #068aea;font-weight: bold;}
  2209. }
  2210. }
  2211. // 单词详情
  2212. .word-view-page{
  2213. width: 100%;height: 100vh;position: relative;
  2214. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2215. @include ezy-no-repeat-cover(bottom);
  2216. .ezy-border-body{
  2217. width: 94%;margin: 3% 3%;display: flex;flex-direction: column;flex: 1;
  2218. background-color: rgba(255, 255, 255, 0.6);border-radius:8rpx;}
  2219. .word-view-border{
  2220. flex: 1;position: relative;background-color: #fff;z-index: 1;margin: 32rpx 24rpx 24rpx;
  2221. border-radius: 16rpx;box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  2222. display: flex;flex-direction: column;
  2223. }
  2224. // 选择单词
  2225. .select-words-box{
  2226. height: 66rpx;border-bottom: 1rpx dashed #0589e9;
  2227. display: flex;flex-wrap: wrap;justify-content: space-between;
  2228. box-sizing: border-box;font-size: 28rpx;overflow: hidden;
  2229. // @include single-line-ellipsis;
  2230. .words-item{min-width: 20%;color: #000;box-sizing: border-box;padding:16rpx 10rpx;text-align: center;}
  2231. .active{color: #068aea;}
  2232. }
  2233. // 选择类型
  2234. .select-types-box{
  2235. display: flex;justify-content: space-between;align-items: center;
  2236. margin-top: 24rpx;box-sizing: border-box;padding:0 24rpx;
  2237. .types-item{
  2238. width: 80rpx;height: 80rpx;line-height: 80rpx;text-align: center;
  2239. background-color: #fff;color: #999;border-radius: 50%;border: 1rpx solid #ddd;}
  2240. .types-item.active{background-color: #659ff1;color: #fff;}
  2241. .jt-item{width: 20rpx;height: 30rpx;@include ezy-no-repeat-cover;
  2242. background-image: url("@/static/images/common/wordView/jt-icon.png");}
  2243. .jt-item.active{background-image: url("@/static/images/common/wordView/jt-a-icon.png");}
  2244. }
  2245. .word-view-bottom{
  2246. width: 100%;height: 120rpx;background-color: #68b4e3;font-size: 28rpx;
  2247. border-top: 8rpx solid #add9f2;box-sizing: border-box;padding: 0 32rpx;
  2248. display: flex;justify-content: space-between;align-items: center;flex-shrink: 0;
  2249. .collect-btn{
  2250. color: #fff;display: flex;flex-direction: column;align-items: center;
  2251. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 6rpx;
  2252. background-image: url("@/static/images/common/wordView/collect-icon.png");}
  2253. .active{background-image: url("@/static/images/common/wordView/collect-a-icon.png");}
  2254. }
  2255. .bottom-btn-box{
  2256. display: flex;
  2257. .word-view-btn{
  2258. width: 204rpx;height: 77rpx;line-height: 77rpx;
  2259. color: #333;text-align: center;@include ezy-no-repeat-cover;
  2260. background-image: url("@/static/images/common/wordView/bottom-btn-bj.png");
  2261. }
  2262. .word-view-btn + .word-view-btn{margin-left: 30rpx;}
  2263. }
  2264. }
  2265. .word-view-swiper-box{flex: 1;overflow-y: auto;box-sizing: border-box;}
  2266. /*****componets*****/
  2267. // 解释
  2268. .pin-words-explain-box{
  2269. margin-top: 64rpx;
  2270. .words-explain-item{font-size: 34rpx;color: #333;text-align: center;padding: 0 16rpx;line-height: 1.4;}
  2271. .words-explain-item + .words-explain-item{margin-top: 12rpx;}
  2272. }
  2273. //播放
  2274. .audio-play-btn,.audio-playing-btn{width: 110rpx;height:110rpx;@include ezy-no-repeat-cover;margin: 56rpx auto 0;}
  2275. .audio-play-btn{background-image: url("@/static/images/common/wordView/play-btn.png");}
  2276. .audio-playing-btn{background-image: url("@/static/images/common/wordView/playing-btn.gif");}
  2277. // 清空按钮
  2278. .pin-tip{width: 560rpx;margin: 24rpx auto 0;font-size: 26rpx;text-align: center;border-radius: 8rpx;
  2279. color: #015fb0;border: 1rpx dashed #015fb0;box-sizing: border-box;padding: 10rpx 0;}
  2280. // 提示
  2281. .clean-btn{width: 171rpx;height:58rpx;@include ezy-no-repeat-cover;margin: 24rpx auto 0;
  2282. background-image: url("@/static/images/common/wordView/clean-btn.png");
  2283. }
  2284. // 音标播放
  2285. .yb-play-box{
  2286. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 32rpx auto 0;
  2287. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;
  2288. text{font-size: 34rpx;display: inline-block;vertical-align: middle;}
  2289. text:nth-child(even){color: #068aea;margin: 0 10rpx;}
  2290. icon{width: 30rpx;height:30rpx;@include ezy-no-repeat-cover;margin-left: 24rpx;
  2291. display: inline-block;vertical-align: middle;}
  2292. .yb-play-btn{background-image: url("@/static/images/common/wordView/yb-play-btn.png");}
  2293. .yb-playing-btn{background-image: url("@/static/images/common/wordView/yb-playing-btn.gif");}
  2294. }
  2295. // 带点的单词展示
  2296. .word-circle-box{
  2297. width: 100%;overflow: hidden;word-wrap: break-word;word-break: break-all;line-height: 1.8;
  2298. color: #015fb0;font-weight: bold;font-size: 82rpx;text-align: center;margin: 42rpx auto 0;
  2299. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  2300. .word-link-box{display: inline-block;padding:14rpx 48rpx 36rpx;position:relative;line-height: 1;}
  2301. .word-link-box::before,.word-link-box::after{
  2302. content: '';width: 100%;height: 42rpx;z-index: 1;
  2303. display: block;position: absolute;left: 0;
  2304. border: 2rpx solid #bdd2d4;border-left: 0;border-right: 0;
  2305. }
  2306. .word-link-box::before{top: 0;}
  2307. .word-link-box::after{bottom: 0;}
  2308. text{display: inline-block;vertical-align: middle;position: relative;z-index: 2;
  2309. font-family:"Arial", sans-serif;}
  2310. text:nth-child(odd){color: #ff9a01;}
  2311. text:not(:first-child)::before{
  2312. content: '';width: 10rpx;height: 10rpx;background-color: #999;margin: 0 6rpx;
  2313. display: inline-block;vertical-align: middle;border-radius: 10rpx;
  2314. }
  2315. }
  2316. // 单词详情块
  2317. .details-title{background-color: #3a7fe9;padding: 8rpx 12rpx;border-radius: 10rpx;
  2318. font-size: 24rpx;color: #fff;display: inline-block;}
  2319. .details-content-box{
  2320. background-color: #fffefe;border-radius: 10rpx;margin: 0 20rpx;line-height: 1.4;margin-bottom: 16rpx;
  2321. box-sizing: border-box;padding: 12rpx 10rpx;font-size: 26rpx;
  2322. }
  2323. .syky-content{margin: 16rpx 0 36rpx;border-bottom: 1rpx dashed #8dcff1;}
  2324. .syky-content:last-child{margin: 16rpx 0;border-bottom:0;}
  2325. .details-en-content{
  2326. color: #000;margin:16rpx 12rpx;
  2327. }
  2328. .word-color{color: #3a7fe9;}
  2329. .details-cn-content{color: #666;margin: 16rpx 12rpx 24rpx;}
  2330. }
  2331. .word-view-page::before,.word-view-page::after{content: '';width: 29rpx;height: 42rpx;
  2332. // background-image: url("@/static/images/study/jt-left-icon.png");
  2333. @include ezy-no-repeat-cover;display: block;
  2334. position: absolute;top: 46%;}
  2335. .word-view-page::before{left: 60rpx;}
  2336. .word-view-page::after{right: 60rpx;transform: rotate(180deg);}
  2337. // 单词详情- 学
  2338. .words-xue-box{
  2339. text-align: center;
  2340. .words-xue-body{height: calc(100vh - 390rpx - var(--status-bar-height));overflow-y: auto;}
  2341. .word-block-box{
  2342. text{min-width: 50rpx;height: 50rpx;line-height: 48rpx;font-size: 26rpx;margin: 12rpx 0;
  2343. padding: 0 10rpx;box-sizing: border-box;border-radius: 8rpx;
  2344. background-color: #9cd4ef;color: #333;display: inline-block;}
  2345. text + text{margin-left: 10rpx;}
  2346. }
  2347. .details-btn{
  2348. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 24rpx auto;
  2349. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;color: #068aea;
  2350. }
  2351. .xue-yb-play-box{margin-top: 12rpx;}
  2352. .xue-words-explain-box{margin-top: 32rpx;}
  2353. .yb-block-box text{min-width: 56rpx;height: 56rpx;line-height: 54rpx;border: 1rpx solid #fff;font-size: 26rpx;}
  2354. .yj-block-box{
  2355. min-width: 50rpx;font-size: 26rpx;
  2356. .yj-block-item{
  2357. display: inline-block;border: 1rpx solid #fff;color: #06399c;border-radius: 8rpx;overflow: hidden;
  2358. }
  2359. .yj-block-item +.yj-block-item{margin-left: 10rpx;}
  2360. .item-top,.item-bottom{height: 52rpx;line-height: 50rpx;padding: 0 10rpx;box-sizing: border-box;}
  2361. .item-top{background-color: #e7f2f9;}
  2362. .item-bottom{background-color: #9cd4ef;}
  2363. }
  2364. .cg-item-list{
  2365. .uni-scroll-view-content{display: flex;box-sizing: border-box;padding:0 24rpx; }
  2366. .cg-item-box{display: flex;flex-direction: row;flex-shrink: 0;color: #000;font-size: 32rpx;padding: 24rpx 0;}
  2367. // max-width: 360rpx;
  2368. .cg-item{
  2369. min-height: 124rpx;
  2370. display: flex;align-items: flex-start;flex-direction: column;justify-content: center;
  2371. border:1rpx solid #9cbff4;background-color: #fff;border-radius: 8rpx;padding: 16rpx;
  2372. view + view{margin-top: 2rpx;}
  2373. }
  2374. .isEven{color: #015fb0;}
  2375. .isOdd{color: #ff9a01;}
  2376. .cg-symbol{margin: 0 10rpx;display: flex;align-items: center;}
  2377. }
  2378. .xue-change-btn-box{
  2379. display: flex;justify-content: center;border-bottom: 1rpx dashed #8dcff1;margin: 0 20rpx;padding: 32rpx 0 42rpx;
  2380. .change-btn{
  2381. width: 254rpx;height:77rpx;position: relative;
  2382. text{color: #fff;position: relative;font-size: 32rpx;z-index: 2;display: inline-block;margin-top:15rpx;}
  2383. }
  2384. .change-btn::after{
  2385. content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;@include ezy-no-repeat-cover;
  2386. background-image: url("@/static/images/common/wordView/change-btn.png");z-index: 1;
  2387. }
  2388. .change-btn.active text{color: #0f67be;}
  2389. .change-btn.active::after{background-image: url("@/static/images/common/wordView/change-btn-a.png");transform: rotate(180deg);}
  2390. .change-btn:last-child::after{transform: rotate(180deg);}
  2391. .change-btn.active:last-child::after{transform: unset;}
  2392. }
  2393. .xue-details-content-box{text-align: left;margin-top: 12rpx;}
  2394. }
  2395. // 单词详情-拼
  2396. .words-pin-box{
  2397. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2398. height: calc(100vh - 390rpx - var(--status-bar-height));
  2399. .pin-body-box{flex: 1;overflow-y: auto;}
  2400. // 拼读 +选择
  2401. .pin-words-box{
  2402. // min-width: 80rpx;height: 100rpx;font-size: 64rpx;
  2403. display: flex;justify-content: center;margin-top: 64rpx;
  2404. .words-item{min-width: 90rpx;height: 120rpx;line-height: 120rpx;font-size: 80rpx;
  2405. text-align: center;box-sizing: border-box;padding: 0 6rpx;font-weight: bold;
  2406. border-radius: 8rpx;background-color: #b7e2f5;color: #015fb0;}
  2407. .words-item + .words-item{margin-left: 12rpx;}
  2408. }
  2409. .pin-small-words-box{
  2410. .words-item{min-width: 70rpx;height: 100rpx;line-height: 110rpx;font-size: 64rpx;padding: 0 4rpx;}
  2411. .words-item + .words-item{margin-left: 8rpx;}
  2412. }
  2413. // 回答正确 && 回答错误
  2414. .pin-error-words-box,.pin-right-words-box{
  2415. .words-item:last-child{position: relative;}
  2416. .words-item:last-child::after{
  2417. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  2418. position: absolute;top: -22rpx;right: -12rpx;
  2419. }
  2420. }
  2421. .pin-error-words-box.isAll{
  2422. .words-item{background-color: #fbc2c2;color: #ff4d4d;}
  2423. .words-item:last-child::after{background-image: url("@/static/images/common/wordView/word-error-icon.png");}
  2424. }
  2425. .pin-right-words-box.isAll{
  2426. .words-item{background-color: #ddffdd;color: #36c336;}
  2427. .words-item:last-child::after{background-image: url("@/static/images/common/wordView/word-right-icon.png");}
  2428. }
  2429. // 选择单词
  2430. .pin-words-change-box{
  2431. margin-bottom: 32rpx;
  2432. .words-change-item{line-height: 116rpx;border: 1rpx solid #2da8e7;border-bottom: 8rpx solid #41c5ff}
  2433. .words-change-item.disabled{border: 1rpx solid #999;border-bottom: 8rpx solid #ccc;
  2434. color: #999;background-color: #f0f0f0;}
  2435. }
  2436. .pin-words-change-box.pin-small-words-box{
  2437. .words-item{line-height: 90rpx;}
  2438. }
  2439. @media (max-height: 600px) {
  2440. // 拼
  2441. .words-pin-box{
  2442. .select-types-box{margin-top: 10rpx;}
  2443. .pin-words-box,.pin-words-explain-box{margin-top: 32rpx;}
  2444. .audio-play-btn,.audio-playing-btn{width: 96rpx;height:96rpx;margin-top: 24rpx;}
  2445. }
  2446. }
  2447. }
  2448. // 单词详情-读
  2449. .words-du-box{
  2450. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2451. height: calc(100vh - 390rpx - var(--status-bar-height));
  2452. .du-body-box{flex: 1;text-align: center;}
  2453. .du-yb-play-box{margin: 56rpx 0 42rpx;}
  2454. .du-words-explain-box{margin-top: 24rpx;}
  2455. .mike-play-box{
  2456. .mike-play-tip{font-size: 28rpx;color: #666;text-align: center;}
  2457. .du-btn-box{width: 100%;position: relative;}
  2458. .mike-btn::after,.mike-az-btn::after,.play-btn::after,.playing-btn::after{display: none;}
  2459. .mike-btn,.mike-az-btn{
  2460. width: 130rpx;height:130rpx;@include ezy-no-repeat-cover;margin-left: 24rpx;
  2461. background-color: transparent;border: 0;margin: 16rpx auto 32rpx;display: block;
  2462. }
  2463. .mike-btn{background-image: url("@/static/images/common/wordView/miki-btn.png");}
  2464. .mike-az-btn{background-image: url("@/static/images/common/wordView/miki-btn-a.gif");}
  2465. .play-btn,.playing-btn{
  2466. width: 96rpx;height:96rpx;@include ezy-no-repeat-cover;
  2467. background-color: transparent;border: 0;
  2468. position: absolute;left: 80rpx;bottom: 15rpx;
  2469. }
  2470. .play-btn{background-image: url("@/static/images/common/wordView/play-btn.png");}
  2471. .playing-btn{background-image: url("@/static/images/common/wordView/playing-btn.gif");}
  2472. }
  2473. }
  2474. // 单词详情-选
  2475. .words-xuan-box{
  2476. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2477. height: calc(100vh - 390rpx - var(--status-bar-height));
  2478. .xuan-body-box{flex: 1;overflow-y: auto;text-align: center;}
  2479. .show-words-box{
  2480. width: 100%;overflow: hidden;word-wrap: break-word;word-break: break-all;
  2481. color: #015fb0;font-weight: bold;font-size: 76rpx;text-align: center;margin: 64rpx auto 0;
  2482. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  2483. }
  2484. .select-change-box{
  2485. flex-shrink: 0;
  2486. .select-item{
  2487. width: 600rpx;height: 96rpx;text-align: center;border-radius: 12rpx;font-size: 32rpx;
  2488. background-color: #fff;border-bottom: 6rpx solid #ddf3fb;line-height: 1.4;color: #333;
  2489. display: flex;align-items: center;justify-content: center;margin: 12rpx auto;
  2490. box-sizing: border-box;padding: 0 10rpx;text-align: left;position: relative;
  2491. text{@include multi-line-ellipsis(2);}
  2492. }
  2493. .select-item.active{
  2494. background-color: #6bcdff;border-bottom: 6rpx solid #a7e9fd;color: #fff;
  2495. }
  2496. .select-error::after,.select-right::after{
  2497. content: '';width: 36rpx;height: 36rpx;display: block;@include ezy-no-repeat-cover;
  2498. position: absolute;top: -10rpx;right: -12rpx;
  2499. }
  2500. .select-error::after{background-image: url("@/static/images/common/wordView/word-error-icon.png");}
  2501. .select-right::after{background-image: url("@/static/images/common/wordView/word-right-icon.png");}
  2502. }
  2503. @media (max-height: 600px) {
  2504. .show-words-box{margin: 12rpx auto 0;}
  2505. .yb-play-box{margin: 12rpx auto 0;}
  2506. }
  2507. }
  2508. // 单词详情-背
  2509. .words-bei-box{
  2510. display: flex;flex-direction: column;text-align: center;
  2511. height: calc(100vh - 390rpx - var(--status-bar-height));
  2512. // 答案
  2513. .words-answer-box{
  2514. min-width: 420rpx;max-width: 90%;height: 120rpx;line-height: 120rpx;margin: 64rpx auto 0;
  2515. background-color: #b7e2f5;color: #015fb0;font-size: 72rpx;display: inline-block;overflow: unset;
  2516. border-radius: 8rpx;padding: 0 10rpx;box-sizing: border-box;font-weight: bold;
  2517. .uni-input-placeholder.input-placeholder{color: #015fb0;font-size: 64rpx;}
  2518. }
  2519. // 兼容
  2520. .words-answer-box::placeholder { color: #015fb0;font-size: 64rpx; }
  2521. // 回答正确 && 回答错误
  2522. .words-answer-error-box,.words-answer-right-box{position: relative;}
  2523. .words-answer-error-box::after,.words-answer-right-box::after{
  2524. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  2525. position: absolute;top: -22rpx;right: -12rpx;
  2526. }
  2527. // background-color: #fbc2c2;
  2528. .words-answer-error-box{color: #ff4d4d;}
  2529. .words-answer-error-box::after{background-image: url("@/static/images/common/wordView/word-error-icon.png");}
  2530. // background-color: #ddffdd;
  2531. .words-answer-right-box{color: #36c336;}
  2532. .words-answer-right-box::after{background-image: url("@/static/images/common/wordView/word-right-icon.png");}
  2533. .bei-body-box{flex: 1;overflow-y: auto;}
  2534. // 键盘
  2535. .words-keyboard-box{
  2536. background-color: #e5e8ee;box-sizing: border-box;padding: 24rpx 0;
  2537. // position: absolute;bottom: -10rpx;left: -10rpx;right: -10rpx;
  2538. .keyboard-row{display: flex;justify-content: space-between;
  2539. box-sizing: border-box;padding: 0 32rpx;margin-bottom: 12rpx;}
  2540. .keyboard-button{
  2541. width: 56rpx;height: 90rpx;line-height: 90rpx;text-align: center;
  2542. background-color: #fff;color:#000;border-radius: 6rpx;font-size: 46rpx;
  2543. border-bottom:6rpx solid #e2e2e2;box-sizing: border-box;}
  2544. .keyboard-button.active{background-color: #b7e2f5;color:#015fb0;border-bottom:6rpx solid #41c5ff;}
  2545. .del-btn::after{
  2546. content: '';width: 46rpx;height: 46rpx;display: block;margin: 22rpx auto;
  2547. background-image: url("@/static/images/common/wordView/del-btn.svg");@include ezy-no-repeat-cover;}
  2548. .bei-confirm-btn-box{
  2549. width: 100%;height: 77rpx;line-height: 77rpx;
  2550. padding: 0 32rpx;display: flex;margin: 16rpx auto 0;
  2551. }
  2552. .big-btn{width: 120rpx;background-color: #fff;color:#000;margin-right: 6px;border-radius: 8rpx;}
  2553. .big-btn.active{color: #005ea1;}
  2554. .bei-confirm-btn{
  2555. background-color: transparent;color: #fff;
  2556. background-color: #4897d7;border-radius: 8rpx;flex: 1;
  2557. }
  2558. }
  2559. @media (max-height: 800px) {
  2560. .words-answer-box{margin-top: 32rpx;}
  2561. .pin-words-explain-box{margin-top: 32rpx;}
  2562. .audio-play-btn,.audio-playing-btn{margin: 32rpx auto 0;}
  2563. }
  2564. @media (max-height: 750px) {
  2565. .words-answer-box{
  2566. max-width: 86%;height: 100rpx;line-height: 100rpx;font-size: 66rpx;
  2567. .uni-input-placeholder.input-placeholder{font-size: 56rpx;}
  2568. }
  2569. .audio-play-btn,.audio-playing-btn{width: 80rpx;height:80rpx;}
  2570. .clean-btn{margin-top: 16rpx;}
  2571. .words-answer-error-box::after,.words-answer-right-box::after{width: 40rpx;height: 40rpx;top: -10rpx;right: -10rpx;}
  2572. }
  2573. @media (max-height: 700px) {
  2574. .words-answer-box{margin-top: 24rpx;}
  2575. .pin-words-explain-box{margin-top: 24rpx;}
  2576. .audio-play-btn,.audio-playing-btn{margin: 24rpx auto 0;}
  2577. .clean-btn{margin-top: 24rpx;}
  2578. .words-answer-error-box::after,.words-answer-right-box::after{width: 36rpx;height: 36rpx;top: -6rpx;right: -6rpx;}
  2579. }
  2580. }
  2581. // 单词详解
  2582. .words-details-page{
  2583. // background-image: url("@/static/images/course/course-cjdc-bj.png");
  2584. .words-details-body{overflow-y: auto;}
  2585. .details-word{color: #000;font-size: 62rpx;font-weight: bold;margin: 24rpx;}
  2586. .tysy-content{color: #333;margin: 16rpx 12rpx 0;}
  2587. }