pages.scss 95 KB

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