pages.scss 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253
  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-name-img{width: 100rpx;height: 100rpx;position: absolute;top: 100rpx;left: 294rpx;}
  609. .study-book-img{width: 114rpx;height: 148rpx;position: absolute;top: 130rpx;right:178rpx;}
  610. .chapter-title-box,.chapter-big-title-box,.chapter-last-title-box{
  611. height: 40rpx;line-height: 40rpx;text-align: center;;color: #fff;font-size: 24rpx;
  612. position: absolute;top:295rpx;@include ezy-no-repeat-cover;@include single-line-ellipsis;
  613. }
  614. .chapter-title-box{width: 137rpx;right:160rpx;background-image: url("@/static/images/study/cjdc/chapter-title-bj1.png");}
  615. .chapter-big-title-box,.chapter-last-title-box{width: 206rpx;right:135rpx;background-image: url("@/static/images/study/cjdc/chapter-title-bj2.png");}
  616. .chapter-last-title-box{font-size: 18rpx;}
  617. // brand-content
  618. .brand-content{width: 225rpx;height: 48rpx;line-height: 48rpx;color: #fff;margin: 0 auto;
  619. text-align: center;@include single-line-ellipsis;font-size: 18rpx;box-sizing: border-box;padding: 0 4rpx;}
  620. .brand-lock,.brand-finish-icon{
  621. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  622. position: absolute;transform: translateX(-50%);top: -102rpx;right: 40rpx;}
  623. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  624. .brand-lock::before{
  625. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  626. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  627. }
  628. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  629. .brand-arrow{
  630. width: 58rpx;height: 58rpx;left: 38%;top: -85%;position: absolute;
  631. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/brand-arrow.gif");
  632. }
  633. // brand-item
  634. .brand-item{
  635. width: 225rpx;height: 48rpx;position: absolute;
  636. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/cjdc/dao-item-disabled.png");
  637. }
  638. .brand-active{background-image: url("@/static/images/study/cjdc/dao-item-active.png");}
  639. .brand-item:nth-child(1){top:650rpx;right:42rpx;}
  640. .brand-item:nth-child(2){top:780rpx;left:86rpx;}
  641. .brand-item:nth-child(3){top:960rpx;right:70rpx;}
  642. .brand-item:nth-child(4){top:1100rpx;left:68rpx;}
  643. .brand-item.ceshi-brand-item{
  644. width: 281rpx;height: 281rpx;top:1100rpx;
  645. left: unset;right:45rpx;@include ezy-no-repeat-cover;
  646. background-image: url("@/static/images/study/cjdc/test-item-disabled.png");
  647. .brand-content{display: none;}
  648. .brand-lock,.brand-finish-icon{top: 170rpx;right: 70rpx;}
  649. .brand-arrow{left: 38%;top: 14%;}
  650. }
  651. .brand-item.ceshi-brand-item.brand-active{background-image: url("@/static/images/study/cjdc/test-item-active.png");}
  652. @media (max-height: 800px) {
  653. min-height:1400rpx;
  654. .ezy-study-wrap{top:calc(var(--status-bar-height) + -2%);}
  655. .brand-item.ceshi-brand-item{
  656. width: 263rpx;height: 263rpx;top:1080rpx;
  657. .brand-lock,.brand-finish-icon{top: 160rpx;right: 65rpx;}
  658. }
  659. }
  660. @media (max-height: 750px) {
  661. //0.9
  662. .ezy-study-wrap{width:600rpx;height:924rpx;top:var(--status-bar-height);left:50%;transform: translateX(-50%);}
  663. .animal-img{right: 35rpx;top: 190rpx;}
  664. .study-name-img{width: 80rpx;height: 80rpx;position: absolute;top: 85rpx;left: 234rpx;}
  665. .study-book-img{width: 92rpx;height: 119rpx;top: 100rpx;right:142rpx;}
  666. .chapter-title-box,.chapter-big-title-box,.chapter-last-title-box{
  667. top:230rpx;
  668. }
  669. .chapter-title-box{right:120rpx;}
  670. .chapter-big-title-box,.chapter-last-title-box{right:90rpx;}
  671. .brand-lock,.brand-finish-icon{width: 55rpx;height: 55rpx;top: -95rpx;right: 54rpx;}
  672. .brand-lock::before{width: 30rpx;height: 36rpx;margin-top: 6rpx;}
  673. .brand-arrow{width: 46rpx;height: 46rpx;left: 41%;top: -85%;}
  674. .brand-item:nth-child(1){top:530rpx;right:13rpx;}
  675. .brand-item:nth-child(2){top:630rpx;left:46rpx;}
  676. .brand-item:nth-child(3){top:775rpx;right:35rpx;}
  677. .brand-item:nth-child(4){top:890rpx;left:30rpx;}
  678. .brand-item.ceshi-brand-item{width: 240rpx;height: 240rpx;top:880rpx;right:40rpx;}
  679. }
  680. @media (max-height: 700px) {
  681. //0.88
  682. min-height:1300rpx;
  683. .ezy-study-wrap{top:calc(var(--status-bar-height) + -2%);}
  684. .brand-item.ceshi-brand-item{
  685. width: 220rpx;height: 220rpx;top:880rpx;right:40rpx;
  686. .brand-lock,.brand-finish-icon{top: 145rpx;right: 58rpx;}
  687. }
  688. }
  689. @media (max-height: 650px){
  690. .ezy-study-wrap{top:calc(var(--status-bar-height) + -3%);}
  691. .brand-item.ceshi-brand-item{
  692. width: 200rpx;height: 200rpx;top:860rpx;right:40rpx;
  693. .brand-lock,.brand-finish-icon{top: 130rpx;right: 45rpx;}
  694. }
  695. }
  696. }
  697. .ezy-cjdc-study-page::before,.ezy-cjdc-study-page::after{top: 52%;}
  698. // 岛弹窗
  699. .dao-popup-box{
  700. width: 100%;height: 865rpx;
  701. @include ezy-no-repeat-cover;
  702. background-image: url("@/static/images/study/dao-box-bj.png");
  703. box-sizing: border-box;padding: 64rpx 36rpx 0;
  704. .dao-popup-img{width: 481rpx;height: 615rpx;@include ezy-no-repeat-cover;margin: 0 auto;}
  705. .dao-popup-btn{
  706. width: 644rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-top: 32rpx;
  707. background-image: url("@/static/images/study/dao-box-btn.png");
  708. }
  709. }
  710. //目录页
  711. .ezy-catalogue-dialog{
  712. width: 663rpx;height: 1038rpx;padding: 180rpx 52rpx 60rpx 40rpx;box-sizing: border-box;position: relative;
  713. @include ezy-no-repeat-cover;display: flex;position: relative;
  714. .catalogue-nianji-title{height: 50rpx;line-height: 50rpx;display: inline-block;font-size: 36rpx;color: #fff;
  715. background-color: #068aea;padding: 0 20px;border-radius: 0 25rpx 25rpx 0;margin-right: auto;}
  716. .catalogue-mt{margin-top: 20rpx;}
  717. .uni-scroll-view{position: unset;}
  718. .catalogue-close-btn{
  719. width: 54rpx;height: 54rpx;
  720. background-image: url("@/static/images/catalog/catalog-close-btn.png");@include ezy-no-repeat-cover;
  721. position: absolute;top: 40rpx;right: 36rpx;
  722. }
  723. .ezy-catalogue-collapse{
  724. background-color: transparent!important;flex: 1;overflow-y: auto;
  725. .collapse-item-box{
  726. padding: 24rpx 0 24rpx 12rpx!important ;border-bottom: 2rpx dashed #9dc0f6;
  727. .uni-collapse-item__wrap{background-color: transparent!important;}
  728. .collapse-title{display: flex;font-size: 28rpx;font-weight: 700;color: #0a549d;position: relative;}
  729. .collapse-num-box{
  730. width: 46rpx;height: 46rpx;line-height: 46rpx;font-size: 30rpx;font-weight: 700;color: #fff;text-align: center;
  731. background-image: url("@/static/images/catalog/num-bj.png");@include ezy-no-repeat-cover;
  732. -webkit-text-stroke: 1rpx #0d64d7;text-stroke: 1rpx #0d64d7;margin-right: 12rpx;flex-shrink: 0;
  733. }
  734. .collapse-name{@include single-line-ellipsis;width: 400rpx;line-height: 1.6;}
  735. .uni-collapse-item__title-arrow{margin-right: 60rpx;transform: unset;}
  736. .uni-icons{
  737. width: 37rpx;height: 37rpx;
  738. background-image: url("@/static/images/catalog/jt-btn.png");@include ezy-no-repeat-cover;
  739. &::before{display: none;}
  740. }
  741. .collapse-lock{
  742. width: 35rpx;height: 41rpx;position: absolute;right: -90rpx;top: 0rpx;
  743. background-image: url("@/static/images/catalog/catalog-lock.png");@include ezy-no-repeat-cover;
  744. }
  745. }
  746. .collapse-item-box.collapse-active{
  747. border: 0;
  748. .collapse-title{color: #01b106;}
  749. .collapse-num-box{
  750. background-image: url("@/static/images/catalog/num-active-bj.png");
  751. -webkit-text-stroke: 1rpx #009931;text-stroke: 1rpx #009931;
  752. }
  753. .uni-icons{
  754. background-image: url("@/static/images/catalog/jt-active-btn.png");transform:unset;
  755. }
  756. }
  757. .collapse-content-box{border-top: 2rpx dashed #9dc0f6;margin: 20rpx 0 100rpx;}
  758. .collapse-content-item{
  759. font-size: 28rpx;color:#343434;
  760. border-bottom: 1px dashed #999;
  761. padding: 20rpx 10rpx;margin: 0 10rpx;
  762. }
  763. // .collapse-item-box:last-child{border: 0;}
  764. }
  765. .ezy-catalogue-collapse-vip .collapse-item-box .uni-collapse-item__title-arrow{margin-right: 10rpx;}
  766. }
  767. // 考试页
  768. .ezy-exam-page{
  769. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  770. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  771. @include ezy-no-repeat-cover(top);
  772. .ezy-exam-swiper{
  773. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  774. uni-swiper-item{overflow: auto;}
  775. }
  776. .exam-submit-btn{
  777. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  778. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  779. }
  780. .tip-mask-box{
  781. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  782. }
  783. .exam-tip-box{
  784. width: 750rpx;height: 355.77rpx;@include ezy-no-repeat-cover;
  785. background-image: url("@/static/images/exam/exam-tip-bj.png");
  786. color: #036f6f;font-size: 32rpx;z-index: 3;padding: 180rpx 0 0 100rpx;
  787. position: absolute;left: 0;right: 0;bottom: var(--window-bottom);
  788. }
  789. }
  790. // 成绩页
  791. .ezy-result-page{
  792. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  793. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  794. @include ezy-no-repeat-cover(top);
  795. .result-exam-swiper{
  796. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  797. uni-swiper-item{overflow: auto;}
  798. .flex-center{
  799. height: 100%;
  800. .body{height: 100%;display: flex;flex-direction: column;}
  801. // 试题部分滚动 解析部分固定
  802. // .ezy-danxuan-box{flex: 1;overflow-y: auto;}
  803. }
  804. }
  805. .answer-content-box{
  806. margin-top: 24rpx;
  807. .answer-dtjx-row{display: flex;justify-content: space-between;}
  808. .answer-title{width: 150rpx;height: 62rpx;flex-shrink: 0;margin-left: 10rpx;
  809. background-image: url("@/static/images/exam/answer-title.png");@include ezy-no-repeat-cover;
  810. }
  811. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #15ab2e;
  812. border-radius: 4px;box-sizing: border-box;padding: 16rpx;margin: 20rpx 0 20rpx 10rpx;min-height: 80rpx;}
  813. .tiankong-answer-row{word-break: break-all;margin-bottom: 10rpx;}
  814. .tiankong-answer-row:last-child{margin-bottom: 0;}
  815. .answer-btn-box{display: flex;height: 135rpx;margin: 20rpx 0 20rpx 10rpx;}
  816. .answer-item-left,.answer-item-right{
  817. width: 100%;flex: 1;align-items: center;justify-content: center;
  818. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  819. .answer-item-title{font-size: 32rpx;color: #333;margin-bottom: 4rpx;}
  820. .answer-item-error{font-size: 32rpx;color: #ef1417;min-height: 36rpx;}
  821. .answer-item-correct{font-size: 32rpx;color: #15ab2e;min-height: 36rpx;}
  822. }
  823. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  824. .answer-item-right{border-radius: 0 4px 4px 0;}
  825. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  826. .answer-btn{width: 227rpx;height:72rpx;@include ezy-no-repeat-cover;margin-right: 20rpx;
  827. background-image:url("@/static/images/exam/answer-btn.png");flex-shrink: 0;
  828. }
  829. }
  830. }
  831. // 得分页
  832. .exam-score-dialog{
  833. width: 750rpx;height: 962rpx;margin-bottom: 30%;position: relative;
  834. @include ezy-no-repeat-cover;
  835. .score-content-box{
  836. position: absolute;top: 565rpx;left: 200rpx;word-spacing: 18rpx;
  837. font-size: 38rpx;font-weight: 800; color: #000;@include ezy-no-repeat-cover;
  838. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin: 0 6rpx;}
  839. .right-error-row{display: flex;align-items: center;}
  840. .right-icon{background-image: url("@/static/images/exam/score-right-icon.png");}
  841. .error-icon{background-image: url("@/static/images/exam/score-error-icon.png");margin-left:56rpx;}
  842. .text-red{color: #ff6500;margin: 0 8rpx;}
  843. .text-score{
  844. width: 160rpx;font-weight: 800;font-size: 80rpx;color: #ff6701;
  845. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  846. text-align: center; animation: fadeIn 3s linear forwards;}
  847. @keyframes fadeIn {
  848. 0% { opacity: 0;}
  849. 60% { opacity: 0;}
  850. 100% { opacity: 1;}
  851. /* from { opacity: 0;}
  852. to {opacity: 1;} */
  853. }
  854. }
  855. .ckst-btn,.jxxx-btn{width: 115rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  856. .score-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  857. .ckst-btn{background-image: url("@/static/images/exam/ckst-btn.png");}
  858. .jxxx-btn{background-image: url("@/static/images/exam/jxxx-btn.png");}
  859. }
  860. // 高兴鹅
  861. .score-happy-study-dialog{
  862. background-image: url("@/static/images/exam/score-right-bj.gif");
  863. .score-btn-box{bottom: -80rpx;}
  864. .text-score{margin: 120rpx 0 0 160rpx;}
  865. }
  866. // 沮丧鹅
  867. .score-unhappy-study-dialog{
  868. background-image: url("@/static/images/exam/score-error-bj.gif");
  869. .score-btn-box{bottom: -60rpx;}
  870. .text-score{margin: 108rpx 0 0 160rpx;}
  871. }
  872. // 完成-高兴鹅
  873. .score-finish-happy-study-dialog{
  874. background-image: url("@/static/images/exam/score-right-finish-bj.gif");
  875. .score-btn-box{bottom: 120rpx;}
  876. }
  877. // 完成-沮丧鹅
  878. .score-finish-unhappy-study-dialog{
  879. background-image: url("@/static/images/exam/score-error-finish-bj.gif");
  880. .score-btn-box{bottom: 120rpx;}
  881. }
  882. // 答案解析
  883. .ezy-dajx-page{
  884. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  885. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  886. @include ezy-no-repeat-cover(top);
  887. .shiti-frame-box{overflow-y: auto;}
  888. .dajx-content-box{
  889. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  890. .slfx-title,.spjj-title{
  891. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  892. }
  893. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  894. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  895. .slfx-content{
  896. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  897. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  898. display: block;@include ezy-rich-text;
  899. }
  900. }
  901. }
  902. // 课程页面
  903. .ezy-course-page{
  904. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  905. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  906. @include ezy-no-repeat-cover(top);
  907. .course-video-box{width: 730rpx;height: 440rpx;padding: 32rpx 32rpx;margin: 0 auto 6rpx;}
  908. .course-content-border{
  909. display: flex;flex: 1;position: relative;margin: 0 22rpx;border-radius: 10rpx 10rpx 0 0;
  910. background-color: rgba(255, 255, 255, 0.3);overflow-y: auto;
  911. }
  912. .course-content-box{
  913. flex: 1;margin: 20rpx 20rpx 0;background-color: rgba(255, 255, 255, 0.5);;overflow-y: auto;
  914. box-sizing: border-box;padding: 42rpx 24rpx;
  915. }
  916. .course-content-item{
  917. width: 100%;background-color: rgba(255, 255, 255, 0.8);border-radius: 8rpx;color: #666;display: block;
  918. box-sizing: border-box;padding: 20rpx;margin-bottom: 30rpx;font-size: 32rpx;@include ezy-rich-text;
  919. }
  920. .title-play-box{
  921. width: 100%;height: 85rpx;border-radius: 8rpx;box-sizing: border-box;padding: 0 10rpx;
  922. display: flex;justify-content: space-between;align-items: center;margin:0 0 12rpx;
  923. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-title-bj.png");
  924. }
  925. .course-icon{
  926. width: 60rpx;height: 75rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  927. }
  928. .course-title{color: #fff;font-size: 36rpx;margin-right: auto;margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  929. .course-play-btn{
  930. width: 162rpx;height: 54rpx;line-height: 50rpx;
  931. box-sizing: border-box;font-size: 24rpx;padding-left: 40rpx;
  932. flex-shrink: 0;
  933. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-play.png");}
  934. }
  935. // 课程得分页面
  936. .course-score-dialog{
  937. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  938. background-image: url("@/static/images/course/video-score-bj.png");
  939. margin-bottom: 20%;position: relative;
  940. .text-score{
  941. width: 220rpx;font-size: 100rpx;font-weight: 800;color: #ff6701;
  942. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  943. margin: 110rpx 0 0 160rpx;text-align: right;position: absolute;
  944. bottom: 230rpx;left: 0;
  945. }
  946. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  947. .course-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  948. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  949. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  950. @media (max-height: 600px) {margin-bottom: 40%;}
  951. }
  952. // 课程完成
  953. .course-finish-dialog{
  954. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  955. background-image: url("@/static/images/course/video-finish-bj.png");
  956. margin-bottom: 20%;position: relative;
  957. .text-score{display: none;}
  958. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  959. .course-btn-box{position: absolute;bottom: 200rpx;display: flex;left: 50%;transform: translateX(-50%);}
  960. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  961. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  962. @media (max-height: 600px) {margin-bottom: 40%;}
  963. }
  964. // 我的页面
  965. .ezy-my-page{
  966. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;overflow: auto;
  967. padding-top:var(--status-bar-height);@include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  968. .my-head-box{
  969. width: 100%;padding: 80rpx 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  970. .head-img-box{width: 154rpx;height: 154rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;}
  971. .head-content-box{font-size: 30rpx;}
  972. }
  973. // hyqy
  974. .my-hyqy-swiper{
  975. height: 385rpx;
  976. .uni-swiper-dots-horizontal{bottom: 24rpx;}
  977. }
  978. .hyqy-box{
  979. width: 731rpx;height: 385rpx;margin: 0 auto;position: relative;
  980. @include ezy-no-repeat-cover;
  981. .hyqy-box-img{width: 731rpx;height: 385rpx;margin: 0 auto;display: block;border-radius: 10rpx;}
  982. }
  983. // list
  984. .my-list-box{
  985. width:700rpx;margin: 36rpx auto 240rpx;
  986. .list-row{border-bottom: 2rpx solid #5bcdfb;color: #fff;box-sizing: border-box;padding: 30rpx 20rpx;
  987. display: flex;align-items: center;position: relative;}
  988. .list-row::after{
  989. content: '';width: 19rpx;height: 33rpx;@include ezy-no-repeat-cover;
  990. background-image: url("@/static/images/my/list-jt.png");
  991. position: absolute;right: 20rpx;
  992. }
  993. .no-jt::after,.no-jt::after{display: none;}
  994. .list-icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  995. .tel-icon{background-image: url("@/static/images/my/list-icon1.png");}
  996. .error-icon{background-image: url("@/static/images/my/list-icon2.png");}
  997. .order-icon{background-image: url("@/static/images/my/list-icon3.png");}
  998. .login-out-icon{background-image: url("@/static/images/my/list-icon4.png");}
  999. .about-icon{background-image: url("@/static/images/my/list-icon5.png");}
  1000. .zhuxiao-icon{background-image: url("@/static/images/my/list-icon6.png");}
  1001. .duihuanma-icon{background-image: url("@/static/images/my/list-icon8.png");}
  1002. .yszc-icon{background-image: url("@/static/images/my/list-icon7.png");}
  1003. .cpsc-icon{background-image: url("@/static/images/my/list-icon9.png");}
  1004. .xxjl-icon{background-image: url("@/static/images/my/list-icon10.png");}
  1005. }
  1006. @media (max-height: 736px) {
  1007. .my-head-box{padding: 46rpx 24rpx 16rpx;}
  1008. .my-list-box{
  1009. margin: 6rpx auto 260rpx;
  1010. .list-row{padding: 20rpx;}
  1011. }
  1012. }
  1013. @media (max-height: 600px) {
  1014. .my-head-box{padding: 42rpx 24rpx 24rpx;}
  1015. .my-list-box{
  1016. margin: 12rpx auto 240rpx;
  1017. .list-row{padding: 16rpx;font-size: 30rpx;}
  1018. .list-row::after{right: 16rpx;}
  1019. }
  1020. }
  1021. }
  1022. .ezy-my-page::before{
  1023. content: '';width: 279rpx;height: 250rpx;display:block;
  1024. position: absolute;top:calc(20rpx - var(--status-bar-height));right:20rpx;
  1025. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/my-page-img.png");
  1026. }
  1027. // 错题
  1028. .ezy-cuoti-page{
  1029. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1030. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1031. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1032. .uni-list{background-color: transparent!important;}
  1033. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1034. .cuoti-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  1035. .cuoti-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1036. // item
  1037. .list-item-box{
  1038. width: 94%;background-color: transparent!important;
  1039. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  1040. .uni-list-item__header{display: none;}
  1041. .uni-list-item__container{flex-direction: column;position: relative;padding:36rpx 0;overflow: unset;}
  1042. .item-date-row{
  1043. display: flex;align-items: center;color:#28bdf2;margin-bottom: 16rpx;
  1044. .data-icon{
  1045. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  1046. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  1047. }
  1048. .item-cuoti-row{
  1049. display: flex;flex-direction: row;color:#444;
  1050. .icon-num-box{display: flex;}
  1051. .cuoti-content{display: flex;align-items: center;}
  1052. .cuoti-icon{
  1053. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  1054. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-icon.png");
  1055. }
  1056. .cuoti-text{color: #ff0101;margin-right: 6rpx;}
  1057. }
  1058. .cuoti-btn{
  1059. width: 160rpx;height: 40rpx;line-height: 38rpx;box-sizing: border-box;padding-left: 24rpx;
  1060. background-color: #068aea;font-size: 24rpx;color: #fff;border-radius: 20rpx 0 0 20rpx;
  1061. position: absolute;right: -3%;top: 114rpx;
  1062. }
  1063. .cuoti-btn::after{
  1064. content: '';width: 14rpx;height: 24rpx;display: block;position: absolute;top: 8rpx;right: 16rpx;
  1065. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/list-jt.png");
  1066. }
  1067. }
  1068. }
  1069. // 关于我们
  1070. .ezy-about-page{
  1071. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1072. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1073. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1074. .about-body-border{
  1075. flex: 1;width: 92%;height: auto;background-color: rgba(255, 255, 255, 0.6);border-radius: 10px;
  1076. margin: 12rpx auto 200rpx;position: relative;display: flex;flex-direction: column;
  1077. }
  1078. .about-body-box{
  1079. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  1080. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  1081. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  1082. }
  1083. .content-top-box{
  1084. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  1085. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #fff;
  1086. .about-icon-box{
  1087. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  1088. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  1089. }
  1090. .about-name{
  1091. font-size: 30rpx;margin: 20rpx 0 42rpx;
  1092. }
  1093. .about-text{margin: 16rpx 0;}
  1094. }
  1095. .content-box{
  1096. font-size: 30rpx;margin-top: 50rpx;line-height: 2;color: #333;
  1097. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  1098. }
  1099. @media (max-height: 600px) {
  1100. .about-body-border{margin: 12rpx auto 150rpx;}
  1101. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  1102. .content-top-box{padding-bottom: 24rpx;}
  1103. .content-box{margin-top: 20rpx;}
  1104. }
  1105. }
  1106. // 绑定手机号弹窗
  1107. .my-tel-dialog{
  1108. background-color: rgba(255, 255, 255, 0.6);
  1109. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  1110. justify-content: center;align-items: center;
  1111. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  1112. background-image: url("@/static/images/common/close-icon.png");}
  1113. .my-tel-content{
  1114. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 62rpx;
  1115. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  1116. }
  1117. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 24rpx;}
  1118. .tel-row{border-bottom: 1px dashed #70cbf4;}
  1119. .yzm-row{padding-top: 32rpx;}
  1120. /***** 输入手机号页面*****/
  1121. .my-input-box{
  1122. width:500rpx;height: 88rpx;box-sizing: border-box;
  1123. display: flex;align-items: center;
  1124. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  1125. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  1126. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  1127. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  1128. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  1129. }
  1130. .get-yzm-btn{color: #3b73bf;margin:24rpx 0 36rpx;font-size: 25rpx;}
  1131. .get-yzm-disabled{color: #666;}
  1132. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  1133. .my-bind-btn{
  1134. width:500rpx;height: 88rpx;text-align: center;line-height: 88rpx;color: #fff;margin-top: 24rpx;
  1135. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  1136. }
  1137. }
  1138. // 兑换码
  1139. .duihuan-dialog{
  1140. .duihuan-input{
  1141. width:465rpx;height: 82rpx;box-sizing: border-box;padding: 0 18rpx;
  1142. display: flex;align-items: center;margin: 0 auto;
  1143. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  1144. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  1145. }
  1146. }
  1147. // SVIP
  1148. .ezy-svip-page{
  1149. width: 100%;height: 100vh;min-height:1688rpx;background-color: #23befb;position: relative;
  1150. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1151. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1152. .svip-login1,.svip-login2{width: 673rpx;height: 269rpx;margin: 24rpx auto 0;@include ezy-no-repeat-cover;}
  1153. .svip-login1{background-image: url("@/static/images/pay/svip-logo1.png");}
  1154. .svip-login2{background-image: url("@/static/images/pay/svip-logo2.png");}
  1155. .svip-list-box{
  1156. margin: 24rpx auto;
  1157. .list-item-box{display: flex;align-items: center;color: #fff;margin-bottom: 28rpx;}
  1158. .list-icon{
  1159. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1160. }
  1161. .list-title{
  1162. font-size: 28rpx;font-weight: 600;margin-bottom: 10rpx;
  1163. }
  1164. .list-content{font-size: 25rpx;color: rgba(255, 255, 255, 0.8);}
  1165. }
  1166. .open-svip-box{
  1167. width: 702rpx;height:413rpx;margin: 0 auto;box-sizing: border-box;padding: 0 16rpx;
  1168. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-block-bj.png");
  1169. .svip-price-box{
  1170. display: flex;justify-content: space-between;border-bottom: 2rpx solid #efd774;font-size: 32rpx;
  1171. margin-top: 120rpx;box-sizing: border-box;padding:0 24rpx 24rpx;color: #87664d;align-items: center;
  1172. .original-price{text-decoration: line-through;}
  1173. .discount-price{color: #ff0101;font-size: 40rpx;}
  1174. }
  1175. .pay-type-box{
  1176. display: flex;align-items: center;padding:20rpx 24rpx;box-sizing: border-box;
  1177. .type-radio-title{color: #87664d;margin-right: 32rpx;flex-shrink: 0;font-size: 32rpx;}
  1178. .type-radio-content{display: flex;flex-direction: row;align-items: center;
  1179. justify-content: space-between;flex: 1;font-size: 32rpx;}
  1180. }
  1181. .type-radio-box{
  1182. display: flex;align-items: center;color: #87664d;
  1183. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  1184. .uni-radio-input{
  1185. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1186. background-image: url("@/static/images/pay/svip-radio.png");
  1187. background-color:transparent;border:0; pointer-events: none;
  1188. svg{display: none;}
  1189. }
  1190. .radio-checked .uni-radio-input{
  1191. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;
  1192. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1193. }
  1194. }
  1195. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1196. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1197. .open-svip-btn,.open-svip-btn-hui{
  1198. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align: center;color: #fff;margin: 10rpx auto;font-size: 36rpx;
  1199. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1200. }
  1201. .open-svip-btn-hui{
  1202. background-image: url("@/static/images/pay/svip-btn-bj-hui.png");
  1203. color: #BA9D7F;
  1204. }
  1205. }
  1206. .hyfw-tip-box{
  1207. font-size: 25rpx;color: #fff;text-align: center;margin-top: 5rpx;
  1208. text{color: #e3f524;}
  1209. }
  1210. @media (max-height: 800px) {
  1211. min-height: 1600rpx;
  1212. .svip-login1,.svip-login2{width: 538rpx;height: 215rpx;margin: 0 auto;}
  1213. .svip-list-box{
  1214. margin: 0 auto;
  1215. .list-item-box{margin-bottom: 20rpx;}
  1216. }
  1217. .open-svip-box{
  1218. width: 673rpx;height:396rpx;
  1219. .open-svip-btn{margin: 0 auto;}
  1220. }
  1221. }
  1222. @media (max-height: 736px) {
  1223. min-height: 1472rpx;
  1224. .svip-login1,.svip-login2{width: 500rpx;height: 200rpx;margin: 0 auto;}
  1225. .svip-list-box{
  1226. .list-item-box{margin-bottom: 16rpx;}
  1227. .list-icon{
  1228. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1229. }
  1230. .list-title{font-size: 26rpx;}
  1231. .list-content{font-size: 22rpx;}
  1232. }
  1233. .open-svip-box{
  1234. width: 625rpx;height:349rpx;
  1235. .svip-price-box{
  1236. font-size: 30rpx;margin-top: 90rpx;padding:0 24rpx 24rpx;
  1237. .discount-price{color: #ff0101;font-size: 36rpx;}
  1238. }
  1239. .pay-type-box{
  1240. padding:10rpx 12rpx;
  1241. .type-radio-title{margin-right: 24rpx;font-size: 30rpx;}
  1242. .type-radio-content{font-size: 30rpx;}
  1243. }
  1244. .open-svip-btn{width: 300rpx;height: 80rpx;line-height: 80rpx;margin: 6rpx auto;font-size: 32rpx;}
  1245. }
  1246. }
  1247. }
  1248. // 订单
  1249. .ezy-order-page{
  1250. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1251. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1252. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1253. .uni-list{background-color: transparent!important;}
  1254. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1255. .uni-list-item__header{display: none;}
  1256. .uni-list-item__container{
  1257. flex-direction: column!important;position: relative;
  1258. padding:16rpx 20rpx !important;overflow: unset;}
  1259. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1260. .order-list-item{
  1261. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1262. margin: 0 3% 12rpx;border-radius: 8rpx;
  1263. .order-item-head{
  1264. display: flex;justify-content: space-between;align-items: center;font-size: 24rpx;color: #333;
  1265. .order-name-box{
  1266. display: flex;align-items: center;
  1267. icon{
  1268. width: 58rpx;height: 58rpx;margin-right: 10rpx;
  1269. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-icon.png");
  1270. }
  1271. }
  1272. .pay-status{color:#fdae36;margin-left: 36rpx;}
  1273. }
  1274. .order-content-box{
  1275. display: flex;margin-top: 10rpx;box-sizing: border-box;margin-bottom: 24rpx;
  1276. .content-img{width: 230rpx;height: 230rpx;margin-right: 20rpx;
  1277. @include ezy-no-repeat-cover;flex-shrink: 0;border-radius: 8rpx;}
  1278. .content-body-box{display: flex;flex-direction: column;flex: 1;}
  1279. .content-name{font-size: 36rpx;color: #000;margin-bottom: 8rpx;@include single-line-ellipsis;max-width: 320rpx;}
  1280. .content-text{font-size: 24rpx;height: 110rpx;
  1281. color: #666;@include multi-line-ellipsis(3);line-height: 1.5;}
  1282. .content-yuanjia{font-size: 42rpx;color: #ff0101;margin-top: auto;margin-left:auto;}
  1283. .content-money-box{
  1284. display: flex;justify-content: space-between;align-items: center;margin-top: 8rpx;
  1285. .bottom-data{font-size: 24rpx;color: #999;}
  1286. .bottom-money{color: #333;}
  1287. .order-kcb-btn{
  1288. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1289. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1290. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1291. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1292. }
  1293. }
  1294. }
  1295. .content-heji{text-align: right;margin: 0 0 24rpx;}
  1296. .order-bottom-box{
  1297. box-sizing: border-box;padding: 16rpx 0 10rpx;border-top: 1px dashed #fff;
  1298. display: flex;justify-content: space-between;
  1299. .pay-status-box{
  1300. width: 200rpx;display: flex;align-items: center;line-height: 1;
  1301. padding:2rpx 0 2rpx 16rpx;color: #666;margin-left: 4rpx;
  1302. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 8rpx;}
  1303. .wx-icon{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1304. .zfb-icon{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1305. .apple-icon{background-image: url("@/static/images/common/apple-icon.png");}
  1306. }
  1307. .pay-status-box::after{
  1308. content:'';width: 24rpx;height: 24rpx;margin-left: 4rpx;
  1309. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/qiehuan-icon.svg");
  1310. }
  1311. .apple-status-box::after{display: none;}
  1312. .pay-btn{
  1313. width: 180rpx;height: 70rpx;font-size: 28rpx;line-height: 70rpx;text-align: center;color: #fff;
  1314. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/mall-btn.png");
  1315. }
  1316. }
  1317. }
  1318. }
  1319. // 订单支付
  1320. .ezy-order-pay-page{
  1321. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1322. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1323. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1324. .order-pay-border-box{
  1325. width: 740rpx;height: 1144rpx;margin: 0 auto;box-sizing: border-box;padding: 30rpx;
  1326. @include ezy-no-repeat-cover(top);background-image: url("@/static/images/pay/order-pay-bj.png");
  1327. }
  1328. .order-pay-img-box{
  1329. display: flex;background-color: rgba(255, 255, 255, 0.6);
  1330. box-sizing: border-box;padding: 32rpx 24rpx;margin-bottom: 6rpx;
  1331. icon{width: 212rpx;height: 202rpx;margin-right: 20rpx;@include ezy-no-repeat-cover;flex-shrink: 0;}
  1332. .order-pay-img1{background-image: url("@/static/images/pay/svip1.png");}
  1333. .order-pay-img2{background-image: url("@/static/images/pay/svip2.png");}
  1334. .img-content-box{flex: 1;position: relative;}
  1335. .content-name{font-size: 40rpx;color: #333;margin-bottom: 12rpx;}
  1336. .content-tag{
  1337. width: 150rpx;height: 40rpx;line-height: 40rpx;display: inline-block;
  1338. font-size: 24rpx;color: #01c6fe;background-color: rgba(255, 255, 255, 0.6);
  1339. border-radius: 4rpx;text-align: center;
  1340. }
  1341. .content-tag + .content-tag{margin-left: 16rpx;}
  1342. .content-yuanjia{font-size: 42rpx;color: #ff0101;position: absolute;right: 0;bottom: 0;}
  1343. }
  1344. .price-box{
  1345. margin-bottom: 6rpx;background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;
  1346. .price-row{display: flex;justify-content: space-between;font-size: 30rpx;color: #333;box-sizing: border-box;padding-left: 10rpx;}
  1347. .price-line-row{border-bottom: 1rpx dashed #fff;padding: 24rpx 0 36rpx 10rpx;margin-bottom: 24rpx;}
  1348. .price-red{color: #ff0101;}
  1349. }
  1350. .pay-type-box{
  1351. background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;border-radius: 0 0 10rpx 10rpx;
  1352. .pay-type-name{font-size: 36rpx;color: #333;margin-bottom: 12rpx;}
  1353. .type-radio-box{display: flex;flex-direction: column;}
  1354. .type-radio-row{
  1355. display: flex;justify-content: space-between;flex: 1;align-items: center;color: #87664d;
  1356. padding: 24rpx 0;box-sizing: border-box;
  1357. icon{width: 58rpx;height: 58rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;flex-shrink: 0;}
  1358. .uni-radio-input{
  1359. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1360. background-image: url("@/static/images/pay/svip-radio.png");
  1361. background-color:transparent;border:0; pointer-events: none;
  1362. svg{display: none;}
  1363. }
  1364. .radio-checked .uni-radio-input{
  1365. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;flex-shrink: 0;
  1366. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1367. }
  1368. .radio-content-box{margin-right: auto;font-size: 0;}
  1369. .radio-title{font-size: 30rpx;color: #333;}
  1370. .radio-content{font-size: 24rpx;color: #666;}
  1371. }
  1372. .type-radio-row +.type-radio-row{border-top:1px dashed #fff;padding-bottom: 10rpx;}
  1373. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1374. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1375. }
  1376. .pay-sum-box{
  1377. display: flex;justify-content: space-between;align-items: center;font-size: 36rpx;color: #333;margin-top: 42rpx;
  1378. icon{width: 35rpx;height: 35rpx;margin: 0 12rpx;
  1379. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-date.png");}
  1380. .sum-red{color: #ff0101;font-weight: bold;margin-left: 6rpx;}
  1381. .sum-btn{
  1382. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align:center;color: #fff;font-size: 32rpx;
  1383. display: flex;justify-content: center;align-items: center;
  1384. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1385. }
  1386. }
  1387. @media (max-height: 700px) {
  1388. .order-pay-border-box{padding: 20rpx;}
  1389. .order-pay-img-box{padding:24rpx;}
  1390. .price-box{padding:24rpx;}
  1391. .pay-type-box{
  1392. padding:24rpx;
  1393. .pay-type-name{margin-bottom: 0;}
  1394. .type-radio-row{padding: 16rpx 0;}
  1395. }
  1396. .pay-sum-box{margin-top: 32rpx;}
  1397. }
  1398. @media (max-height: 600px) {
  1399. .order-pay-border-box{padding: 16rpx;}
  1400. .order-pay-img-box{padding:16rpx;}
  1401. .price-box{padding:16rpx;}
  1402. .pay-type-box{
  1403. padding:16rpx;
  1404. .pay-type-name{margin-bottom: 0;}
  1405. .type-radio-row{padding: 12rpx 0;}
  1406. }
  1407. .pay-sum-box{margin-top: 24rpx;}
  1408. }
  1409. }
  1410. // 游戏
  1411. .ezy-game-page{
  1412. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1413. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1414. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/game/game-bj.png");
  1415. .game-jf-box{position: absolute;right: 24rpx;top: var(--status-bar-height);}
  1416. // goose
  1417. .game-goose-box{
  1418. position: absolute;bottom: 260rpx;right: 25rpx;color: #0d5f84;
  1419. .game-progress-text{position: absolute;left: 50%;transform: translateX(-50%);font-size: 18rpx;}
  1420. .game-progress-box{
  1421. width: 138rpx;height: 25rpx;position: absolute;left: 50%;transform: translateX(-50%);
  1422. .u-line-progress__background{
  1423. width: 138rpx;height: 25rpx!important;
  1424. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/jf-bj.png");
  1425. }
  1426. .u-line-progress__line{height: 25rpx!important;}
  1427. }
  1428. .goose-img-box{width: 308rpx;height: 481rpx;@include ezy-no-repeat-cover;}
  1429. }
  1430. .game-goose-box0{
  1431. .game-progress-box{bottom: 300rpx;}
  1432. .game-progress-text{bottom: 302rpx;}
  1433. }
  1434. .game-goose-box1{
  1435. .game-progress-box{bottom: 330rpx;}
  1436. .game-progress-text{bottom: 333rpx;}
  1437. }
  1438. .game-goose-box2{
  1439. .game-progress-box{bottom: 404rpx;}
  1440. .game-progress-text{bottom: 407rpx;}
  1441. }
  1442. .game-goose-box3{
  1443. .game-progress-box{bottom: 460rpx;}
  1444. .game-progress-text{bottom: 463rpx;}
  1445. }
  1446. // food
  1447. .food-img-box{width: 80rpx;height: 75rpx;position: absolute;}
  1448. .food-img30{bottom: 368rpx;left: 274rpx;}
  1449. .food-img100{bottom: 360rpx;left: 270rpx;}
  1450. .food-img300{bottom: 360rpx;left: 272rpx;}
  1451. //btn
  1452. .food-btn-box{
  1453. width: 106rpx;height: 121rpx;position: absolute;top: calc(260rpx + var(--status-bar-height));right: 50rpx;
  1454. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-common-img.png");
  1455. }
  1456. .yxsm-btn{
  1457. width: 125rpx;height: 125rpx;position: absolute;top: calc(100rpx + var(--status-bar-height));right: 38rpx;
  1458. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/yxsm-btn-img.png");
  1459. }
  1460. // game-popup-box
  1461. .game-popup-box{
  1462. width: 100%;height: 514rpx;@include ezy-no-repeat-cover;
  1463. background-image: url("@/static/images/game/food-box-bj.png");
  1464. box-sizing: border-box;padding: 64rpx 36rpx 0;
  1465. .game-popup-head,.jf-btn-box{display: flex;justify-content: space-between;align-items: center;}
  1466. .game-popup-title{
  1467. width: 285rpx;height: 90rpx;@include ezy-no-repeat-cover;
  1468. background-image: url("@/static/images/game/food-title.png");
  1469. }
  1470. .game-popup-jf{margin: 0 20rpx 0 0;}
  1471. .popup-close-btn{
  1472. width: 46rpx;height: 46rpx;@include ezy-no-repeat-cover;
  1473. background-image: url("@/static/images/common/close-icon.png");
  1474. }
  1475. .food-list-box{display: flex;justify-content: space-between;margin-top: 24rpx;}
  1476. .food-item-box{
  1477. width: 204rpx;height: 250rpx;@include ezy-no-repeat-cover;
  1478. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1479. background-image: url("@/static/images/game/food-bj.png");
  1480. .food-image{width: 144rpx;height:135rpx;}
  1481. .food-item-jf{
  1482. width: 123rpx;height: 46rpx;
  1483. display: flex;align-items: center;line-height: 1.2;font-size: 26rpx;
  1484. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-jf-bj.png");margin-top: 20rpx;
  1485. .jf-icon{width: 35rpx;height: 35rpx;margin:0 4rpx 0 10rpx;flex-shrink: 0;
  1486. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-qb.png");}
  1487. .jf-text{min-width: 60rpx;text-align: center;color: #fff;margin-top: 2rpx;}
  1488. }
  1489. }
  1490. }
  1491. }
  1492. .yxsm-popup-box{
  1493. width: 684rpx;height: 1308rpx;box-sizing: border-box;padding: 120rpx 56rpx 60rpx;overflow-y: auto;
  1494. background-image: url("@/static/images/login/agree-content-bj.png");@include ezy-no-repeat-cover;
  1495. position: relative;text-align: justify;display: flex;flex-direction: column;position: relative;
  1496. .yxsm-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;position: absolute;
  1497. top: 64rpx;right: 44rpx;background-image: url("@/static/images/common/close-icon.png");}
  1498. .yxsm-item-box{overflow-y: auto;line-height: 1.8;font-size: 28rpx;}
  1499. .yxsm-popup-title{font-size: 36rpx;color: #333;text-align: center;margin-bottom: 32rpx;}
  1500. .item-title{color: #359ae2;}
  1501. .item-content{color: #555;}
  1502. @media (max-height: 480px){
  1503. padding: 120rpx 56rpx 120rpx;
  1504. .yxsm-close-btn{top: 100rpx;}
  1505. }
  1506. }
  1507. // svip弹窗
  1508. .ezy-svip-dialog{
  1509. .tip-content-box{
  1510. width: 625rpx;height: 519rpx;padding: 42rpx 48rpx;
  1511. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1512. background-image: url("@/static/images/common/tip-big-bj.png");
  1513. position: relative;
  1514. icon{
  1515. width: 510rpx;
  1516. height: 269rpx;@include ezy-no-repeat-cover;
  1517. position: absolute;top: -20%;left: 50%;transform: translateX(-50%);
  1518. }
  1519. .svip-img1{background-image: url("@/static/images/pay/svip-dialog-img1.png");}
  1520. .svip-img2{background-image: url("@/static/images/pay/svip-dialog-img2.png");}
  1521. }
  1522. .tip-content{
  1523. color: #666;font-size: 32rpx;padding:160rpx 0 80rpx;line-height: 1.6;text-align: center;
  1524. text-align: center;border-bottom: 1px dashed #70cbf4;
  1525. }
  1526. .tip-btn-box{
  1527. width: 100%;display: flex;justify-content: space-between;
  1528. .not-confirm-btn,.confirm-btn{
  1529. width: 208rpx;height: 83rpx;@include ezy-no-repeat-cover;margin: 30rpx 32rpx 0;
  1530. }
  1531. .not-confirm-btn{background-image: url("@/static/images/common/tip-cancel-btn.png");}
  1532. .confirm-btn{background-image: url("@/static/images/pay/svip-btn.png");}
  1533. }
  1534. }
  1535. // 蛋破壳
  1536. .ezy-pay-success-dialog{width: 769rpx;height: 769rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/pay/pay-success-img.gif");}
  1537. .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");}
  1538. // 敬请期待弹窗
  1539. .coming-soon-dialog{
  1540. icon{
  1541. width: 577rpx;height: 596rpx;
  1542. background-image: url("@/static/images/grade/coming-soon-img.png");@include ezy-no-repeat-cover;
  1543. }
  1544. .coming-soon-return-btn{
  1545. width: 554rpx;height: 106rpx;margin: 52rpx auto;
  1546. background-image: url("@/static/images/grade/coming-soon-btn.png");@include ezy-no-repeat-cover;
  1547. }
  1548. }
  1549. // 专题
  1550. .ezy-zhuanti-page{
  1551. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1552. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1553. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1554. .zt-qipao-box{
  1555. width: 520rpx;height: 154rpx;color: #fff;font-size: 30rpx;text-align: center;box-sizing: border-box;
  1556. padding-top: 20rpx;margin: calc(var(--status-bar-height) + 140rpx) auto 0;
  1557. background-image: url("@/static/images/zhuanti/text-icon.png");@include ezy-no-repeat-cover;
  1558. }
  1559. .zt-biaoqing-box{
  1560. width: 673rpx;height: 442rpx;margin: 0 auto;margin-top: 20rpx;
  1561. display: flex;flex-wrap: wrap;
  1562. background-image: url("@/static/images/zhuanti/biaoqing-all.png");@include ezy-no-repeat-cover;
  1563. .biaoqing-item-box{width: 25%;height: 220rpx;}
  1564. }
  1565. @media (max-height: 800px) {
  1566. .zt-qipao-box{margin: calc(var(--status-bar-height) + 80rpx) auto 0;}
  1567. }
  1568. @media (max-height: 700px) {
  1569. .zt-qipao-box{margin: calc(var(--status-bar-height) + 60rpx) auto 0;}
  1570. }
  1571. @media (max-height: 500px) {
  1572. min-height: 1200rpx;
  1573. .zt-qipao-box{margin: calc(var(--status-bar-height) + 10rpx) auto 0;}
  1574. .zt-biaoqing-box{margin-top:-20rpx;}
  1575. }
  1576. }
  1577. // 表情详情页
  1578. .ezy-biaoqing-page{
  1579. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1580. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1581. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1582. .biaoqing-bj-box{
  1583. position: relative;box-sizing: border-box;padding-top: 220rpx;margin-top: calc(var(--status-bar-height) + 50rpx);
  1584. .qipao-item-box{width: 125rpx;height: 160rpx;@include ezy-no-repeat-cover;position: absolute;}
  1585. .qipao-item-box:nth-child(1){top: 180rpx;left: 20rpx;}
  1586. .qipao-item-box:nth-child(2){top: 40rpx;left: 160rpx;}
  1587. .qipao-item-box:nth-child(3){top: 50rpx;left: 330rpx;}
  1588. .qipao-item-box:nth-child(4){top: 60rpx;right: 120rpx;}
  1589. .qipao-item-box:nth-child(5){top: 270rpx;right: 20rpx;}
  1590. .qipao-item-disabled{animation: fadeOut .2s forwards;}
  1591. @keyframes fadeOut {
  1592. from {opacity: 1;}
  1593. to {opacity: 0;}
  1594. }
  1595. .show-biaoqing-icon{width: 80rpx;height: 80rpx;@include ezy-no-repeat-cover;
  1596. position: absolute;top: 20rpx;left: 22rpx;z-index: 0;}
  1597. .biaoqing-img{width: 442rpx;height: 385rpx;@include ezy-no-repeat-cover;margin: 0 auto;}
  1598. .qipao-mask{
  1599. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 1;
  1600. background-image: url("@/static/images/zhuanti/xiao-qipao-bj.png");
  1601. position: absolute;top: 0;left: 0;
  1602. }
  1603. .polie-qipao-mask{
  1604. width: 192rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1605. background-image: url("@/static/images/zhuanti/baozha.gif");
  1606. position: absolute;top: 5rpx;left: -35rpx;
  1607. }
  1608. .qipao-text-row{
  1609. color: #fff;font-size: 24rpx;display: flex;align-items: center;
  1610. justify-content: center;position: absolute;bottom: 0;left: 0;right: 0;
  1611. .shou-icon{width: 32rpx;height: 32rpx;@include ezy-no-repeat-cover;
  1612. background-image: url("@/static/images/zhuanti/shou-icon.png");}
  1613. }
  1614. }
  1615. .biaoqing-bj1 .biaoqing-img,.biaoqing-bj1 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon1.png");}
  1616. .biaoqing-bj2 .biaoqing-img,.biaoqing-bj2 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon2.png");}
  1617. .biaoqing-bj3 .biaoqing-img,.biaoqing-bj3 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon3.png");}
  1618. .biaoqing-bj4 .biaoqing-img,.biaoqing-bj4 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon4.png");}
  1619. .biaoqing-bj5 .biaoqing-img,.biaoqing-bj5 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon5.png");}
  1620. .biaoqing-bj6 .biaoqing-img,.biaoqing-bj6 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon6.png");}
  1621. .biaoqing-bj7 .biaoqing-img,.biaoqing-bj7 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon7.png");}
  1622. .biaoqing-bj8 .biaoqing-img,.biaoqing-bj8 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon8.png");}
  1623. .maike-anzhu,.maike-songkai{width: 100%;text-align:center;margin-top: 36rpx;}
  1624. .maike-box{
  1625. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1626. display: flex;align-items: center;justify-content: center;
  1627. background-image: url("@/static/images/zhuanti/qipao-bj.png");
  1628. margin:0 auto;position: relative;
  1629. .maike-icon{width: 58rpx;height: 87rpx;@include ezy-no-repeat-cover;
  1630. background-image: url("@/static/images/zhuanti/maike-icon.png");}
  1631. }
  1632. .maike-songkai .maike-box::after{
  1633. content: '';width: 673rpx;height: 115rpx;display: block;@include ezy-no-repeat-cover;
  1634. background-image: url("@/static/images/zhuanti/yinbo.gif");position: absolute;
  1635. }
  1636. .maike-text{color: #fff;font-size: 24rpx;}
  1637. @media (max-height: 800px) {
  1638. .biaoqing-bj-box{
  1639. padding-top:150rpx;
  1640. .qipao-item-box:nth-child(1){top: 120rpx;left: 20rpx;}
  1641. .qipao-item-box:nth-child(2){top: 1rpx;left: 160rpx;}
  1642. .qipao-item-box:nth-child(3){top: -10rpx;left: 330rpx;}
  1643. .qipao-item-box:nth-child(4){top: 30rpx;right: 120rpx;}
  1644. .qipao-item-box:nth-child(5){top: 210rpx;right: 20rpx;}
  1645. .biaoqing-img{width: 382rpx;height: 325rpx;}
  1646. }
  1647. .maike-anzhu,.maike-songkai{margin-top: 24rpx;}
  1648. .maike-box{width: 110rpx;height: 110rpx;}
  1649. .maike-songkai .maike-box::after{width: 653rpx;height: 85rpx;}
  1650. }
  1651. @media (max-height: 700px) {
  1652. .biaoqing-bj-box{
  1653. padding-top: 110rpx;
  1654. .qipao-item-box{width: 100rpx;height: 135rpx;}
  1655. .qipao-item-box:nth-child(1){top:130rpx;left: 40rpx;}
  1656. .qipao-item-box:nth-child(2){top:15rpx;left: 160rpx;}
  1657. .qipao-item-box:nth-child(3){top:-15rpx;left: 330rpx;}
  1658. .qipao-item-box:nth-child(4){top:45rpx;right: 125rpx;}
  1659. .qipao-item-box:nth-child(5){top:200rpx;right: 40rpx;}
  1660. .biaoqing-img{width: 352rpx;height: 295rpx;}
  1661. .qipao-mask{width: 100rpx;height: 100rpx;}
  1662. .polie-qipao-mask{width: 172rpx;height: 105rpx;top: 0rpx;left: -45rpx; }
  1663. .show-biaoqing-icon{width: 60rpx;height: 60rpx;}
  1664. .qipao-text-row{
  1665. font-size: 22rpx;
  1666. .shou-icon{width: 26rpx;height: 26rpx;}
  1667. }
  1668. }
  1669. .maike-anzhu,.maike-songkai{margin-top: 16rpx;}
  1670. .maike-box{width: 100rpx;height: 100rpx;}
  1671. .maike-songkai .maike-box::after{width: 633rpx;height: 60rpx;}
  1672. .maike-text{font-size: 22rpx;}
  1673. }
  1674. @media (max-height: 650px) {
  1675. min-height: 1300rpx;
  1676. }
  1677. }
  1678. // 商城
  1679. .ezy-mall-page{
  1680. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1681. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1682. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1683. .uni-list{background-color: transparent!important;}
  1684. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1685. .uni-list-item__header{display: none;}
  1686. .uni-list-item__container{
  1687. flex-direction: column!important;position: relative;
  1688. padding:16rpx 20rpx !important;overflow: unset;}
  1689. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1690. .mall-list-item{
  1691. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1692. margin: 0 3% 10rpx;border-radius: 8rpx;box-sizing: border-box;padding: 16rpx;
  1693. .content-yuanjia{font-size: 36rpx;color: #ff0101;text-decoration: line-through;}
  1694. .mall-content-box{
  1695. display: flex;margin-top: 10rpx;border-bottom: 1px dashed #fff;
  1696. box-sizing: border-box;padding-bottom:16rpx;margin-bottom: 16rpx;
  1697. .mall-image{width: 220rpx;height: 220rpx;margin-right: 16rpx;flex-shrink: 0;}
  1698. .content-body-box{display: flex;flex-direction: column;justify-content: space-between;flex: 1;}
  1699. .content-name{
  1700. font-size: 36rpx;color: #000;margin-bottom: 12rpx;display: flex;align-items: center;
  1701. .name-text{@include single-line-ellipsis;max-width: 360rpx;margin-right: 10rpx;}
  1702. }
  1703. .content-text{font-size: 24rpx;color: #666;@include multi-line-ellipsis(3);line-height: 1.4;}
  1704. .content-row{
  1705. display: flex;justify-content: space-between;align-items: center;
  1706. .shop-car-box{
  1707. width: 70rpx;height: 70rpx;position: relative;
  1708. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/shop-car-icon.png");
  1709. }
  1710. .car-change{
  1711. width: 32rpx;height: 30rpx;position: absolute;right: -4rpx;top: -8rpx;
  1712. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/change-icon.png");
  1713. }
  1714. }
  1715. }
  1716. .mall-yigou-box{
  1717. position: relative;
  1718. .content-row .shop-car-box{background-image: url("@/static/images/mall/shop-car-disabled-icon.png");}
  1719. }
  1720. .mall-yigou-box::after{content: '';width: 71rpx;height: 69rpx;position: absolute;left: 3rpx;top:2rpx;
  1721. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/yigou-icon.png");}
  1722. .mall-bottom-row{
  1723. display: flex;justify-content: space-between;align-items: center;
  1724. box-sizing: border-box;padding-bottom: 16rpx;
  1725. .kcb-btn{
  1726. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1727. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1728. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1729. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1730. }
  1731. .hdj-text{font-size: 32rpx;color: #333;margin-left: auto;}
  1732. }
  1733. }
  1734. }
  1735. // 单词列表页
  1736. .word-list-page{
  1737. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1738. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1739. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1740. .ezy-border-body{
  1741. width: 94%;height: 90vh;margin: 3% 3%;display: flex;flex-direction: column;
  1742. background-color: rgba(255, 255, 255, 0.6);border-radius:0 0 8rpx 8rpx;}
  1743. .word-title-box{
  1744. box-sizing: border-box;padding: 20rpx 24rpx;margin: 0 8rpx;text-align: justify;
  1745. color: #068aea;font-size: 34rpx;font-weight: bold;flex-shrink: 0;
  1746. border-bottom: 1rpx dashed #068aea;line-height: 1.4;}
  1747. .word-list-body{flex: 1;overflow-y: auto;box-sizing: border-box;padding: 0 24rpx;}
  1748. .word-num-box{
  1749. display: flex;align-items: center;padding: 20rpx 24rpx;box-sizing: border-box;
  1750. icon{width: 10rpx;height: 32rpx;background-color:#068aea;border-radius:4rpx;margin-right: 8rpx;}
  1751. text{font-size: 34rpx;color: #068aea;font-weight: bold;}
  1752. }
  1753. }
  1754. // 单词详情
  1755. .word-view-page{
  1756. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1757. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1758. @include ezy-no-repeat-cover(bottom);
  1759. .ezy-border-body{
  1760. width: 94%;margin: 3% 3%;display: flex;flex-direction: column;flex: 1;
  1761. background-color: rgba(255, 255, 255, 0.6);border-radius:8rpx;}
  1762. // 选择单词
  1763. .select-words-box{
  1764. height: 66rpx;border-bottom: 1rpx dashed #0589e9;
  1765. display: flex;flex-wrap: wrap;justify-content: space-between;
  1766. box-sizing: border-box;font-size: 28rpx;overflow: hidden;
  1767. // @include single-line-ellipsis;
  1768. .words-item{min-width: 20%;color: #000;box-sizing: border-box;padding:16rpx 10rpx;text-align: center;}
  1769. .active{color: #068aea;}
  1770. }
  1771. // 选择类型
  1772. .select-types-box{
  1773. display: flex;justify-content: space-between;align-items: center;
  1774. margin-top: 24rpx;box-sizing: border-box;padding:0 16rpx;
  1775. .types-item{
  1776. width: 80rpx;height: 80rpx;line-height: 80rpx;text-align: center;
  1777. background-color: #fff;color: #000;border-radius: 50%;}
  1778. .types-item.active{background-color: #0589e9;color: #fff;}
  1779. .jt-item{width: 20rpx;height: 30rpx;@include ezy-no-repeat-cover;
  1780. background-image: url("@/static/images/study/cjdc/wordView/jt-icon.png");}
  1781. .jt-item.active{background-image: url("@/static/images/study/cjdc/wordView/jt-a-icon.png");}
  1782. }
  1783. .word-view-bottom{
  1784. width: 100%;height: 120rpx;background-color: #68b4e3;font-size: 28rpx;
  1785. border-top: 8rpx solid #add9f2;box-sizing: border-box;padding: 0 32rpx;
  1786. display: flex;justify-content: space-between;align-items: center;
  1787. .collect-btn{
  1788. color: #fff;display: flex;flex-direction: column;align-items: center;
  1789. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-bottom: 6rpx;
  1790. background-image: url("@/static/images/study/cjdc/wordView/collect-icon.png");}
  1791. .active{background-image: url("@/static/images/study/cjdc/wordView/collect-a-icon.png");}
  1792. }
  1793. .bottom-btn-box{
  1794. display: flex;
  1795. .word-view-btn{
  1796. width: 204rpx;height: 77rpx;line-height: 77rpx;
  1797. color: #333;text-align: center;@include ezy-no-repeat-cover;
  1798. background-image: url("@/static/images/study/cjdc/wordView/bottom-btn-bj.png");
  1799. }
  1800. .word-view-btn + .word-view-btn{margin-left: 30rpx;}
  1801. }
  1802. }
  1803. .word-view-swiper-box{flex: 1;overflow-y: auto;box-sizing: border-box;}
  1804. /*****componets*****/
  1805. // 解释
  1806. .pin-words-explain-box{
  1807. margin-top: 64rpx;
  1808. .words-explain-item{font-size: 28rpx;color: #333;text-align: center;}
  1809. .words-explain-item + .words-explain-item{margin-top: 16rpx;}
  1810. }
  1811. //播放
  1812. .audio-play-btn,.audio-playing-btn{width: 110rpx;height:110rpx;@include ezy-no-repeat-cover;margin: 56rpx auto 0;}
  1813. .audio-play-btn{background-image: url("@/static/images/study/cjdc/wordView/play-btn.png");}
  1814. .audio-playing-btn{background-image: url("@/static/images/study/cjdc/wordView/playing-btn.gif");}
  1815. // 清空按钮
  1816. .pin-tip{width: 560rpx;margin: 24rpx auto 0;font-size: 26rpx;text-align: center;border-radius: 8rpx;
  1817. color: #015fb0;border: 1rpx dashed #015fb0;box-sizing: border-box;padding: 10rpx 0;}
  1818. // 提示
  1819. .clean-btn{width: 171rpx;height:58rpx;@include ezy-no-repeat-cover;margin: 24rpx auto 0;
  1820. background-image: url("@/static/images/study/cjdc/wordView/clean-btn.png");
  1821. }
  1822. // 音标播放
  1823. .yb-play-box{
  1824. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 32rpx auto 0;
  1825. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;
  1826. text{font-size: 28rpx;display: inline-block;vertical-align: middle;}
  1827. text:nth-child(even){color: #068aea;margin: 0 10rpx;}
  1828. icon{width: 30rpx;height:30rpx;@include ezy-no-repeat-cover;margin-left: 24rpx;
  1829. display: inline-block;vertical-align: middle;}
  1830. .yb-play-btn{background-image: url("@/static/images/study/cjdc/wordView/yb-play-btn.png");}
  1831. .yb-playing-btn{background-image: url("@/static/images/study/cjdc/wordView/yb-playing-btn.gif");}
  1832. }
  1833. // 带点的单词展示
  1834. .word-circle-box{
  1835. width: 100%;overflow: hidden;
  1836. color: #015fb0;font-weight: bold;font-size: 76rpx;text-align: center;margin: 64rpx auto 0;
  1837. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  1838. text{display: inline-block;vertical-align: middle;}
  1839. text:nth-child(odd){color: #ff9a01;}
  1840. text:not(:first-child)::before{
  1841. content: '';width: 10rpx;height: 10rpx;background-color: #999;margin: 0 6rpx;
  1842. display: inline-block;vertical-align: middle;border-radius: 10rpx;
  1843. }
  1844. }
  1845. // 单词详情块
  1846. /* .details-title{background-color: #3a7fe9;padding: 8rpx 12rpx;border-radius: 10rpx;
  1847. font-size: 24rpx;color: #fff;display: inline-block;}
  1848. .details-content-box{
  1849. background-color: #fffefe;border-radius: 10rpx;margin: 0 20rpx;line-height: 1.4;margin-bottom: 16rpx;
  1850. box-sizing: border-box;padding: 12rpx 10rpx;font-size: 26rpx;
  1851. }
  1852. .syky-content{margin: 16rpx 0 36rpx;border-bottom: 1rpx dashed #8dcff1;}
  1853. .syky-content:last-child{margin: 16rpx 0;border-bottom:0;}
  1854. .details-en-content{
  1855. color: #000;margin:16rpx 12rpx;
  1856. }
  1857. .word-color{color: #3a7fe9;}
  1858. .details-cn-content{color: #666;margin: 16rpx 12rpx 24rpx;} */
  1859. }
  1860. .word-view-page::before,.word-view-page::after{content: '';width: 29rpx;height: 42rpx;
  1861. background-image: url("@/static/images/study/jt-left-icon.png");@include ezy-no-repeat-cover;display: block;
  1862. position: absolute;top: 46%;}
  1863. .word-view-page::before{left: 60rpx;}
  1864. .word-view-page::after{right: 60rpx;transform: rotate(180deg);}
  1865. // 单词详情- 学
  1866. .words-xue-box{
  1867. text-align: center;
  1868. .words-xue-body{height: calc(100vh - 410rpx - var(--status-bar-height));overflow-y: auto;}
  1869. .details-btn{
  1870. background-color: rgba(255, 255, 255, 0.6);display: inline-block;margin: 32rpx auto 0;
  1871. padding: 4rpx 24rpx 10rpx;border-radius: 30rpx;color: #068aea;
  1872. }
  1873. .word-block-box{
  1874. text{min-width: 50rpx;height: 50rpx;line-height: 48rpx;font-size: 24rpx;
  1875. padding: 0 10rpx;box-sizing: border-box;border-radius: 8rpx;
  1876. background-color: #9cd4ef;color: #06399c;display: inline-block;}
  1877. text + text{margin-left: 10rpx;}
  1878. }
  1879. .yb-block-box text{border: 1rpx solid #fff;font-size: 26rpx;}
  1880. .yj-block-box{
  1881. min-width: 50rpx;font-size: 26rpx;
  1882. .yj-block-item{
  1883. display: inline-block;border: 1rpx solid #fff;color: #06399c;border-radius: 8rpx;overflow: hidden;
  1884. }
  1885. .yj-block-item +.yj-block-item{margin-left: 10rpx;}
  1886. .item-top,.item-bottom{height: 52rpx;line-height: 50rpx;padding: 0 10rpx;box-sizing: border-box;}
  1887. .item-top{background-color: #e7f2f9;}
  1888. .item-bottom{background-color: #9cd4ef;}
  1889. }
  1890. /* .cg-item-list{
  1891. padding: 24rpx 0;
  1892. .uni-scroll-view-content{display: flex;align-items: center;box-sizing: border-box;padding:0 24rpx; }
  1893. .cg-item-box{
  1894. display: flex;flex-direction: row;align-items: center;flex-shrink: 0;color: #000;
  1895. font-size: 32rpx;
  1896. }
  1897. .cg-item{border:1rpx solid #9cbff4;background-color: #fff;border-radius: 8rpx;padding: 16rpx;}
  1898. .cg-symbol{margin: 0 10rpx;}
  1899. }
  1900. .xue-change-btn-box{
  1901. display: flex;justify-content: center;border-bottom: 1rpx dashed #8dcff1;margin: 0 20rpx;padding: 20rpx 0;
  1902. .change-btn{
  1903. width: 254rpx;height:77rpx;position: relative;
  1904. text{color: #fff;position: relative;font-size: 32rpx;z-index: 2;display: inline-block;margin-top:15rpx;}
  1905. }
  1906. .change-btn::after{
  1907. content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;@include ezy-no-repeat-cover;
  1908. background-image: url("@/static/images/study/cjdc/wordView/change-btn.png");z-index: 1;
  1909. }
  1910. .change-btn.active text{color: #0f67be;}
  1911. .change-btn.active::after{background-image: url("@/static/images/study/cjdc/wordView/change-btn-a.png");transform: rotate(180deg);}
  1912. .change-btn:last-child::after{transform: rotate(180deg);}
  1913. .change-btn.active:last-child::after{transform: unset;}
  1914. }
  1915. .xue-details-content-box,.xue-details-content-box{
  1916. text-align: left;margin-top: 20rpx;
  1917. } */
  1918. }
  1919. // 单词详情-拼
  1920. .words-pin-box{
  1921. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  1922. height: calc(100vh - 290rpx - var(--status-bar-height));
  1923. .pin-body-box{flex: 1;overflow-y: auto;}
  1924. // 拼读 +选择
  1925. .pin-words-box{
  1926. // min-width: 80rpx;height: 100rpx;font-size: 64rpx;
  1927. display: flex;justify-content: center;margin-top: 64rpx;
  1928. .words-item{min-width: 90rpx;height: 120rpx;line-height: 120rpx;font-size: 80rpx;
  1929. text-align: center;box-sizing: border-box;padding: 0 6rpx;font-weight: bold;
  1930. border-radius: 8rpx;background-color: #b7e2f5;color: #015fb0;}
  1931. .words-item + .words-item{margin-left: 12rpx;}
  1932. }
  1933. .pin-small-words-box{
  1934. .words-item{min-width: 70rpx;height: 100rpx;line-height: 110rpx;font-size: 64rpx;padding: 0 4rpx;}
  1935. .words-item + .words-item{margin-left: 8rpx;}
  1936. }
  1937. // 回答正确 && 回答错误
  1938. .pin-error-words-box,.pin-right-words-box{
  1939. .words-item:last-child{position: relative;}
  1940. .words-item:last-child::after{
  1941. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  1942. position: absolute;top: -22rpx;right: -12rpx;
  1943. }
  1944. }
  1945. .pin-error-words-box.isAll{
  1946. .words-item{background-color: #fbc2c2;color: #ff4d4d;}
  1947. .words-item:last-child::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  1948. }
  1949. .pin-right-words-box.isAll{
  1950. .words-item{background-color: #ddffdd;color: #36c336;}
  1951. .words-item:last-child::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  1952. }
  1953. // 选择单词
  1954. .pin-words-change-box{
  1955. margin-bottom: 32rpx;
  1956. .words-change-item{line-height: 116rpx;border: 1rpx solid #2da8e7;border-bottom: 8rpx solid #41c5ff}
  1957. .words-change-item.disabled{border: 1rpx solid #999;border-bottom: 8rpx solid #ccc;
  1958. color: #999;background-color: #f0f0f0;}
  1959. }
  1960. .pin-words-change-box.pin-small-words-box{
  1961. .words-item{line-height: 90rpx;}
  1962. }
  1963. @media (max-height: 600px) {
  1964. // 拼
  1965. .words-pin-box{
  1966. .select-types-box{margin-top: 10rpx;}
  1967. .pin-words-box,.pin-words-explain-box{margin-top: 32rpx;}
  1968. .audio-play-btn,.audio-playing-btn{width: 96rpx;height:96rpx;margin-top: 24rpx;}
  1969. }
  1970. }
  1971. }
  1972. // 单词详情-选
  1973. .words-xuan-box{
  1974. display: flex;flex-direction: column;padding: 10rpx;box-sizing: border-box;
  1975. height: calc(100vh - 290rpx - var(--status-bar-height));
  1976. .xuan-body-box{flex: 1;overflow-y: auto;text-align: center;}
  1977. .show-words-box{
  1978. width: 100%;overflow: hidden;
  1979. color: #015fb0;font-weight: bold;font-size: 76rpx;text-align: center;margin: 64rpx auto 0;
  1980. text-shadow:-1rpx -1rpx 0 #fff,1rpx -1rpx 0 #fff,-1rpx 1rpx 0 #fff,1rpx 1rpx 0 #fff;
  1981. }
  1982. .select-change-box{
  1983. flex-shrink: 0;
  1984. .select-item{
  1985. width: 600rpx;height: 96rpx;text-align: center;border-radius: 12rpx;font-size: 28rpx;
  1986. background-color: #fff;border-bottom: 6rpx solid #ddf3fb;line-height: 1.4;color: #333;
  1987. display: flex;align-items: center;justify-content: center;margin: 12rpx auto;
  1988. box-sizing: border-box;padding: 0 10rpx;text-align: left;position: relative;
  1989. text{@include multi-line-ellipsis(2);}
  1990. }
  1991. .select-item.active{
  1992. background-color: #6bcdff;border-bottom: 6rpx solid #a7e9fd;color: #fff;
  1993. }
  1994. .select-error::after,.select-right::after{
  1995. content: '';width: 36rpx;height: 36rpx;display: block;@include ezy-no-repeat-cover;
  1996. position: absolute;top: -10rpx;right: -12rpx;
  1997. }
  1998. .select-error::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  1999. .select-right::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  2000. }
  2001. @media (max-height: 600px) {
  2002. .show-words-box{margin: 12rpx auto 0;}
  2003. .yb-play-box{margin: 12rpx auto 0;}
  2004. }
  2005. }
  2006. // 单词详情-背
  2007. .words-bei-box{
  2008. display: flex;flex-direction: column;text-align: center;
  2009. height: calc(100vh - 290rpx - var(--status-bar-height));
  2010. // 答案
  2011. .words-answer-box{
  2012. min-width: 420rpx;max-width: 90%;height: 120rpx;line-height: 120rpx;margin: 64rpx auto 0;
  2013. background-color: #b7e2f5;color: #015fb0;font-size: 72rpx;display: inline-block;overflow: unset;
  2014. border-radius: 8rpx;padding: 0 10rpx;box-sizing: border-box;font-weight: bold;
  2015. .uni-input-placeholder.input-placeholder{color: #015fb0;font-size: 64rpx;}
  2016. }
  2017. // 兼容
  2018. .words-answer-box::placeholder { color: #015fb0;font-size: 64rpx; }
  2019. // 回答正确 && 回答错误
  2020. .words-answer-error-box,.words-answer-right-box{position: relative;}
  2021. .words-answer-error-box::after,.words-answer-right-box::after{
  2022. content: '';width: 46rpx;height: 46rpx;display: block;@include ezy-no-repeat-cover;
  2023. position: absolute;top: -22rpx;right: -12rpx;
  2024. }
  2025. // background-color: #fbc2c2;
  2026. .words-answer-error-box{color: #ff4d4d;}
  2027. .words-answer-error-box::after{background-image: url("@/static/images/study/cjdc/wordView/word-error-icon.png");}
  2028. // background-color: #ddffdd;
  2029. .words-answer-right-box{color: #36c336;}
  2030. .words-answer-right-box::after{background-image: url("@/static/images/study/cjdc/wordView/word-right-icon.png");}
  2031. .bei-body-box{flex: 1;overflow-y: auto;}
  2032. // 键盘
  2033. .words-keyboard-box{
  2034. background-color: #e5e8ee;box-sizing: border-box;padding: 24rpx 0;
  2035. // position: absolute;bottom: -10rpx;left: -10rpx;right: -10rpx;
  2036. .keyboard-row{display: flex;justify-content: space-between;
  2037. box-sizing: border-box;padding: 0 32rpx;margin-bottom: 12rpx;}
  2038. .keyboard-button{
  2039. width: 56rpx;height: 90rpx;line-height: 90rpx;text-align: center;
  2040. background-color: #fff;color:#000;border-radius: 6rpx;
  2041. border-bottom:6rpx solid #e2e2e2;box-sizing: border-box;}
  2042. .keyboard-button.active{background-color: #b7e2f5;color:#015fb0;border-bottom:6rpx solid #41c5ff;}
  2043. .del-btn::after{
  2044. content: '';width: 46rpx;height: 46rpx;display: block;margin: 22rpx auto;
  2045. background-image: url("@/static/images/study/cjdc/wordView/del-btn.svg");@include ezy-no-repeat-cover;}
  2046. .bei-confirm-btn{
  2047. width: 610rpx;height: 77rpx;background-color: transparent;margin: 16rpx auto 0;
  2048. background-image: url("@/static/images/study/cjdc/wordView/confirm-btn.png");@include ezy-no-repeat-cover;
  2049. }
  2050. }
  2051. @media (max-height: 800px) {
  2052. .words-answer-box{margin-top: 32rpx;}
  2053. .pin-words-explain-box{margin-top: 32rpx;}
  2054. .audio-play-btn{margin: 32rpx auto 0;}
  2055. }
  2056. @media (max-height: 750px) {
  2057. .words-answer-box{
  2058. max-width: 86%;height: 100rpx;line-height: 100rpx;font-size: 66rpx;
  2059. .uni-input-placeholder.input-placeholder{font-size: 56rpx;}
  2060. }
  2061. .words-answer-box{margin-top: 16rpx;}
  2062. .pin-words-explain-box{margin-top: 16rpx;}
  2063. .audio-play-btn{width: 80rpx;height:80rpx;margin: 16rpx auto 0;}
  2064. .clean-btn{margin-top: 16rpx;}
  2065. .words-answer-error-box::after,.words-answer-right-box::after{width: 40rpx;height: 40rpx;top: -10rpx;right: -10rpx;}
  2066. }
  2067. @media (max-height: 700px) {
  2068. .words-answer-box{margin-top: 12rpx;}
  2069. .pin-words-explain-box{margin-top: 12rpx;}
  2070. .audio-play-btn{margin: 12rpx auto 0;}
  2071. .clean-btn{margin-top: 12rpx;}
  2072. .words-answer-error-box::after,.words-answer-right-box::after{width: 36rpx;height: 36rpx;top: -6rpx;right: -6rpx;}
  2073. }
  2074. }
  2075. // 单词详解
  2076. .words-details-page{
  2077. background-image: url("@/static/images/course/course-cjdc-bj.png");
  2078. .words-details-body{overflow-y: auto;}
  2079. .details-word{color: #000;font-size: 62rpx;font-weight: bold;margin: 24rpx;}
  2080. .tysy-content{color: #333;margin: 16rpx 12rpx 0;}
  2081. }
  2082. // 选择版本
  2083. .select-version-page{
  2084. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  2085. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2086. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  2087. .ezy-border-body{
  2088. width: 94%;height: 90vh;margin: 3% 3%;display: flex;flex-direction: column;
  2089. background-color: rgba(255, 255, 255, 0.6);border-radius:8rpx;}
  2090. .tab-head-box{
  2091. height: 100rpx!important;display: flex;justify-content: space-between;flex-shrink: 0;
  2092. z-index: 3;margin: 20rpx 20rpx 0;border-bottom: 4rpx dashed #7cbeee;
  2093. box-sizing: border-box;padding: 10rpx 0 24rpx;
  2094. }
  2095. .tab-item {
  2096. // width: 50%;height: 62rpx;line-height: 62rpx;
  2097. width: 288rpx;height: 60rpx;line-height: 60rpx;background-image: url("@/static/images/grade/grades-lv-bj.png");
  2098. text-align: center;font-size: 28rpx;color: #fff;@include ezy-no-repeat-cover;
  2099. }
  2100. .tab-item.active{background-image: url("@/static/images/grade/grades-lv-a-bj.png");color: #fff;border-radius: 8rpx;color: #6e0c02;}
  2101. .select-version-body{flex: 1;overflow-y: auto;padding-top:24rpx;box-sizing: border-box;}
  2102. .version-content-box{
  2103. display: flex;flex-wrap: wrap;padding: 0 10rpx;box-sizing: border-box;
  2104. .version-item{
  2105. width: 33.33%;margin-bottom: 20rpx;display: flex;justify-content: center;
  2106. .version-item-border {
  2107. width: 192rpx;height: 76rpx;line-height: 74rpx;@include single-line-ellipsis;
  2108. text-align: center;font-size: 25rpx;color: #333;@include ezy-no-repeat-cover;
  2109. background-image: url("@/static/images/grade/grades-cjdc-bj.png");
  2110. box-sizing: border-box;padding: 0 5rpx;}
  2111. }
  2112. .version-item.active .version-item-border{color: #6e0c02;background-image: url("@/static/images/grade/grades-cjdc-a-bj.png");}
  2113. }
  2114. .select-version-line{width: 90%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 16rpx auto;}
  2115. .select-version-confirm-btn{
  2116. width: 644rpx;height: 108rpx;background-color: transparent;flex-shrink: 0;
  2117. background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  2118. }
  2119. .select-version-confirm-btn:after{display: none;}
  2120. }
  2121. // 学习记录
  2122. .learn-record-page{
  2123. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  2124. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  2125. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  2126. .uni-list{background-color: transparent!important;}
  2127. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  2128. .uni-list-item__container{padding: 0!important;}
  2129. .learn-record-scroll-view{
  2130. margin-top: 16rpx;overflow-y: auto;height: calc(100vh - 370rpx - var(--status-bar-height));
  2131. box-sizing: border-box;padding: 0 20rpx;
  2132. .word-item-box{
  2133. width: 100%;background-color: transparent!important;
  2134. .uni-list-item__container{width: 100%;display: block;}
  2135. }
  2136. .word-list-item{margin-bottom: 16rpx;}
  2137. }
  2138. }