pages.scss 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  1. /***** 这里放页面样式 *****/
  2. // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
  3. .ezy-login-page {
  4. width:100%;height:100vh; background-color: #80dfff;position: relative;
  5. .ezy-login-wrap{width:100%;height: 1623.08rpx;background-image: url("@/static/images/login/login-bj.jpg");@include ezy-no-repeat-cover(top);}
  6. .login-body-box{
  7. display: flex;flex-direction: column;display: flex;box-sizing: border-box;
  8. position: absolute;top:690rpx;left: 50%;transform: translateX(-50%);
  9. }
  10. .index-title-img{
  11. width: 411rpx;height: 73rpx;@include ezy-no-repeat-cover;margin-right: auto;
  12. background-image: url("@/static/images/login/login-tel.png");
  13. }
  14. .login-btn{width: 644rpx;height: 106rpx;margin-top: 84rpx;@include ezy-no-repeat-cover;}
  15. /***** 输入手机号页面*****/
  16. .phone-input-box{
  17. width: 644rpx;height: 144rpx;box-sizing: border-box;padding-bottom: 20rpx;
  18. display: flex;align-items: center;margin-top: 50rpx;
  19. background-image: url("@/static/images/login/login-tel-bj.png");@include ezy-no-repeat-cover;
  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: 10rpx;
  33. uni-checkbox-group{font-size: 0;}
  34. .agreement-checkbox-input{width: 40rpx;height: 40rpx;border: 0;margin-right: 4rpx;font-size: 0;}
  35. .uni-checkbox-input{
  36. width: 40rpx;height: 40rpx;border: 0;background-color: unset;@include ezy-no-repeat-cover;
  37. background-image: url("@/static/images/login/login-checked-bj.png");
  38. svg {width: 28;height: 28rpx;top: 48%;left: 50%;}
  39. }
  40. .agreement-text-box {
  41. color: #ffffffd9;font-size: 27rpx;
  42. flex-direction: row;display: flex;align-items: center;
  43. .agreement-text{color: #e3f524;display: contents;}
  44. }
  45. }
  46. .tel-btn-disabled{background-image: url("@/static/images/login/login-zym-bj-disabled.png");}
  47. .tel-btn-normal{background-image: url("@/static/images/login/login-zym-bj.png");}
  48. .bottom-btn-box{
  49. position: absolute;bottom:5%;left: 50%;transform: translateX(-50%);display: flex;
  50. .wx-btn,.yk-btn{
  51. width: 125rpx;height: 144rpx;@include ezy-no-repeat-cover;margin: 0 20rpx;
  52. }
  53. .wx-btn{background-image: url("@/static/images/login/login-wx-btn.png");}
  54. .yk-btn{background-image: url("@/static/images/login/login-yk-btn.png");}
  55. }
  56. /***** 输入验证码页面*****/
  57. .login-title-img{
  58. width: 317rpx;height: 77rpx;@include ezy-no-repeat-cover;margin-right: auto;
  59. background-image: url("@/static/images/login/login-yzm.png");
  60. }
  61. .yzm-btn{margin-top: 42rpx;}
  62. .yzm-show{font-size: 28rpx;color: #ffffffd9;margin: 24rpx 0 0 20rpx;}
  63. .login-btn-disabled{background-image: url("@/static/images/login/login-btn-bj-disabled.png");}
  64. .login-btn-normal{background-image: url("@/static/images/login/login-btn-bj.png");}
  65. .cxfs-btn{font-size: 30rpx;color: #3257b9;display: inline-block;margin: 20rpx auto 60rpx;}
  66. .cxfs-btn-disabled{color: #777;}
  67. .login-text{font-size: 28rpx;color: #3257b9;margin: 16rpx 0 0 20rpx;}
  68. /* 针对小屏幕设备 */
  69. @media (max-height: 800px) {
  70. .login-body-box{top:660rpx;}
  71. .bottom-btn-box{bottom:2%;}
  72. .login-btn{margin-top: 64rpx;}
  73. // 输入验证码页面
  74. .yzm-btn{margin-top: 32rpx;}
  75. .cxfs-btn{margin: 16rpx auto 30rpx;}
  76. }
  77. @media (max-height: 700px) {
  78. .login-body-box{top:640rpx;}
  79. .login-btn{margin-top: 46rpx;}
  80. .phone-input-box{margin-top: 24rpx;}
  81. // 输入验证码页面
  82. .yzm-btn{margin-top: 24rpx;}
  83. .cxfs-btn{margin: 12rpx auto 20rpx;}
  84. }
  85. @media (max-height: 600px) {
  86. .bottom-btn-box{bottom:5%;}
  87. .login-btn{margin-top: 36rpx;}
  88. .ezy-login-wrap{height: 1360rpx;position: relative;}
  89. }
  90. }
  91. // 用户协议弹窗
  92. .agree-sections-dialog{
  93. width: 635rpx;height: 702rpx;padding: 360rpx 36rpx 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  94. background-image: url("@/static/images/login/agree-dialog-bj.png");@include ezy-no-repeat-cover;
  95. .agree-title{color:#666;font-size: 32rpx;font-weight: 600;}
  96. .agree-tip{color:#777;font-size: 28rpx;margin-top: 30rpx;}
  97. .confirm-btn{width: 538rpx;height: 85rpx;@include ezy-no-repeat-cover;margin: 46rpx auto 0;
  98. background-image: url("@/static/images/login/agree-confirm-btn.png");}
  99. .not-confirm-btn{color:#888;font-size: 32rpx;padding: 16rpx 0;display: inline-block;}
  100. @media (max-height: 700px) {margin-bottom: 16%;}
  101. @media (max-height: 600px) {margin-bottom: 0;}
  102. }
  103. // 用户协议详情弹窗
  104. .agree-content-dialog{
  105. width: 100%;height: 100vh;overflow: auto;
  106. .agree-content-box{
  107. width: 684rpx;height: 1308rpx;@include ezy-no-repeat-cover;
  108. background-image: url("@/static/images/login/agree-content-bj.png");
  109. padding: 120rpx 0 64rpx;box-sizing: border-box;margin-top: 36%;
  110. position: relative;text-align: justify;
  111. display: flex;flex-direction: column;
  112. }
  113. .agree-title{font-size: 42rpx;text-align: center;margin-bottom: 42rpx;flex-shrink: 0;}
  114. .agree-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;
  115. position: absolute;top: 64rpx;right: 44rpx;
  116. background-image: url("@/static/images/common/close-icon.png");}
  117. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;word-break: break-all;}
  118. @media (max-height: 800px) {
  119. .agree-content-box{margin-top: 18%;}
  120. }
  121. @media (max-height: 700px) {
  122. .agree-content-box{margin-top: var(--status-bar-height);}
  123. }
  124. }
  125. // 滑块校验弹窗
  126. .slider-check-dialog{
  127. background-color: rgba(255, 255, 255, 0.6);
  128. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  129. justify-content: center;align-items: center;
  130. .slider-check-content{
  131. width: 635rpx;height: 423rpx;padding: 42rpx 36rpx 42rpx;box-sizing: border-box;text-align: center;margin-bottom: 26%;
  132. background-image: url("@/static/images/login/slider-dialog-bj.png");@include ezy-no-repeat-cover;position: relative;
  133. }
  134. .slider-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  135. background-image: url("@/static/images/common/close-icon.png");}
  136. .slider-check-tip{color:#777;font-size: 32rpx;margin-top: 30rpx;font-weight: 800;}
  137. .slider-check-btn{width: 208rpx;height: 85rpx;@include ezy-no-repeat-cover;margin: 32rpx auto 0;
  138. background-image: url("@/static/images/login/slider-confirm.png");display: block;}
  139. .nc-container{
  140. position: unset;border-bottom: 1px dashed #70cbf4;padding: 36rpx 0 54rpx;box-sizing: border-box;
  141. .nc_wrapper{width: 100%!important;}
  142. .nc_iconfont.btn_ok{font-family: unset;font-size: 0;}
  143. .nc_iconfont.btn_ok::before{content: '';width: 20px;height:20px;display: block;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);
  144. @include ezy-no-repeat-cover;background-image: url("@/static/images/login/slider-right-icon.png");z-index: 4;}
  145. }
  146. .slider-tip-red{color: red;}
  147. @media (max-height: 700px) {
  148. .slider-check-content{margin-bottom: 16%;}
  149. }
  150. @media (max-height: 600px) {
  151. .slider-check-content{margin-bottom: 0;}
  152. }
  153. }
  154. // 选择年级和学期
  155. .grades-terms-page{
  156. width:100%;height:100vh;background-color: #43c1f6;box-sizing: border-box;padding-top:var(--status-bar-height);
  157. background-image: url("@/static/images/grade/grades-terms-bj.png");@include ezy-no-repeat-cover(top);
  158. // padding-top: 52%;
  159. position: relative;min-height: 1212rpx;
  160. .grades-body{
  161. width: 752rpx;max-width: 100%;height: 1212rpx;display: flex;flex-direction: column;margin: 0 auto;
  162. background-image: url("@/static/images/grade/grades-border.png");@include ezy-no-repeat-cover(top);
  163. position: absolute;left: 50%;transform: translateX(-50%);top: 24%;
  164. }
  165. .grades-change-title{
  166. width: 577rpx;height: 92rpx;margin: 10% auto 0;
  167. background-image: url("@/static/images/grade/grades-title.png");@include ezy-no-repeat-cover;
  168. }
  169. .grades-title-desc{font-size: 28rpx;color: #777;text-align: center;margin-top: 10rpx;}
  170. .grades-terms-title{width: 692rpx;height: 92rpx;margin: 3% auto 0;@include ezy-no-repeat-cover;}
  171. .grades-title-img{background-image: url("@/static/images/grade/grade-title.png");}
  172. .terms-title-img{background-image: url("@/static/images/grade/term-bj.png");}
  173. .grade-item-box{display: flex;flex-wrap: wrap;justify-content: space-evenly;box-sizing: border-box;padding: 3% 4% 1%;}
  174. .grade-item {
  175. width: 277rpx;height: 87rpx;line-height: 82rpx;margin: 2% 0;
  176. background-image: url("@/static/images/grade/grades-bj.png");@include ezy-no-repeat-cover;
  177. text-align: center;font-size: 36rpx;color: #fff;font-weight: 800;
  178. }
  179. // -webkit-text-stroke: 1.6rpx #ac5300;text-stroke: 1.6rpx #ac5300;
  180. .grade-item.active{
  181. color: #fff;background-image: url("@/static/images/grade/grades-a-bj.png");
  182. }
  183. .grade-line{width: 90%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 5% auto 4%;}
  184. .grade-confirm-btn{
  185. width: 644rpx;height: 108rpx;background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  186. }
  187. .grade-confirm-btn:after{display: none;}
  188. /* 针对小屏幕设备 */
  189. @media (max-height: 800px) {
  190. min-height: 1300rpx;
  191. .grades-body{zoom:0.9;bottom: 1%;top: unset;}
  192. }
  193. @media (max-height: 700px) {
  194. min-height: 1200rpx;
  195. .grades-body{zoom:0.8;}
  196. }
  197. @media (max-height: 480px) {
  198. min-height: 1200rpx;
  199. .grades-body{zoom:0.75;}
  200. }
  201. }
  202. // 蛋
  203. .study-egg-dialog{
  204. .egg-content-box{display: flex;display: flex;flex-direction: column;align-items: center;}
  205. .egg-title{
  206. width: 606rpx;height: 85rpx;
  207. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-title.png");
  208. }
  209. .egg-img{width: 692rpx;height: 615rpx;margin-top: 20%;
  210. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-img.png");
  211. }
  212. .egg-btn{
  213. width: 644rpx;height: 106rpx;margin-top: 10%;
  214. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-btn.png");
  215. }
  216. @media (max-height: 800px) {
  217. .egg-img{margin-top: 10%;}
  218. .egg-btn{margin-top: 6%;}
  219. }
  220. @media (max-height: 700px) {
  221. .egg-img{margin-top: 6%;}
  222. .egg-btn{margin-top: 4%;}
  223. }
  224. }
  225. //地图页
  226. .ezy-study-swiper{height: 100vh;overflow-y: auto;}
  227. .ezy-study-swiper1{
  228. @media (max-height: 700px) {min-height: 1260rpx;}
  229. @media (max-height: 600px) {min-height:1200rpx;}
  230. }
  231. .ezy-study-swiper2{
  232. @media (max-height: 800px) {min-height:1500rpx;}
  233. @media (max-height: 700px) {min-height:1350rpx;}
  234. }
  235. .ezy-study-page{
  236. width:100%;height: 100vh;display: flex;flex-direction: column;
  237. box-sizing: border-box;padding-top:var(--status-bar-height);justify-content: center;position: relative;
  238. .study-school-year{
  239. width: 285rpx;height: 69rpx;line-height:65rpx;background-image: url("@/static/images/study/school-year-bj.png");
  240. color: #fff;@include ezy-no-repeat-cover;padding-left: 78rpx;font-size: 30rpx;font-weight: 600;
  241. position: absolute;left: 20rpx;top:var(--status-bar-height);z-index: 2;
  242. }
  243. // animal
  244. .animal-img{width:48rpx;height: 68rpx;@include ezy-no-repeat-cover;position: absolute;}
  245. .dan-img{background-image: url("@/static/images/study/animal-img1.gif");}
  246. .xiao-e-img{background-image: url("@/static/images/study/animal-img2.gif");}
  247. .zhong-e-img{background-image: url("@/static/images/study/animal-img3.gif");}
  248. .da-e-img{background-image: url("@/static/images/study/animal-img4.gif");}
  249. }
  250. // 数学
  251. .ezy-shuxue-study-page{
  252. @include ezy-no-repeat-cover(top);background-color: #43c1f6;background-image: url("@/static/images/study/shuxue/study-shuxue-bj.png");
  253. .ezy-study-wrap{
  254. width:750rpx;height:1394rpx;background-image: url("@/static/images/study/shuxue/study-wrap-bj.gif");
  255. @include ezy-no-repeat-cover;position: relative;margin: 0 auto;
  256. }
  257. .chapter-box{
  258. width: 160rpx;text-align: center;font-weight: 800;color: #5c1a11;
  259. font-size: 30rpx;position: absolute;top:122rpx;left:322rpx;
  260. }
  261. .chapter-title-box{
  262. width: 325rpx;height: 80rpx;text-align: center;font-weight: 800;color: #fbb030;
  263. position: absolute;top:170rpx;left:240rpx;white-space: pre-wrap;
  264. }
  265. .chapter-small-title-box{line-height: 2;font-size: 38rpx;}
  266. .chapter-middle-title-box{line-height: 2.2;font-size: 34rpx;}
  267. .chapter-big-title-box{line-height: 1.2;font-size: 32rpx;}
  268. // brand-content
  269. .brand-content{margin: 0 auto;@include single-line-ellipsis;}
  270. .brand-icon,.brand-lock,.brand-finish-icon{
  271. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  272. position: absolute;top: -30rpx;left: 50%;transform: translateX(-50%);}
  273. .brand-icon{
  274. font-size: 36rpx;font-weight: 600;color: #ff6501;line-height: 70rpx;
  275. background-image: url("@/static/images/study/shuxue/number-bj.png");
  276. }
  277. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  278. .brand-lock::before{
  279. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  280. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  281. }
  282. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  283. .animal-img{left: 28%;top: 48%;animation: shakeOpacity 1s 1;}
  284. @keyframes shakeOpacity {
  285. 0% {opacity: 0;}
  286. 100% {opacity: 1;;}
  287. }
  288. // brand-item
  289. .brand-item{box-sizing: border-box;font-size: 24rpx;color: #fff;text-align: center;
  290. font-weight: 600;position: relative;position: absolute;@include ezy-no-repeat-cover;}
  291. .small-brand-item{width: 231rpx;height: 147rpx;padding: 40rpx 0 10rpx;
  292. background-image: url("@/static/images/study/shuxue/duan-pai-disabled.png");
  293. .brand-content{width: 90%;}
  294. }
  295. .small-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/duan-pai-active.png");}
  296. .big-brand-item{
  297. width: 307.69rpx;height: 141.35rpx;padding: 40rpx 0 10rpx;
  298. background-image: url("@/static/images/study/shuxue/chang-pai-disabled.png");
  299. .brand-content{width: 94%;}
  300. }
  301. .big-brand-item.brand-active{background-image: url("@/static/images/study/shuxue/chang-pai-active.png");}
  302. .ceshi-brand-item{
  303. width: 185rpx;height: 121rpx;@include ezy-no-repeat-cover;
  304. padding: 16rpx 10rpx 10rpx 10rpx;position: absolute;top:1112rpx;right:140rpx;
  305. background-image: url("@/static/images/study/shuxue/ceshi-pai.png");
  306. .brand-lock,.brand-icon,.brand-finish-icon{left: 0;top: -30rpx;}
  307. }
  308. // brand-item
  309. .small-brand-item:nth-child(1){top:330rpx;right:70rpx;}
  310. .small-brand-item:nth-child(2){top:540rpx;left:75rpx;}
  311. .small-brand-item:nth-child(3){top:692rpx;right:110rpx;}
  312. .small-brand-item:nth-child(4){top:1085rpx;right:165rpx}
  313. .big-brand-item:nth-child(1){top:328rpx;right:40rpx;}
  314. .big-brand-item:nth-child(2){top:540rpx;left:20rpx;}
  315. .big-brand-item:nth-child(3){top:692rpx;right:80rpx;}
  316. .big-brand-item:nth-child(4){top:1090rpx;right:130rpx;}
  317. @media (max-height: 800px) {
  318. // 0.92
  319. .ezy-study-wrap{width: 690rpx;height: 1284rpx;}
  320. .chapter-box{width: 138rpx;top:112rpx;left:300rpx;font-size: 28rpx;}
  321. .chapter-title-box{width: 296rpx;height: 70rpx;top:155rpx;left:223rpx;font-size: 28rpx;}
  322. .chapter-small-title-box{line-height: 1.8;font-size: 36rpx;}
  323. .chapter-middle-title-box{line-height: 2.4;font-size: 30rpx;}
  324. .chapter-big-title-box{line-height: 1.3;font-size: 28rpx;}
  325. .small-brand-item:nth-child(1){top:290rpx;right:60rpx;}
  326. .small-brand-item:nth-child(2){top:480rpx;left:75rpx;}
  327. .small-brand-item:nth-child(3){top:630rpx;right:110rpx;}
  328. .small-brand-item:nth-child(4){top:990rpx;right:140rpx}
  329. .big-brand-item:nth-child(1){top:300rpx;right:24rpx;}
  330. .big-brand-item:nth-child(2){top:490rpx;left:24rpx;}
  331. .big-brand-item:nth-child(3){top:640rpx;right:80rpx;}
  332. .big-brand-item:nth-child(4){top:1000rpx;right:110rpx;}
  333. .ceshi-brand-item{top:1020rpx;right:140rpx;}
  334. }
  335. @media (max-height: 700px) {
  336. min-height: 1260rpx;
  337. //0.88
  338. .ezy-study-wrap{width: 630rpx;height: 1198rpx;}
  339. .chapter-box{top:105rpx;left:278rpx;}
  340. .chapter-title-box{width: 280rpx;height: 66rpx;top:145rpx;left:208rpx;}
  341. .chapter-middle-title-box{line-height: 2.2;}
  342. .chapter-big-title-box{line-height: 1.2;}
  343. .small-brand-item:nth-child(1){top:260rpx;right:50rpx;}
  344. .small-brand-item:nth-child(2){top:445rpx;left:60rpx;}
  345. .small-brand-item:nth-child(3){top:580rpx;right:100rpx;}
  346. .small-brand-item:nth-child(4){top:920rpx;right:140rpx}
  347. .big-brand-item:nth-child(1){top:270rpx;right:16rpx;}
  348. .big-brand-item:nth-child(2){top:450rpx;left:16rpx;}
  349. .big-brand-item:nth-child(3){top:590rpx;right:70rpx;}
  350. .big-brand-item:nth-child(4){top:925rpx;right:100rpx;}
  351. .ceshi-brand-item{top:940rpx;right:130rpx;}
  352. }
  353. @media (max-height: 600px) {
  354. //0.76
  355. min-height:1200rpx;
  356. .ezy-study-wrap{width: 577rpx;height: 1072rpx;}
  357. .chapter-box{width: 120rpx;top:90rpx;left:250rpx;font-size: 26rpx;}
  358. .chapter-title-box{width: 250rpx;height: 60rpx;top:128rpx;left:185rpx;}
  359. .chapter-small-title-box{line-height: 1.6;font-size: 34rpx;}
  360. .chapter-middle-title-box{line-height: 2;font-size: 28rpx;}
  361. .chapter-big-title-box{line-height: 1.2;font-size: 26rpx;}
  362. .small-brand-item:nth-child(1){top:220rpx;right:24rpx;}
  363. .small-brand-item:nth-child(2){top:385rpx;left:42rpx;}
  364. .small-brand-item:nth-child(3){top:500rpx;right:65rpx;}
  365. .small-brand-item:nth-child(4){top:800rpx;right:100rpx}
  366. .big-brand-item:nth-child(1){top:220rpx;right:0;}
  367. .big-brand-item:nth-child(2){top:390rpx;left:0;}
  368. .big-brand-item:nth-child(3){top:510rpx;right:30rpx;}
  369. .big-brand-item:nth-child(4){top:810rpx;right:100rpx;}
  370. .ceshi-brand-item{top:835rpx;right:130rpx;}
  371. }
  372. }
  373. // 英语
  374. .ezy-yingyu-study-page{
  375. background-color: #00aeee;
  376. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/study/yingyu/study-yingyu-bj.png");
  377. .yingyu-house-box{
  378. width: 750rpx;height: 769rpx;@include ezy-no-repeat-cover;position: absolute;
  379. top:calc(-100rpx + var(--status-bar-height));
  380. background-image: url("@/static/images/study/yingyu/study-wrap-bj.gif");z-index: 1;
  381. }
  382. .chapter-title-box{
  383. width: 120rpx;height: 60rpx;text-align: center;font-weight: 800;color: #66ffff;font-size: 28rpx;
  384. position: absolute;top:228rpx;left:222rpx;white-space: pre-wrap;line-height: 2;
  385. }
  386. // 锁 星星
  387. .brand-lock,.brand-finish-icon{
  388. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  389. position: absolute;transform: translateX(-50%);}
  390. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  391. .brand-lock::before{
  392. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  393. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  394. }
  395. .brand-finish-icon{background-image: url("@/static/images/study/dao-finish-icon.png");}
  396. .brand-lock{background-image: url("@/static/images/study/lock-bj.png");display: flex;justify-content: center;}
  397. .brand-lock::before{
  398. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  399. background-image: url("@/static/images/study/lock-img.png");margin-top: 10rpx;
  400. }
  401. //icon-content-box
  402. .icon-content-box{
  403. width: 260rpx;height: 81rpx;@include ezy-no-repeat-cover;font-size: 24rpx;position: absolute;
  404. background-image: url("@/static/images/study/yingyu/dao-item-disabled.png");
  405. .brand-icon,.brand-content{margin: 0 auto;}
  406. .brand-icon{
  407. width: 170rpx;height: 36rpx;color: #180b34;line-height: 1.6;
  408. @include single-line-ellipsis;}
  409. .brand-content{width: 246rpx;height: 42rpx;color: #fff;@include single-line-ellipsis;line-height: 42rpx;}
  410. }
  411. // brand-item
  412. .brand-item{box-sizing: border-box;text-align: center;z-index: 3;
  413. font-weight: 600;position: relative;position: absolute;@include ezy-no-repeat-cover;}
  414. .brand-active {
  415. .icon-content-box{background-image: url("@/static/images/study/yingyu/dao-item-active.png");}
  416. }
  417. @keyframes shakeOpacity {
  418. 0% {opacity: 0;}
  419. 100% {opacity: 1;;}
  420. }
  421. .brand-item:nth-child(1){
  422. width: 317rpx;height: 240rpx;top:630rpx;right:30rpx;background-image: url("@/static/images/study/yingyu/dao-item-bj1.png");
  423. .icon-content-box{top: 160rpx;right: 0rpx;}
  424. .brand-lock,.brand-finish-icon{top: 98rpx;right: 60rpx;}
  425. .animal-img{top: 88rpx;right: 40rpx;animation: shakeOpacity 1s 1;}
  426. }
  427. .brand-item:nth-child(2){
  428. width: 394rpx;height: 192rpx;top:760rpx;left:55rpx;background-image: url("@/static/images/study/yingyu/dao-item-bj2.png");
  429. .icon-content-box{top: 130rpx;right: 130rpx;}
  430. .brand-lock,.brand-finish-icon{top: 62rpx;right: 200rpx;}
  431. .animal-img{top: 60rpx;right: 180rpx;animation: shakeOpacity 1s 1;}
  432. }
  433. .brand-item:nth-child(3){
  434. width: 385rpx;height: 154rpx;top:980rpx;right:110rpx;background-image: url("@/static/images/study/yingyu/dao-item-bj3.png");
  435. .icon-content-box{top: 100rpx;right: 0rpx;}
  436. .brand-lock,.brand-finish-icon{top: 28rpx;right: 60rpx;}
  437. .animal-img{top: 20rpx;right: 30rpx;animation: shakeOpacity 1s 1;}
  438. }
  439. .brand-item:nth-child(4){
  440. width: 385rpx;height: 202rpx;top:1100rpx;left:60rpx;background-image: url("@/static/images/study/yingyu/dao-item-bj4.png");
  441. .icon-content-box{top: 130rpx;right: 130rpx;}
  442. .brand-lock,.brand-finish-icon{top: 62rpx;right: 200rpx;}
  443. .animal-img{top: 60rpx;right: 180rpx;animation: shakeOpacity 1s 1;}
  444. }
  445. .brand-item.ceshi-brand-item{
  446. width: 308rpx;height: 225rpx;top:1250rpx;right:30rpx;left: unset;@include ezy-no-repeat-cover;
  447. background-image: url("@/static/images/study/yingyu/test-item.png");
  448. .icon-content-box{background-image: unset;}
  449. .brand-content{display: none;}
  450. .brand-lock,.brand-finish-icon{top: 120rpx;right: 120rpx;}
  451. .animal-img{top: 100rpx;right: 40rpx;animation: shakeOpacity 1s 1;}
  452. }
  453. @media (max-height: 800px) {
  454. min-height:1500rpx;
  455. // 0.92
  456. .brand-item:nth-child(1){top:540rpx;right:30rpx;}
  457. .brand-item:nth-child(2){top:640rpx;left:55rpx;}
  458. .brand-item:nth-child(3){top:830rpx;right:110rpx;}
  459. .brand-item:nth-child(4){top:960rpx;left:60rpx;}
  460. .brand-item.ceshi-brand-item{
  461. width: 250rpx;height: 183rpx;top:1050rpx;left: unset;right: 60rpx;
  462. .brand-lock,.brand-finish-icon{top: 0;right: 80rpx;}
  463. }
  464. }
  465. @media (max-height: 700px) {
  466. min-height:1350rpx;
  467. .brand-lock,.brand-finish-icon{width: 50rpx;height: 50rpx;}
  468. .brand-lock::before{content: '';width: 26rpx;height: 33rpx;margin-top: 6rpx;}
  469. // 0.9
  470. .brand-item:nth-child(1){
  471. width: 288rpx;height: 218rpx;top:506rpx;right:70rpx;
  472. .icon-content-box{top: 150rpx;right: -10rpx;}
  473. .brand-lock,.brand-finish-icon{top: 102rpx;right: 70rpx;}
  474. }
  475. .brand-item:nth-child(2){
  476. width: 356rpx;height: 173rpx;top:610rpx;left:65rpx;
  477. .icon-content-box{top: 130rpx;right: 112rpx;}
  478. .brand-lock,.brand-finish-icon{top: 82rpx;right: 192rpx;}
  479. .animal-img{right: 160rpx;}
  480. }
  481. .brand-item:nth-child(3){
  482. width: 346rpx;height: 138rpx;top:770rpx;right:70rpx;
  483. .icon-content-box{top: 90rpx;right: -10rpx;}
  484. .brand-lock,.brand-finish-icon{top: 42rpx;right: 70rpx;}
  485. }
  486. .brand-item:nth-child(4){
  487. width: 346rpx;height: 182rpx;top:850rpx;left:80rpx;
  488. .icon-content-box{top: 130rpx;right: 112rpx;}
  489. .brand-lock,.brand-finish-icon{top: 82rpx;right: 192rpx;}
  490. .animal-img{right: 160rpx;}
  491. }
  492. .brand-item.ceshi-brand-item{
  493. width: 250rpx;height: 183rpx;top:980rpx;left: unset;right:70rpx;
  494. .brand-lock,.brand-finish-icon{top: 10rpx;right: 100rpx;}
  495. .animal-img{top: 95rpx;right: 30rpx;}
  496. }
  497. }
  498. }
  499. //目录页
  500. .ezy-catalogue-dialog{
  501. width: 663rpx;height: 1038rpx;padding: 180rpx 52rpx 60rpx;box-sizing: border-box;position: relative;
  502. background-image: url("@/static/images/catalog/catalog-bj.png");@include ezy-no-repeat-cover;
  503. display: flex;position: relative;
  504. .uni-scroll-view{position: unset;}
  505. .catalogue-close-btn{
  506. width: 54rpx;height: 54rpx;
  507. background-image: url("@/static/images/catalog/catalog-close-btn.png");@include ezy-no-repeat-cover;
  508. position: absolute;top: 40rpx;right: 36rpx;
  509. }
  510. .ezy-catalogue-collapse{
  511. background-color: transparent!important;flex: 1;overflow-y: auto;
  512. .collapse-item-box{
  513. padding: 24rpx 0 24rpx!important;border-bottom: 2rpx dashed #9dc0f6;
  514. .uni-collapse-item__wrap{background-color: transparent!important;}
  515. .collapse-title{display: flex;font-size: 28rpx;font-weight: 700;color: #0a549d;position: relative;}
  516. .collapse-num-box{
  517. width: 46rpx;height: 46rpx;line-height: 46rpx;font-size: 30rpx;font-weight: 700;color: #fff;text-align: center;
  518. background-image: url("@/static/images/catalog/num-bj.png");@include ezy-no-repeat-cover;
  519. -webkit-text-stroke: 1rpx #0d64d7;text-stroke: 1rpx #0d64d7;margin-right: 12rpx;flex-shrink: 0;
  520. }
  521. .collapse-name{@include single-line-ellipsis;width: 400rpx;line-height: 1.6;}
  522. .uni-collapse-item__title-arrow{margin-right: 60rpx;transform: unset;}
  523. .uni-icons{
  524. width: 37rpx;height: 37rpx;
  525. background-image: url("@/static/images/catalog/jt-btn.png");@include ezy-no-repeat-cover;
  526. &::before{display: none;}
  527. }
  528. .collapse-lock{
  529. width: 35rpx;height: 41rpx;position: absolute;right: -90rpx;top: 0rpx;
  530. background-image: url("@/static/images/catalog/catalog-lock.png");@include ezy-no-repeat-cover;
  531. }
  532. }
  533. .collapse-item-box.collapse-active{
  534. border: 0;
  535. .collapse-title{color: #01b106;}
  536. .collapse-num-box{
  537. background-image: url("@/static/images/catalog/num-active-bj.png");
  538. -webkit-text-stroke: 1rpx #009931;text-stroke: 1rpx #009931;
  539. }
  540. .uni-icons{
  541. background-image: url("@/static/images/catalog/jt-active-btn.png");transform:unset;
  542. }
  543. }
  544. .collapse-content-box{border-top: 2rpx dashed #9dc0f6;margin: 20rpx 0 100rpx;}
  545. .collapse-content-item{
  546. font-size: 28rpx;color:#343434;
  547. border-bottom: 1px dashed #999;
  548. padding: 20rpx 10rpx;margin: 0 10rpx;
  549. }
  550. // .collapse-item-box:last-child{border: 0;}
  551. }
  552. .ezy-catalogue-collapse-vip .collapse-item-box .uni-collapse-item__title-arrow{margin-right: 10rpx;}
  553. }
  554. // 考试页
  555. .ezy-exam-page{
  556. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  557. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  558. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  559. .ezy-exam-swiper{
  560. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  561. uni-swiper-item{overflow: auto;}
  562. }
  563. .exam-submit-btn{
  564. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  565. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  566. }
  567. .tip-mask-box{
  568. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  569. }
  570. .exam-tip-box{
  571. width: 750rpx;height: 355.77rpx;@include ezy-no-repeat-cover;
  572. background-image: url("@/static/images/exam/exam-tip-bj.png");
  573. color: #036f6f;font-size: 32rpx;z-index: 3;padding: 180rpx 0 0 100rpx;
  574. position: absolute;left: 0;right: 0;bottom: var(--window-bottom);
  575. }
  576. }
  577. // 成绩页
  578. .ezy-result-page{
  579. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  580. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  581. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  582. .result-exam-swiper{
  583. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  584. uni-swiper-item{overflow: auto;}
  585. .flex-center{
  586. height: 100%;
  587. .body{height: 100%;display: flex;flex-direction: column;}
  588. // 试题部分滚动 解析部分固定
  589. // .ezy-danxuan-box{flex: 1;overflow-y: auto;}
  590. }
  591. }
  592. .answer-content-box{
  593. margin-top: 24rpx;
  594. .answer-dtjx-row{display: flex;justify-content: space-between;}
  595. .answer-title{width: 150rpx;height: 62rpx;flex-shrink: 0;margin-left: 10rpx;
  596. background-image: url("@/static/images/exam/answer-title.png");@include ezy-no-repeat-cover;
  597. }
  598. .tiankong-answer-content-box{background-color: rgba(255, 255, 255, 0.7);font-size: 32rpx;color: #15ab2e;
  599. border-radius: 4px;box-sizing: border-box;padding: 16rpx;margin: 20rpx 0 20rpx 10rpx;min-height: 80rpx;}
  600. .tiankong-answer-row{word-break: break-all;margin-bottom: 10rpx;}
  601. .tiankong-answer-row:last-child{margin-bottom: 0;}
  602. .answer-btn-box{display: flex;height: 135rpx;margin: 20rpx 0 20rpx 10rpx;}
  603. .answer-item-left,.answer-item-right{
  604. width: 100%;flex: 1;align-items: center;justify-content: center;
  605. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.7);
  606. .answer-item-title{font-size: 32rpx;color: #333;margin-bottom: 4rpx;}
  607. .answer-item-error{font-size: 32rpx;color: #ef1417;min-height: 36rpx;}
  608. .answer-item-correct{font-size: 32rpx;color: #15ab2e;min-height: 36rpx;}
  609. }
  610. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  611. .answer-item-right{border-radius: 0 4px 4px 0;}
  612. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  613. .answer-btn{width: 227rpx;height:72rpx;@include ezy-no-repeat-cover;margin-right: 20rpx;
  614. background-image:url("@/static/images/exam/answer-btn.png");flex-shrink: 0;
  615. }
  616. }
  617. }
  618. // 得分页
  619. .exam-score-dialog{
  620. width: 750rpx;height: 1250rpx;margin-bottom: 24%;position: relative;
  621. @include ezy-no-repeat-cover;
  622. .score-content-box{
  623. position: absolute;top: 746rpx;left: 200rpx;word-spacing: 18rpx;
  624. font-size: 38rpx;font-weight: 800; color: #000;
  625. .text-red{color: #ff6500;margin: 0 8rpx;}
  626. .text-score{
  627. width: 160rpx;font-size: 82rpx;font-weight: 800;color: #ff6701;
  628. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  629. margin: 110rpx 0 0 160rpx;text-align: center;}
  630. }
  631. .ckst-btn,.jxxx-btn{width: 115rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  632. .score-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  633. .ckst-btn{background-image: url("@/static/images/exam/ckst-btn.png");}
  634. .jxxx-btn{background-image: url("@/static/images/exam/jxxx-btn.png");}
  635. @media (max-height: 700px) {zoom: 0.9;}
  636. @media (max-height: 600px) {margin-bottom: 40%;}
  637. }
  638. .score-study-dialog{
  639. background-image: url("@/static/images/exam/score-bj.png");
  640. .score-btn-box{bottom: 0;}
  641. }
  642. .score-finish-dialog{
  643. background-image: url("@/static/images/exam/score-finish-bj.png");
  644. .score-btn-box{bottom: 220rpx;}
  645. }
  646. // 答案解析
  647. .ezy-dajx-page{
  648. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  649. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  650. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  651. .shiti-frame-box{overflow-y: auto;}
  652. .dajx-content-box{
  653. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  654. .slfx-title,.spjj-title{
  655. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  656. }
  657. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  658. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  659. .slfx-content{
  660. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  661. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  662. display: block;@include ezy-rich-text;
  663. }
  664. }
  665. .spjj-video-box{
  666. width: 606rpx;height: 394rpx;@include ezy-no-repeat-cover;margin: 0 auto 42rpx;
  667. background-image: url("@/static/images/exam/video-frame-bj.png");position: relative;
  668. box-sizing: border-box;padding: 18rpx;
  669. .spjj-video{
  670. width: 100%;height: 100%!important;
  671. .prism-big-play-btn{top: 50%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;}
  672. .prism-info-display{display: none;}
  673. }
  674. }
  675. }
  676. // 课程页面
  677. .ezy-course-page{
  678. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  679. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  680. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  681. .course-video-box{
  682. width: 100%;height: 400rpx!important;flex-shrink: 0;position: relative;
  683. .prism-big-play-btn{top: 50%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;}
  684. .prism-info-display{display: none;}
  685. }
  686. .course-content-border{
  687. width: 100%;display: flex;flex: 1;position: relative;
  688. background-color: rgba(255, 255, 255, 0.6);overflow-y: auto;
  689. }
  690. .course-content-box{
  691. flex: 1;margin: 20rpx 20rpx 0;background-color: #fff;overflow-y: auto;
  692. box-sizing: border-box;padding: 42rpx 24rpx;
  693. }
  694. .course-content-item{
  695. width: 100%;background-color: #f7f8fa;border-radius: 8rpx;color: #666;display: block;
  696. box-sizing: border-box;padding: 20rpx;margin-bottom: 30rpx;font-size: 32rpx;@include ezy-rich-text;
  697. }
  698. .title-play-box{display: flex;justify-content: space-between;margin:0 6rpx 12rpx;}
  699. .course-title{color: #088aea;font-size: 36rpx;margin-right: 16rpx;}
  700. .course-play-btn{width: 144rpx;height: 44rpx;flex-shrink: 0;
  701. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-play.png");}
  702. }
  703. // 课程得分页面
  704. .course-score-dialog{
  705. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  706. background-image: url("@/static/images/course/video-score-bj.png");
  707. margin-bottom: 20%;position: relative;
  708. .text-score{
  709. width: 220rpx;font-size: 100rpx;font-weight: 800;color: #ff6701;
  710. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  711. margin: 110rpx 0 0 160rpx;text-align: right;position: absolute;
  712. bottom: 230rpx;left: 0;
  713. }
  714. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  715. .course-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  716. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  717. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  718. @media (max-height: 600px) {margin-bottom: 40%;}
  719. }
  720. // 课程完成
  721. .course-finish-dialog{
  722. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  723. background-image: url("@/static/images/course/video-finish-bj.png");
  724. margin-bottom: 20%;position: relative;
  725. .text-score{display: none;}
  726. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  727. .course-btn-box{position: absolute;bottom: 200rpx;display: flex;left: 50%;transform: translateX(-50%);}
  728. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  729. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  730. @media (max-height: 600px) {margin-bottom: 40%;}
  731. }
  732. // 我的页面
  733. .ezy-my-page{
  734. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  735. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  736. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  737. .my-head-box{
  738. width: 100%;padding: 80rpx 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  739. .head-img-box{width: 154rpx;height: 154rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;}
  740. .head-content-box{font-size: 30rpx;}
  741. }
  742. // hyqy
  743. .my-hyqy-swiper{
  744. height: 385rpx;
  745. .uni-swiper-dots-horizontal{bottom: 24rpx;}
  746. }
  747. .hyqy-box{
  748. width: 731rpx;height: 385rpx;margin: 0 auto;position: relative;
  749. @include ezy-no-repeat-cover;
  750. .hyqy-btn{width: 154rpx;height: 54rpx;position: absolute;top: 46rpx;right: 46rpx;
  751. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/hyqy-btn.png");}
  752. }
  753. // 1数学 2英语
  754. .hyqy-box1{background-image: url("@/static/images/my/hyqy-img1.png");}
  755. .hyqy-disabled-box1{background-image: url("@/static/images/my/hyqy-img-disabled1.png");}
  756. .hyqy-box2{background-image: url("@/static/images/my/hyqy-img2.png");}
  757. .hyqy-disabled-box2{background-image: url("@/static/images/my/hyqy-img-disabled2.png");}
  758. // list
  759. .my-list-box{
  760. width:700rpx;margin: 36rpx auto 0;
  761. .list-row{border-bottom: 2rpx solid #5bcdfb;color: #fff;box-sizing: border-box;padding: 30rpx 20rpx;
  762. display: flex;align-items: center;position: relative;}
  763. .list-row::after{
  764. content: '';width: 19rpx;height: 33rpx;@include ezy-no-repeat-cover;
  765. background-image: url("@/static/images/my/list-jt.png");
  766. position: absolute;right: 20rpx;
  767. }
  768. .no-jt::after,.no-jt::after{display: none;}
  769. .list-icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  770. .tel-icon{background-image: url("@/static/images/my/list-icon1.png");}
  771. .error-icon{background-image: url("@/static/images/my/list-icon2.png");}
  772. .order-icon{background-image: url("@/static/images/my/list-icon3.png");}
  773. .login-out-icon{background-image: url("@/static/images/my/list-icon4.png");}
  774. .about-icon{background-image: url("@/static/images/my/list-icon5.png");}
  775. }
  776. @media (max-height: 700px) {
  777. .my-head-box{padding: 60rpx 24rpx 32rpx;}
  778. .my-list-box{
  779. margin: 16rpx auto 0;
  780. .list-row{padding: 24rpx 20rpx;}
  781. }
  782. }
  783. @media (max-height: 600px) {
  784. min-height: 1200rpx;overflow-y: auto;
  785. .my-head-box{padding: 42rpx 24rpx 24rpx;}
  786. .my-list-box{
  787. margin: 12rpx auto 0;
  788. .list-row{padding: 16rpx;font-size: 30rpx;}
  789. .list-row::after{right: 16rpx;}
  790. }
  791. }
  792. }
  793. .ezy-my-page::before{
  794. content: '';width: 279rpx;height: 250rpx;display:block;
  795. position: absolute;top:calc(20rpx - var(--status-bar-height));right:20rpx;
  796. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/my-page-img.png");
  797. }
  798. // 错题
  799. .ezy-cuoti-page{
  800. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  801. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  802. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  803. .uni-list{background-color: transparent!important;}
  804. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  805. .cuoti-content-box{flex: 1;background-color: rgba(255, 255, 255, 0.6);z-index: 3;margin: 10rpx 20rpx;}
  806. .cuoti-scroll-view{overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  807. // item
  808. .list-item-box{
  809. width: 94%;background-color: transparent!important;
  810. border-bottom: 1px dashed #77d6f7;margin: 0 3%;
  811. .uni-list-item__header{display: none;}
  812. .uni-list-item__container{flex-direction: column;position: relative;padding:36rpx 0;overflow: unset;}
  813. .item-date-row{
  814. display: flex;align-items: center;color:#28bdf2;margin-bottom: 16rpx;
  815. .data-icon{
  816. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  817. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-time-icon.png");}
  818. }
  819. .item-cuoti-row{
  820. display: flex;flex-direction: row;color:#444;
  821. .icon-num-box{display: flex;}
  822. .cuoti-content{display: flex;align-items: center;}
  823. .cuoti-icon{
  824. width: 35rpx;height: 35rpx;margin: 10rpx;font-size: 28rpx;
  825. @include ezy-no-repeat-cover;background-image: url("@/static/images/exam/cuoti-icon.png");
  826. }
  827. .cuoti-text{color: #ff0101;margin-right: 6rpx;}
  828. }
  829. .cuoti-btn{
  830. width: 160rpx;height: 40rpx;line-height: 38rpx;box-sizing: border-box;padding-left: 24rpx;
  831. background-color: #068aea;font-size: 24rpx;color: #fff;border-radius: 20rpx 0 0 20rpx;
  832. position: absolute;right: -3%;top: 114rpx;
  833. }
  834. .cuoti-btn::after{
  835. content: '';width: 14rpx;height: 24rpx;display: block;position: absolute;top: 8rpx;right: 16rpx;
  836. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/list-jt.png");
  837. }
  838. }
  839. }
  840. // 关于我们
  841. .ezy-about-page{
  842. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  843. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  844. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  845. .about-body-border{
  846. flex: 1;width: 92%;height: auto;background-color: rgba(255, 255, 255, 0.6);border-radius: 10px;
  847. margin: 12rpx auto 200rpx;position: relative;display: flex;flex-direction: column;
  848. }
  849. .about-body-box{
  850. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  851. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  852. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  853. }
  854. .content-top-box{
  855. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  856. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #fff;
  857. .about-icon-box{
  858. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  859. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  860. }
  861. .about-name{
  862. font-size: 30rpx;margin: 20rpx 0 42rpx;
  863. }
  864. .about-text{margin: 16rpx 0;}
  865. }
  866. .content-box{
  867. font-size: 30rpx;margin-top: 50rpx;line-height: 2;color: #333;
  868. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  869. }
  870. @media (max-height: 600px) {
  871. .about-body-border{margin: 12rpx auto 150rpx;}
  872. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  873. .content-top-box{padding-bottom: 24rpx;}
  874. .content-box{margin-top: 20rpx;}
  875. }
  876. }
  877. // 绑定手机号弹窗
  878. .my-tel-dialog{
  879. background-color: rgba(255, 255, 255, 0.6);
  880. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  881. justify-content: center;align-items: center;
  882. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  883. background-image: url("@/static/images/common/close-icon.png");}
  884. .my-tel-content{
  885. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 56rpx 62rpx;
  886. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  887. }
  888. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 24rpx;}
  889. .tel-row{border-bottom: 1px dashed #70cbf4;}
  890. .yzm-row{padding-top: 24rpx;}
  891. /***** 输入手机号页面*****/
  892. .my-input-box{
  893. width:500rpx;height: 88rpx;box-sizing: border-box;
  894. display: flex;align-items: center;
  895. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  896. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  897. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  898. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  899. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  900. }
  901. // 滑块
  902. .nc-container{
  903. position: unset;padding: 24rpx 0 36rpx;box-sizing: border-box;
  904. .nc_wrapper{width: 100%!important;}
  905. .nc_iconfont.btn_ok{font-family: unset;font-size: 0;}
  906. .nc_iconfont.btn_ok::before{content: '';width: 20px;height:20px;display: block;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);
  907. @include ezy-no-repeat-cover;background-image: url("@/static/images/login/slider-right-icon.png");z-index: 4;}
  908. }
  909. .get-yzm-btn{color: #3b73bf;margin-bottom: 16rpx;font-size: 25rpx;}
  910. .get-yzm-disabled{color: #666;}
  911. .yzm-tip{
  912. color: #3b73bf;margin:0 0 16rpx;font-size: 25rpx;
  913. }
  914. .my-bind-btn{
  915. width:500rpx;height: 88rpx;text-align: center;line-height: 88rpx;color: #fff;margin-top: 16rpx;
  916. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  917. }
  918. }
  919. // SVIP
  920. .ezy-svip-page{
  921. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  922. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  923. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  924. .svip-login1,.svip-login2{width: 673rpx;height: 269rpx;margin: 24rpx auto 0;@include ezy-no-repeat-cover;}
  925. .svip-login1{background-image: url("@/static/images/pay/svip-logo1.png");}
  926. .svip-login2{background-image: url("@/static/images/pay/svip-logo2.png");}
  927. .svip-list-box{
  928. margin: 24rpx auto;
  929. .list-item-box{display: flex;align-items: center;color: #fff;margin-bottom: 28rpx;}
  930. .list-icon{
  931. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  932. }
  933. .list-title{
  934. font-size: 28rpx;font-weight: 600;margin-bottom: 10rpx;
  935. }
  936. .list-content{font-size: 25rpx;color: rgba(255, 255, 255, 0.8);}
  937. }
  938. .open-svip-box{
  939. width: 702rpx;height:413rpx;margin: 0 auto;box-sizing: border-box;padding: 0 16rpx;
  940. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-block-bj.png");
  941. .svip-price-box{
  942. display: flex;justify-content: space-between;border-bottom: 2rpx solid #efd774;font-size: 32rpx;
  943. margin-top: 120rpx;box-sizing: border-box;padding:0 24rpx 24rpx;color: #87664d;align-items: center;
  944. .original-price{text-decoration: line-through;}
  945. .discount-price{color: #ff0101;font-size: 40rpx;}
  946. }
  947. .pay-type-box{
  948. display: flex;align-items: center;padding:20rpx 24rpx;box-sizing: border-box;
  949. .type-radio-title{color: #87664d;margin-right: 32rpx;flex-shrink: 0;font-size: 32rpx;}
  950. .type-radio-content{display: flex;flex-direction: row;align-items: center;
  951. justify-content: space-between;flex: 1;font-size: 32rpx;}
  952. }
  953. .type-radio-box{
  954. display: flex;align-items: center;color: #87664d;
  955. icon{width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  956. .uni-radio-input{
  957. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  958. background-image: url("@/static/images/pay/svip-radio.png");
  959. background-color:transparent;border:0; pointer-events: none;
  960. svg{display: none;}
  961. }
  962. .radio-checked .uni-radio-input{
  963. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;
  964. background-image: url("@/static/images/pay/svip-radio-checked.png");
  965. }
  966. }
  967. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  968. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  969. .open-svip-btn{
  970. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align: center;color: #fff;margin: 10rpx auto;font-size: 36rpx;
  971. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  972. }
  973. }
  974. @media (max-height: 800px) {
  975. min-height: 1346rpx;
  976. .svip-login1,.svip-login2{width: 538rpx;height: 215rpx;margin: 0 auto;}
  977. .svip-list-box{
  978. margin: 0 auto;
  979. .list-item-box{margin-bottom: 20rpx;}
  980. }
  981. .open-svip-box{
  982. width: 673rpx;height:396rpx;
  983. .open-svip-btn{margin: 0 auto;}
  984. }
  985. }
  986. @media (max-height: 700px) {
  987. min-height: 1250rpx;
  988. .svip-login1,.svip-login2{width: 500rpx;height: 200rpx;margin: 0 auto;}
  989. .svip-list-box{
  990. .list-item-box{margin-bottom: 16rpx;}
  991. .list-icon{
  992. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  993. }
  994. .list-title{font-size: 26rpx;}
  995. .list-content{font-size: 22rpx;}
  996. }
  997. .open-svip-box{
  998. width: 625rpx;height:349rpx;
  999. .svip-price-box{
  1000. font-size: 30rpx;margin-top: 90rpx;padding:0 24rpx 24rpx;
  1001. .discount-price{color: #ff0101;font-size: 36rpx;}
  1002. }
  1003. .pay-type-box{
  1004. padding:10rpx 12rpx;
  1005. .type-radio-title{margin-right: 24rpx;font-size: 30rpx;}
  1006. .type-radio-content{font-size: 30rpx;}
  1007. }
  1008. .open-svip-btn{width: 300rpx;height: 80rpx;line-height: 80rpx;margin: 6rpx auto;font-size: 32rpx;}
  1009. }
  1010. }
  1011. }
  1012. // 订单
  1013. .ezy-order-page{
  1014. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1015. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1016. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1017. .uni-list{background-color: transparent!important;}
  1018. .uni-list--border-top,.uni-list--border-bottom{display: none;}
  1019. .uni-list-item__header{display: none;}
  1020. .uni-list-item__container{
  1021. flex-direction: column!important;position: relative;
  1022. padding:16rpx 20rpx !important;overflow: unset;}
  1023. .order-scroll-view{margin-top: 10rpx;overflow-y: auto;height: calc(100vh - 380rpx - var(--status-bar-height));}
  1024. .order-list-item{
  1025. width: 94%;background-color: rgba(255, 255, 255, 0.6)!important;
  1026. margin: 0 3% 10rpx;border-radius: 8rpx;
  1027. .order-item-head{
  1028. display: flex;justify-content: space-between;align-items: center;font-size: 24rpx;color: #333;
  1029. .order-name-box{
  1030. display: flex;align-items: center;
  1031. icon{
  1032. width: 58rpx;height: 58rpx;margin-right: 10rpx;
  1033. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-icon.png");
  1034. }
  1035. }
  1036. .pay-status{color:#fdae36;margin-left: 36rpx;}
  1037. }
  1038. .order-content-box{
  1039. display: flex;margin-top: 10rpx;border-bottom: 1px dashed #fff;
  1040. box-sizing: border-box;padding-bottom: 32rpx;margin-bottom: 24rpx;
  1041. icon{width: 212rpx;height: 202rpx;margin-right: 20rpx;@include ezy-no-repeat-cover;}
  1042. .content-img1{background-image: url("@/static/images/pay/svip1.png");}
  1043. .content-img2{background-image: url("@/static/images/pay/svip2.png");}
  1044. .content-body-box{display: flex;flex-direction: column;}
  1045. .content-name{
  1046. font-size: 40rpx;color: #333;margin-bottom: 12rpx;
  1047. }
  1048. .content-tag{
  1049. width: 160rpx;height: 40rpx;line-height: 40rpx;
  1050. font-size: 24rpx;color: #01c6fe;background-color: rgba(255, 255, 255, 0.6);
  1051. border-radius: 4rpx;text-align: center;
  1052. }
  1053. .content-yuanjia{font-size: 42rpx;color: #ff0101;margin-top: auto;}
  1054. }
  1055. .order-bottom-box{
  1056. box-sizing: border-box;padding-bottom: 24rpx;
  1057. .bottom-money-box{
  1058. display: flex;justify-content: space-between;align-items: center;
  1059. .bottom-data{font-size: 24rpx;color: #999;}
  1060. .bottom-money{color: #333;}
  1061. }
  1062. .bottom-btn{
  1063. width: 167rpx;height: 52rpx;line-height: 52rpx;text-align: center;color: #FFF;font-size: 28rpx;margin-left: auto;
  1064. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-btn-bj.png");margin-top: 24rpx;
  1065. }
  1066. }
  1067. }
  1068. }
  1069. // 订单支付
  1070. .ezy-order-pay-page{
  1071. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  1072. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1073. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/common/ezy-page-bj.png");
  1074. .order-pay-border-box{
  1075. width: 740rpx;height: 1144rpx;margin: 0 auto;box-sizing: border-box;padding: 30rpx;
  1076. @include ezy-no-repeat-cover(top);background-image: url("@/static/images/pay/order-pay-bj.png");
  1077. }
  1078. .order-pay-img-box{
  1079. display: flex;background-color: rgba(255, 255, 255, 0.6);
  1080. box-sizing: border-box;padding: 32rpx 24rpx;margin-bottom: 6rpx;
  1081. icon{width: 212rpx;height: 202rpx;margin-right: 20rpx;@include ezy-no-repeat-cover;flex-shrink: 0;}
  1082. .order-pay-img1{background-image: url("@/static/images/pay/svip1.png");}
  1083. .order-pay-img2{background-image: url("@/static/images/pay/svip2.png");}
  1084. .img-content-box{flex: 1;position: relative;}
  1085. .content-name{font-size: 40rpx;color: #333;margin-bottom: 12rpx;}
  1086. .content-tag{
  1087. width: 150rpx;height: 40rpx;line-height: 40rpx;display: inline-block;
  1088. font-size: 24rpx;color: #01c6fe;background-color: rgba(255, 255, 255, 0.6);
  1089. border-radius: 4rpx;text-align: center;
  1090. }
  1091. .content-tag + .content-tag{margin-left: 16rpx;}
  1092. .content-yuanjia{font-size: 42rpx;color: #ff0101;position: absolute;right: 0;bottom: 0;}
  1093. }
  1094. .price-box{
  1095. margin-bottom: 6rpx;background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;
  1096. .price-row{display: flex;justify-content: space-between;font-size: 30rpx;color: #333;box-sizing: border-box;padding-left: 10rpx;}
  1097. .price-line-row{border-bottom: 1rpx dashed #fff;padding: 24rpx 0 36rpx 10rpx;margin-bottom: 24rpx;}
  1098. .price-red{color: #ff0101;}
  1099. }
  1100. .pay-type-box{
  1101. background-color: rgba(255, 255, 255, 0.6);box-sizing: border-box;padding: 32rpx 24rpx;border-radius: 0 0 10rpx 10rpx;
  1102. .pay-type-name{font-size: 36rpx;color: #333;margin-bottom: 12rpx;}
  1103. .type-radio-box{display: flex;flex-direction: column;}
  1104. .type-radio-row{
  1105. display: flex;justify-content: space-between;flex: 1;align-items: center;color: #87664d;
  1106. padding: 24rpx 0;box-sizing: border-box;
  1107. icon{width: 58rpx;height: 58rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;flex-shrink: 0;}
  1108. .uni-radio-input{
  1109. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;margin-left: 16rpx;
  1110. background-image: url("@/static/images/pay/svip-radio.png");
  1111. background-color:transparent;border:0; pointer-events: none;
  1112. svg{display: none;}
  1113. }
  1114. .radio-checked .uni-radio-input{
  1115. width: 48rpx;height: 48rpx;@include ezy-no-repeat-cover;color:transparent;flex-shrink: 0;
  1116. background-image: url("@/static/images/pay/svip-radio-checked.png");
  1117. }
  1118. .radio-content-box{margin-right: auto;font-size: 0;}
  1119. .radio-title{font-size: 30rpx;color: #333;}
  1120. .radio-content{font-size: 24rpx;color: #666;}
  1121. }
  1122. .type-radio-row +.type-radio-row{border-top:1px dashed #fff;padding-bottom: 10rpx;}
  1123. .wx-radio{background-image: url("@/static/images/pay/svip-wx-icon.png");}
  1124. .zfb-radio{background-image: url("@/static/images/pay/svip-zfb-icon.png");}
  1125. }
  1126. .pay-sum-box{
  1127. display: flex;justify-content: space-between;align-items: center;font-size: 36rpx;color: #333;margin-top: 42rpx;
  1128. icon{width: 35rpx;height: 35rpx;margin: 0 12rpx;
  1129. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/order-date.png");}
  1130. .sum-red{color: #ff0101;font-weight: bold;margin-left: 6rpx;}
  1131. .sum-btn{
  1132. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align:center;color: #fff;font-size: 32rpx;
  1133. display: flex;justify-content: center;align-items: center;
  1134. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  1135. }
  1136. }
  1137. @media (max-height: 700px) {
  1138. .order-pay-border-box{padding: 20rpx;}
  1139. .order-pay-img-box{padding:24rpx;}
  1140. .price-box{padding:24rpx;}
  1141. .pay-type-box{
  1142. padding:24rpx;
  1143. .pay-type-name{margin-bottom: 0;}
  1144. .type-radio-row{padding: 16rpx 0;}
  1145. }
  1146. .pay-sum-box{margin-top: 32rpx;}
  1147. }
  1148. @media (max-height: 600px) {
  1149. .order-pay-border-box{padding: 16rpx;}
  1150. .order-pay-img-box{padding:16rpx;}
  1151. .price-box{padding:16rpx;}
  1152. .pay-type-box{
  1153. padding:16rpx;
  1154. .pay-type-name{margin-bottom: 0;}
  1155. .type-radio-row{padding: 12rpx 0;}
  1156. }
  1157. .pay-sum-box{margin-top: 24rpx;}
  1158. }
  1159. }
  1160. // 游戏
  1161. .ezy-game-page{
  1162. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  1163. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  1164. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/game/game-bj.png");
  1165. .game-jf-box{position: absolute;right: 24rpx;top: var(--status-bar-height);}
  1166. // goose
  1167. .game-goose-box{
  1168. position: absolute;bottom: 300rpx;right: 80rpx;color: #0d5f84;
  1169. .game-progress-text{position: absolute;left: 50%;transform: translateX(-50%);font-size: 18rpx;}
  1170. .game-progress-box{
  1171. width: 138rpx;height: 25rpx;position: absolute;left: 48rpx;
  1172. .u-line-progress__background{
  1173. width: 138rpx;height: 25rpx!important;
  1174. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/jf-bj.png");
  1175. }
  1176. .u-line-progress__line{height: 25rpx!important;}
  1177. }
  1178. .goose-img-box{width: 231rpx;height: 442rpx;@include ezy-no-repeat-cover;}
  1179. }
  1180. .game-goose-box0{
  1181. .game-progress-box{bottom: 300rpx;}
  1182. .game-progress-text{bottom: 302rpx;}
  1183. }
  1184. .game-goose-box1{
  1185. .game-progress-box{bottom: 330rpx;}
  1186. .game-progress-text{bottom: 333rpx;}
  1187. }
  1188. .game-goose-box2{
  1189. .game-progress-box{bottom: 400rpx;}
  1190. .game-progress-text{bottom: 403rpx;}
  1191. }
  1192. .game-goose-box3{
  1193. .game-progress-box{bottom: 460rpx;}
  1194. .game-progress-text{bottom: 463rpx;}
  1195. }
  1196. // food
  1197. .food-img-box{width: 80rpx;height: 75rpx;position: absolute;}
  1198. .food-img100{bottom: 368rpx;left: 274rpx;}
  1199. .food-img300{bottom: 360rpx;left: 270rpx;}
  1200. .food-img600{bottom: 360rpx;left: 272rpx;}
  1201. //btn
  1202. .food-btn-box{
  1203. width: 106rpx;height: 121rpx;position: absolute;bottom: 50rpx;left: 50rpx;
  1204. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-common-img.png");
  1205. }
  1206. .yxsm-btn{
  1207. width: 125rpx;height: 125rpx;position: absolute;bottom: 50rpx;right: 50rpx;
  1208. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/yxsm-btn-img.png");
  1209. }
  1210. // game-popup-box
  1211. .game-popup-box{
  1212. width: 100%;height: 514rpx;@include ezy-no-repeat-cover;
  1213. background-image: url("@/static/images/game/food-box-bj.png");
  1214. box-sizing: border-box;padding: 64rpx 36rpx 0;
  1215. .game-popup-head,.jf-btn-box{display: flex;justify-content: space-between;align-items: center;}
  1216. .game-popup-title{
  1217. width: 285rpx;height: 90rpx;@include ezy-no-repeat-cover;
  1218. background-image: url("@/static/images/game/food-title.png");
  1219. }
  1220. .game-popup-jf{margin: 0 20rpx 0 0;}
  1221. .popup-close-btn{
  1222. width: 46rpx;height: 46rpx;@include ezy-no-repeat-cover;
  1223. background-image: url("@/static/images/common/close-icon.png");
  1224. }
  1225. .food-list-box{display: flex;justify-content: space-between;margin-top: 24rpx;}
  1226. .food-item-box{
  1227. width: 204rpx;height: 250rpx;@include ezy-no-repeat-cover;
  1228. display: flex;flex-direction: column;align-items: center;justify-content: center;
  1229. background-image: url("@/static/images/game/food-bj.png");
  1230. .food-image{width: 144rpx;height:135rpx;}
  1231. .food-item-jf{
  1232. width: 123rpx;height: 46rpx;
  1233. display: flex;align-items: center;line-height: 1.2;font-size: 26rpx;
  1234. @include ezy-no-repeat-cover;background-image: url("@/static/images/game/food-jf-bj.png");margin-top: 20rpx;
  1235. .jf-icon{width: 35rpx;height: 35rpx;margin:0 4rpx 0 10rpx;flex-shrink: 0;
  1236. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-qb.png");}
  1237. .jf-text{min-width: 60rpx;text-align: center;color: #fff;margin-top: 2rpx;}
  1238. }
  1239. }
  1240. }
  1241. }
  1242. .yxsm-popup-box{
  1243. width: 684rpx;height: 1308rpx;box-sizing: border-box;padding: 120rpx 56rpx 60rpx;overflow-y: auto;
  1244. background-image: url("@/static/images/login/agree-content-bj.png");@include ezy-no-repeat-cover;
  1245. position: relative;text-align: justify;display: flex;flex-direction: column;position: relative;
  1246. .yxsm-close-btn{width: 62rpx;height: 62rpx;@include ezy-no-repeat-cover;position: absolute;
  1247. top: 64rpx;right: 44rpx;background-image: url("@/static/images/common/close-icon.png");}
  1248. .yxsm-item-box{overflow-y: auto;line-height: 1.8;font-size: 28rpx;}
  1249. .yxsm-popup-title{font-size: 36rpx;color: #333;text-align: center;margin-bottom: 32rpx;}
  1250. .item-title{color: #359ae2;}
  1251. .item-content{color: #555;}
  1252. @media (max-height: 480px){
  1253. padding: 120rpx 56rpx 120rpx;
  1254. .yxsm-close-btn{top: 100rpx;}
  1255. }
  1256. }
  1257. // svip弹窗
  1258. .ezy-svip-dialog{
  1259. .tip-content-box{
  1260. width: 625rpx;height: 519rpx;padding: 42rpx 48rpx;
  1261. @include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;
  1262. background-image: url("@/static/images/common/tip-big-bj.png");
  1263. position: relative;
  1264. icon{
  1265. width: 510rpx;
  1266. height: 269rpx;@include ezy-no-repeat-cover;
  1267. position: absolute;top: -20%;left: 50%;transform: translateX(-50%);
  1268. }
  1269. .svip-img1{background-image: url("@/static/images/pay/svip-dialog-img1.png");}
  1270. .svip-img2{background-image: url("@/static/images/pay/svip-dialog-img2.png");}
  1271. }
  1272. .tip-content{
  1273. color: #666;font-size: 32rpx;padding:160rpx 0 80rpx;line-height: 1.6;text-align: center;
  1274. text-align: center;border-bottom: 1px dashed #70cbf4;
  1275. }
  1276. .tip-btn-box{
  1277. width: 100%;display: flex;justify-content: space-between;
  1278. .not-confirm-btn,.confirm-btn{
  1279. width: 208rpx;height: 83rpx;@include ezy-no-repeat-cover;margin: 30rpx 32rpx 0;
  1280. }
  1281. .not-confirm-btn{background-image: url("@/static/images/common/tip-cancel-btn.png");}
  1282. .confirm-btn{background-image: url("@/static/images/pay/svip-btn.png");}
  1283. }
  1284. }