pages.scss 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. /***** 这里放页面样式 *****/
  2. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  3. .ezy-login-page {
  4. width:100%;height:100vh; background-color: #f9f9fb;position: relative;
  5. box-sizing: border-box;padding-top: 240rpx;
  6. .login-img{
  7. width: 272rpx;height: 260rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  8. background-image: url("@/static/images/login/login-logo.png");display: block;
  9. }
  10. .login-body-box{
  11. display: flex;flex-direction: column;align-items: center;margin: 160rpx auto 0;
  12. }
  13. .login-btn{width: 655rpx;height: 92rpx;line-height: 92rpx;text-align: center;font-size:32rpx;
  14. margin-top: 84rpx;@include ezy-no-repeat-cover;font-weight: bold;}
  15. /***** 输入手机号页面*****/
  16. .phone-input-box{
  17. width: 662rpx;height: 122rpx;
  18. display: flex;align-items: center;@include ezy-no-repeat-cover;
  19. background-image: url("@/static/images/login/login-tel-bj.png");
  20. .phone-prefix {
  21. width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
  22. font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
  23. }
  24. .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
  25. .phone-input {font-size: 38rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  26. .uni-input-placeholder {font-size: 34rpx;color: #ffffffd9;
  27. }
  28. .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  29. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  30. }
  31. .agreement-checkbox-box {
  32. display: flex;justify-content: center;margin-top: 32rpx;line-height: 1;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: 150rpx;
  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: 100rpx;
  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: 42rpx auto 100rpx;}
  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-page1{
  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;
  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-content-box{
  821. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  822. .slfx-title,.spjj-title{
  823. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  824. }
  825. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  826. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  827. .slfx-content{
  828. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  829. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  830. display: block;@include ezy-rich-text;
  831. }
  832. }
  833. }
  834. // 课程页面
  835. .ezy-course-page{
  836. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  837. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  838. @include ezy-no-repeat-cover(top);
  839. .course-video-box{width: 730rpx;height: 440rpx;padding: 32rpx 32rpx;margin: 0 auto 6rpx;}
  840. .course-content-border{
  841. display: flex;flex: 1;position: relative;margin: 0 22rpx;border-radius: 10rpx 10rpx 0 0;
  842. background-color: rgba(255, 255, 255, 0.3);overflow-y: auto;
  843. }
  844. .course-content-box{
  845. flex: 1;margin: 20rpx 20rpx 0;background-color: rgba(255, 255, 255, 0.5);;overflow-y: auto;
  846. box-sizing: border-box;padding: 42rpx 24rpx;
  847. }
  848. .course-content-item{
  849. width: 100%;background-color: rgba(255, 255, 255, 0.8);border-radius: 8rpx;color: #666;display: block;
  850. box-sizing: border-box;padding: 20rpx;margin-bottom: 30rpx;font-size: 32rpx;@include ezy-rich-text;
  851. }
  852. .title-play-box{
  853. width: 100%;height: 85rpx;border-radius: 8rpx;box-sizing: border-box;padding: 0 10rpx;
  854. display: flex;justify-content: space-between;align-items: center;margin:0 0 12rpx;
  855. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-title-bj.png");
  856. }
  857. .course-icon{
  858. width: 60rpx;height: 75rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  859. }
  860. .course-title{color: #fff;font-size: 36rpx;margin-right: auto;margin-left: 10rpx;height: 50rpx;@include single-line-ellipsis;}
  861. .course-play-btn{
  862. width: 162rpx;height: 54rpx;line-height: 50rpx;
  863. box-sizing: border-box;font-size: 24rpx;padding-left: 40rpx;
  864. flex-shrink: 0;
  865. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-play.png");}
  866. }
  867. // 课程得分页面
  868. .course-score-dialog{
  869. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  870. background-image: url("@/static/images/course/video-score-bj.png");
  871. margin-bottom: 20%;position: relative;
  872. .text-score{
  873. width: 220rpx;font-size: 100rpx;font-weight: 800;color: #ff6701;
  874. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  875. margin: 110rpx 0 0 160rpx;text-align: right;position: absolute;
  876. bottom: 230rpx;left: 0;
  877. }
  878. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  879. .course-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  880. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  881. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  882. @media (max-height: 600px) {margin-bottom: 40%;}
  883. }
  884. // 课程完成
  885. .course-finish-dialog{
  886. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  887. background-image: url("@/static/images/course/video-finish-bj.png");
  888. margin-bottom: 20%;position: relative;
  889. .text-score{display: none;}
  890. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  891. .course-btn-box{position: absolute;bottom: 200rpx;display: flex;left: 50%;transform: translateX(-50%);}
  892. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  893. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  894. @media (max-height: 600px) {margin-bottom: 40%;}
  895. }
  896. // 我的页面
  897. .ezy-my-page{
  898. width: 100%;height: 100vh;position: relative;overflow: auto;background: #f9f9fb;
  899. .my-page-box{position: relative;z-index: 1;margin-top: calc(-24rpx - var(--status-bar-height));}
  900. .my-head-box{
  901. width: 100%;padding: 0 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  902. .head-img-box{width: 126rpx;height: 126rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  903. .head-content-box{font-size: 30rpx;}
  904. }
  905. .my-banner-img{
  906. width: 730rpx;height: 413rpx;@include ezy-no-repeat-cover;margin: 0 auto;
  907. background-image: url("@/static/images/my/my-banner.png");border-radius: 16rpx;
  908. }
  909. // list
  910. .my-list-box{
  911. width:710rpx;margin: 24rpx auto;display: flex;padding: 42rpx 6rpx;
  912. background-color: #fff;border-radius: 16rpx;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  913. .list-item{color: #444;width: 25%;text-align: center;font-size: 28rpx;}
  914. .list-icon{width: 64rpx;height: 64rpx;display: block;
  915. margin: 0 auto 12rpx;@include ezy-no-repeat-cover;}
  916. .yysz-icon{background-image: url("@/static/images/my/list-icon1.png");}
  917. }
  918. .kefu-dialog{
  919. .not-confirm-btn{display: none;}
  920. .confirm-btn{margin: 24rpx auto;}
  921. }
  922. }
  923. // 应用设置
  924. .ezy-yysz-page{
  925. width: 100%;height: 100vh;min-height: 1400rpx;background: #f9f9fb;position: relative;overflow: auto;
  926. display: flex;flex-direction: column;
  927. .yysz-page-box{position: relative;z-index: 1;}
  928. .yysz-row-box{width: 95%;background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  929. border-radius: 16rpx;margin: 16rpx auto 0;color: #333;font-size: 30rpx;}
  930. .yysz-item{display: flex;align-items: center;justify-content: space-between;
  931. padding: 32rpx 32rpx 32rpx 0;position: relative;margin: 0 32rpx 0 32rpx;}
  932. .border-item{border-bottom: 1rpx dashed #f2f2f2;}
  933. .img-item{padding: 32rpx 32rpx 0 0;}
  934. .item-text{color: #888;}
  935. .yysz-item::after{
  936. content: '';width: 14rpx;height: 24rpx;@include ezy-no-repeat-cover;
  937. background-image: url("@/static/images/my/list-jt.png");
  938. position: absolute;right: 0;
  939. }
  940. .yysz-img-box{width: 36px;height: 36px;border-radius: 50%;@include ezy-no-repeat-cover}
  941. }
  942. // 错题
  943. .ezy-cuoti-page{
  944. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  945. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  946. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  947. .uni-list{background-color: transparent!important;}
  948. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  949. .cuoti-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  950. .cuoti-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  951. // item
  952. .list-item-box{
  953. width: 94%;background-color: transparent!important;
  954. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  955. .uni-list-item__header{display: none;}
  956. .uni-list-item__container{flex-direction: column;position: relative;padding:36rpx 0;overflow: unset;}
  957. .item-date-row{
  958. display: flex;align-items: center;color:#28bdf2;margin-bottom: 16rpx;
  959. .data-icon{
  960. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  961. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  962. }
  963. .item-cuoti-row{
  964. display: flex;flex-direction: row;color:#444;
  965. .icon-num-box{display: flex;}
  966. .cuoti-content{display: flex;align-items: center;}
  967. .cuoti-icon{
  968. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  969. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-icon.png");
  970. }
  971. .cuoti-text{color: #ff0101;margin-right: 6rpx;}
  972. }
  973. .cuoti-btn{
  974. width: 160rpx;height: 40rpx;line-height: 38rpx;box-sizing: border-box;padding-left: 24rpx;
  975. background-color: #068aea;font-size: 24rpx;color: #fff;border-radius: 20rpx 0 0 20rpx;
  976. position: absolute;right: -3%;top: 114rpx;
  977. }
  978. .cuoti-btn::after{
  979. content: '';width: 14rpx;height: 24rpx;display: block;position: absolute;top: 8rpx;right: 16rpx;
  980. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/list-jt.png");
  981. }
  982. }
  983. }
  984. // 学习记录
  985. .ezy-xxjl-page{
  986. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  987. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  988. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  989. .uni-list{background-color: transparent!important;}
  990. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  991. .xxjl-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  992. .xxjl-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  993. // item
  994. .xxjl-item-box{
  995. width: 94%;background-color: transparent!important;
  996. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  997. .uni-list-item__header{display: none;}
  998. .uni-list-item__container{flex-direction: column;position: relative;padding:24rpx 0;overflow: hidden;}
  999. .item-date-row{
  1000. display: flex;justify-content: space-between;align-items: center;color:#28bdf2;font-size: 24rpx;
  1001. .data-item{display: flex;align-items: center;}
  1002. .del-item{width: 60rpx;height: 60rpx;}
  1003. .data-icon{
  1004. width: 35rpx;height: 35rpx;margin: 10rpx;
  1005. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  1006. .del-icon{
  1007. width: 35rpx;height: 35rpx;margin: 10rpx;
  1008. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/sz-icon2.png");
  1009. }
  1010. }
  1011. .item-zhang-row{
  1012. width: 100%;display: flex;align-items: center;color:#333;font-size: 32rpx;margin-bottom: 16rpx;
  1013. >view{@include single-line-ellipsis;}
  1014. .zhang-icon{
  1015. width: 37rpx;height: 37rpx;margin:0 9rpx;flex-shrink: 0;
  1016. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/sz-icon1.png");}
  1017. }
  1018. .item-jie-row{
  1019. width: 100%;color:#444;font-size: 26rpx;padding-left: 55rpx;line-height: 1;margin-bottom: 16rpx;@include single-line-ellipsis;
  1020. >text{@include single-line-ellipsis;}
  1021. }
  1022. }
  1023. }
  1024. // 关于我们
  1025. .ezy-about-page{
  1026. width: 100%;height: 100vh;position: relative;display: flex;flex-direction: column;
  1027. .about-body-border{
  1028. width: 95%;display: flex;flex-direction: column;flex: 1;overflow-y: auto;
  1029. padding: 36rpx 0;box-sizing: border-box;margin: 20rpx auto 0;
  1030. position: relative;text-align: justify;border-radius: 16rpx 16rpx 0 0;
  1031. background-color: #fff;box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  1032. }
  1033. .about-body-box{
  1034. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  1035. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  1036. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  1037. }
  1038. .content-top-box{
  1039. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  1040. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #ccc;
  1041. .about-icon-box{
  1042. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  1043. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  1044. }
  1045. .about-name{
  1046. font-size: 30rpx;margin: 20rpx 0 42rpx;
  1047. }
  1048. .about-text{margin: 16rpx 0;}
  1049. }
  1050. .content-box{
  1051. font-size: 30rpx;margin-top: 32rpx;line-height: 2;color: #333;
  1052. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  1053. }
  1054. @media (max-height: 600px) {
  1055. .about-body-border{margin: 12rpx auto 150rpx;}
  1056. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  1057. .content-top-box{padding-bottom: 24rpx;}
  1058. .content-box{margin-top: 20rpx;}
  1059. }
  1060. }
  1061. // 绑定手机号弹窗
  1062. .my-tel-dialog{
  1063. background-color: rgba(0,0,0, 0.76);
  1064. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  1065. justify-content: center;align-items: center;z-index: 3;
  1066. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  1067. background-image: url("@/static/images/common/close-icon.png");}
  1068. .my-tel-content{
  1069. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 100rpx 42rpx;
  1070. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  1071. }
  1072. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 32rpx;}
  1073. .tel-row{border-bottom: 1px dashed #70cbf4;}
  1074. .yzm-row{padding-top: 36rpx;}
  1075. /***** 输入手机号页面*****/
  1076. .my-input-box{
  1077. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  1078. display: flex;align-items: center;border: 1rpx solid #e3e3e3;border-radius: 16rpx;
  1079. @include ezy-no-repeat-cover;
  1080. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #666;flex: 1;}
  1081. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  1082. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  1083. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  1084. }
  1085. .get-yzm-btn{color: #3b73bf;margin:46rpx 0 32rpx;font-size: 32rpx;}
  1086. .get-yzm-disabled{color: #666;}
  1087. .yzm-tip{color: #3b73bf;margin:0 0 24rpx;font-size: 25rpx;}
  1088. .my-bind-btn{
  1089. width:540rpx;height: 92rpx;text-align: center;line-height: 92rpx;color: #fff;margin-top: 36rpx;
  1090. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  1091. }
  1092. }
  1093. // 兑换码
  1094. .duihuan-dialog{
  1095. .tip-content-box{padding: 42rpx 42rpx;}
  1096. .duihuan-input{
  1097. width:540rpx;height: 88rpx;line-height: 88rpx;box-sizing: border-box;
  1098. display: flex;align-items: center;margin: 0 auto;color: #666;
  1099. border: 1rpx solid #e3e3e3;border-radius: 16rpx;font-size: 32rpx;
  1100. .uni-input-placeholder {font-size: 32rpx;color: #ccc;}
  1101. }
  1102. }
  1103. // SVIP
  1104. .ezy-svip-page{
  1105. width: 100%;height: 100vh;min-height:1688rpx;background-color: #23befb;position: relative;
  1106. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1107. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1108. .svip-login1,.svip-login2{width: 673rpx;height: 269rpx;margin: 24rpx auto 0;@include ezy-no-repeat-cover;}
  1109. .svip-login1{background-image: url("@/static/images/pay/svip-logo1.png");}
  1110. .svip-login2{background-image: url("@/static/images/pay/svip-logo2.png");}
  1111. .svip-list-box{
  1112. margin: 24rpx auto;
  1113. .list-item-box{display: flex;align-items: center;color: #fff;margin-bottom: 28rpx;}
  1114. .list-icon{
  1115. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1116. }
  1117. .list-title{
  1118. font-size: 28rpx;font-weight: 600;margin-bottom: 10rpx;
  1119. }
  1120. .list-content{font-size: 25rpx;color: rgba(255, 255, 255, 0.8);}
  1121. }
  1122. .open-svip-box{
  1123. width: 702rpx;height:413rpx;margin: 0 auto;box-sizing: border-box;padding: 0 16rpx;
  1124. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-block-bj.png");
  1125. .svip-price-box{
  1126. display: flex;justify-content: space-between;border-bottom: 2rpx solid #efd774;font-size: 32rpx;
  1127. margin-top: 120rpx;box-sizing: border-box;padding:0 24rpx 24rpx;color: #87664d;align-items: center;
  1128. .original-price{text-decoration: line-through;}
  1129. .discount-price{color: #ff0101;font-size: 40rpx;}
  1130. }
  1131. .pay-type-box{
  1132. display: flex;align-items: center;padding:20rpx 24rpx;box-sizing: border-box;
  1133. .type-radio-title{color: #87664d;margin-right: 32rpx;flex-shrink: 0;font-size: 32rpx;}
  1134. .type-radio-content{display: flex;flex-direction: row;align-items: center;
  1135. justify-content: space-between;flex: 1;font-size: 32rpx;}
  1136. }
  1137. .type-radio-box{
  1138. display: flex;align-items: center;color: #87664d;
  1139. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  1140. .uni-radio-input{
  1141. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1142. background-image: url("@/static/images/pay/svip-radio.png");
  1143. background-color:transparent;border:0; pointer-events: none;
  1144. svg{display: none;}
  1145. }
  1146. .radio-checked .uni-radio-input{
  1147. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;
  1148. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1149. }
  1150. }
  1151. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1152. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1153. .open-svip-btn,.open-svip-btn-hui{
  1154. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align: center;color: #fff;margin: 10rpx auto;font-size: 36rpx;
  1155. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1156. }
  1157. .open-svip-btn-hui{
  1158. background-image: url("@/static/images/pay/svip-btn-bj-hui.png");
  1159. color: #BA9D7F;
  1160. }
  1161. }
  1162. .hyfw-tip-box{
  1163. font-size: 25rpx;color: #fff;text-align: center;margin-top: 5rpx;
  1164. text{color: #e3f524;}
  1165. }
  1166. @media (max-height: 800px) {
  1167. min-height: 1600rpx;
  1168. .svip-login1,.svip-login2{width: 538rpx;height: 215rpx;margin: 0 auto;}
  1169. .svip-list-box{
  1170. margin: 0 auto;
  1171. .list-item-box{margin-bottom: 20rpx;}
  1172. }
  1173. .open-svip-box{
  1174. width: 673rpx;height:396rpx;
  1175. .open-svip-btn{margin: 0 auto;}
  1176. }
  1177. }
  1178. @media (max-height: 736px) {
  1179. min-height: 1472rpx;
  1180. .svip-login1,.svip-login2{width: 500rpx;height: 200rpx;margin: 0 auto;}
  1181. .svip-list-box{
  1182. .list-item-box{margin-bottom: 16rpx;}
  1183. .list-icon{
  1184. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  1185. }
  1186. .list-title{font-size: 26rpx;}
  1187. .list-content{font-size: 22rpx;}
  1188. }
  1189. .open-svip-box{
  1190. width: 625rpx;height:349rpx;
  1191. .svip-price-box{
  1192. font-size: 30rpx;margin-top: 90rpx;padding:0 24rpx 24rpx;
  1193. .discount-price{color: #ff0101;font-size: 36rpx;}
  1194. }
  1195. .pay-type-box{
  1196. padding:10rpx 12rpx;
  1197. .type-radio-title{margin-right: 24rpx;font-size: 30rpx;}
  1198. .type-radio-content{font-size: 30rpx;}
  1199. }
  1200. .open-svip-btn{width: 300rpx;height: 80rpx;line-height: 80rpx;margin: 6rpx auto;font-size: 32rpx;}
  1201. }
  1202. }
  1203. }
  1204. // 订单
  1205. .ezy-order-page{
  1206. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1207. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1208. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1209. .uni-list{background-color: transparent!important;}
  1210. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1211. .uni-list-item__header{display: none;}
  1212. .uni-list-item__container{
  1213. flex-direction: column!important;position: relative;
  1214. padding:16rpx 20rpx !important;overflow: unset;}
  1215. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1216. .order-list-item{
  1217. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1218. margin: 0 3% 12rpx;border-radius: 8rpx;
  1219. .order-item-head{
  1220. display: flex;justify-content: space-between;align-items: center;font-size: 24rpx;color: #333;
  1221. .order-name-box{
  1222. display: flex;align-items: center;
  1223. icon{
  1224. width: 58rpx;height: 58rpx;margin-right: 10rpx;
  1225. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-icon.png");
  1226. }
  1227. }
  1228. .pay-status{color:#fdae36;margin-left: 36rpx;}
  1229. }
  1230. .order-content-box{
  1231. display: flex;margin-top: 10rpx;box-sizing: border-box;margin-bottom: 24rpx;
  1232. .content-img{width: 230rpx;height: 230rpx;margin-right: 20rpx;
  1233. @include ezy-no-repeat-cover;flex-shrink: 0;border-radius: 8rpx;}
  1234. .content-body-box{display: flex;flex-direction: column;flex: 1;}
  1235. .content-name{font-size: 36rpx;color: #000;margin-bottom: 8rpx;@include single-line-ellipsis;max-width: 320rpx;}
  1236. .content-text{font-size: 24rpx;height: 110rpx;
  1237. color: #666;@include multi-line-ellipsis(3);line-height: 1.5;}
  1238. .content-yuanjia{font-size: 42rpx;color: #ff0101;margin-top: auto;margin-left:auto;}
  1239. .content-money-box{
  1240. display: flex;justify-content: space-between;align-items: center;margin-top: 8rpx;
  1241. .bottom-data{font-size: 24rpx;color: #999;}
  1242. .bottom-money{color: #333;}
  1243. .order-kcb-btn{
  1244. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1245. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1246. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1247. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1248. }
  1249. }
  1250. }
  1251. .content-heji{text-align: right;margin: 0 0 24rpx;}
  1252. .order-bottom-box{
  1253. box-sizing: border-box;padding: 16rpx 0 10rpx;border-top: 1px dashed #fff;
  1254. display: flex;justify-content: space-between;
  1255. .pay-status-box{
  1256. width: 200rpx;display: flex;align-items: center;line-height: 1;
  1257. padding:2rpx 0 2rpx 16rpx;color: #666;margin-left: 4rpx;
  1258. icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 8rpx;}
  1259. .wx-icon{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1260. .zfb-icon{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1261. .apple-icon{background-image: url("@/static/images/common/apple-icon.png");}
  1262. }
  1263. .pay-status-box::after{
  1264. content:'';width: 24rpx;height: 24rpx;margin-left: 4rpx;
  1265. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/qiehuan-icon.svg");
  1266. }
  1267. .apple-status-box::after{display: none;}
  1268. .pay-btn{
  1269. width: 180rpx;height: 70rpx;font-size: 28rpx;line-height: 70rpx;text-align: center;color: #fff;
  1270. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/mall-btn.png");
  1271. }
  1272. }
  1273. }
  1274. }
  1275. // 订单支付
  1276. .ezy-order-pay-page{
  1277. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1278. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1279. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1280. .order-pay-border-box{
  1281. width: 740rpx;height: 1144rpx;margin: 0 auto;box-sizing: border-box;padding: 30rpx;
  1282. @include ezy-no-repeat-cover(top);background-image: url("@/static/images/pay/order-pay-bj.png");
  1283. }
  1284. .order-pay-img-box{
  1285. display: flex;background-color: rgba(255, 255, 255, 0.6);
  1286. box-sizing: border-box;padding: 32rpx 24rpx;margin-bottom: 6rpx;
  1287. icon{width: 212rpx;height: 202rpx;margin-right: 20rpx;@include ezy-no-repeat-cover;flex-shrink: 0;}
  1288. .order-pay-img1{background-image: url("@/static/images/pay/svip1.png");}
  1289. .order-pay-img2{background-image: url("@/static/images/pay/svip2.png");}
  1290. .img-content-box{flex: 1;position: relative;}
  1291. .content-name{font-size: 40rpx;color: #333;margin-bottom: 12rpx;}
  1292. .content-tag{
  1293. width: 150rpx;height: 40rpx;line-height: 40rpx;display: inline-block;
  1294. font-size: 24rpx;color: #01c6fe;background-color: rgba(255, 255, 255, 0.6);
  1295. border-radius: 4rpx;text-align: center;
  1296. }
  1297. .content-tag + .content-tag{margin-left: 16rpx;}
  1298. .content-yuanjia{font-size: 42rpx;color: #ff0101;position: absolute;right: 0;bottom: 0;}
  1299. }
  1300. .price-box{
  1301. margin-bottom: 6rpx;background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;
  1302. .price-row{display: flex;justify-content: space-between;font-size: 30rpx;color: #333;box-sizing: border-box;padding-left: 10rpx;}
  1303. .price-line-row{border-bottom: 1rpx dashed #fff;padding: 24rpx 0 36rpx 10rpx;margin-bottom: 24rpx;}
  1304. .price-red{color: #ff0101;}
  1305. }
  1306. .pay-type-box{
  1307. background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;border-radius: 0 0 10rpx 10rpx;
  1308. .pay-type-name{font-size: 36rpx;color: #333;margin-bottom: 12rpx;}
  1309. .type-radio-box{display: flex;flex-direction: column;}
  1310. .type-radio-row{
  1311. display: flex;justify-content: space-between;flex: 1;align-items: center;color: #87664d;
  1312. padding: 24rpx 0;box-sizing: border-box;
  1313. icon{width: 58rpx;height: 58rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;flex-shrink: 0;}
  1314. .uni-radio-input{
  1315. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1316. background-image: url("@/static/images/pay/svip-radio.png");
  1317. background-color:transparent;border:0; pointer-events: none;
  1318. svg{display: none;}
  1319. }
  1320. .radio-checked .uni-radio-input{
  1321. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;flex-shrink: 0;
  1322. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1323. }
  1324. .radio-content-box{margin-right: auto;font-size: 0;}
  1325. .radio-title{font-size: 30rpx;color: #333;}
  1326. .radio-content{font-size: 24rpx;color: #666;}
  1327. }
  1328. .type-radio-row +.type-radio-row{border-top:1px dashed #fff;padding-bottom: 10rpx;}
  1329. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1330. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1331. }
  1332. .pay-sum-box{
  1333. display: flex;justify-content: space-between;align-items: center;font-size: 36rpx;color: #333;margin-top: 42rpx;
  1334. icon{width: 35rpx;height: 35rpx;margin: 0 12rpx;
  1335. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-date.png");}
  1336. .sum-red{color: #ff0101;font-weight: bold;margin-left: 6rpx;}
  1337. .sum-btn{
  1338. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align:center;color: #fff;font-size: 32rpx;
  1339. display: flex;justify-content: center;align-items: center;
  1340. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1341. }
  1342. }
  1343. @media (max-height: 700px) {
  1344. .order-pay-border-box{padding: 20rpx;}
  1345. .order-pay-img-box{padding:24rpx;}
  1346. .price-box{padding:24rpx;}
  1347. .pay-type-box{
  1348. padding:24rpx;
  1349. .pay-type-name{margin-bottom: 0;}
  1350. .type-radio-row{padding: 16rpx 0;}
  1351. }
  1352. .pay-sum-box{margin-top: 32rpx;}
  1353. }
  1354. @media (max-height: 600px) {
  1355. .order-pay-border-box{padding: 16rpx;}
  1356. .order-pay-img-box{padding:16rpx;}
  1357. .price-box{padding:16rpx;}
  1358. .pay-type-box{
  1359. padding:16rpx;
  1360. .pay-type-name{margin-bottom: 0;}
  1361. .type-radio-row{padding: 12rpx 0;}
  1362. }
  1363. .pay-sum-box{margin-top: 24rpx;}
  1364. }
  1365. }
  1366. // 游戏
  1367. .ezy-game-page{
  1368. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1369. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1370. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/game/game-bj.png");
  1371. .game-jf-box{position: absolute;right: 24rpx;top: var(--status-bar-height);}
  1372. // goose
  1373. .game-goose-box{
  1374. position: absolute;bottom: 260rpx;right: 25rpx;color: #0d5f84;
  1375. .game-progress-text{position: absolute;left: 50%;transform: translateX(-50%);font-size: 18rpx;}
  1376. .game-progress-box{
  1377. width: 138rpx;height: 25rpx;position: absolute;left: 50%;transform: translateX(-50%);
  1378. .u-line-progress__background{
  1379. width: 138rpx;height: 25rpx!important;
  1380. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/jf-bj.png");
  1381. }
  1382. .u-line-progress__line{height: 25rpx!important;}
  1383. }
  1384. .goose-img-box{width: 308rpx;height: 481rpx;@include ezy-no-repeat-cover;}
  1385. }
  1386. .game-goose-box0{
  1387. .game-progress-box{bottom: 300rpx;}
  1388. .game-progress-text{bottom: 302rpx;}
  1389. }
  1390. .game-goose-box1{
  1391. .game-progress-box{bottom: 330rpx;}
  1392. .game-progress-text{bottom: 333rpx;}
  1393. }
  1394. .game-goose-box2{
  1395. .game-progress-box{bottom: 404rpx;}
  1396. .game-progress-text{bottom: 407rpx;}
  1397. }
  1398. .game-goose-box3{
  1399. .game-progress-box{bottom: 460rpx;}
  1400. .game-progress-text{bottom: 463rpx;}
  1401. }
  1402. // food
  1403. .food-img-box{width: 80rpx;height: 75rpx;position: absolute;}
  1404. .food-img30{bottom: 368rpx;left: 274rpx;}
  1405. .food-img100{bottom: 360rpx;left: 270rpx;}
  1406. .food-img300{bottom: 360rpx;left: 272rpx;}
  1407. //btn
  1408. .food-btn-box{
  1409. width: 106rpx;height: 121rpx;position: absolute;top: calc(260rpx + var(--status-bar-height));right: 50rpx;
  1410. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-common-img.png");
  1411. }
  1412. .yxsm-btn{
  1413. width: 125rpx;height: 125rpx;position: absolute;top: calc(100rpx + var(--status-bar-height));right: 38rpx;
  1414. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/yxsm-btn-img.png");
  1415. }
  1416. // game-popup-box
  1417. .game-popup-box{
  1418. width: 100%;height: 514rpx;@include ezy-no-repeat-cover;
  1419. background-image: url("@/static/images/game/food-box-bj.png");
  1420. box-sizing: border-box;padding: 64rpx 36rpx 0;
  1421. .game-popup-head,.jf-btn-box{display: flex;justify-content: space-between;align-items: center;}
  1422. .game-popup-title{
  1423. width: 285rpx;height: 90rpx;@include ezy-no-repeat-cover;
  1424. background-image: url("@/static/images/game/food-title.png");
  1425. }
  1426. .game-popup-jf{margin: 0 20rpx 0 0;}
  1427. .popup-close-btn{
  1428. width: 46rpx;height: 46rpx;@include ezy-no-repeat-cover;
  1429. background-image: url("@/static/images/common/close-icon.png");
  1430. }
  1431. .food-list-box{display: flex;justify-content: space-between;margin-top: 24rpx;}
  1432. .food-item-box{
  1433. width: 204rpx;height: 250rpx;@include ezy-no-repeat-cover;
  1434. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1435. background-image: url("@/static/images/game/food-bj.png");
  1436. .food-image{width: 144rpx;height:135rpx;}
  1437. .food-item-jf{
  1438. width: 123rpx;height: 46rpx;
  1439. display: flex;align-items: center;line-height: 1.2;font-size: 26rpx;
  1440. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-jf-bj.png");margin-top: 20rpx;
  1441. .jf-icon{width: 35rpx;height: 35rpx;margin:0 4rpx 0 10rpx;flex-shrink: 0;
  1442. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-qb.png");}
  1443. .jf-text{min-width: 60rpx;text-align: center;color: #fff;margin-top: 2rpx;}
  1444. }
  1445. }
  1446. }
  1447. }
  1448. .yxsm-popup-box{
  1449. width: 684rpx;height: 1308rpx;box-sizing: border-box;padding: 120rpx 56rpx 60rpx;overflow-y: auto;
  1450. background-image: url("@/static/images/login/agree-content-bj.png");@include ezy-no-repeat-cover;
  1451. position: relative;text-align: justify;display: flex;flex-direction: column;position: relative;
  1452. .yxsm-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;position: absolute;
  1453. top: 64rpx;right: 44rpx;background-image: url("@/static/images/common/close-icon.png");}
  1454. .yxsm-item-box{overflow-y: auto;line-height: 1.8;font-size: 28rpx;}
  1455. .yxsm-popup-title{font-size: 36rpx;color: #333;text-align: center;margin-bottom: 32rpx;}
  1456. .item-title{color: #359ae2;}
  1457. .item-content{color: #555;}
  1458. @media (max-height: 480px){
  1459. padding: 120rpx 56rpx 120rpx;
  1460. .yxsm-close-btn{top: 100rpx;}
  1461. }
  1462. }
  1463. // svip弹窗
  1464. .ezy-svip-dialog{
  1465. .tip-content-box{
  1466. width: 625rpx;height: 519rpx;padding: 42rpx 48rpx;
  1467. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1468. background-image: url("@/static/images/common/tip-big-bj.png");
  1469. position: relative;
  1470. icon{
  1471. width: 510rpx;
  1472. height: 269rpx;@include ezy-no-repeat-cover;
  1473. position: absolute;top: -20%;left: 50%;transform: translateX(-50%);
  1474. }
  1475. .svip-img1{background-image: url("@/static/images/pay/svip-dialog-img1.png");}
  1476. .svip-img2{background-image: url("@/static/images/pay/svip-dialog-img2.png");}
  1477. }
  1478. .tip-content{
  1479. color: #666;font-size: 32rpx;padding:160rpx 0 80rpx;line-height: 1.6;text-align: center;
  1480. text-align: center;border-bottom: 1px dashed #70cbf4;
  1481. }
  1482. .tip-btn-box{
  1483. width: 100%;display: flex;justify-content: space-between;
  1484. .not-confirm-btn,.confirm-btn{
  1485. width: 208rpx;height: 83rpx;@include ezy-no-repeat-cover;margin: 30rpx 32rpx 0;
  1486. }
  1487. .not-confirm-btn{background-image: url("@/static/images/common/tip-cancel-btn.png");}
  1488. .confirm-btn{background-image: url("@/static/images/pay/svip-btn.png");}
  1489. }
  1490. }
  1491. // 蛋破壳
  1492. .ezy-pay-success-dialog{width: 769rpx;height: 769rpx;@include ezy-no-repeat-cover;background-image: url("@/static/images/pay/pay-success-img.gif");}
  1493. .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");}
  1494. // 敬请期待弹窗
  1495. .coming-soon-dialog{
  1496. icon{
  1497. width: 577rpx;height: 596rpx;
  1498. background-image: url("@/static/images/grade/coming-soon-img.png");@include ezy-no-repeat-cover;
  1499. }
  1500. .coming-soon-return-btn{
  1501. width: 554rpx;height: 106rpx;margin: 52rpx auto;
  1502. background-image: url("@/static/images/grade/coming-soon-btn.png");@include ezy-no-repeat-cover;
  1503. }
  1504. }
  1505. // 专题
  1506. .ezy-zhuanti-page{
  1507. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1508. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1509. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1510. .zt-qipao-box{
  1511. width: 520rpx;height: 154rpx;color: #fff;font-size: 30rpx;text-align: center;box-sizing: border-box;
  1512. padding-top: 20rpx;margin: calc(var(--status-bar-height) + 140rpx) auto 0;
  1513. background-image: url("@/static/images/zhuanti/text-icon.png");@include ezy-no-repeat-cover;
  1514. }
  1515. .zt-biaoqing-box{
  1516. width: 673rpx;height: 442rpx;margin: 0 auto;margin-top: 20rpx;
  1517. display: flex;flex-wrap: wrap;
  1518. background-image: url("@/static/images/zhuanti/biaoqing-all.png");@include ezy-no-repeat-cover;
  1519. .biaoqing-item-box{width: 25%;height: 220rpx;}
  1520. }
  1521. @media (max-height: 800px) {
  1522. .zt-qipao-box{margin: calc(var(--status-bar-height) + 80rpx) auto 0;}
  1523. }
  1524. @media (max-height: 700px) {
  1525. .zt-qipao-box{margin: calc(var(--status-bar-height) + 60rpx) auto 0;}
  1526. }
  1527. @media (max-height: 500px) {
  1528. min-height: 1200rpx;
  1529. .zt-qipao-box{margin: calc(var(--status-bar-height) + 10rpx) auto 0;}
  1530. .zt-biaoqing-box{margin-top:-20rpx;}
  1531. }
  1532. }
  1533. // 表情详情页
  1534. .ezy-biaoqing-page{
  1535. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1536. box-sizing: border-box;padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1537. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/zhuanti/zhuanti-bj.png");
  1538. .biaoqing-bj-box{
  1539. position: relative;box-sizing: border-box;padding-top: 220rpx;margin-top: calc(var(--status-bar-height) + 50rpx);
  1540. .qipao-item-box{width: 125rpx;height: 160rpx;@include ezy-no-repeat-cover;position: absolute;}
  1541. .qipao-item-box:nth-child(1){top: 180rpx;left: 20rpx;}
  1542. .qipao-item-box:nth-child(2){top: 40rpx;left: 160rpx;}
  1543. .qipao-item-box:nth-child(3){top: 50rpx;left: 330rpx;}
  1544. .qipao-item-box:nth-child(4){top: 60rpx;right: 120rpx;}
  1545. .qipao-item-box:nth-child(5){top: 270rpx;right: 20rpx;}
  1546. .qipao-item-disabled{animation: fadeOut .2s forwards;}
  1547. @keyframes fadeOut {
  1548. from {opacity: 1;}
  1549. to {opacity: 0;}
  1550. }
  1551. .show-biaoqing-icon{width: 80rpx;height: 80rpx;@include ezy-no-repeat-cover;
  1552. position: absolute;top: 20rpx;left: 22rpx;z-index: 0;}
  1553. .biaoqing-img{width: 442rpx;height: 385rpx;@include ezy-no-repeat-cover;margin: 0 auto;}
  1554. .qipao-mask{
  1555. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 1;
  1556. background-image: url("@/static/images/zhuanti/xiao-qipao-bj.png");
  1557. position: absolute;top: 0;left: 0;
  1558. }
  1559. .polie-qipao-mask{
  1560. width: 192rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1561. background-image: url("@/static/images/zhuanti/baozha.gif");
  1562. position: absolute;top: 5rpx;left: -35rpx;
  1563. }
  1564. .qipao-text-row{
  1565. color: #fff;font-size: 24rpx;display: flex;align-items: center;
  1566. justify-content: center;position: absolute;bottom: 0;left: 0;right: 0;
  1567. .shou-icon{width: 32rpx;height: 32rpx;@include ezy-no-repeat-cover;
  1568. background-image: url("@/static/images/zhuanti/shou-icon.png");}
  1569. }
  1570. }
  1571. .biaoqing-bj1 .biaoqing-img,.biaoqing-bj1 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon1.png");}
  1572. .biaoqing-bj2 .biaoqing-img,.biaoqing-bj2 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon2.png");}
  1573. .biaoqing-bj3 .biaoqing-img,.biaoqing-bj3 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon3.png");}
  1574. .biaoqing-bj4 .biaoqing-img,.biaoqing-bj4 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon4.png");}
  1575. .biaoqing-bj5 .biaoqing-img,.biaoqing-bj5 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon5.png");}
  1576. .biaoqing-bj6 .biaoqing-img,.biaoqing-bj6 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon6.png");}
  1577. .biaoqing-bj7 .biaoqing-img,.biaoqing-bj7 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon7.png");}
  1578. .biaoqing-bj8 .biaoqing-img,.biaoqing-bj8 .show-biaoqing-icon{background-image: url("@/static/images/zhuanti/biaoqing-icon8.png");}
  1579. .maike-anzhu,.maike-songkai{width: 100%;text-align:center;margin-top: 36rpx;}
  1580. .maike-box{
  1581. width: 125rpx;height: 125rpx;@include ezy-no-repeat-cover;
  1582. display: flex;align-items: center;justify-content: center;
  1583. background-image: url("@/static/images/zhuanti/qipao-bj.png");
  1584. margin:0 auto;position: relative;
  1585. .maike-icon{width: 58rpx;height: 87rpx;@include ezy-no-repeat-cover;
  1586. background-image: url("@/static/images/zhuanti/maike-icon.png");}
  1587. }
  1588. .maike-songkai .maike-box::after{
  1589. content: '';width: 673rpx;height: 115rpx;display: block;@include ezy-no-repeat-cover;
  1590. background-image: url("@/static/images/zhuanti/yinbo.gif");position: absolute;
  1591. }
  1592. .maike-text{color: #fff;font-size: 24rpx;}
  1593. @media (max-height: 800px) {
  1594. .biaoqing-bj-box{
  1595. padding-top:150rpx;
  1596. .qipao-item-box:nth-child(1){top: 120rpx;left: 20rpx;}
  1597. .qipao-item-box:nth-child(2){top: 1rpx;left: 160rpx;}
  1598. .qipao-item-box:nth-child(3){top: -10rpx;left: 330rpx;}
  1599. .qipao-item-box:nth-child(4){top: 30rpx;right: 120rpx;}
  1600. .qipao-item-box:nth-child(5){top: 210rpx;right: 20rpx;}
  1601. .biaoqing-img{width: 382rpx;height: 325rpx;}
  1602. }
  1603. .maike-anzhu,.maike-songkai{margin-top: 24rpx;}
  1604. .maike-box{width: 110rpx;height: 110rpx;}
  1605. .maike-songkai .maike-box::after{width: 653rpx;height: 85rpx;}
  1606. }
  1607. @media (max-height: 700px) {
  1608. .biaoqing-bj-box{
  1609. padding-top: 110rpx;
  1610. .qipao-item-box{width: 100rpx;height: 135rpx;}
  1611. .qipao-item-box:nth-child(1){top:130rpx;left: 40rpx;}
  1612. .qipao-item-box:nth-child(2){top:15rpx;left: 160rpx;}
  1613. .qipao-item-box:nth-child(3){top:-15rpx;left: 330rpx;}
  1614. .qipao-item-box:nth-child(4){top:45rpx;right: 125rpx;}
  1615. .qipao-item-box:nth-child(5){top:200rpx;right: 40rpx;}
  1616. .biaoqing-img{width: 352rpx;height: 295rpx;}
  1617. .qipao-mask{width: 100rpx;height: 100rpx;}
  1618. .polie-qipao-mask{width: 172rpx;height: 105rpx;top: 0rpx;left: -45rpx; }
  1619. .show-biaoqing-icon{width: 60rpx;height: 60rpx;}
  1620. .qipao-text-row{
  1621. font-size: 22rpx;
  1622. .shou-icon{width: 26rpx;height: 26rpx;}
  1623. }
  1624. }
  1625. .maike-anzhu,.maike-songkai{margin-top: 16rpx;}
  1626. .maike-box{width: 100rpx;height: 100rpx;}
  1627. .maike-songkai .maike-box::after{width: 633rpx;height: 60rpx;}
  1628. .maike-text{font-size: 22rpx;}
  1629. }
  1630. @media (max-height: 650px) {
  1631. min-height: 1300rpx;
  1632. }
  1633. }
  1634. // 商城
  1635. .ezy-mall-page{
  1636. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1637. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1638. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1639. .uni-list{background-color: transparent!important;}
  1640. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1641. .uni-list-item__header{display: none;}
  1642. .uni-list-item__container{
  1643. flex-direction: column!important;position: relative;
  1644. padding:16rpx 20rpx !important;overflow: unset;}
  1645. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1646. .mall-list-item{
  1647. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1648. margin: 0 3% 10rpx;border-radius: 8rpx;box-sizing: border-box;padding: 16rpx;
  1649. .content-yuanjia{font-size: 36rpx;color: #ff0101;text-decoration: line-through;}
  1650. .mall-content-box{
  1651. display: flex;margin-top: 10rpx;border-bottom: 1px dashed #fff;
  1652. box-sizing: border-box;padding-bottom:16rpx;margin-bottom: 16rpx;
  1653. .mall-image{width: 220rpx;height: 220rpx;margin-right: 16rpx;flex-shrink: 0;}
  1654. .content-body-box{display: flex;flex-direction: column;justify-content: space-between;flex: 1;}
  1655. .content-name{
  1656. font-size: 36rpx;color: #000;margin-bottom: 12rpx;display: flex;align-items: center;
  1657. .name-text{@include single-line-ellipsis;max-width: 360rpx;margin-right: 10rpx;}
  1658. }
  1659. .content-text{font-size: 24rpx;color: #666;@include multi-line-ellipsis(3);line-height: 1.4;}
  1660. .content-row{
  1661. display: flex;justify-content: space-between;align-items: center;
  1662. .shop-car-box{
  1663. width: 70rpx;height: 70rpx;position: relative;
  1664. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/shop-car-icon.png");
  1665. }
  1666. .car-change{
  1667. width: 32rpx;height: 30rpx;position: absolute;right: -4rpx;top: -8rpx;
  1668. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/change-icon.png");
  1669. }
  1670. }
  1671. }
  1672. .mall-yigou-box{
  1673. position: relative;
  1674. .content-row .shop-car-box{background-image: url("@/static/images/mall/shop-car-disabled-icon.png");}
  1675. }
  1676. .mall-yigou-box::after{content: '';width: 71rpx;height: 69rpx;position: absolute;left: 3rpx;top:2rpx;
  1677. @include ezy-no-repeat-cover;background-image: url("@/static/images/mall/yigou-icon.png");}
  1678. .mall-bottom-row{
  1679. display: flex;justify-content: space-between;align-items: center;
  1680. box-sizing: border-box;padding-bottom: 16rpx;
  1681. .kcb-btn{
  1682. width: 180rpx;height: 56rpx;line-height: 56rpx;text-align: center;font-size: 24rpx;color: #fff;
  1683. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/jf-bj.png");
  1684. icon{width: 18rpx;height: 18rpx;@include ezy-no-repeat-cover;margin-left: 4rpx;
  1685. background-image: url("@/static/images/common/jt-up-white-icon.svg");transform: scale(180deg);}
  1686. }
  1687. .hdj-text{font-size: 32rpx;color: #333;margin-left: auto;}
  1688. }
  1689. }
  1690. }
  1691. // PDF
  1692. .pdf-page-box{
  1693. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1694. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1695. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1696. .pdf-body-box.uni-webview--fullscreen, .uni-resize-sensor > div,mainContainer{top:calc(83rpx - var(--status-bar-height));}
  1697. }
  1698. // 数学题库
  1699. .ezy-sxtk-page{
  1700. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1701. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1702. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1703. .sxtk-tab-border{height: calc(100vh - 254rpx - var(--status-bar-height));flex: unset;}
  1704. .tab-img{width: 346rpx;height: 77rpx;margin: 24rpx auto 0;
  1705. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/tk-qxzjc.png");}
  1706. .sxtk-line{width: 94%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 20rpx auto;}
  1707. .sxtk-tab-box{
  1708. display: flex;box-sizing: border-box;padding: 0 16rpx;margin-top: 24rpx;
  1709. .tab-item{width: 16.66%;font-size: 30rpx;}
  1710. .tab-nianji-item{width: 106rpx;height: 73rpx;line-height: 73rpx;margin: 0 auto;text-align: center;}
  1711. .tab-item.active .tab-nianji-item{@include ezy-no-repeat-cover;color: #fff;
  1712. background-image: url("@/static/images/my/tk-tab-item.png");}
  1713. }
  1714. .sxtk-banben-body{
  1715. flex: 1;overflow-y: auto;padding:10rpx 0;box-sizing: border-box;
  1716. display: flex;flex-wrap: wrap;align-content: flex-start;margin-bottom: 10rpx;
  1717. .banben-item{width: 33.33%;font-size: 28rpx;margin-bottom: 24rpx;}
  1718. .banben-text-item{width: 194rpx;height: 79rpx;line-height: 79rpx;text-align: center;margin: 0 auto;
  1719. @include single-line-ellipsis;box-sizing: border-box;padding: 0 6rpx;
  1720. background-image: url("@/static/images/my/tk-list-item.png");@include ezy-no-repeat-cover;color: #fff;}
  1721. .banben-item.active .banben-text-item{background-image: url("@/static/images/my/tk-list-item-a.png");color: #6e0c02;}
  1722. }
  1723. .sxtk-confirm-btn{
  1724. width: 644rpx;height: 108rpx;background-color: transparent;margin-bottom: 36rpx;
  1725. background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  1726. }
  1727. .sxtk-confirm-btn:after{display: none;}
  1728. }
  1729. // 选课
  1730. .ezy-xuanke-page{
  1731. width: 100%;height: 100vh;display: flex;flex-direction: column;padding-bottom: 100rpx;overflow: hidden;
  1732. .xuanke-tab-box{display: flex;justify-content: center;margin-bottom: 24rpx;}
  1733. .tab-item{
  1734. width: 242rpx;height: 90rpx;line-height: 90rpx;@include ezy-no-repeat-cover;
  1735. background-image: url("@/static/images/xuanke/tab-item-bj.png");
  1736. text-align: center;color: #a6a6a6;
  1737. }
  1738. .tab-item.active{
  1739. color: #fff;background-image: url("@/static/images/xuanke/tab-item-a.png");
  1740. }
  1741. .sx-card-list{overflow-y: auto;flex: 1;padding: 24rpx 0 0;}
  1742. .sx-card-box{
  1743. border-radius: 16rpx;margin: 0 24rpx 32rpx;padding: 32rpx;
  1744. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  1745. .card-head-box{
  1746. display: flex;
  1747. .head-img{width: 200rpx;height: 280rpx;flex-shrink: 0;}
  1748. .head-right-box{
  1749. margin-left: 24rpx;
  1750. .head-title{font-size: 34rpx;color: #333;font-weight: bold;margin-bottom: 32rpx;}
  1751. .head-content{font-size: 26rpx;color: #666;text-align: justify;margin-bottom: 24rpx;}
  1752. }
  1753. }
  1754. .card-body-box{
  1755. border-top: 3rpx dashed #eee;margin-top: 42rpx;
  1756. .body-title{color: #7db0f4;margin: 24rpx 0 16rpx;font-size: 30rpx;}
  1757. .dj-item-row{
  1758. display: flex;flex-wrap: wrap;
  1759. }
  1760. .dj-item{
  1761. width: 202rpx;height: 77rpx;line-height: 77rpx;color: #fff;
  1762. text-align: center;@include ezy-no-repeat-cover;margin: 12rpx 16rpx 12rpx 0;
  1763. background-image: url("@/static/images/xuanke/dj-item.png");
  1764. }
  1765. .dj-item.active{background-image: url("@/static/images/xuanke/dj-item-a.png");}
  1766. .dj-item:nth-child(3n) {
  1767. margin-right: 0;
  1768. }
  1769. }
  1770. }
  1771. }
  1772. // 选版本
  1773. .ezy-xbb-page{
  1774. width: 100%;height: 100vh;display: flex;flex-direction: column;
  1775. .xbb-list-box{
  1776. background-color: #fff;flex: 1;overflow-y: auto;padding-bottom: 120rpx;
  1777. .xbb-item-box{
  1778. width: 731rpx;height:273rpx;@include ezy-no-repeat-cover;
  1779. background-image: url("@/static/images/xuanke/xbb-item-bj.png");
  1780. position: relative;z-index: 1;box-sizing: border-box;padding: 26rpx 36rpx;
  1781. display: flex;align-items: center;margin:0 auto 16rpx;
  1782. }
  1783. .item-img-box{width: 180rpx;height: 220rpx;border-radius: 12rpx;margin-right: 32rpx;flex-shrink: 0;}
  1784. .item-content-box{
  1785. line-height: 1.5;
  1786. .item-name{color: #333;font-size: 34rpx;font-weight: bolder;margin-bottom: 16rpx;}
  1787. .item-bb{color: #444;font-size: 30rpx;}
  1788. }
  1789. .item-play-btn{
  1790. width: 100rpx;height: 100rpx;z-index: 2;
  1791. display: flex;align-items: center;justify-content: center;
  1792. position: absolute;bottom: 12rpx;right: 12rpx;
  1793. }
  1794. .item-play-btn::before{
  1795. content: '';width: 46rpx;height: 48rpx;display: block;
  1796. background-image: url("@/static/images/xuanke/xbb-item-jt.png");@include ezy-no-repeat-cover;
  1797. }
  1798. }
  1799. }
  1800. // 单元测试
  1801. .dycs-dialog{
  1802. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  1803. .dycs-body{overflow-y: auto;}
  1804. .dycs-img{
  1805. width: 430rpx;height: 350rpx;margin: 92rpx auto 32rpx;flex-shrink: 0;
  1806. background-image: url("@/static/images/exam/shiti-dialog-img.png");@include ezy-no-repeat-cover;
  1807. }
  1808. .dycs-tip{
  1809. text-align: center;color: #333;font-size: 35rpx;
  1810. }
  1811. .dycs-fenshu-box{
  1812. width: 560rpx;margin: 72rpx auto;padding: 42rpx 32rpx;box-shadow: 0 0rpx 8rpx rgba(100, 159, 241, 0.3);
  1813. display: flex;justify-content: center;align-items: center;border-radius: 12rpx;font-size: 32rpx;
  1814. .fenshu-item-box{width: 49%;text-align: center;font-size: 32rpx;color: #333;}
  1815. .item-number{font-size: 56rpx;margin-bottom: 10rpx;}
  1816. .red-number{color: #f60000;}
  1817. .item-line{width: 1rpx;height: 120rpx;background: #f3f5f9;}
  1818. }
  1819. .dycs-btn-box{
  1820. display: flex;justify-content: center;margin-top: 64rpx;
  1821. .cxcs-btn,.ckda-btn{
  1822. width: 275rpx;height: 88rpx;line-height: 88rpx;@include ezy-no-repeat-cover;
  1823. text-align: center;color: #fff;font-size: 32rpx;margin: 0 10rpx;
  1824. }
  1825. .cxcs-btn{background-image: url("@/static/images/exam/shiti-btn-blue-bj.png");}
  1826. .ckda-btn{background-image: url("@/static/images/exam/shiti-btn-orange-bj.png");}
  1827. }
  1828. @media (max-height: 700px) {
  1829. .dycs-img{margin: 64rpx auto 16rpx;}
  1830. .dycs-fenshu-box{margin: 46rpx auto;}
  1831. .dycs-btn-box{margin-top: 36rpx;}
  1832. }
  1833. }
  1834. // 学习大纲
  1835. .xuexi-dagang-page{
  1836. width: 100%;height: 92vh;border-radius: 16rpx 16rpx 0 0;
  1837. background-color: #fff;box-shadow: 0 0rpx 4rpx rgba(100, 159, 241, 0.2);
  1838. display: flex;flex-direction: column;
  1839. box-sizing: border-box;padding: 36rpx 0 0;
  1840. .xuexi-dagang-body{overflow-y: auto;padding: 24rpx 0 0;}
  1841. .dagang-title{
  1842. width: 80%;line-height: 1.5;margin: 24rpx auto 0;
  1843. text-align: center;font-size: 36rpx;color: #000;position: relative;
  1844. icon{
  1845. width: 100rpx;height: 100rpx;display: flex;align-items: center;justify-content: center;
  1846. position: absolute;right: -13%;top: -60rpx;
  1847. }
  1848. icon::after{
  1849. content: '';width: 52rpx;height: 52rpx;@include ezy-no-repeat-cover;
  1850. background-image: url("@/static/images/common/close-icon.png");
  1851. }
  1852. }
  1853. // 您将学会
  1854. .dagang-xh-box{
  1855. width: 690rpx;margin: 64rpx auto 0;
  1856. .xh-title{font-size: 32rpx;font-weight: bold;text-align: left;color: #333;margin-left: 6rpx;}
  1857. .xh-content-box{
  1858. width: 100%;border-radius: 16rpx;margin-top: 32rpx;
  1859. box-sizing: border-box;padding: 24rpx;
  1860. box-shadow: 0 0rpx 6rpx rgba(100, 159, 241, 0.3);
  1861. }
  1862. .text-row{
  1863. display: flex;font-size: 32rpx;color: #333;margin: 10rpx 0;
  1864. icon{
  1865. width: 14rpx;height: 14rpx;border-radius: 50%;flex-shrink: 0;
  1866. background-color: #2c7bf4;margin: 16rpx 12rpx 0 0;}
  1867. }
  1868. }
  1869. //学习大纲
  1870. .dagang-content-box{
  1871. background-color: #e3f7fe;margin-top: 200rpx;position: relative;
  1872. .dagang-content-title{
  1873. font-size: 32rpx;font-weight: bold;text-align: left;color: #333;
  1874. margin-left: 36rpx;position: relative;z-index: 1;
  1875. }
  1876. .dagang-item-list{padding: 56rpx 0 32rpx;}
  1877. .dagang-content-item{
  1878. width: 690rpx;display: flex;align-items: center;border-radius: 12rpx;color: #4b4b4b;;
  1879. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;background-color: #fff;
  1880. line-height: 1.5;font-size: 32rpx;
  1881. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  1882. }
  1883. .dagang-content-item:last-child{margin-bottom: 0;}
  1884. }
  1885. .dagang-content-box::before{
  1886. content: '';width: 750rpx;height: 193rpx;display: block;@include ezy-no-repeat-cover;
  1887. background-image: url("@/static/images/xuexi/dagang-img.png");
  1888. position: absolute;top: -138rpx;left: 0;z-index: 1;
  1889. }
  1890. }
  1891. // 学习
  1892. .ezy-xuexi-page{
  1893. width: 100%;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
  1894. // 切换单元
  1895. .change-dy-box{
  1896. .arrow-icon{}
  1897. .left-icon{}
  1898. .right-icon{}
  1899. .change-dy-content{}
  1900. }
  1901. // 滚动
  1902. .xx-scroll-body{overflow-y: auto;}
  1903. // 学习进度
  1904. .xx-jd-box{
  1905. .xx-progress-btn-box{
  1906. }
  1907. .xx-progress-box{
  1908. }
  1909. .jxxx-btn{
  1910. }
  1911. //学习进度按钮
  1912. .jd-item-box{
  1913. icon{}
  1914. .dydg-icon{}
  1915. .dyml-icon{}
  1916. }
  1917. }
  1918. // 学习目录
  1919. .xx-item-list{
  1920. padding: 56rpx 0 32rpx;
  1921. .xx-item-box{width: 690rpx;display: flex;align-items: center;border-radius: 12rpx;color: #4b4b4b;;
  1922. margin: 0 auto 24rpx;box-sizing: border-box;padding: 20rpx;background-color: #fff;
  1923. line-height: 1.5;font-size: 32rpx;
  1924. img{width: 120rpx;height: 120rpx;border-radius: 12rpx;margin-right: 24rpx;}
  1925. .xx-item-status{}
  1926. .xx-text-box{}
  1927. .xx-item-btn{}
  1928. .xx-lock-btn{}
  1929. }
  1930. .xx-disabled-item-box{
  1931. }
  1932. }
  1933. }