pages.scss 109 KB

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