pages.scss 101 KB

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