pages.scss 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409
  1. /***** 这里放页面样式 *****/
  2. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  3. .ezy-login-page {
  4. width:100%;height:100vh; background-color: #80dfff;position: relative;
  5. .ezy-login-wrap{width:100%;height: 1623.08rpx;background-image: url("@/static/images/login/login-bj.png");@include ezy-no-repeat-cover(top);}
  6. .login-e-img{
  7. width: 692rpx;height: 625rpx;@include ezy-no-repeat-cover;
  8. background-image: url("@/static/images/login/login-e-img.gif");
  9. position: absolute;top: -180rpx;left: -180rpx;
  10. }
  11. .login-body-box{
  12. display: flex;flex-direction: column;display: flex;box-sizing: border-box;
  13. position: absolute;top:690rpx;left: 50%;transform: translateX(-50%);
  14. }
  15. .index-title-img{
  16. width: 411rpx;height: 73rpx;@include ezy-no-repeat-cover;margin-right: auto;
  17. background-image: url("@/static/images/login/login-tel.png");
  18. }
  19. .login-btn{width: 644rpx;height: 106rpx;margin-top: 84rpx;@include ezy-no-repeat-cover;}
  20. /***** 输入手机号页面*****/
  21. .phone-input-box{
  22. width: 644rpx;height: 144rpx;box-sizing: border-box;padding-bottom: 20rpx;
  23. display: flex;align-items: center;margin-top: 50rpx;
  24. background-image: url("@/static/images/login/login-tel-bj.png");@include ezy-no-repeat-cover;
  25. .phone-prefix {
  26. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
  27. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  28. }
  29. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
  30. .phone-input {font-size: 38rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  31. .uni-input-placeholder {font-size: 34rpx;color: #ffffffd9;
  32. }
  33. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  34. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  35. }
  36. .agreement-checkbox-box {
  37. display: flex;justify-content: center;margin-top: 10rpx;
  38. uni-checkbox-group{font-size: 0;}
  39. .agreement-checkbox-input{width: 40rpx;height: 40rpx;border: 0;margin-right: 4rpx;font-size: 0;}
  40. .uni-checkbox-input{
  41. width: 40rpx;height: 40rpx;border: 0;background-color: unset;@include ezy-no-repeat-cover;
  42. background-image: url("@/static/images/login/login-checked-bj.png");
  43. svg {width: 28;height: 28rpx;top: 48%;left: 50%;}
  44. }
  45. .agreement-text-box {
  46. color: #ffffffd9;font-size: 27rpx;
  47. flex-direction: row;display: flex;align-items: center;
  48. .agreement-text{color: #e3f524;display: contents;}
  49. }
  50. }
  51. .tel-btn-disabled{background-image: url("@/static/images/login/login-zym-bj-disabled.png");}
  52. .tel-btn-normal{background-image: url("@/static/images/login/login-zym-bj.png");}
  53. .bottom-btn-box{
  54. position: absolute;bottom:5%;left: 50%;transform: translateX(-50%);display: flex;
  55. .wx-btn,.yk-btn,.apple-btn{
  56. width: 125rpx;height: 144rpx;@include ezy-no-repeat-cover;margin: 0 20rpx;
  57. }
  58. .wx-btn{background-image: url("@/static/images/login/login-wx-btn.png");}
  59. .yk-btn{background-image: url("@/static/images/login/login-yk-btn.png");}
  60. .apple-btn{background-image: url("@/static/images/login/login-apple-btn.png");}
  61. }
  62. /***** 输入验证码页面*****/
  63. .yzm-nav-bar-icon{z-index: 99;}
  64. .login-title-img{
  65. width: 317rpx;height: 77rpx;@include ezy-no-repeat-cover;margin-right: auto;
  66. background-image: url("@/static/images/login/login-yzm.png");
  67. }
  68. .yzm-btn{margin-top: 42rpx;}
  69. .yzm-show{font-size: 28rpx;color: #ffffffd9;margin: 24rpx 0 0 20rpx;}
  70. .login-btn-disabled{background-image: url("@/static/images/login/login-btn-bj-disabled.png");}
  71. .login-btn-normal{background-image: url("@/static/images/login/login-btn-bj.png");}
  72. .cxfs-btn{font-size: 30rpx;color: #3257b9;display: inline-block;margin: 20rpx auto 60rpx;}
  73. .cxfs-btn-disabled{color: #777;}
  74. .login-text{font-size: 28rpx;color: #3257b9;margin: 16rpx 0 0 20rpx;}
  75. /* 针对小屏幕设备 */
  76. @media (max-height: 800px) {
  77. .login-body-box{top:660rpx;}
  78. .bottom-btn-box{bottom:2%;}
  79. .login-btn{margin-top: 64rpx;}
  80. // 输入验证码页面
  81. .yzm-btn{margin-top: 32rpx;}
  82. .cxfs-btn{margin: 16rpx auto 30rpx;}
  83. }
  84. @media (max-height: 736px) {
  85. .login-btn{margin-top: 42rpx;}
  86. }
  87. @media (max-height: 700px) {
  88. .login-body-box{top:640rpx;}
  89. .login-btn{margin-top: 46rpx;}
  90. .phone-input-box{margin-top: 24rpx;}
  91. // 输入验证码页面
  92. .yzm-btn{margin-top: 24rpx;}
  93. .cxfs-btn{margin: 12rpx auto 20rpx;}
  94. }
  95. @media (max-height: 600px) {
  96. .bottom-btn-box{bottom:5%;}
  97. .login-btn{margin-top: 36rpx;}
  98. .ezy-login-wrap{height: 1360rpx;position: relative;}
  99. }
  100. }
  101. // 用户协议弹窗
  102. .agree-sections-dialog{
  103. width: 635rpx;height: 702rpx;padding: 350rpx 0 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  104. background-image: url("@/static/images/login/agree-dialog-bj.png");@include ezy-no-repeat-cover;
  105. .agree-title{color:#666;font-size: 32rpx;font-weight: 600;}
  106. .agree-tip{color:#777;font-size: 28rpx;margin-top: 30rpx;}
  107. .confirm-btn{width: 538rpx;height: 85rpx;@include ezy-no-repeat-cover;margin: 46rpx auto 0;
  108. background-image: url("@/static/images/login/agree-confirm-btn.png");}
  109. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 16rpx 0;display: inline-block;}
  110. @media (max-height: 700px) {margin-bottom: 16%;}
  111. @media (max-height: 600px) {margin-bottom: 0;}
  112. }
  113. // 第一次登录时隐私协议弹窗
  114. .agree-first-sections-dialog{
  115. width: 635rpx;height: 702rpx;padding: 300rpx 36rpx 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  116. background-image: url("@/static/images/login/agree-dialog-bj.png");@include ezy-no-repeat-cover;
  117. .agree-tip{
  118. color:#666;font-size: 28rpx;margin-top: 30rpx;text-align: justify;line-height: 40rpx;
  119. text{color: #66a2cb;}
  120. }
  121. .first-confirm-btn{width: 538rpx;height: 80rpx;@include ezy-no-repeat-cover;margin: 24rpx auto 0;font-size: 32rpx;
  122. background-color: #22c70a;border-radius: 8rpx;color: #fff;border: 1px solid #999;line-height: 80rpx;}
  123. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 16rpx 0;display: inline-block;}
  124. @media (max-height: 700px) {margin-bottom: 16%;}
  125. @media (max-height: 600px) {margin-bottom: 0;}
  126. }
  127. // 用户协议详情弹窗
  128. .agree-content-dialog{
  129. width: 100%;height: 100vh;overflow: auto;
  130. .agree-content-box{
  131. width: 684rpx;height: 1308rpx;@include ezy-no-repeat-cover;
  132. background-image: url("@/static/images/login/agree-content-bj.png");
  133. padding: 120rpx 0 64rpx;box-sizing: border-box;margin-top: 36%;
  134. position: relative;text-align: justify;
  135. display: flex;flex-direction: column;
  136. }
  137. .agree-title{font-size: 42rpx;text-align: center;margin-bottom: 42rpx;flex-shrink: 0;}
  138. .agree-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;
  139. position: absolute;top: 64rpx;right: 44rpx;
  140. background-image: url("@/static/images/common/close-icon.png");}
  141. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;word-break: break-all;}
  142. @media (max-height: 800px) {
  143. .agree-content-box{margin-top: 18%;}
  144. }
  145. @media (max-height: 700px) {
  146. .agree-content-box{margin-top: var(--status-bar-height);}
  147. }
  148. }
  149. // 滑块校验弹窗
  150. .slider-check-dialog{
  151. background-color: rgba(255, 255, 255, 0.6);
  152. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  153. justify-content: center;align-items: center;
  154. .slider-check-content{
  155. width: 635rpx;height: 423rpx;padding: 42rpx 36rpx 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  156. background-image: url("@/static/images/login/slider-dialog-bj.png");@include ezy-no-repeat-cover;position: relative;
  157. }
  158. .slider-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  159. background-image: url("@/static/images/common/close-icon.png");}
  160. .slider-check-tip{color:#777;font-size: 32rpx;margin-top: 30rpx;font-weight: 800;}
  161. .slider-check-btn{width: 208rpx;height: 85rpx;@include ezy-no-repeat-cover;margin: 32rpx auto 0;
  162. background-image: url("@/static/images/login/slider-confirm.png");display: block;}
  163. .nc-container{
  164. position: unset;border-bottom: 1px dashed #70cbf4;padding: 36rpx 0 54rpx;box-sizing: border-box;
  165. .nc_wrapper{width: 100%!important;}
  166. .nc_iconfont.btn_ok{font-family: unset;font-size: 0;}
  167. .nc_iconfont.btn_ok::before{content: '';width: 20px;height:20px;display: block;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);
  168. @include ezy-no-repeat-cover;background-image: url("@/static/images/login/slider-right-icon.png");z-index: 4;}
  169. }
  170. .slider-tip-red{color: red;}
  171. @media (max-height: 700px) {
  172. .slider-check-content{margin-bottom: 16%;}
  173. }
  174. @media (max-height: 600px) {
  175. .slider-check-content{margin-bottom: 0;}
  176. }
  177. }
  178. // 选择年级和学期
  179. .grades-terms-page{
  180. width:100%;height:100vh;background-color: #43c1f6;box-sizing: border-box;padding-top:var(--status-bar-height);
  181. background-image: url("@/static/images/grade/grades-terms-bj1.png");@include ezy-no-repeat-cover(top);
  182. // padding-top: 52%;
  183. position: relative;min-height: 1212rpx;
  184. .grades-terms-bar-icon{z-index: 99;}
  185. .grade-item-box{
  186. display: flex;flex-wrap: wrap;justify-content: space-evenly;
  187. box-sizing: border-box;padding: calc(286rpx - var(--status-bar-height)) 4% 1%;}
  188. .grade-item {
  189. width: 270rpx;height: 80rpx;line-height: 70rpx;
  190. background-image: url("@/static/images/grade/grades-bj.png");@include ezy-no-repeat-cover;
  191. text-align: center;font-size: 36rpx;color: #fff;font-weight: 800;
  192. }
  193. .subject-body{
  194. width: 100%;height: calc(100vh - 620rpx);overflow-y: auto;
  195. display: flex;flex-direction: column;margin: 0 auto;box-sizing: border-box;margin: 80rpx 0 0;
  196. }
  197. .subject-content-box{
  198. width: 750rpx;height: auto;display: flex;flex-direction: row;flex-wrap: wrap;
  199. box-sizing: border-box;padding:0 20rpx;background-repeat: repeat-y;
  200. }
  201. .subject-item{
  202. width: 32%;margin:24rpx 0.8% 68rpx;position: relative;
  203. .subject-active-icon{width: 40rpx;height: 40rpx;@include ezy-no-repeat-cover;
  204. background-image: url("@/static/images/grade/grades-item-a.png");
  205. position: absolute;top: 32rpx;right: 20rpx;}
  206. .subject-item-img{width: 220rpx;height: 220rpx;margin: 20rpx auto 0;display: block;border-radius: 30rpx;}
  207. .subject-item-text{
  208. width: 100%;height: 60rpx;font-size: 24rpx;line-height: 1.2;
  209. box-sizing: border-box;padding: 0 36rpx;text-align: center;
  210. position: absolute;z-index: 3;left: 0;bottom: -22rpx;color: #fff;
  211. display: flex;align-items: center;justify-content: center;
  212. text{@include multi-line-ellipsis(2);}
  213. }
  214. }
  215. .subject-item::before{
  216. content: '';width: 231rpx;height: 288rpx;z-index: 2;display: block;
  217. background-image: url("@/static/images/grade/grades-item.png");@include ezy-no-repeat-cover;
  218. position: absolute;top: 5rpx;
  219. }
  220. .subject-jstx-item::before{
  221. background-image: url("@/static/images/grade/grades-jstx-item.png");}
  222. .subject-item:nth-child(3n+3){margin-right: 0;}
  223. .subject-item:nth-child(3n+1)::after{
  224. content: '';width: 750rpx;height: 72rpx;position: absolute;left: -20rpx;bottom: -80rpx;z-index: 1;
  225. background-image: url("@/static/images/grade/grades-row-bj.png");@include ezy-no-repeat-contain;}
  226. .grade-item.active{
  227. color: #fff;background-image: url("@/static/images/grade/grades-a-bj.png");
  228. }
  229. .grade-line{width: 90%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 16rpx auto;}
  230. .grade-confirm-btn{
  231. width: 644rpx;height: 108rpx;background-color: transparent;
  232. background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  233. }
  234. .grade-confirm-btn:after{display: none;}
  235. }
  236. // 蛋
  237. .study-egg-dialog{
  238. .egg-content-box{display: flex;display: flex;flex-direction: column;align-items: center;}
  239. .egg-img{width: 769rpx;height: 769rpx;
  240. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-img.gif");
  241. }
  242. .egg-btn{width: 644rpx;height: 106rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-btn.png");}
  243. }
  244. //地图页
  245. .ezy-study-swiper{height: 100vh;overflow-y: auto;}
  246. .ezy-study-swiper1{
  247. @media (max-height: 700px) {min-height: 1260rpx;}
  248. @media (max-height: 600px) {min-height:1200rpx;}
  249. }
  250. .ezy-study-swiper2{
  251. @media (max-height: 800px) {min-height:1400rpx;}
  252. @media (max-height: 700px) {min-height:1300rpx;}
  253. }
  254. .ezy-study-page{
  255. width:100%;height: 100vh;display: flex;flex-direction: column;
  256. box-sizing: border-box;padding-top:var(--status-bar-height);justify-content: center;position: relative;
  257. .ezy-study-wrap{@include ezy-no-repeat-cover;position: relative;margin: 0 auto;}
  258. .study-school-year{
  259. width: 285rpx;height: 69rpx;line-height:65rpx;background-image: url("@/static/images/study/school-year-bj.png");
  260. color: #fff;@include ezy-no-repeat-cover;padding-left: 78rpx;font-size: 30rpx;font-weight: 600;
  261. position: absolute;left: 20rpx;top:var(--status-bar-height);z-index: 2;
  262. }
  263. // animal
  264. .animal-img{width:48rpx;height: 68rpx;@include ezy-no-repeat-cover;position: absolute;}
  265. .dan-img{background-image: url("@/static/images/study/animal-img1.gif");}
  266. .xiao-e-img{background-image: url("@/static/images/study/animal-img2.gif");}
  267. .zhong-e-img{background-image: url("@/static/images/study/animal-img3.gif");}
  268. .da-e-img{background-image: url("@/static/images/study/animal-img4.gif");}
  269. }
  270. .ezy-study-page::before,.ezy-study-page::after{content: '';width: 29rpx;height: 42rpx;
  271. background-image: url("@/static/images/study/jt-left-icon.png");@include ezy-no-repeat-cover;display: block;
  272. position: absolute;top: 46%;}
  273. .ezy-study-page::before{
  274. left: 10rpx;
  275. @media (max-height: 800px) {left: 16rpx;}
  276. @media (max-height: 700px) {left: 20rpx;}
  277. @media (max-height: 600px) {left: 24rpx;}
  278. }
  279. .ezy-study-page::after{
  280. right: 10rpx;transform: rotate(180deg);
  281. @media (max-height: 800px) {right: 16rpx;}
  282. @media (max-height: 700px) {right: 20rpx;}
  283. @media (max-height: 600px) {right: 24rpx;}
  284. }
  285. // 数学
  286. .ezy-shuxue-study-page{
  287. @include ezy-no-repeat-cover(top);background-color: #43c1f6;background-image: url("@/static/images/study/shuxue/study-shuxue-bj.png");
  288. .ezy-study-wrap{width:750rpx;height:1394rpx;background-image: url("@/static/images/study/shuxue/study-wrap-bj.png");}
  289. .animal-img{left: 380rpx;top: 290rpx;}
  290. .chapter-box{
  291. width: 160rpx;text-align: center;font-weight: 800;color: #5c1a11;
  292. font-size: 30rpx;position: absolute;top:125rpx;left:316rpx;
  293. }
  294. .chapter-title-box{
  295. width: 330rpx;height: 80rpx;text-align: center;font-weight: 800;color: #fbb030;
  296. position: absolute;top:176rpx;left:232rpx;white-space: pre-wrap;
  297. }
  298. .chapter-small-title-box{line-height: 2;font-size: 38rpx;}
  299. .chapter-middle-title-box{line-height: 2.3;font-size: 34rpx;}
  300. .chapter-big-title-box{line-height: 1.2;font-size: 32rpx;}
  301. // brand-content
  302. .brand-content{margin: 0 auto;@include single-line-ellipsis;}
  303. .brand-icon,.brand-lock,.brand-finish-icon{
  304. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  305. position: absolute;top: -30rpx;left: 50%;transform: translateX(-50%);}
  306. .brand-icon{
  307. font-size: 36rpx;font-weight: 600;color: #ff6501;line-height: 70rpx;
  308. background-image: url("@/static/images/study/shuxue/number-bj.png");
  309. }
  310. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  311. .brand-lock::before{
  312. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  313. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  314. }
  315. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  316. .brand-arrow{
  317. width: 58rpx;height: 58rpx;left: 50%;top: 64%;position: absolute;opacity: 0.8;
  318. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/brand-arrow.gif");
  319. }
  320. // brand-item
  321. .brand-item{box-sizing: border-box;font-size: 24rpx;color: #fff;text-align: center;
  322. font-weight: 600;position: relative;position: absolute;@include ezy-no-repeat-cover;}
  323. .small-brand-item{width: 231rpx;height: 147rpx;padding: 40rpx 0 10rpx;
  324. background-image: url("@/static/images/study/shuxue/duan-pai-disabled.png");
  325. .brand-arrow{transform: translateX(-50%);}
  326. .brand-content{width: 90%;}
  327. }
  328. .small-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/duan-pai-active.png");}
  329. .big-brand-item{
  330. width: 307.69rpx;height: 141.35rpx;padding: 40rpx 0 10rpx;
  331. background-image: url("@/static/images/study/shuxue/chang-pai-disabled.png");
  332. .brand-arrow{transform: translateX(-46%);}
  333. .brand-content{width: 94%;}
  334. }
  335. .big-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/chang-pai-active.png");}
  336. .ceshi-brand-item{
  337. width: 185rpx;height: 121rpx;@include ezy-no-repeat-cover;
  338. padding: 16rpx 10rpx 10rpx 10rpx;position: absolute;top:1112rpx;right:140rpx;
  339. background-image: url("@/static/images/study/shuxue/ceshi-pai-disabled.png");
  340. .brand-arrow{top: 50%;left: 35%;transform: unset;}
  341. .brand-lock,.brand-icon,.brand-finish-icon{left: 0;top: -30rpx;}
  342. }
  343. .ceshi-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/ceshi-pai-active.png");}
  344. // brand-item
  345. .small-brand-item:nth-child(1){top:330rpx;right:70rpx;}
  346. .small-brand-item:nth-child(2){top:540rpx;left:75rpx;}
  347. .small-brand-item:nth-child(3){top:692rpx;right:110rpx;}
  348. .small-brand-item:nth-child(4){top:1085rpx;right:165rpx}
  349. .big-brand-item:nth-child(1){top:328rpx;right:40rpx;}
  350. .big-brand-item:nth-child(2){top:540rpx;left:20rpx;}
  351. .big-brand-item:nth-child(3){top:692rpx;right:80rpx;}
  352. .big-brand-item:nth-child(4){top:1090rpx;right:130rpx;}
  353. @media (max-height: 800px) {
  354. // 0.92
  355. .ezy-study-wrap{width: 690rpx;height: 1284rpx;}
  356. .animal-img{left: 350rpx;top: 260rpx;}
  357. .chapter-box{width: 148rpx;top:118rpx;left:292rpx;font-size: 28rpx;}
  358. .chapter-title-box{width: 296rpx;height: 70rpx;top:163rpx;left:223rpx;font-size: 28rpx;}
  359. .chapter-small-title-box{line-height: 1.8;font-size: 36rpx;}
  360. .chapter-middle-title-box{line-height: 2.4;font-size: 30rpx;}
  361. .chapter-big-title-box{line-height: 1.3;font-size: 28rpx;}
  362. .small-brand-item:nth-child(1){top:290rpx;right:60rpx;}
  363. .small-brand-item:nth-child(2){top:480rpx;left:75rpx;}
  364. .small-brand-item:nth-child(3){top:630rpx;right:110rpx;}
  365. .small-brand-item:nth-child(4){top:990rpx;right:140rpx}
  366. .big-brand-item:nth-child(1){top:300rpx;right:24rpx;}
  367. .big-brand-item:nth-child(2){top:490rpx;left:24rpx;}
  368. .big-brand-item:nth-child(3){top:640rpx;right:80rpx;}
  369. .big-brand-item:nth-child(4){top:1000rpx;right:110rpx;}
  370. .ceshi-brand-item{top:1020rpx;right:140rpx;}
  371. }
  372. @media (max-height: 700px) {
  373. min-height: 1260rpx;
  374. //0.88
  375. .ezy-study-wrap{width: 645rpx;height: 1198rpx;}
  376. .animal-img{left: 280rpx;top: 240rpx;}
  377. .chapter-box{top:110rpx;left:266rpx;}
  378. .chapter-title-box{width: 286rpx;height: 66rpx;top:150rpx;left:200rpx;}
  379. .chapter-middle-title-box{line-height: 2.2;}
  380. .chapter-big-title-box{line-height: 1.2;}
  381. .small-brand-item:nth-child(1){top:260rpx;right:50rpx;}
  382. .small-brand-item:nth-child(2){top:445rpx;left:60rpx;}
  383. .small-brand-item:nth-child(3){top:580rpx;right:100rpx;}
  384. .small-brand-item:nth-child(4){top:920rpx;right:140rpx}
  385. .big-brand-item:nth-child(1){top:270rpx;right:0;}
  386. .big-brand-item:nth-child(2){top:450rpx;left:16rpx;}
  387. .big-brand-item:nth-child(3){top:590rpx;right:70rpx;}
  388. .big-brand-item:nth-child(4){top:925rpx;right:100rpx;}
  389. .ceshi-brand-item{top:940rpx;right:130rpx;}
  390. }
  391. @media (max-height: 600px) {
  392. //0.76
  393. min-height:1200rpx;
  394. .ezy-study-wrap{width: 577rpx;height: 1072rpx;}
  395. .animal-img{left: 280rpx;top: 210rpx;}
  396. .chapter-box{width: 120rpx;top:96rpx;left:245rpx;font-size: 26rpx;}
  397. .chapter-title-box{width: 255rpx;height: 60rpx;top:136rpx;left:178rpx;}
  398. .chapter-small-title-box{line-height: 1.6;font-size: 34rpx;}
  399. .chapter-middle-title-box{line-height: 2;font-size: 28rpx;}
  400. .chapter-big-title-box{line-height: 1.2;font-size: 26rpx;}
  401. .small-brand-item:nth-child(1){top:220rpx;right:24rpx;}
  402. .small-brand-item:nth-child(2){top:385rpx;left:42rpx;}
  403. .small-brand-item:nth-child(3){top:500rpx;right:65rpx;}
  404. .small-brand-item:nth-child(4){top:800rpx;right:100rpx}
  405. .big-brand-item:nth-child(1){top:220rpx;right:0;}
  406. .big-brand-item:nth-child(2){top:390rpx;left:0;}
  407. .big-brand-item:nth-child(3){top:510rpx;right:30rpx;}
  408. .big-brand-item:nth-child(4){top:810rpx;right:100rpx;}
  409. .ceshi-brand-item{top:835rpx;right:130rpx;}
  410. }
  411. }
  412. .ezy-shuxue-study-page::before,.ezy-shuxue-study-page::after{top: 54%;}
  413. // 英语
  414. .ezy-yingyu-study-page{
  415. background-color: #00aeee;@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/study/yingyu/study-yingyu-bj.png");
  416. .ezy-study-wrap{
  417. width:750rpx;height:1365rpx;position: absolute;top:calc(var(--status-bar-height) + -7%);
  418. background-image: url("@/static/images/study/yingyu/study-wrap-bj.png");}
  419. .animal-img{left: 280rpx;top: 420rpx;}
  420. .chapter-title-box{
  421. width: 120rpx;height: 60rpx;line-height: 60rpx;text-align: center;font-weight: 800;color: #66ffff;font-size: 28rpx;
  422. position: absolute;top:175rpx;left:25rpx;box-sizing: content-box;padding: 10rpx 54rpx 175rpx 250rpx;
  423. }
  424. // brand-content
  425. .brand-icon,.brand-content{text-align: center;@include single-line-ellipsis;font-size: 24rpx;}
  426. .brand-icon{width: 170rpx;height: 34rpx;line-height: 34rpx;color: #180b34;margin: 3rpx auto 0;}
  427. .brand-content{width: 246rpx;height: 38rpx;line-height: 38rpx;color: #fff;margin: 0 auto;}
  428. .brand-lock,.brand-finish-icon{
  429. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  430. position: absolute;transform: translateX(-50%);top: -125rpx;right: 58rpx;}
  431. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  432. .brand-lock::before{
  433. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  434. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  435. }
  436. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  437. .brand-arrow{
  438. width: 58rpx;height: 58rpx;left: 38%;top: -58%;position: absolute;
  439. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/brand-arrow.gif");
  440. }
  441. // brand-item
  442. .brand-item{
  443. width: 260rpx;height: 81rpx;position: absolute;
  444. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/yingyu/dao-item-disabled.png");
  445. }
  446. .brand-active{background-image: url("@/static/images/study/yingyu/dao-item-active.png");}
  447. .brand-item:nth-child(1){top:758rpx;right:46rpx;}
  448. .brand-item:nth-child(2){top:920rpx;left:58rpx;}
  449. .brand-item:nth-child(3){
  450. top:1110rpx;right:76rpx;
  451. .brand-lock,.brand-finish-icon{top: -135rpx;right: 60rpx;}
  452. }
  453. .brand-item:nth-child(4){top:1280rpx;left:52rpx;}
  454. .brand-item.ceshi-brand-item{
  455. width: 394rpx;height: 288rpx;top:1280rpx;
  456. left: unset;right:-10rpx;@include ezy-no-repeat-cover;
  457. background-image: url("@/static/images/study/yingyu/test-item-disabled.png");
  458. .brand-icon,.brand-content{display: none;}
  459. .brand-lock,.brand-finish-icon{top: 150rpx;right: 170rpx;}
  460. .brand-arrow{left: 32%;top: 14%;}
  461. }
  462. .brand-item.ceshi-brand-item.brand-active{background-image: url("@/static/images/study/yingyu/test-item-active.png");}
  463. @media (max-height: 800px) {
  464. // 0.9
  465. min-height:1400rpx;
  466. .animal-img{left: 260rpx;top: 390rpx;}
  467. .chapter-title-box{width: 120rpx;height: 48rpx;line-height: 52rpx;top:162rpx;left:26rpx;padding: 10rpx 42rpx 170rpx 220rpx;}
  468. .ezy-study-wrap{width: 687rpx;height: 1250rpx;left:50%;top:calc(var(--status-bar-height) + -4%);transform: translateX(-50%);}
  469. .brand-lock,.brand-finish-icon{top: -120rpx;right: 60rpx;}
  470. .brand-item:nth-child(1){top:685rpx;right:30rpx;}
  471. .brand-item:nth-child(2){top:830rpx;left:42rpx;}
  472. .brand-item:nth-child(3){
  473. top:1000rpx;right:60rpx;
  474. .brand-lock,.brand-finish-icon{top: -122rpx;right: 62rpx;}
  475. }
  476. .brand-item:nth-child(4){top:1180rpx;left:42rpx;}
  477. .brand-item.ceshi-brand-item{
  478. width: 337rpx;height: 246rpx;top:1140rpx;left: unset;right:-40rpx;
  479. .brand-lock,.brand-finish-icon{top: 125rpx;right: 130rpx;}
  480. }
  481. }
  482. @media (max-height: 750px) {
  483. .ezy-study-wrap{top:calc(var(--status-bar-height) + -7%);}
  484. .brand-item.ceshi-brand-item{top:1110rpx;}
  485. }
  486. @media (max-height: 700px) {
  487. min-height:1300rpx;
  488. .animal-img{left: 240rpx;top: 340rpx;}
  489. .chapter-title-box{width: 100rpx;height: 40rpx;line-height: 40rpx;top:145rpx;left:22rpx;font-size: 24rpx;padding: 10rpx 24rpx 170rpx 196rpx;}
  490. .ezy-study-wrap{width: 600rpx;height: 1092rpx;top:calc(var(--status-bar-height) + -7%);}
  491. .brand-lock,.brand-finish-icon{top: -120rpx;right: 60rpx;}
  492. .brand-item:nth-child(1){top:610rpx;right:10rpx;}
  493. .brand-item:nth-child(2){top:730rpx;left:22rpx;}
  494. .brand-item:nth-child(3){
  495. top:885rpx;right:38rpx;
  496. .brand-lock,.brand-finish-icon{top: -128rpx;right: 62rpx;}
  497. }
  498. .brand-item:nth-child(4){top:1040rpx;left:20rpx;}
  499. .brand-item.ceshi-brand-item{
  500. width: 315rpx;height: 231rpx;top:1020rpx;left: unset;right:-40rpx;
  501. .brand-lock,.brand-finish-icon{top: 125rpx;right: 130rpx;}
  502. }
  503. }
  504. @media (max-height: 650px){
  505. .ezy-study-wrap{top:calc(var(--status-bar-height) + -7%);}
  506. .brand-item.ceshi-brand-item{width: 296rpx;height: 216rpx;left: unset;top:1000rpx;}
  507. }
  508. @media (max-height: 600px){
  509. .chapter-title-box{padding: 10rpx 44rpx 150rpx 195rpx;}
  510. .brand-item.ceshi-brand-item{left: unset;top:1020rpx;}
  511. }
  512. }
  513. // 计算特训
  514. .ezy-jstx-study-page{
  515. @include ezy-no-repeat-cover(top);background-color: #43c1f6;background-image: url("@/static/images/study/jstx/study-jstx-bj.png");
  516. .ezy-study-wrap{width:750rpx;height:1394rpx;position: relative;margin-bottom: 100rpx;
  517. background-image: url("@/static/images/study/jstx/study-wrap-bj.png");}
  518. .study-name-img{width: 140rpx;height: 102rpx;position: absolute;top: 136rpx;left: 294rpx;}
  519. // brand-content
  520. .brand-content{
  521. width: 90%;height:60rpx;margin: 12rpx auto;
  522. display: flex;align-items: center;justify-content: center;
  523. text{@include multi-line-ellipsis(2);line-height: 1.2;font-weight: normal;}
  524. }
  525. .brand-icon,.brand-lock,.brand-finish-icon{
  526. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  527. position: absolute;top: -53rpx;left: 50%;transform: translateX(-50%);}
  528. .brand-icon{
  529. font-size: 36rpx;font-weight: 600;color: #ff6501;line-height: 70rpx;
  530. background-image: url("@/static/images/study/shuxue/number-bj.png");
  531. }
  532. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  533. .brand-lock::before{
  534. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  535. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  536. }
  537. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  538. .brand-arrow{
  539. width: 58rpx;height: 58rpx;left: 50%;top: 64%;position: absolute;opacity: 0.8;
  540. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/brand-arrow.gif");
  541. }
  542. // brand-item
  543. .brand-item{
  544. width: 242rpx;height: 154rpx;
  545. box-sizing: border-box;font-size: 24rpx;color: #fff;text-align: center;
  546. font-weight: 600;position: relative;position: absolute;@include ezy-no-repeat-cover;
  547. background-image: url("@/static/images/study/jstx/dao-item-disabled.png");
  548. .brand-arrow{transform: translateX(-50%);}
  549. }
  550. .brand-item.brand-active{background-image: url("@/static/images/study/jstx/dao-item-active.png");}
  551. .ceshi-brand-item{
  552. width: 185rpx;height: 121rpx;@include ezy-no-repeat-cover;
  553. padding: 16rpx 10rpx 10rpx 10rpx;position: absolute;top:1112rpx;right:140rpx;
  554. background-image: url("@/static/images/study/shuxue/ceshi-pai-disabled.png");
  555. .brand-arrow{top: 50%;left: 35%;transform: unset;}
  556. .brand-lock,.brand-icon,.brand-finish-icon{left: 0;top: -30rpx;}
  557. }
  558. .ceshi-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/ceshi-pai-active.png");}
  559. // brand-item
  560. .brand-item:nth-child(1){top:500rpx;left:90rpx;}
  561. .brand-item:nth-child(2){top:640rpx;right:140rpx;}
  562. .brand-item:nth-child(3){top:880rpx;left:160rpx;}
  563. .brand-item:nth-child(4){top:1100rpx;right:195rpx}
  564. @media (max-height: 800px) {
  565. // 0.92
  566. .ezy-study-wrap{width: 690rpx;height: 1284rpx;margin-bottom: 70rpx;}
  567. .study-name-img{width: 130rpx;height: 95rpx;top: 125rpx;left: 250rpx;}
  568. // brand-item
  569. .brand-item:nth-child(1){top:450rpx;left:80rpx;}
  570. .brand-item:nth-child(2){top:580rpx;right:120rpx;}
  571. .brand-item:nth-child(3){top:800rpx;left:140rpx;}
  572. .brand-item:nth-child(4){top:1000rpx;right:170rpx}
  573. }
  574. @media (max-height: 700px) {
  575. min-height: 1260rpx;
  576. //0.88
  577. .ezy-study-wrap{width: 645rpx;height: 1198rpx;margin-bottom: 20rpx;
  578. // position: absolute;top: 0;left: 50%;transform: translateX(-50%);
  579. }
  580. .study-name-img{width: 120rpx;height: 88rpx;top: 120rpx;left: 235rpx;}
  581. // brand-item
  582. .brand-item:nth-child(1){top:405rpx;left:50rpx;}
  583. .brand-item:nth-child(2){top:530rpx;right:100rpx;}
  584. .brand-item:nth-child(3){top:730rpx;left:120rpx;}
  585. .brand-item:nth-child(4){top:920rpx;right:150rpx}
  586. }
  587. @media (max-height: 600px) {
  588. //0.76
  589. min-height:1200rpx;
  590. .ezy-study-wrap{width: 577rpx;height: 1072rpx;margin-bottom: 70rpx;
  591. // position: relative;transform: unset;top: unset;left: unset;
  592. }
  593. .study-name-img{width: 100rpx;height: 73rpx;top: 110rpx;left: 215rpx;}
  594. // brand-item
  595. .brand-item:nth-child(1){top:320rpx;left:-12rpx;}
  596. .brand-item:nth-child(2){top:450rpx;right:75rpx;}
  597. .brand-item:nth-child(3){top:640rpx;left:110rpx;}
  598. .brand-item:nth-child(4){top:810rpx;right:120rpx}
  599. }
  600. }
  601. // 超级单词
  602. .ezy-cjdc-study-page{
  603. background-color: #00aeee;@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/study/cjdc/study-cjdc-bj.png");
  604. .ezy-study-wrap{
  605. width:750rpx;height:1154rpx;position: absolute;top:calc(var(--status-bar-height) + 3%);
  606. background-image: url("@/static/images/study/cjdc/study-wrap-bj.png");}
  607. .animal-img{right: 55rpx;top: 255rpx;}
  608. .study-name-img{width: 100rpx;height: 100rpx;position: absolute;top: 100rpx;left: 294rpx;}
  609. .study-book-img{width: 130rpx;height: 179rpx;position: absolute;top: 140rpx;right:175rpx;display: flex;
  610. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/cjdc/book-default-img.png");}
  611. .chapter-title-box{
  612. flex: 1;text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  613. text-align: center;color: #6b3a08;font-size: 22rpx;display: flex;align-items: center;justify-content: center;
  614. @include ezy-no-repeat-cover;margin-top:62rpx;font-weight: bold;word-wrap: break-word;
  615. }
  616. // brand-content
  617. .brand-content{width: 225rpx;height: 77rpx;color: #fff;margin: 132rpx auto 0;
  618. text-align: center;font-size: 24rpx;box-sizing: border-box;padding: 0 4rpx;
  619. display: flex;align-items: center;justify-content: center;
  620. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/cjdc/dao-item-disabled.png");}
  621. .content-text{@include multi-line-ellipsis(2);line-height: 32rpx;}
  622. .brand-lock,.brand-finish-icon{
  623. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  624. position: absolute;transform: translateX(-50%);top: 28rpx;right: 56rpx;}
  625. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  626. .brand-lock::before{
  627. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  628. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  629. }
  630. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  631. .brand-arrow{
  632. width: 58rpx;height: 58rpx;left: 38%;top: 50%;position: absolute;
  633. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/brand-arrow.gif");
  634. }
  635. // brand-item
  636. .brand-item{width: 252rpx;height: 180rpx;position: absolute;}
  637. .brand-active .brand-content{background-image: url("@/static/images/study/cjdc/dao-item-active.png");}
  638. .brand-item:nth-child(1){top:505rpx;right:25rpx;}
  639. .brand-item:nth-child(2){top:650rpx;left:75rpx;}
  640. .brand-item:nth-child(3){top:820rpx;right:55rpx;}
  641. .brand-item:nth-child(4):not([class*="ceshi-brand-item"]){top:980rpx;left:55rpx;}
  642. .brand-item.ceshi-brand-item{
  643. width: 281rpx;height: 281rpx;top:1100rpx;
  644. left: unset;right:45rpx;@include ezy-no-repeat-cover;
  645. background-image: url("@/static/images/study/cjdc/test-item-disabled.png");
  646. .brand-content{display: none;}
  647. .brand-lock,.brand-finish-icon{top: 170rpx;right: 70rpx;}
  648. .brand-arrow{left: 38%;top: 14%;}
  649. }
  650. .brand-item.ceshi-brand-item.brand-active{background-image: url("@/static/images/study/cjdc/test-item-active.png");}
  651. @media (max-height: 800px) {
  652. min-height:1400rpx;
  653. .ezy-study-wrap{top:calc(var(--status-bar-height) + -2%);}
  654. .brand-item.ceshi-brand-item{
  655. width: 263rpx;height: 263rpx;top:1080rpx;
  656. .brand-lock,.brand-finish-icon{top: 160rpx;right: 65rpx;}
  657. }
  658. }
  659. @media (max-height: 750px) {
  660. //0.9
  661. .ezy-study-wrap{width:600rpx;height:924rpx;top:calc(var(--status-bar-height) + 6%);left:50%;transform: translateX(-50%);}
  662. .animal-img{right: 35rpx;top: 190rpx;}
  663. .study-name-img{width: 80rpx;height: 80rpx;position: absolute;top: 85rpx;left: 234rpx;}
  664. .study-book-img{width: 130rpx;height: 179rpx;top: 100rpx;right:125rpx;}
  665. .brand-lock,.brand-finish-icon{width: 55rpx;height: 55rpx;top: 12rpx;right: 45rpx;}
  666. .brand-content{width: 200rpx;height: 68rpx;margin: 100rpx auto 0;font-size: 22rpx;}
  667. .content-text{line-height: 26rpx;}
  668. .brand-lock::before{width: 30rpx;height: 36rpx;margin-top: 6rpx;}
  669. .brand-arrow{width: 46rpx;height: 46rpx;left: 38%;top: 46%;}
  670. .brand-item{width: 200rpx;height: 140rpx;}
  671. .brand-item:nth-child(1){top:420rpx;right:22rpx;}
  672. .brand-item:nth-child(2){top:530rpx;left:60rpx;}
  673. .brand-item:nth-child(3){top:660rpx;right:45rpx;}
  674. .brand-item:nth-child(4):not([class*="ceshi-brand-item"]){top:780rpx;left:45rpx;}
  675. .brand-item.ceshi-brand-item{width: 240rpx;height: 240rpx;top:880rpx;right:40rpx;}
  676. }
  677. @media (max-height: 700px) {
  678. //0.88
  679. min-height:1300rpx;
  680. .ezy-study-wrap{top:calc(var(--status-bar-height) + 4%);}
  681. .brand-item.ceshi-brand-item{
  682. width: 220rpx;height: 220rpx;top:880rpx;right:40rpx;
  683. .brand-lock,.brand-finish-icon{top: 145rpx;right: 58rpx;}
  684. }
  685. }
  686. @media (max-height: 650px){
  687. .ezy-study-wrap{top:calc(var(--status-bar-height) + 3%);}
  688. .brand-item.ceshi-brand-item{
  689. width: 200rpx;height: 200rpx;top:860rpx;right:40rpx;
  690. .brand-lock,.brand-finish-icon{top: 130rpx;right: 45rpx;}
  691. }
  692. }
  693. }
  694. .ezy-cjdc-study-page::before,.ezy-cjdc-study-page::after{top: 52%;}
  695. // 岛弹窗
  696. .dao-popup-box{
  697. width: 100%;height: 865rpx;
  698. @include ezy-no-repeat-cover;
  699. background-image: url("@/static/images/study/dao-box-bj.png");
  700. box-sizing: border-box;padding: 64rpx 36rpx 0;
  701. .dao-popup-img{width: 481rpx;height: 615rpx;@include ezy-no-repeat-cover;margin: 0 auto;}
  702. .dao-popup-btn{
  703. width: 644rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-top: 32rpx;
  704. background-image: url("@/static/images/study/dao-box-btn.png");
  705. }
  706. }
  707. //目录页
  708. .ezy-catalogue-dialog{
  709. width: 663rpx;height: 1038rpx;padding: 180rpx 52rpx 60rpx 40rpx;box-sizing: border-box;position: relative;
  710. @include ezy-no-repeat-cover;display: flex;position: relative;
  711. .catalogue-nianji-title{height: 50rpx;line-height: 50rpx;display: inline-block;font-size: 36rpx;color: #fff;
  712. background-color: #068aea;padding: 0 20px;border-radius: 0 25rpx 25rpx 0;margin-right: auto;}
  713. .catalogue-mt{margin-top: 20rpx;}
  714. .uni-scroll-view{position: unset;}
  715. .catalogue-close-btn{
  716. width: 54rpx;height: 54rpx;
  717. background-image: url("@/static/images/catalog/catalog-close-btn.png");@include ezy-no-repeat-cover;
  718. position: absolute;top: 40rpx;right: 36rpx;
  719. }
  720. .ezy-catalogue-collapse{
  721. background-color: transparent!important;flex: 1;overflow-y: auto;
  722. .collapse-item-box{
  723. padding: 24rpx 0 24rpx 12rpx!important ;border-bottom: 2rpx dashed #9dc0f6;
  724. .uni-collapse-item__wrap{background-color: transparent!important;}
  725. .collapse-title{display: flex;font-size: 28rpx;font-weight: 700;color: #0a549d;position: relative;}
  726. .collapse-num-box{
  727. width: 46rpx;height: 46rpx;line-height: 46rpx;font-size: 30rpx;font-weight: 700;color: #fff;text-align: center;
  728. background-image: url("@/static/images/catalog/num-bj.png");@include ezy-no-repeat-cover;
  729. -webkit-text-stroke: 1rpx #0d64d7;text-stroke: 1rpx #0d64d7;margin-right: 12rpx;flex-shrink: 0;
  730. }
  731. .collapse-name{@include single-line-ellipsis;width: 400rpx;line-height: 1.6;}
  732. .uni-collapse-item__title-arrow{margin-right: 60rpx;transform: unset;}
  733. .uni-icons{
  734. width: 37rpx;height: 37rpx;
  735. background-image: url("@/static/images/catalog/jt-btn.png");@include ezy-no-repeat-cover;
  736. &::before{display: none;}
  737. }
  738. .collapse-lock{
  739. width: 35rpx;height: 41rpx;position: absolute;right: -90rpx;top: 0rpx;
  740. background-image: url("@/static/images/catalog/catalog-lock.png");@include ezy-no-repeat-cover;
  741. }
  742. }
  743. .collapse-item-box.collapse-active{
  744. border: 0;
  745. .collapse-title{color: #01b106;}
  746. .collapse-num-box{
  747. background-image: url("@/static/images/catalog/num-active-bj.png");
  748. -webkit-text-stroke: 1rpx #009931;text-stroke: 1rpx #009931;
  749. }
  750. .uni-icons{
  751. background-image: url("@/static/images/catalog/jt-active-btn.png");transform:unset;
  752. }
  753. }
  754. .collapse-content-box{border-top: 2rpx dashed #9dc0f6;margin: 20rpx 0 100rpx;}
  755. .collapse-content-item{
  756. font-size: 28rpx;color:#343434;
  757. border-bottom: 1px dashed #999;
  758. padding: 20rpx 10rpx;margin: 0 10rpx;
  759. }
  760. // .collapse-item-box:last-child{border: 0;}
  761. }
  762. .ezy-catalogue-collapse-vip .collapse-item-box .uni-collapse-item__title-arrow{margin-right: 10rpx;}
  763. }
  764. // 考试页
  765. .ezy-exam-page{
  766. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  767. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  768. @include ezy-no-repeat-cover(top);
  769. .ezy-exam-swiper{
  770. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  771. uni-swiper-item{overflow: auto;}
  772. }
  773. .exam-submit-btn{
  774. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  775. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  776. }
  777. .tip-mask-box{
  778. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  779. }
  780. .exam-tip-box{
  781. width: 750rpx;height: 355.77rpx;@include ezy-no-repeat-cover;
  782. background-image: url("@/static/images/exam/exam-tip-bj.png");
  783. color: #036f6f;font-size: 32rpx;z-index: 3;padding: 180rpx 0 0 100rpx;
  784. position: absolute;left: 0;right: 0;bottom: var(--window-bottom);
  785. }
  786. }
  787. // 成绩页
  788. .ezy-result-page{
  789. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  790. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  791. @include ezy-no-repeat-cover(top);
  792. .result-exam-swiper{
  793. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  794. uni-swiper-item{overflow: auto;}
  795. .flex-center{
  796. height: 100%;
  797. .body{height: 100%;display: flex;flex-direction: column;}
  798. // 试题部分滚动 解析部分固定
  799. // .ezy-danxuan-box{flex: 1;overflow-y: auto;}
  800. }
  801. }
  802. .answer-content-box{
  803. margin-top: 24rpx;
  804. .answer-dtjx-row{display: flex;justify-content: space-between;}
  805. .answer-title{width: 150rpx;height: 62rpx;flex-shrink: 0;margin-left: 10rpx;
  806. background-image: url("@/static/images/exam/answer-title.png");@include ezy-no-repeat-cover;
  807. }
  808. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #15ab2e;
  809. border-radius: 4px;box-sizing: border-box;padding: 16rpx;margin: 20rpx 0 20rpx 10rpx;min-height: 80rpx;}
  810. .tiankong-answer-row{word-break: break-all;margin-bottom: 10rpx;}
  811. .tiankong-answer-row:last-child{margin-bottom: 0;}
  812. .answer-btn-box{display: flex;height: 135rpx;margin: 20rpx 0 20rpx 10rpx;}
  813. .answer-item-left,.answer-item-right{
  814. width: 100%;flex: 1;align-items: center;justify-content: center;
  815. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  816. .answer-item-title{font-size: 32rpx;color: #333;margin-bottom: 4rpx;}
  817. .answer-item-error{font-size: 32rpx;color: #ef1417;min-height: 36rpx;}
  818. .answer-item-correct{font-size: 32rpx;color: #15ab2e;min-height: 36rpx;}
  819. }
  820. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  821. .answer-item-right{border-radius: 0 4px 4px 0;}
  822. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  823. .answer-btn{width: 227rpx;height:72rpx;@include ezy-no-repeat-cover;margin-right: 20rpx;
  824. background-image:url("@/static/images/exam/answer-btn.png");flex-shrink: 0;
  825. }
  826. }
  827. }
  828. // 得分页
  829. .exam-score-dialog{
  830. width: 750rpx;height: 962rpx;margin-bottom: 30%;position: relative;
  831. @include ezy-no-repeat-cover;
  832. .score-content-box{
  833. position: absolute;top: 565rpx;left: 200rpx;word-spacing: 18rpx;
  834. font-size: 38rpx;font-weight: 800; color: #000;@include ezy-no-repeat-cover;
  835. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin: 0 6rpx;}
  836. .right-error-row{display: flex;align-items: center;}
  837. .right-icon{background-image: url("@/static/images/exam/score-right-icon.png");}
  838. .error-icon{background-image: url("@/static/images/exam/score-error-icon.png");margin-left:56rpx;}
  839. .text-red{color: #ff6500;margin: 0 8rpx;}
  840. .text-score{
  841. width: 160rpx;font-weight: 800;font-size: 80rpx;color: #ff6701;
  842. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  843. text-align: center; animation: fadeIn 3s linear forwards;}
  844. @keyframes fadeIn {
  845. 0% { opacity: 0;}
  846. 60% { opacity: 0;}
  847. 100% { opacity: 1;}
  848. /* from { opacity: 0;}
  849. to {opacity: 1;} */
  850. }
  851. }
  852. .ckst-btn,.jxxx-btn{width: 115rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  853. .score-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  854. .ckst-btn{background-image: url("@/static/images/exam/ckst-btn.png");}
  855. .jxxx-btn{background-image: url("@/static/images/exam/jxxx-btn.png");}
  856. }
  857. // 高兴鹅
  858. .score-happy-study-dialog{
  859. background-image: url("@/static/images/exam/score-right-bj.gif");
  860. .score-btn-box{bottom: -80rpx;}
  861. .text-score{margin: 120rpx 0 0 160rpx;}
  862. }
  863. // 沮丧鹅
  864. .score-unhappy-study-dialog{
  865. background-image: url("@/static/images/exam/score-error-bj.gif");
  866. .score-btn-box{bottom: -60rpx;}
  867. .text-score{margin: 108rpx 0 0 160rpx;}
  868. }
  869. // 完成-高兴鹅
  870. .score-finish-happy-study-dialog{
  871. background-image: url("@/static/images/exam/score-right-finish-bj.gif");
  872. .score-btn-box{bottom: 120rpx;}
  873. }
  874. // 完成-沮丧鹅
  875. .score-finish-unhappy-study-dialog{
  876. background-image: url("@/static/images/exam/score-error-finish-bj.gif");
  877. .score-btn-box{bottom: 120rpx;}
  878. }
  879. // 答案解析
  880. .ezy-dajx-page{
  881. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  882. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  883. @include ezy-no-repeat-cover(top);
  884. .shiti-frame-box{overflow-y: auto;}
  885. .dajx-content-box{
  886. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  887. .slfx-title,.spjj-title{
  888. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  889. }
  890. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  891. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  892. .slfx-content{
  893. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  894. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  895. display: block;@include ezy-rich-text;
  896. }
  897. }
  898. }
  899. // 课程页面
  900. .ezy-course-page{
  901. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  902. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  903. @include ezy-no-repeat-cover(top);
  904. .course-video-box{width: 730rpx;height: 440rpx;padding: 32rpx 32rpx;margin: 0 auto 6rpx;}
  905. .course-content-border{
  906. display: flex;flex: 1;position: relative;margin: 0 22rpx;border-radius: 10rpx 10rpx 0 0;
  907. background-color: rgba(255, 255, 255, 0.3);overflow-y: auto;
  908. }
  909. .course-content-box{
  910. flex: 1;margin: 20rpx 20rpx 0;background-color: rgba(255, 255, 255, 0.5);;overflow-y: auto;
  911. box-sizing: border-box;padding: 42rpx 24rpx;
  912. }
  913. .course-content-item{
  914. width: 100%;background-color: rgba(255, 255, 255, 0.8);border-radius: 8rpx;color: #666;display: block;
  915. box-sizing: border-box;padding: 20rpx;margin-bottom: 30rpx;font-size: 32rpx;@include ezy-rich-text;
  916. }
  917. .title-play-box{
  918. width: 100%;height: 85rpx;border-radius: 8rpx;box-sizing: border-box;padding: 0 10rpx;
  919. display: flex;justify-content: space-between;align-items: center;margin:0 0 12rpx;
  920. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-title-bj.png");
  921. }
  922. .course-icon{
  923. width: 60rpx;height: 75rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  924. }
  925. .course-title{color: #fff;font-size: 36rpx;margin-right: auto;margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  926. .course-play-btn{
  927. width: 162rpx;height: 54rpx;line-height: 50rpx;
  928. box-sizing: border-box;font-size: 24rpx;padding-left: 40rpx;
  929. flex-shrink: 0;
  930. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-play.png");}
  931. }
  932. // 课程得分页面
  933. .course-score-dialog{
  934. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  935. background-image: url("@/static/images/course/video-score-bj.png");
  936. margin-bottom: 20%;position: relative;
  937. .text-score{
  938. width: 220rpx;font-size: 100rpx;font-weight: 800;color: #ff6701;
  939. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  940. margin: 110rpx 0 0 160rpx;text-align: right;position: absolute;
  941. bottom: 230rpx;left: 0;
  942. }
  943. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  944. .course-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  945. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  946. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  947. @media (max-height: 600px) {margin-bottom: 40%;}
  948. }
  949. // 课程完成
  950. .course-finish-dialog{
  951. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  952. background-image: url("@/static/images/course/video-finish-bj.png");
  953. margin-bottom: 20%;position: relative;
  954. .text-score{display: none;}
  955. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  956. .course-btn-box{position: absolute;bottom: 200rpx;display: flex;left: 50%;transform: translateX(-50%);}
  957. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  958. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  959. @media (max-height: 600px) {margin-bottom: 40%;}
  960. }
  961. // 我的页面
  962. .ezy-my-page{
  963. width: 100%;height: 100vh;min-height: 1400rpx;background-color: #00c5fe;position: relative;overflow: auto;
  964. padding-top:var(--status-bar-height);@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  965. .my-head-box{
  966. width: 100%;padding: 80rpx 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  967. .head-img-box{width: 154rpx;height: 154rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  968. .head-content-box{font-size: 30rpx;}
  969. }
  970. // hyqy
  971. .my-hyqy-swiper{
  972. height: 363rpx;margin-bottom: 32rpx;
  973. .uni-swiper-dots-horizontal{bottom: 24rpx;}
  974. }
  975. .hyqy-box{
  976. width: 690rpx;height: 363rpx;margin: 0 auto;position: relative;
  977. @include ezy-no-repeat-cover;
  978. .hyqy-box-img{width: 690rpx;height: 363rpx;margin: 0 auto;display: block;border-radius: 10rpx;}
  979. }
  980. // list
  981. .my-list-box{
  982. width:690rpx;margin: 16rpx auto;display: flex;padding: 16rpx 0;
  983. background-color: rgba(255, 255, 255, 0.6);border-radius: 8rpx;
  984. .list-item{color: #333;width: 25%;text-align: center;font-size: 28rpx;}
  985. .list-icon{
  986. width: 87rpx;height: 77rpx;display: block;margin: 0 auto;
  987. @include ezy-no-repeat-cover;
  988. }
  989. .cpsc-icon{background-image: url("@/static/images/my/list-icon1.png");}
  990. .sxtk-icon{background-image: url("@/static/images/my/list-icon2.png");}
  991. .error-icon{background-image: url("@/static/images/my/list-icon3.png");}
  992. .xxjl-icon{background-image: url("@/static/images/my/list-icon4.png");}
  993. .order-icon{background-image: url("@/static/images/my/list-icon5.png");}
  994. .duihuanma-icon{background-image: url("@/static/images/my/list-icon6.png");}
  995. .kfdh-icon{background-image: url("@/static/images/my/list-icon7.png");}
  996. .yysz-icon{background-image: url("@/static/images/my/list-icon8.png");}
  997. .zhuxiao-icon{background-image: url("@/static/images/my/list-icon9.png");}
  998. .login-out-icon{background-image: url("@/static/images/my/list-icon10.png");}
  999. }
  1000. .kefu-dialog{
  1001. .not-confirm-btn{display: none;}
  1002. .confirm-btn{margin: 24rpx auto;}
  1003. }
  1004. }
  1005. .ezy-my-page::before{
  1006. content: '';width: 279rpx;height: 250rpx;display:block;
  1007. position: absolute;top:calc(20rpx - var(--status-bar-height));right:20rpx;
  1008. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/my-page-img.png");
  1009. }
  1010. // 应用设置
  1011. .ezy-yysz-page{
  1012. width: 100%;height: 100vh;min-height: 1400rpx;background-color: #00c5fe;position: relative;overflow: auto;
  1013. padding-top:var(--status-bar-height);@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  1014. display: flex;flex-direction: column;
  1015. .yysz-row-box{width: 94%;background-color: rgba(255, 255, 255, 0.6);
  1016. border-radius: 8rpx;margin: 16rpx 3% 0;color: #333;font-size: 30rpx;}
  1017. .yysz-item{display: flex;align-items: center;justify-content: space-between;padding: 32rpx 46rpx 32rpx 16rpx;position: relative;}
  1018. .img-item{padding: 32rpx 46rpx 0 16rpx;}
  1019. .yysz-item::after{
  1020. content: '';width: 14rpx;height: 24rpx;@include ezy-no-repeat-cover;
  1021. background-image: url("@/static/images/my/list-jt.png");
  1022. position: absolute;right: 16rpx;
  1023. }
  1024. .yysz-img-box{width: 36px;height: 36px;border-radius: 50%;@include ezy-no-repeat-cover}
  1025. }
  1026. // 错题
  1027. .ezy-cuoti-page{
  1028. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1029. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1030. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1031. .uni-list{background-color: transparent!important;}
  1032. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1033. .cuoti-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  1034. .cuoti-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1035. // item
  1036. .list-item-box{
  1037. width: 94%;background-color: transparent!important;
  1038. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  1039. .uni-list-item__header{display: none;}
  1040. .uni-list-item__container{flex-direction: column;position: relative;padding:36rpx 0;overflow: unset;}
  1041. .item-date-row{
  1042. display: flex;align-items: center;color:#28bdf2;margin-bottom: 16rpx;
  1043. .data-icon{
  1044. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  1045. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  1046. }
  1047. .item-cuoti-row{
  1048. display: flex;flex-direction: row;color:#444;
  1049. .icon-num-box{display: flex;}
  1050. .cuoti-content{display: flex;align-items: center;}
  1051. .cuoti-icon{
  1052. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  1053. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-icon.png");
  1054. }
  1055. .cuoti-text{color: #ff0101;margin-right: 6rpx;}
  1056. }
  1057. .cuoti-btn{
  1058. width: 160rpx;height: 40rpx;line-height: 38rpx;box-sizing: border-box;padding-left: 24rpx;
  1059. background-color: #068aea;font-size: 24rpx;color: #fff;border-radius: 20rpx 0 0 20rpx;
  1060. position: absolute;right: -3%;top: 114rpx;
  1061. }
  1062. .cuoti-btn::after{
  1063. content: '';width: 14rpx;height: 24rpx;display: block;position: absolute;top: 8rpx;right: 16rpx;
  1064. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/list-jt.png");
  1065. }
  1066. }
  1067. }
  1068. // 学习记录
  1069. .ezy-xxjl-page{
  1070. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1071. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1072. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1073. .uni-list{background-color: transparent!important;}
  1074. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1075. .xxjl-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  1076. .xxjl-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1077. // item
  1078. .xxjl-item-box{
  1079. width: 94%;background-color: transparent!important;
  1080. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  1081. .uni-list-item__header{display: none;}
  1082. .uni-list-item__container{flex-direction: column;position: relative;padding:24rpx 0;overflow: hidden;}
  1083. .item-date-row{
  1084. display: flex;justify-content: space-between;align-items: center;color:#28bdf2;font-size: 24rpx;
  1085. .data-item{display: flex;align-items: center;}
  1086. .del-item{width: 60rpx;height: 60rpx;}
  1087. .data-icon{
  1088. width: 35rpx;height: 35rpx;margin: 10rpx;
  1089. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  1090. .del-icon{
  1091. width: 35rpx;height: 35rpx;margin: 10rpx;
  1092. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/sz-icon2.png");
  1093. }
  1094. }
  1095. .item-zhang-row{
  1096. width: 100%;display: flex;align-items: center;color:#333;font-size: 32rpx;margin-bottom: 16rpx;
  1097. >view{@include single-line-ellipsis;}
  1098. .zhang-icon{
  1099. width: 37rpx;height: 37rpx;margin:0 9rpx;flex-shrink: 0;
  1100. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/sz-icon1.png");}
  1101. }
  1102. .item-jie-row{
  1103. width: 100%;color:#444;font-size: 26rpx;padding-left: 55rpx;line-height: 1;margin-bottom: 16rpx;@include single-line-ellipsis;
  1104. >text{@include single-line-ellipsis;}
  1105. }
  1106. }
  1107. }
  1108. // 关于我们
  1109. .ezy-about-page{
  1110. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1111. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1112. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1113. .about-body-border{
  1114. flex: 1;width: 92%;height: auto;background-color: rgba(255, 255, 255, 0.6);border-radius: 10px;
  1115. margin: 12rpx auto 200rpx;position: relative;display: flex;flex-direction: column;
  1116. }
  1117. .about-body-box{
  1118. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  1119. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  1120. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  1121. }
  1122. .content-top-box{
  1123. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  1124. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #fff;
  1125. .about-icon-box{
  1126. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  1127. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  1128. }
  1129. .about-name{
  1130. font-size: 30rpx;margin: 20rpx 0 42rpx;
  1131. }
  1132. .about-text{margin: 16rpx 0;}
  1133. }
  1134. .content-box{
  1135. font-size: 30rpx;margin-top: 50rpx;line-height: 2;color: #333;
  1136. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  1137. }
  1138. @media (max-height: 600px) {
  1139. .about-body-border{margin: 12rpx auto 150rpx;}
  1140. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  1141. .content-top-box{padding-bottom: 24rpx;}
  1142. .content-box{margin-top: 20rpx;}
  1143. }
  1144. }
  1145. // 绑定手机号弹窗
  1146. .my-tel-dialog{
  1147. background-color: rgba(255, 255, 255, 0.6);
  1148. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  1149. justify-content: center;align-items: center;
  1150. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  1151. background-image: url("@/static/images/common/close-icon.png");}
  1152. .my-tel-content{
  1153. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 62rpx;
  1154. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  1155. }
  1156. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 24rpx;}
  1157. .tel-row{border-bottom: 1px dashed #70cbf4;}
  1158. .yzm-row{padding-top: 32rpx;}
  1159. /***** 输入手机号页面*****/
  1160. .my-input-box{
  1161. width:500rpx;height: 88rpx;box-sizing: border-box;
  1162. display: flex;align-items: center;
  1163. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  1164. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  1165. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  1166. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  1167. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  1168. }
  1169. .get-yzm-btn{color: #3b73bf;margin:24rpx 0 36rpx;font-size: 25rpx;}
  1170. .get-yzm-disabled{color: #666;}
  1171. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  1172. .my-bind-btn{
  1173. width:500rpx;height: 88rpx;text-align: center;line-height: 88rpx;color: #fff;margin-top: 24rpx;
  1174. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  1175. }
  1176. }
  1177. // 兑换码
  1178. .duihuan-dialog{
  1179. .duihuan-input{
  1180. width:465rpx;height: 82rpx;box-sizing: border-box;padding: 0 18rpx;
  1181. display: flex;align-items: center;margin: 0 auto;
  1182. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  1183. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  1184. }
  1185. }
  1186. // SVIP
  1187. .ezy-svip-page{
  1188. width: 100%;height: 100vh;min-height:1688rpx;background-color: #23befb;position: relative;
  1189. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1190. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1191. .svip-login1,.svip-login2{width: 673rpx;height: 269rpx;margin: 24rpx auto 0;@include ezy-no-repeat-cover;}
  1192. .svip-login1{background-image: url("@/static/images/pay/svip-logo1.png");}
  1193. .svip-login2{background-image: url("@/static/images/pay/svip-logo2.png");}
  1194. .svip-list-box{
  1195. margin: 24rpx auto;
  1196. .list-item-box{display: flex;align-items: center;color: #fff;margin-bottom: 28rpx;}
  1197. .list-icon{
  1198. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1199. }
  1200. .list-title{
  1201. font-size: 28rpx;font-weight: 600;margin-bottom: 10rpx;
  1202. }
  1203. .list-content{font-size: 25rpx;color: rgba(255, 255, 255, 0.8);}
  1204. }
  1205. .open-svip-box{
  1206. width: 702rpx;height:413rpx;margin: 0 auto;box-sizing: border-box;padding: 0 16rpx;
  1207. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-block-bj.png");
  1208. .svip-price-box{
  1209. display: flex;justify-content: space-between;border-bottom: 2rpx solid #efd774;font-size: 32rpx;
  1210. margin-top: 120rpx;box-sizing: border-box;padding:0 24rpx 24rpx;color: #87664d;align-items: center;
  1211. .original-price{text-decoration: line-through;}
  1212. .discount-price{color: #ff0101;font-size: 40rpx;}
  1213. }
  1214. .pay-type-box{
  1215. display: flex;align-items: center;padding:20rpx 24rpx;box-sizing: border-box;
  1216. .type-radio-title{color: #87664d;margin-right: 32rpx;flex-shrink: 0;font-size: 32rpx;}
  1217. .type-radio-content{display: flex;flex-direction: row;align-items: center;
  1218. justify-content: space-between;flex: 1;font-size: 32rpx;}
  1219. }
  1220. .type-radio-box{
  1221. display: flex;align-items: center;color: #87664d;
  1222. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  1223. .uni-radio-input{
  1224. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1225. background-image: url("@/static/images/pay/svip-radio.png");
  1226. background-color:transparent;border:0; pointer-events: none;
  1227. svg{display: none;}
  1228. }
  1229. .radio-checked .uni-radio-input{
  1230. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;
  1231. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1232. }
  1233. }
  1234. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1235. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1236. .open-svip-btn,.open-svip-btn-hui{
  1237. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align: center;color: #fff;margin: 10rpx auto;font-size: 36rpx;
  1238. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1239. }
  1240. .open-svip-btn-hui{
  1241. background-image: url("@/static/images/pay/svip-btn-bj-hui.png");
  1242. color: #BA9D7F;
  1243. }
  1244. }
  1245. .hyfw-tip-box{
  1246. font-size: 25rpx;color: #fff;text-align: center;margin-top: 5rpx;
  1247. text{color: #e3f524;}
  1248. }
  1249. @media (max-height: 800px) {
  1250. min-height: 1600rpx;
  1251. .svip-login1,.svip-login2{width: 538rpx;height: 215rpx;margin: 0 auto;}
  1252. .svip-list-box{
  1253. margin: 0 auto;
  1254. .list-item-box{margin-bottom: 20rpx;}
  1255. }
  1256. .open-svip-box{
  1257. width: 673rpx;height:396rpx;
  1258. .open-svip-btn{margin: 0 auto;}
  1259. }
  1260. }
  1261. @media (max-height: 736px) {
  1262. min-height: 1472rpx;
  1263. .svip-login1,.svip-login2{width: 500rpx;height: 200rpx;margin: 0 auto;}
  1264. .svip-list-box{
  1265. .list-item-box{margin-bottom: 16rpx;}
  1266. .list-icon{
  1267. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1268. }
  1269. .list-title{font-size: 26rpx;}
  1270. .list-content{font-size: 22rpx;}
  1271. }
  1272. .open-svip-box{
  1273. width: 625rpx;height:349rpx;
  1274. .svip-price-box{
  1275. font-size: 30rpx;margin-top: 90rpx;padding:0 24rpx 24rpx;
  1276. .discount-price{color: #ff0101;font-size: 36rpx;}
  1277. }
  1278. .pay-type-box{
  1279. padding:10rpx 12rpx;
  1280. .type-radio-title{margin-right: 24rpx;font-size: 30rpx;}
  1281. .type-radio-content{font-size: 30rpx;}
  1282. }
  1283. .open-svip-btn{width: 300rpx;height: 80rpx;line-height: 80rpx;margin: 6rpx auto;font-size: 32rpx;}
  1284. }
  1285. }
  1286. }
  1287. // 订单
  1288. .ezy-order-page{
  1289. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1290. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1291. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1292. .uni-list{background-color: transparent!important;}
  1293. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1294. .uni-list-item__header{display: none;}
  1295. .uni-list-item__container{
  1296. flex-direction: column!important;position: relative;
  1297. padding:16rpx 20rpx !important;overflow: unset;}
  1298. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1299. .order-list-item{
  1300. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1301. margin: 0 3% 12rpx;border-radius: 8rpx;
  1302. .order-item-head{
  1303. display: flex;justify-content: space-between;align-items: center;font-size: 24rpx;color: #333;
  1304. .order-name-box{
  1305. display: flex;align-items: center;
  1306. icon{
  1307. width: 58rpx;height: 58rpx;margin-right: 10rpx;
  1308. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-icon.png");
  1309. }
  1310. }
  1311. .pay-status{color:#fdae36;margin-left: 36rpx;}
  1312. }
  1313. .order-content-box{
  1314. display: flex;margin-top: 10rpx;box-sizing: border-box;margin-bottom: 24rpx;
  1315. .content-img{width: 230rpx;height: 230rpx;margin-right: 20rpx;
  1316. @include ezy-no-repeat-cover;flex-shrink: 0;border-radius: 8rpx;}
  1317. .content-body-box{display: flex;flex-direction: column;flex: 1;}
  1318. .content-name{font-size: 36rpx;color: #000;margin-bottom: 8rpx;@include single-line-ellipsis;max-width: 320rpx;}
  1319. .content-text{font-size: 24rpx;height: 110rpx;
  1320. color: #666;@include multi-line-ellipsis(3);line-height: 1.5;}
  1321. .content-yuanjia{font-size: 42rpx;color: #ff0101;margin-top: auto;margin-left:auto;}
  1322. .content-money-box{
  1323. display: flex;justify-content: space-between;align-items: center;margin-top: 8rpx;
  1324. .bottom-data{font-size: 24rpx;color: #999;}
  1325. .bottom-money{color: #333;}
  1326. .order-kcb-btn{
  1327. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1328. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1329. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1330. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1331. }
  1332. }
  1333. }
  1334. .content-heji{text-align: right;margin: 0 0 24rpx;}
  1335. .order-bottom-box{
  1336. box-sizing: border-box;padding: 16rpx 0 10rpx;border-top: 1px dashed #fff;
  1337. display: flex;justify-content: space-between;
  1338. .pay-status-box{
  1339. width: 200rpx;display: flex;align-items: center;line-height: 1;
  1340. padding:2rpx 0 2rpx 16rpx;color: #666;margin-left: 4rpx;
  1341. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 8rpx;}
  1342. .wx-icon{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1343. .zfb-icon{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1344. .apple-icon{background-image: url("@/static/images/common/apple-icon.png");}
  1345. }
  1346. .pay-status-box::after{
  1347. content:'';width: 24rpx;height: 24rpx;margin-left: 4rpx;
  1348. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/qiehuan-icon.svg");
  1349. }
  1350. .apple-status-box::after{display: none;}
  1351. .pay-btn{
  1352. width: 180rpx;height: 70rpx;font-size: 28rpx;line-height: 70rpx;text-align: center;color: #fff;
  1353. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/mall-btn.png");
  1354. }
  1355. }
  1356. }
  1357. }
  1358. // 订单支付
  1359. .ezy-order-pay-page{
  1360. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1361. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1362. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1363. .order-pay-border-box{
  1364. width: 740rpx;height: 1144rpx;margin: 0 auto;box-sizing: border-box;padding: 30rpx;
  1365. @include ezy-no-repeat-cover(top);background-image: url("@/static/images/pay/order-pay-bj.png");
  1366. }
  1367. .order-pay-img-box{
  1368. display: flex;background-color: rgba(255, 255, 255, 0.6);
  1369. box-sizing: border-box;padding: 32rpx 24rpx;margin-bottom: 6rpx;
  1370. icon{width: 212rpx;height: 202rpx;margin-right: 20rpx;@include ezy-no-repeat-cover;flex-shrink: 0;}
  1371. .order-pay-img1{background-image: url("@/static/images/pay/svip1.png");}
  1372. .order-pay-img2{background-image: url("@/static/images/pay/svip2.png");}
  1373. .img-content-box{flex: 1;position: relative;}
  1374. .content-name{font-size: 40rpx;color: #333;margin-bottom: 12rpx;}
  1375. .content-tag{
  1376. width: 150rpx;height: 40rpx;line-height: 40rpx;display: inline-block;
  1377. font-size: 24rpx;color: #01c6fe;background-color: rgba(255, 255, 255, 0.6);
  1378. border-radius: 4rpx;text-align: center;
  1379. }
  1380. .content-tag + .content-tag{margin-left: 16rpx;}
  1381. .content-yuanjia{font-size: 42rpx;color: #ff0101;position: absolute;right: 0;bottom: 0;}
  1382. }
  1383. .price-box{
  1384. margin-bottom: 6rpx;background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;
  1385. .price-row{display: flex;justify-content: space-between;font-size: 30rpx;color: #333;box-sizing: border-box;padding-left: 10rpx;}
  1386. .price-line-row{border-bottom: 1rpx dashed #fff;padding: 24rpx 0 36rpx 10rpx;margin-bottom: 24rpx;}
  1387. .price-red{color: #ff0101;}
  1388. }
  1389. .pay-type-box{
  1390. background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;border-radius: 0 0 10rpx 10rpx;
  1391. .pay-type-name{font-size: 36rpx;color: #333;margin-bottom: 12rpx;}
  1392. .type-radio-box{display: flex;flex-direction: column;}
  1393. .type-radio-row{
  1394. display: flex;justify-content: space-between;flex: 1;align-items: center;color: #87664d;
  1395. padding: 24rpx 0;box-sizing: border-box;
  1396. icon{width: 58rpx;height: 58rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;flex-shrink: 0;}
  1397. .uni-radio-input{
  1398. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1399. background-image: url("@/static/images/pay/svip-radio.png");
  1400. background-color:transparent;border:0; pointer-events: none;
  1401. svg{display: none;}
  1402. }
  1403. .radio-checked .uni-radio-input{
  1404. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;flex-shrink: 0;
  1405. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1406. }
  1407. .radio-content-box{margin-right: auto;font-size: 0;}
  1408. .radio-title{font-size: 30rpx;color: #333;}
  1409. .radio-content{font-size: 24rpx;color: #666;}
  1410. }
  1411. .type-radio-row +.type-radio-row{border-top:1px dashed #fff;padding-bottom: 10rpx;}
  1412. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1413. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1414. }
  1415. .pay-sum-box{
  1416. display: flex;justify-content: space-between;align-items: center;font-size: 36rpx;color: #333;margin-top: 42rpx;
  1417. icon{width: 35rpx;height: 35rpx;margin: 0 12rpx;
  1418. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-date.png");}
  1419. .sum-red{color: #ff0101;font-weight: bold;margin-left: 6rpx;}
  1420. .sum-btn{
  1421. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align:center;color: #fff;font-size: 32rpx;
  1422. display: flex;justify-content: center;align-items: center;
  1423. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1424. }
  1425. }
  1426. @media (max-height: 700px) {
  1427. .order-pay-border-box{padding: 20rpx;}
  1428. .order-pay-img-box{padding:24rpx;}
  1429. .price-box{padding:24rpx;}
  1430. .pay-type-box{
  1431. padding:24rpx;
  1432. .pay-type-name{margin-bottom: 0;}
  1433. .type-radio-row{padding: 16rpx 0;}
  1434. }
  1435. .pay-sum-box{margin-top: 32rpx;}
  1436. }
  1437. @media (max-height: 600px) {
  1438. .order-pay-border-box{padding: 16rpx;}
  1439. .order-pay-img-box{padding:16rpx;}
  1440. .price-box{padding:16rpx;}
  1441. .pay-type-box{
  1442. padding:16rpx;
  1443. .pay-type-name{margin-bottom: 0;}
  1444. .type-radio-row{padding: 12rpx 0;}
  1445. }
  1446. .pay-sum-box{margin-top: 24rpx;}
  1447. }
  1448. }
  1449. // 游戏
  1450. .ezy-game-page{
  1451. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1452. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1453. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/game/game-bj.png");
  1454. .game-jf-box{position: absolute;right: 24rpx;top: var(--status-bar-height);}
  1455. // goose
  1456. .game-goose-box{
  1457. position: absolute;bottom: 260rpx;right: 25rpx;color: #0d5f84;
  1458. .game-progress-text{position: absolute;left: 50%;transform: translateX(-50%);font-size: 18rpx;}
  1459. .game-progress-box{
  1460. width: 138rpx;height: 25rpx;position: absolute;left: 50%;transform: translateX(-50%);
  1461. .u-line-progress__background{
  1462. width: 138rpx;height: 25rpx!important;
  1463. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/jf-bj.png");
  1464. }
  1465. .u-line-progress__line{height: 25rpx!important;}
  1466. }
  1467. .goose-img-box{width: 308rpx;height: 481rpx;@include ezy-no-repeat-cover;}
  1468. }
  1469. .game-goose-box0{
  1470. .game-progress-box{bottom: 300rpx;}
  1471. .game-progress-text{bottom: 302rpx;}
  1472. }
  1473. .game-goose-box1{
  1474. .game-progress-box{bottom: 330rpx;}
  1475. .game-progress-text{bottom: 333rpx;}
  1476. }
  1477. .game-goose-box2{
  1478. .game-progress-box{bottom: 404rpx;}
  1479. .game-progress-text{bottom: 407rpx;}
  1480. }
  1481. .game-goose-box3{
  1482. .game-progress-box{bottom: 460rpx;}
  1483. .game-progress-text{bottom: 463rpx;}
  1484. }
  1485. // food
  1486. .food-img-box{width: 80rpx;height: 75rpx;position: absolute;}
  1487. .food-img30{bottom: 368rpx;left: 274rpx;}
  1488. .food-img100{bottom: 360rpx;left: 270rpx;}
  1489. .food-img300{bottom: 360rpx;left: 272rpx;}
  1490. //btn
  1491. .food-btn-box{
  1492. width: 106rpx;height: 121rpx;position: absolute;top: calc(260rpx + var(--status-bar-height));right: 50rpx;
  1493. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-common-img.png");
  1494. }
  1495. .yxsm-btn{
  1496. width: 125rpx;height: 125rpx;position: absolute;top: calc(100rpx + var(--status-bar-height));right: 38rpx;
  1497. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/yxsm-btn-img.png");
  1498. }
  1499. // game-popup-box
  1500. .game-popup-box{
  1501. width: 100%;height: 514rpx;@include ezy-no-repeat-cover;
  1502. background-image: url("@/static/images/game/food-box-bj.png");
  1503. box-sizing: border-box;padding: 64rpx 36rpx 0;
  1504. .game-popup-head,.jf-btn-box{display: flex;justify-content: space-between;align-items: center;}
  1505. .game-popup-title{
  1506. width: 285rpx;height: 90rpx;@include ezy-no-repeat-cover;
  1507. background-image: url("@/static/images/game/food-title.png");
  1508. }
  1509. .game-popup-jf{margin: 0 20rpx 0 0;}
  1510. .popup-close-btn{
  1511. width: 46rpx;height: 46rpx;@include ezy-no-repeat-cover;
  1512. background-image: url("@/static/images/common/close-icon.png");
  1513. }
  1514. .food-list-box{display: flex;justify-content: space-between;margin-top: 24rpx;}
  1515. .food-item-box{
  1516. width: 204rpx;height: 250rpx;@include ezy-no-repeat-cover;
  1517. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1518. background-image: url("@/static/images/game/food-bj.png");
  1519. .food-image{width: 144rpx;height:135rpx;}
  1520. .food-item-jf{
  1521. width: 123rpx;height: 46rpx;
  1522. display: flex;align-items: center;line-height: 1.2;font-size: 26rpx;
  1523. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-jf-bj.png");margin-top: 20rpx;
  1524. .jf-icon{width: 35rpx;height: 35rpx;margin:0 4rpx 0 10rpx;flex-shrink: 0;
  1525. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-qb.png");}
  1526. .jf-text{min-width: 60rpx;text-align: center;color: #fff;margin-top: 2rpx;}
  1527. }
  1528. }
  1529. }
  1530. }
  1531. .yxsm-popup-box{
  1532. width: 684rpx;height: 1308rpx;box-sizing: border-box;padding: 120rpx 56rpx 60rpx;overflow-y: auto;
  1533. background-image: url("@/static/images/login/agree-content-bj.png");@include ezy-no-repeat-cover;
  1534. position: relative;text-align: justify;display: flex;flex-direction: column;position: relative;
  1535. .yxsm-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;position: absolute;
  1536. top: 64rpx;right: 44rpx;background-image: url("@/static/images/common/close-icon.png");}
  1537. .yxsm-item-box{overflow-y: auto;line-height: 1.8;font-size: 28rpx;}
  1538. .yxsm-popup-title{font-size: 36rpx;color: #333;text-align: center;margin-bottom: 32rpx;}
  1539. .item-title{color: #359ae2;}
  1540. .item-content{color: #555;}
  1541. @media (max-height: 480px){
  1542. padding: 120rpx 56rpx 120rpx;
  1543. .yxsm-close-btn{top: 100rpx;}
  1544. }
  1545. }
  1546. // svip弹窗
  1547. .ezy-svip-dialog{
  1548. .tip-content-box{
  1549. width: 625rpx;height: 519rpx;padding: 42rpx 48rpx;
  1550. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1551. background-image: url("@/static/images/common/tip-big-bj.png");
  1552. position: relative;
  1553. icon{
  1554. width: 510rpx;
  1555. height: 269rpx;@include ezy-no-repeat-cover;
  1556. position: absolute;top: -20%;left: 50%;transform: translateX(-50%);
  1557. }
  1558. .svip-img1{background-image: url("@/static/images/pay/svip-dialog-img1.png");}
  1559. .svip-img2{background-image: url("@/static/images/pay/svip-dialog-img2.png");}
  1560. }
  1561. .tip-content{
  1562. color: #666;font-size: 32rpx;padding:160rpx 0 80rpx;line-height: 1.6;text-align: center;
  1563. text-align: center;border-bottom: 1px dashed #70cbf4;
  1564. }
  1565. .tip-btn-box{
  1566. width: 100%;display: flex;justify-content: space-between;
  1567. .not-confirm-btn,.confirm-btn{
  1568. width: 208rpx;height: 83rpx;@include ezy-no-repeat-cover;margin: 30rpx 32rpx 0;
  1569. }
  1570. .not-confirm-btn{background-image: url("@/static/images/common/tip-cancel-btn.png");}
  1571. .confirm-btn{background-image: url("@/static/images/pay/svip-btn.png");}
  1572. }
  1573. }
  1574. // 蛋破壳
  1575. .ezy-pay-success-dialog{width: 769rpx;height: 769rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/pay/pay-success-img.gif");}
  1576. .ezy-pay-success-all-dialog{width: 769rpx;height: 192rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/pay/pay-success-all-img.gif");}
  1577. // 敬请期待弹窗
  1578. .coming-soon-dialog{
  1579. icon{
  1580. width: 577rpx;height: 596rpx;
  1581. background-image: url("@/static/images/grade/coming-soon-img.png");@include ezy-no-repeat-cover;
  1582. }
  1583. .coming-soon-return-btn{
  1584. width: 554rpx;height: 106rpx;margin: 52rpx auto;
  1585. background-image: url("@/static/images/grade/coming-soon-btn.png");@include ezy-no-repeat-cover;
  1586. }
  1587. }
  1588. // 专题
  1589. .ezy-zhuanti-page{
  1590. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1591. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1592. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1593. .zt-qipao-box{
  1594. width: 520rpx;height: 154rpx;color: #fff;font-size: 30rpx;text-align: center;box-sizing: border-box;
  1595. padding-top: 20rpx;margin: calc(var(--status-bar-height) + 140rpx) auto 0;
  1596. background-image: url("@/static/images/zhuanti/text-icon.png");@include ezy-no-repeat-cover;
  1597. }
  1598. .zt-biaoqing-box{
  1599. width: 673rpx;height: 442rpx;margin: 0 auto;margin-top: 20rpx;
  1600. display: flex;flex-wrap: wrap;
  1601. background-image: url("@/static/images/zhuanti/biaoqing-all.png");@include ezy-no-repeat-cover;
  1602. .biaoqing-item-box{width: 25%;height: 220rpx;}
  1603. }
  1604. @media (max-height: 800px) {
  1605. .zt-qipao-box{margin: calc(var(--status-bar-height) + 80rpx) auto 0;}
  1606. }
  1607. @media (max-height: 700px) {
  1608. .zt-qipao-box{margin: calc(var(--status-bar-height) + 60rpx) auto 0;}
  1609. }
  1610. @media (max-height: 500px) {
  1611. min-height: 1200rpx;
  1612. .zt-qipao-box{margin: calc(var(--status-bar-height) + 10rpx) auto 0;}
  1613. .zt-biaoqing-box{margin-top:-20rpx;}
  1614. }
  1615. }
  1616. // 表情详情页
  1617. .ezy-biaoqing-page{
  1618. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1619. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1620. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1621. .biaoqing-bj-box{
  1622. position: relative;box-sizing: border-box;padding-top: 220rpx;margin-top: calc(var(--status-bar-height) + 50rpx);
  1623. .qipao-item-box{width: 125rpx;height: 160rpx;@include ezy-no-repeat-cover;position: absolute;}
  1624. .qipao-item-box:nth-child(1){top: 180rpx;left: 20rpx;}
  1625. .qipao-item-box:nth-child(2){top: 40rpx;left: 160rpx;}
  1626. .qipao-item-box:nth-child(3){top: 50rpx;left: 330rpx;}
  1627. .qipao-item-box:nth-child(4){top: 60rpx;right: 120rpx;}
  1628. .qipao-item-box:nth-child(5){top: 270rpx;right: 20rpx;}
  1629. .qipao-item-disabled{animation: fadeOut .2s forwards;}
  1630. @keyframes fadeOut {
  1631. from {opacity: 1;}
  1632. to {opacity: 0;}
  1633. }
  1634. .show-biaoqing-icon{width: 80rpx;height: 80rpx;@include ezy-no-repeat-cover;
  1635. position: absolute;top: 20rpx;left: 22rpx;z-index: 0;}
  1636. .biaoqing-img{width: 442rpx;height: 385rpx;@include ezy-no-repeat-cover;margin: 0 auto;}
  1637. .qipao-mask{
  1638. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 1;
  1639. background-image: url("@/static/images/zhuanti/xiao-qipao-bj.png");
  1640. position: absolute;top: 0;left: 0;
  1641. }
  1642. .polie-qipao-mask{
  1643. width: 192rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1644. background-image: url("@/static/images/zhuanti/baozha.gif");
  1645. position: absolute;top: 5rpx;left: -35rpx;
  1646. }
  1647. .qipao-text-row{
  1648. color: #fff;font-size: 24rpx;display: flex;align-items: center;
  1649. justify-content: center;position: absolute;bottom: 0;left: 0;right: 0;
  1650. .shou-icon{width: 32rpx;height: 32rpx;@include ezy-no-repeat-cover;
  1651. background-image: url("@/static/images/zhuanti/shou-icon.png");}
  1652. }
  1653. }
  1654. .biaoqing-bj1 .biaoqing-img,.biaoqing-bj1 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon1.png");}
  1655. .biaoqing-bj2 .biaoqing-img,.biaoqing-bj2 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon2.png");}
  1656. .biaoqing-bj3 .biaoqing-img,.biaoqing-bj3 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon3.png");}
  1657. .biaoqing-bj4 .biaoqing-img,.biaoqing-bj4 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon4.png");}
  1658. .biaoqing-bj5 .biaoqing-img,.biaoqing-bj5 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon5.png");}
  1659. .biaoqing-bj6 .biaoqing-img,.biaoqing-bj6 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon6.png");}
  1660. .biaoqing-bj7 .biaoqing-img,.biaoqing-bj7 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon7.png");}
  1661. .biaoqing-bj8 .biaoqing-img,.biaoqing-bj8 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon8.png");}
  1662. .maike-anzhu,.maike-songkai{width: 100%;text-align:center;margin-top: 36rpx;}
  1663. .maike-box{
  1664. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1665. display: flex;align-items: center;justify-content: center;
  1666. background-image: url("@/static/images/zhuanti/qipao-bj.png");
  1667. margin:0 auto;position: relative;
  1668. .maike-icon{width: 58rpx;height: 87rpx;@include ezy-no-repeat-cover;
  1669. background-image: url("@/static/images/zhuanti/maike-icon.png");}
  1670. }
  1671. .maike-songkai .maike-box::after{
  1672. content: '';width: 673rpx;height: 115rpx;display: block;@include ezy-no-repeat-cover;
  1673. background-image: url("@/static/images/zhuanti/yinbo.gif");position: absolute;
  1674. }
  1675. .maike-text{color: #fff;font-size: 24rpx;}
  1676. @media (max-height: 800px) {
  1677. .biaoqing-bj-box{
  1678. padding-top:150rpx;
  1679. .qipao-item-box:nth-child(1){top: 120rpx;left: 20rpx;}
  1680. .qipao-item-box:nth-child(2){top: 1rpx;left: 160rpx;}
  1681. .qipao-item-box:nth-child(3){top: -10rpx;left: 330rpx;}
  1682. .qipao-item-box:nth-child(4){top: 30rpx;right: 120rpx;}
  1683. .qipao-item-box:nth-child(5){top: 210rpx;right: 20rpx;}
  1684. .biaoqing-img{width: 382rpx;height: 325rpx;}
  1685. }
  1686. .maike-anzhu,.maike-songkai{margin-top: 24rpx;}
  1687. .maike-box{width: 110rpx;height: 110rpx;}
  1688. .maike-songkai .maike-box::after{width: 653rpx;height: 85rpx;}
  1689. }
  1690. @media (max-height: 700px) {
  1691. .biaoqing-bj-box{
  1692. padding-top: 110rpx;
  1693. .qipao-item-box{width: 100rpx;height: 135rpx;}
  1694. .qipao-item-box:nth-child(1){top:130rpx;left: 40rpx;}
  1695. .qipao-item-box:nth-child(2){top:15rpx;left: 160rpx;}
  1696. .qipao-item-box:nth-child(3){top:-15rpx;left: 330rpx;}
  1697. .qipao-item-box:nth-child(4){top:45rpx;right: 125rpx;}
  1698. .qipao-item-box:nth-child(5){top:200rpx;right: 40rpx;}
  1699. .biaoqing-img{width: 352rpx;height: 295rpx;}
  1700. .qipao-mask{width: 100rpx;height: 100rpx;}
  1701. .polie-qipao-mask{width: 172rpx;height: 105rpx;top: 0rpx;left: -45rpx; }
  1702. .show-biaoqing-icon{width: 60rpx;height: 60rpx;}
  1703. .qipao-text-row{
  1704. font-size: 22rpx;
  1705. .shou-icon{width: 26rpx;height: 26rpx;}
  1706. }
  1707. }
  1708. .maike-anzhu,.maike-songkai{margin-top: 16rpx;}
  1709. .maike-box{width: 100rpx;height: 100rpx;}
  1710. .maike-songkai .maike-box::after{width: 633rpx;height: 60rpx;}
  1711. .maike-text{font-size: 22rpx;}
  1712. }
  1713. @media (max-height: 650px) {
  1714. min-height: 1300rpx;
  1715. }
  1716. }
  1717. // 商城
  1718. .ezy-mall-page{
  1719. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1720. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1721. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1722. .uni-list{background-color: transparent!important;}
  1723. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1724. .uni-list-item__header{display: none;}
  1725. .uni-list-item__container{
  1726. flex-direction: column!important;position: relative;
  1727. padding:16rpx 20rpx !important;overflow: unset;}
  1728. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1729. .mall-list-item{
  1730. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1731. margin: 0 3% 10rpx;border-radius: 8rpx;box-sizing: border-box;padding: 16rpx;
  1732. .content-yuanjia{font-size: 36rpx;color: #ff0101;text-decoration: line-through;}
  1733. .mall-content-box{
  1734. display: flex;margin-top: 10rpx;border-bottom: 1px dashed #fff;
  1735. box-sizing: border-box;padding-bottom:16rpx;margin-bottom: 16rpx;
  1736. .mall-image{width: 220rpx;height: 220rpx;margin-right: 16rpx;flex-shrink: 0;}
  1737. .content-body-box{display: flex;flex-direction: column;justify-content: space-between;flex: 1;}
  1738. .content-name{
  1739. font-size: 36rpx;color: #000;margin-bottom: 12rpx;display: flex;align-items: center;
  1740. .name-text{@include single-line-ellipsis;max-width: 360rpx;margin-right: 10rpx;}
  1741. }
  1742. .content-text{font-size: 24rpx;color: #666;@include multi-line-ellipsis(3);line-height: 1.4;}
  1743. .content-row{
  1744. display: flex;justify-content: space-between;align-items: center;
  1745. .shop-car-box{
  1746. width: 70rpx;height: 70rpx;position: relative;
  1747. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/shop-car-icon.png");
  1748. }
  1749. .car-change{
  1750. width: 32rpx;height: 30rpx;position: absolute;right: -4rpx;top: -8rpx;
  1751. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/change-icon.png");
  1752. }
  1753. }
  1754. }
  1755. .mall-yigou-box{
  1756. position: relative;
  1757. .content-row .shop-car-box{background-image: url("@/static/images/mall/shop-car-disabled-icon.png");}
  1758. }
  1759. .mall-yigou-box::after{content: '';width: 71rpx;height: 69rpx;position: absolute;left: 3rpx;top:2rpx;
  1760. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/yigou-icon.png");}
  1761. .mall-bottom-row{
  1762. display: flex;justify-content: space-between;align-items: center;
  1763. box-sizing: border-box;padding-bottom: 16rpx;
  1764. .kcb-btn{
  1765. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1766. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1767. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1768. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1769. }
  1770. .hdj-text{font-size: 32rpx;color: #333;margin-left: auto;}
  1771. }
  1772. }
  1773. }
  1774. // PDF
  1775. .pdf-page-box{
  1776. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1777. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1778. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1779. .pdf-body-box.uni-webview--fullscreen, .uni-resize-sensor > div,mainContainer{top:calc(83rpx - var(--status-bar-height));}
  1780. }
  1781. // 数学题库
  1782. .ezy-sxtk-page{
  1783. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1784. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1785. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1786. .sxtk-tab-border{height: calc(100vh - 254rpx - var(--status-bar-height));flex: unset;}
  1787. .tab-img{width: 346rpx;height: 77rpx;margin: 24rpx auto 0;
  1788. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/tk-qxzjc.png");}
  1789. .sxtk-line{width: 94%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 20rpx auto;}
  1790. .sxtk-tab-box{
  1791. display: flex;box-sizing: border-box;padding: 0 16rpx;margin-top: 24rpx;
  1792. .tab-item{width: 16.66%;font-size: 30rpx;}
  1793. .tab-nianji-item{width: 106rpx;height: 73rpx;line-height: 73rpx;margin: 0 auto;text-align: center;}
  1794. .tab-item.active .tab-nianji-item{@include ezy-no-repeat-cover;color: #fff;
  1795. background-image: url("@/static/images/my/tk-tab-item.png");}
  1796. }
  1797. .sxtk-banben-body{
  1798. flex: 1;overflow-y: auto;padding:10rpx 0;box-sizing: border-box;
  1799. display: flex;flex-wrap: wrap;align-content: flex-start;margin-bottom: 10rpx;
  1800. .banben-item{width: 33.33%;font-size: 28rpx;margin-bottom: 24rpx;}
  1801. .banben-text-item{width: 194rpx;height: 79rpx;line-height: 79rpx;text-align: center;margin: 0 auto;
  1802. @include single-line-ellipsis;box-sizing: border-box;padding: 0 6rpx;
  1803. background-image: url("@/static/images/my/tk-list-item.png");@include ezy-no-repeat-cover;color: #fff;}
  1804. .banben-item.active .banben-text-item{background-image: url("@/static/images/my/tk-list-item-a.png");color: #6e0c02;}
  1805. }
  1806. .sxtk-confirm-btn{
  1807. width: 644rpx;height: 108rpx;background-color: transparent;margin-bottom: 36rpx;
  1808. background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  1809. }
  1810. .sxtk-confirm-btn:after{display: none;}
  1811. }
  1812. // 更换头像
  1813. .ezy-ghtx-page{
  1814. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;overflow: auto;
  1815. padding-top:var(--status-bar-height);@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  1816. .ghtx-img{width: 644rpx;height: 644rpx;margin: 0 auto 86rpx;display: block;}
  1817. .xc-btn,.qx-btn{
  1818. width: 644rpx;height: 108rpx;line-height: 108rpx;@include ezy-no-repeat-cover;
  1819. margin: 30rpx auto 0;font-size: 30rpx;color: #fff;text-align: center;}
  1820. .xc-btn{background-image: url("@/static/images/common/confirm-btn.png");}
  1821. .qx-btn{background-image: url("@/static/images/common/cancel-btn.png");}
  1822. }
  1823. // 单词列表页
  1824. .word-list-page{
  1825. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1826. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1827. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1828. .ezy-border-body{
  1829. width: 94%;height: calc(100vh - 170rpx - var(--status-bar-height));margin: 3% 3%;display: flex;flex-direction: column;
  1830. background-color: rgba(255, 255, 255, 0.6);border-radius:0 0 8rpx 8rpx;}
  1831. .word-list-swiper-box{
  1832. height: calc(100vh - 200rpx - var(--status-bar-height));
  1833. .word-list-swiper-item{display: flex;flex-direction: column;}
  1834. }
  1835. .word-title-box{
  1836. flex-shrink: 0;margin: 0 2%;width: 96%;
  1837. line-height: 1.4;box-sizing: border-box;border-bottom: 1rpx dashed #068aea;
  1838. .uni-scroll-view-content{display: flex;}
  1839. .title-item{margin: 0 16rpx;color: #068aea;font-size: 28rpx;position: relative;padding: 12rpx 0;}
  1840. .title-item.active{font-weight: bold;}
  1841. .title-item.active::after{content: '';width: 70%;height: 8rpx;display: block;
  1842. background-color:#068aea;bottom: 0rpx;left:15%;position: absolute;border-radius: 8rpx;}
  1843. }
  1844. .word-list-body{flex: 1;overflow-y: auto;box-sizing: border-box;padding: 0 24rpx;}
  1845. .word-num-box{
  1846. display: flex;align-items: center;padding: 20rpx 24rpx;box-sizing: border-box;
  1847. icon{width: 10rpx;height: 32rpx;background-color:#068aea;border-radius:4rpx;margin-right: 8rpx;}
  1848. text{font-size: 34rpx;color: #068aea;font-weight: bold;}
  1849. }
  1850. }
  1851. // 单词详情
  1852. .word-view-page{
  1853. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1854. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1855. @include ezy-no-repeat-cover(bottom);
  1856. .ezy-border-body{
  1857. width: 94%;margin: 3% 3%;display: flex;flex-direction: column;flex: 1;
  1858. background-color: rgba(255, 255, 255, 0.6);border-radius:8rpx;}
  1859. // 选择单词
  1860. .select-words-box{
  1861. height: 66rpx;border-bottom: 1rpx dashed #0589e9;
  1862. display: flex;flex-wrap: wrap;justify-content: space-between;
  1863. box-sizing: border-box;font-size: 28rpx;overflow: hidden;
  1864. // @include single-line-ellipsis;
  1865. .words-item{min-width: 20%;color: #000;box-sizing: border-box;padding:16rpx 10rpx;text-align: center;}
  1866. .active{color: #068aea;}
  1867. }
  1868. // 选择类型
  1869. .select-types-box{
  1870. display: flex;justify-content: space-between;align-items: center;
  1871. margin-top: 24rpx;box-sizing: border-box;padding:0 24rpx;
  1872. .types-item{
  1873. width: 80rpx;height: 80rpx;line-height: 80rpx;text-align: center;
  1874. background-color: #fff;color: #000;border-radius: 50%;}
  1875. .types-item.active{background-color: #006fbf;color: #fff;}
  1876. .jt-item{width: 20rpx;height: 30rpx;@include ezy-no-repeat-cover;
  1877. background-image: url("@/static/images/study/cjdc/wordView/jt-icon.png");}
  1878. .jt-item.active{background-image: url("@/static/images/study/cjdc/wordView/jt-a-icon.png");}
  1879. }
  1880. .word-view-bottom{
  1881. width: 100%;height: 120rpx;background-color: #68b4e3;font-size: 28rpx;
  1882. border-top: 8rpx solid #add9f2;box-sizing: border-box;padding: 0 32rpx;
  1883. display: flex;justify-content: space-between;align-items: center;flex-shrink: 0;
  1884. .collect-btn{
  1885. color: #fff;display: flex;flex-direction: column;align-items: center;
  1886. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 6rpx;
  1887. background-image: url("@/static/images/study/cjdc/wordView/collect-icon.png");}
  1888. .active{background-image: url("@/static/images/study/cjdc/wordView/collect-a-icon.png");}
  1889. }
  1890. .bottom-btn-box{
  1891. display: flex;
  1892. .word-view-btn{
  1893. width: 204rpx;height: 77rpx;line-height: 77rpx;
  1894. color: #333;text-align: center;@include ezy-no-repeat-cover;
  1895. background-image: url("@/static/images/study/cjdc/wordView/bottom-btn-bj.png");
  1896. }
  1897. .word-view-btn + .word-view-btn{margin-left: 30rpx;}
  1898. }
  1899. }
  1900. .word-view-swiper-box{flex: 1;overflow-y: auto;box-sizing: border-box;}
  1901. /*****componets*****/
  1902. // 解释
  1903. .pin-words-explain-box{
  1904. margin-top: 64rpx;
  1905. .words-explain-item{font-size: 34rpx;color: #333;text-align: center;padding: 0 16rpx;line-height: 1.4;}
  1906. .words-explain-item + .words-explain-item{margin-top: 12rpx;}
  1907. }
  1908. //播放
  1909. .audio-play-btn,.audio-playing-btn{width: 110rpx;height:110rpx;@include ezy-no-repeat-cover;margin: 56rpx auto 0;}
  1910. .audio-play-btn{background-image: url("@/static/images/study/cjdc/wordView/play-btn.png");}
  1911. .audio-playing-btn{background-image: url("@/static/images/study/cjdc/wordView/playing-btn.gif");}
  1912. // 清空按钮
  1913. .pin-tip{width: 560rpx;margin: 24rpx auto 0;font-size: 26rpx;text-align: center;border-radius: 8rpx;
  1914. color: #015fb0;border: 1rpx dashed #015fb0;box-sizing: border-box;padding: 10rpx 0;}
  1915. // 提示
  1916. .clean-btn{width: 171rpx;height:58rpx;@include ezy-no-repeat-cover;margin: 24rpx auto 0;
  1917. background-image: url("@/static/images/study/cjdc/wordView/clean-btn.png");
  1918. }
  1919. // 音标播放
  1920. .yb-play-box{
  1921. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 32rpx auto 0;
  1922. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;
  1923. text{font-size: 34rpx;display: inline-block;vertical-align: middle;}
  1924. text:nth-child(even){color: #068aea;margin: 0 10rpx;}
  1925. icon{width: 30rpx;height:30rpx;@include ezy-no-repeat-cover;margin-left: 24rpx;
  1926. display: inline-block;vertical-align: middle;}
  1927. .yb-play-btn{background-image: url("@/static/images/study/cjdc/wordView/yb-play-btn.png");}
  1928. .yb-playing-btn{background-image: url("@/static/images/study/cjdc/wordView/yb-playing-btn.gif");}
  1929. }
  1930. // 带点的单词展示
  1931. .word-circle-box{
  1932. width: 100%;overflow: hidden;word-wrap: break-word;word-break: break-all;line-height: 1.8;
  1933. color: #015fb0;font-weight: bold;font-size: 82rpx;text-align: center;margin: 42rpx auto 0;
  1934. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  1935. .word-link-box{display: inline-block;padding:14rpx 48rpx 36rpx;position:relative;line-height: 1;}
  1936. .word-link-box::before,.word-link-box::after{
  1937. content: '';width: 100%;height: 42rpx;z-index: 1;
  1938. display: block;position: absolute;left: 0;
  1939. border: 2rpx solid #bdd2d4;border-left: 0;border-right: 0;
  1940. }
  1941. .word-link-box::before{top: 0;}
  1942. .word-link-box::after{bottom: 0;}
  1943. text{display: inline-block;vertical-align: middle;position: relative;z-index: 2;
  1944. font-family:"Arial", sans-serif;}
  1945. text:nth-child(odd){color: #ff9a01;}
  1946. text:not(:first-child)::before{
  1947. content: '';width: 10rpx;height: 10rpx;background-color: #999;margin: 0 6rpx;
  1948. display: inline-block;vertical-align: middle;border-radius: 10rpx;
  1949. }
  1950. }
  1951. // 单词详情块
  1952. .details-title{background-color: #3a7fe9;padding: 8rpx 12rpx;border-radius: 10rpx;
  1953. font-size: 24rpx;color: #fff;display: inline-block;}
  1954. .details-content-box{
  1955. background-color: #fffefe;border-radius: 10rpx;margin: 0 20rpx;line-height: 1.4;margin-bottom: 16rpx;
  1956. box-sizing: border-box;padding: 12rpx 10rpx;font-size: 26rpx;
  1957. }
  1958. .syky-content{margin: 16rpx 0 36rpx;border-bottom: 1rpx dashed #8dcff1;}
  1959. .syky-content:last-child{margin: 16rpx 0;border-bottom:0;}
  1960. .details-en-content{
  1961. color: #000;margin:16rpx 12rpx;
  1962. }
  1963. .word-color{color: #3a7fe9;}
  1964. .details-cn-content{color: #666;margin: 16rpx 12rpx 24rpx;}
  1965. }
  1966. .word-view-page::before,.word-view-page::after{content: '';width: 29rpx;height: 42rpx;
  1967. background-image: url("@/static/images/study/jt-left-icon.png");@include ezy-no-repeat-cover;display: block;
  1968. position: absolute;top: 46%;}
  1969. .word-view-page::before{left: 60rpx;}
  1970. .word-view-page::after{right: 60rpx;transform: rotate(180deg);}
  1971. // 单词详情- 学
  1972. .words-xue-box{
  1973. text-align: center;
  1974. .words-xue-body{height: calc(100vh - 390rpx - var(--status-bar-height));overflow-y: auto;}
  1975. .word-block-box{
  1976. text{min-width: 50rpx;height: 50rpx;line-height: 48rpx;font-size: 26rpx;margin: 12rpx 0;
  1977. padding: 0 10rpx;box-sizing: border-box;border-radius: 8rpx;
  1978. background-color: #9cd4ef;color: #06399c;display: inline-block;}
  1979. text + text{margin-left: 10rpx;}
  1980. }
  1981. .details-btn{
  1982. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 24rpx auto;
  1983. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;color: #068aea;
  1984. }
  1985. .xue-yb-play-box{margin-top: 12rpx;}
  1986. .xue-words-explain-box{margin-top: 32rpx;}
  1987. .yb-block-box text{min-width: 56rpx;height: 56rpx;line-height: 54rpx;border: 1rpx solid #fff;font-size: 26rpx;}
  1988. .yj-block-box{
  1989. min-width: 50rpx;font-size: 26rpx;
  1990. .yj-block-item{
  1991. display: inline-block;border: 1rpx solid #fff;color: #06399c;border-radius: 8rpx;overflow: hidden;
  1992. }
  1993. .yj-block-item +.yj-block-item{margin-left: 10rpx;}
  1994. .item-top,.item-bottom{height: 52rpx;line-height: 50rpx;padding: 0 10rpx;box-sizing: border-box;}
  1995. .item-top{background-color: #e7f2f9;}
  1996. .item-bottom{background-color: #9cd4ef;}
  1997. }
  1998. .cg-item-list{
  1999. .uni-scroll-view-content{display: flex;box-sizing: border-box;padding:0 24rpx; }
  2000. .cg-item-box{display: flex;flex-direction: row;flex-shrink: 0;color: #000;font-size: 32rpx;padding: 24rpx 0;}
  2001. // max-width: 360rpx;
  2002. .cg-item{
  2003. min-height: 124rpx;
  2004. display: flex;align-items: flex-start;flex-direction: column;justify-content: center;
  2005. border:1rpx solid #9cbff4;background-color: #fff;border-radius: 8rpx;padding: 16rpx;
  2006. view + view{margin-top: 2rpx;}
  2007. }
  2008. .isEven{color: #015fb0;}
  2009. .isOdd{color: #ff9a01;}
  2010. .cg-symbol{margin: 0 10rpx;display: flex;align-items: center;}
  2011. }
  2012. .xue-change-btn-box{
  2013. display: flex;justify-content: center;border-bottom: 1rpx dashed #8dcff1;margin: 0 20rpx;padding: 32rpx 0 42rpx;
  2014. .change-btn{
  2015. width: 254rpx;height:77rpx;position: relative;
  2016. text{color: #fff;position: relative;font-size: 32rpx;z-index: 2;display: inline-block;margin-top:15rpx;}
  2017. }
  2018. .change-btn::after{
  2019. content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;@include ezy-no-repeat-cover;
  2020. background-image: url("@/static/images/study/cjdc/wordView/change-btn.png");z-index: 1;
  2021. }
  2022. .change-btn.active text{color: #0f67be;}
  2023. .change-btn.active::after{background-image: url("@/static/images/study/cjdc/wordView/change-btn-a.png");transform: rotate(180deg);}
  2024. .change-btn:last-child::after{transform: rotate(180deg);}
  2025. .change-btn.active:last-child::after{transform: unset;}
  2026. }
  2027. .xue-details-content-box{text-align: left;margin-top: 12rpx;}
  2028. }
  2029. // 单词详情-拼
  2030. .words-pin-box{
  2031. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2032. height: calc(100vh - 390rpx - var(--status-bar-height));
  2033. .pin-body-box{flex: 1;overflow-y: auto;}
  2034. // 拼读 +选择
  2035. .pin-words-box{
  2036. // min-width: 80rpx;height: 100rpx;font-size: 64rpx;
  2037. display: flex;justify-content: center;margin-top: 64rpx;
  2038. .words-item{min-width: 90rpx;height: 120rpx;line-height: 120rpx;font-size: 80rpx;
  2039. text-align: center;box-sizing: border-box;padding: 0 6rpx;font-weight: bold;
  2040. border-radius: 8rpx;background-color: #b7e2f5;color: #015fb0;}
  2041. .words-item + .words-item{margin-left: 12rpx;}
  2042. }
  2043. .pin-small-words-box{
  2044. .words-item{min-width: 70rpx;height: 100rpx;line-height: 110rpx;font-size: 64rpx;padding: 0 4rpx;}
  2045. .words-item + .words-item{margin-left: 8rpx;}
  2046. }
  2047. // 回答正确 && 回答错误
  2048. .pin-error-words-box,.pin-right-words-box{
  2049. .words-item:last-child{position: relative;}
  2050. .words-item:last-child::after{
  2051. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  2052. position: absolute;top: -22rpx;right: -12rpx;
  2053. }
  2054. }
  2055. .pin-error-words-box.isAll{
  2056. .words-item{background-color: #fbc2c2;color: #ff4d4d;}
  2057. .words-item:last-child::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  2058. }
  2059. .pin-right-words-box.isAll{
  2060. .words-item{background-color: #ddffdd;color: #36c336;}
  2061. .words-item:last-child::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  2062. }
  2063. // 选择单词
  2064. .pin-words-change-box{
  2065. margin-bottom: 32rpx;
  2066. .words-change-item{line-height: 116rpx;border: 1rpx solid #2da8e7;border-bottom: 8rpx solid #41c5ff}
  2067. .words-change-item.disabled{border: 1rpx solid #999;border-bottom: 8rpx solid #ccc;
  2068. color: #999;background-color: #f0f0f0;}
  2069. }
  2070. .pin-words-change-box.pin-small-words-box{
  2071. .words-item{line-height: 90rpx;}
  2072. }
  2073. @media (max-height: 600px) {
  2074. // 拼
  2075. .words-pin-box{
  2076. .select-types-box{margin-top: 10rpx;}
  2077. .pin-words-box,.pin-words-explain-box{margin-top: 32rpx;}
  2078. .audio-play-btn,.audio-playing-btn{width: 96rpx;height:96rpx;margin-top: 24rpx;}
  2079. }
  2080. }
  2081. }
  2082. // 单词详情-读
  2083. .words-du-box{
  2084. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2085. height: calc(100vh - 390rpx - var(--status-bar-height));
  2086. .du-body-box{flex: 1;text-align: center;}
  2087. .du-yb-play-box{margin: 56rpx 0 42rpx;}
  2088. .du-words-explain-box{margin-top: 24rpx;}
  2089. .mike-play-box{
  2090. .mike-play-tip{font-size: 28rpx;color: #666;text-align: center;}
  2091. .du-btn-box{width: 100%;position: relative;}
  2092. .mike-btn::after,.mike-az-btn::after,.play-btn::after,.playing-btn::after{display: none;}
  2093. .mike-btn,.mike-az-btn{
  2094. width: 130rpx;height:130rpx;@include ezy-no-repeat-cover;margin-left: 24rpx;
  2095. background-color: transparent;border: 0;margin: 16rpx auto 32rpx;display: block;
  2096. }
  2097. .mike-btn{background-image: url("@/static/images/study/cjdc/wordView/miki-btn.png");}
  2098. .mike-az-btn{background-image: url("@/static/images/study/cjdc/wordView/miki-btn-a.gif");}
  2099. .play-btn,.playing-btn{
  2100. width: 96rpx;height:96rpx;@include ezy-no-repeat-cover;
  2101. background-color: transparent;border: 0;
  2102. position: absolute;left: 80rpx;bottom: 15rpx;
  2103. }
  2104. .play-btn{background-image: url("@/static/images/study/cjdc/wordView/play-btn.png");}
  2105. .playing-btn{background-image: url("@/static/images/study/cjdc/wordView/playing-btn.gif");}
  2106. }
  2107. }
  2108. // 单词详情-选
  2109. .words-xuan-box{
  2110. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  2111. height: calc(100vh - 390rpx - var(--status-bar-height));
  2112. .xuan-body-box{flex: 1;overflow-y: auto;text-align: center;}
  2113. .show-words-box{
  2114. width: 100%;overflow: hidden;word-wrap: break-word;word-break: break-all;
  2115. color: #015fb0;font-weight: bold;font-size: 76rpx;text-align: center;margin: 64rpx auto 0;
  2116. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  2117. }
  2118. .select-change-box{
  2119. flex-shrink: 0;
  2120. .select-item{
  2121. width: 600rpx;height: 96rpx;text-align: center;border-radius: 12rpx;font-size: 32rpx;
  2122. background-color: #fff;border-bottom: 6rpx solid #ddf3fb;line-height: 1.4;color: #333;
  2123. display: flex;align-items: center;justify-content: center;margin: 12rpx auto;
  2124. box-sizing: border-box;padding: 0 10rpx;text-align: left;position: relative;
  2125. text{@include multi-line-ellipsis(2);}
  2126. }
  2127. .select-item.active{
  2128. background-color: #6bcdff;border-bottom: 6rpx solid #a7e9fd;color: #fff;
  2129. }
  2130. .select-error::after,.select-right::after{
  2131. content: '';width: 36rpx;height: 36rpx;display: block;@include ezy-no-repeat-cover;
  2132. position: absolute;top: -10rpx;right: -12rpx;
  2133. }
  2134. .select-error::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  2135. .select-right::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  2136. }
  2137. @media (max-height: 600px) {
  2138. .show-words-box{margin: 12rpx auto 0;}
  2139. .yb-play-box{margin: 12rpx auto 0;}
  2140. }
  2141. }
  2142. // 单词详情-背
  2143. .words-bei-box{
  2144. display: flex;flex-direction: column;text-align: center;
  2145. height: calc(100vh - 390rpx - var(--status-bar-height));
  2146. // 答案
  2147. .words-answer-box{
  2148. min-width: 420rpx;max-width: 90%;height: 120rpx;line-height: 120rpx;margin: 64rpx auto 0;
  2149. background-color: #b7e2f5;color: #015fb0;font-size: 72rpx;display: inline-block;overflow: unset;
  2150. border-radius: 8rpx;padding: 0 10rpx;box-sizing: border-box;font-weight: bold;
  2151. .uni-input-placeholder.input-placeholder{color: #015fb0;font-size: 64rpx;}
  2152. }
  2153. // 兼容
  2154. .words-answer-box::placeholder { color: #015fb0;font-size: 64rpx; }
  2155. // 回答正确 && 回答错误
  2156. .words-answer-error-box,.words-answer-right-box{position: relative;}
  2157. .words-answer-error-box::after,.words-answer-right-box::after{
  2158. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  2159. position: absolute;top: -22rpx;right: -12rpx;
  2160. }
  2161. // background-color: #fbc2c2;
  2162. .words-answer-error-box{color: #ff4d4d;}
  2163. .words-answer-error-box::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  2164. // background-color: #ddffdd;
  2165. .words-answer-right-box{color: #36c336;}
  2166. .words-answer-right-box::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  2167. .bei-body-box{flex: 1;overflow-y: auto;}
  2168. // 键盘
  2169. .words-keyboard-box{
  2170. background-color: #e5e8ee;box-sizing: border-box;padding: 24rpx 0;
  2171. // position: absolute;bottom: -10rpx;left: -10rpx;right: -10rpx;
  2172. .keyboard-row{display: flex;justify-content: space-between;
  2173. box-sizing: border-box;padding: 0 32rpx;margin-bottom: 12rpx;}
  2174. .keyboard-button{
  2175. width: 56rpx;height: 90rpx;line-height: 90rpx;text-align: center;
  2176. background-color: #fff;color:#000;border-radius: 6rpx;font-size: 46rpx;
  2177. border-bottom:6rpx solid #e2e2e2;box-sizing: border-box;}
  2178. .keyboard-button.active{background-color: #b7e2f5;color:#015fb0;border-bottom:6rpx solid #41c5ff;}
  2179. .del-btn::after{
  2180. content: '';width: 46rpx;height: 46rpx;display: block;margin: 22rpx auto;
  2181. background-image: url("@/static/images/study/cjdc/wordView/del-btn.svg");@include ezy-no-repeat-cover;}
  2182. .bei-confirm-btn{
  2183. width: 610rpx;height: 77rpx;background-color: transparent;margin: 16rpx auto 0;
  2184. background-image: url("@/static/images/study/cjdc/wordView/confirm-btn.png");@include ezy-no-repeat-cover;
  2185. }
  2186. }
  2187. @media (max-height: 800px) {
  2188. .words-answer-box{margin-top: 32rpx;}
  2189. .pin-words-explain-box{margin-top: 32rpx;}
  2190. .audio-play-btn,.audio-playing-btn{margin: 32rpx auto 0;}
  2191. }
  2192. @media (max-height: 750px) {
  2193. .words-answer-box{
  2194. max-width: 86%;height: 100rpx;line-height: 100rpx;font-size: 66rpx;
  2195. .uni-input-placeholder.input-placeholder{font-size: 56rpx;}
  2196. }
  2197. .audio-play-btn,.audio-playing-btn{width: 80rpx;height:80rpx;}
  2198. .clean-btn{margin-top: 16rpx;}
  2199. .words-answer-error-box::after,.words-answer-right-box::after{width: 40rpx;height: 40rpx;top: -10rpx;right: -10rpx;}
  2200. }
  2201. @media (max-height: 700px) {
  2202. .words-answer-box{margin-top: 24rpx;}
  2203. .pin-words-explain-box{margin-top: 24rpx;}
  2204. .audio-play-btn,.audio-playing-btn{margin: 24rpx auto 0;}
  2205. .clean-btn{margin-top: 24rpx;}
  2206. .words-answer-error-box::after,.words-answer-right-box::after{width: 36rpx;height: 36rpx;top: -6rpx;right: -6rpx;}
  2207. }
  2208. }
  2209. // 单词详解
  2210. .words-details-page{
  2211. background-image: url("@/static/images/course/course-cjdc-bj.png");
  2212. .words-details-body{overflow-y: auto;}
  2213. .details-word{color: #000;font-size: 62rpx;font-weight: bold;margin: 24rpx;}
  2214. .tysy-content{color: #333;margin: 16rpx 12rpx 0;}
  2215. }
  2216. // 选择版本
  2217. .select-version-page{
  2218. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  2219. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2220. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  2221. .ezy-border-body{
  2222. width: 94%;height: calc(100vh - 170rpx - var(--status-bar-height));margin: 3% 3%;display: flex;flex-direction: column;
  2223. background-color: rgba(255, 255, 255, 0.6);border-radius:8rpx;}
  2224. .tab-head-box{
  2225. height: 100rpx!important;display: flex;justify-content: space-between;flex-shrink: 0;
  2226. z-index: 3;margin: 20rpx 20rpx 0;border-bottom: 4rpx dashed #7cbeee;
  2227. box-sizing: border-box;padding: 10rpx 0 24rpx;
  2228. }
  2229. .tab-item {
  2230. // width: 50%;height: 62rpx;line-height: 62rpx;
  2231. width: 288rpx;height: 60rpx;line-height: 60rpx;background-image: url("@/static/images/grade/grades-lv-bj.png");
  2232. text-align: center;font-size: 28rpx;color: #fff;@include ezy-no-repeat-cover;
  2233. }
  2234. .tab-item.active{background-image: url("@/static/images/grade/grades-lv-a-bj.png");color: #fff;border-radius: 8rpx;color: #6e0c02;}
  2235. .select-version-body{flex: 1;overflow-y: auto;padding-top:24rpx;box-sizing: border-box;}
  2236. .version-content-box{
  2237. display: flex;flex-wrap: wrap;padding: 0 10rpx;box-sizing: border-box;
  2238. .version-item{
  2239. width: 33.33%;margin-bottom: 20rpx;display: flex;justify-content: center;
  2240. .version-item-border {
  2241. width: 192rpx;height: 76rpx;line-height: 74rpx;@include single-line-ellipsis;
  2242. text-align: center;font-size: 25rpx;color: #333;@include ezy-no-repeat-cover;
  2243. background-image: url("@/static/images/grade/grades-cjdc-bj.png");
  2244. box-sizing: border-box;padding: 0 5rpx;}
  2245. }
  2246. .version-item.active .version-item-border{color: #6e0c02;background-image: url("@/static/images/grade/grades-cjdc-a-bj.png");}
  2247. }
  2248. .select-version-line{width: 90%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 16rpx auto;}
  2249. .select-version-confirm-btn{
  2250. width: 644rpx;height: 108rpx;background-color: transparent;flex-shrink: 0;margin-bottom: 16rpx;
  2251. background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  2252. }
  2253. .select-version-confirm-btn:after{display: none;}
  2254. }
  2255. // 学习记录
  2256. .learn-record-page{
  2257. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  2258. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2259. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  2260. .uni-list{background-color: transparent!important;}
  2261. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  2262. .uni-list-item__container{padding: 0!important;}
  2263. .learn-record-scroll-view{
  2264. margin-top: 16rpx;overflow-y: auto;height: calc(100vh - 370rpx - var(--status-bar-height));
  2265. box-sizing: border-box;padding: 0 20rpx;
  2266. .word-item-box{
  2267. width: 100%;background-color: transparent!important;
  2268. .uni-list-item__container{width: 100%;display: block;}
  2269. }
  2270. .word-list-item{margin-bottom: 16rpx;}
  2271. }
  2272. }
  2273. // 对错弹窗
  2274. .ezy-image-dialog{
  2275. width: 500rpx;height: 440rpx;background-position: center;
  2276. background-size: cover;background-repeat: no-repeat;
  2277. }
  2278. .ezy-image-dialog.wrong{background-image: url("@/static/images/study/cjdc/error-tip-img.gif");}
  2279. .ezy-image-dialog.right{background-image: url("@/static/images/study/cjdc/right-tip-img.gif");}
  2280. .ezy-image-dialog.luyin{background-image: url("@/static/images/study/cjdc/great-tip-img.gif");}