pages.scss 81 KB

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