pages.scss 97 KB

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