pages.scss 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745
  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/login/agree-sections-close.png");}
  117. .agree-section-box{font-size: 30rpx;line-height: 1.8;overflow: auto;flex: 1;padding: 0 46rpx;}
  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/login/agree-sections-close.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;
  157. background-color: #43c1f6;
  158. background-image: url("@/static/images/grade/grades-terms-bj.png");@include ezy-no-repeat-cover(top);
  159. // padding-top: 52%;
  160. position: relative;min-height: 1212rpx;
  161. .grades-body{
  162. width: 752rpx;max-width: 100%;height: 1212rpx;display: flex;flex-direction: column;margin: 0 auto;
  163. background-image: url("@/static/images/grade/grades-border.png");@include ezy-no-repeat-cover(top);
  164. position: absolute;left: 50%;transform: translateX(-50%);top: 24%;
  165. }
  166. .grades-change-title{
  167. width: 577rpx;height: 92rpx;margin: 10% auto 0;
  168. background-image: url("@/static/images/grade/grades-title.png");@include ezy-no-repeat-cover;
  169. }
  170. .grades-title-desc{font-size: 28rpx;color: #777;text-align: center;margin-top: 10rpx;}
  171. .grades-terms-title{width: 692rpx;height: 92rpx;margin: 3% auto 0;@include ezy-no-repeat-cover;}
  172. .grades-title-img{background-image: url("@/static/images/grade/grade-title.png");}
  173. .terms-title-img{background-image: url("@/static/images/grade/term-bj.png");}
  174. .grade-item-box{display: flex;flex-wrap: wrap;justify-content: space-evenly;box-sizing: border-box;padding: 3% 4% 1%;}
  175. .grade-item {
  176. width: 277rpx;height: 87rpx;line-height: 82rpx;margin: 2% 0;
  177. background-image: url("@/static/images/grade/grades-bj.png");@include ezy-no-repeat-cover;
  178. text-align: center;font-size: 36rpx;color: #fff;font-weight: 800;
  179. }
  180. // -webkit-text-stroke: 1.6rpx #ac5300;text-stroke: 1.6rpx #ac5300;
  181. .grade-item.active{
  182. color: #fff;background-image: url("@/static/images/grade/grades-a-bj.png");
  183. }
  184. .grade-line{width: 90%;height: 4rpx;border-top: 4rpx dashed #7cbeee;margin: 5% auto 4%;}
  185. .grade-confirm-btn{
  186. width: 644rpx;height: 108rpx;background-image: url("@/static/images/grade/confirm-btn.png");@include ezy-no-repeat-cover;
  187. }
  188. .grade-confirm-btn:after{display: none;}
  189. /* 针对小屏幕设备 */
  190. @media (max-height: 800px) {
  191. min-height: 1300rpx;
  192. .grades-body{zoom:0.9;bottom: 1%;top: unset;}
  193. }
  194. @media (max-height: 700px) {
  195. min-height: 1200rpx;
  196. .grades-body{zoom:0.8;}
  197. }
  198. @media (max-height: 480px) {
  199. min-height: 1200rpx;
  200. .grades-body{zoom:0.75;}
  201. }
  202. }
  203. // 蛋
  204. .study-egg-dialog{
  205. .egg-content-box{display: flex;display: flex;flex-direction: column;align-items: center;}
  206. .egg-title{
  207. width: 606rpx;height: 85rpx;
  208. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-title.png");
  209. }
  210. .egg-img{width: 692rpx;height: 615rpx;margin-top: 20%;
  211. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-img.png");
  212. }
  213. .egg-btn{
  214. width: 644rpx;height: 106rpx;margin-top: 10%;
  215. @include ezy-no-repeat-cover;background-image: url("@/static/images/study/egg-btn.png");
  216. }
  217. @media (max-height: 800px) {
  218. .egg-img{margin-top: 10%;}
  219. .egg-btn{margin-top: 6%;}
  220. }
  221. @media (max-height: 700px) {
  222. .egg-img{margin-top: 6%;}
  223. .egg-btn{margin-top: 4%;}
  224. }
  225. }
  226. //地图页
  227. .ezy-study-page{
  228. width:100%;height: 100vh;min-height:1400rpx;background-color: #43c1f6;display: flex;flex-direction: column;
  229. background-image: url("@/static/images/study/study-page-bj.png");@include ezy-no-repeat-cover(top);
  230. box-sizing: border-box;padding-top:var(--status-bar-height);justify-content: center;position: relative;
  231. .study-school-year{
  232. width: 237rpx;height: 73rpx;line-height:68rpx;background-image: url("@/static/images/study/school-year-bj.png");
  233. color: #fff;@include ezy-no-repeat-cover;padding-left: 75rpx;font-size: 28rpx;font-weight: 600;
  234. position: absolute;left: 20rpx;top:var(--status-bar-height);
  235. }
  236. .ezy-study-wrap{
  237. width:750rpx;height:1394rpx;background-image: url("@/static/images/study/study-wrap-bj.gif");
  238. @include ezy-no-repeat-cover;position: relative;margin: 0 auto;
  239. }
  240. .chapter-box{
  241. width: 150rpx;text-align: center;font-weight: 800;color: #5c1a11;
  242. font-size: 32rpx;position: absolute;top:136rpx;left:330rpx;
  243. }
  244. .chapter-title-box{
  245. width: 268rpx;text-align: center;font-weight: 800;color: #fbb030;@include single-line-ellipsis;
  246. font-size: 32rpx;position: absolute;top:190rpx;left:270rpx;
  247. }
  248. .brand-item{box-sizing: border-box;font-size: 28rpx;color: #fff;text-align: center;font-weight: 600;position: relative;}
  249. .brand-content{width: 85%;margin: 0 auto;@include single-line-ellipsis;}
  250. .brand-icon,.brand-lock{
  251. width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;
  252. position: absolute;top: -30rpx;left: 50%;transform: translateX(-50%);}
  253. .brand-icon{
  254. font-size: 36rpx;font-weight: 600;color: #ff6501;line-height: 70rpx;
  255. background-image: url("@/static/images/catalog/number-bj.png");
  256. }
  257. .brand-lock{background-image: url("@/static/images/catalog/lock-bj.png");
  258. display: flex;justify-content: center;}
  259. .brand-lock::before{
  260. content: '';width: 38rpx;height: 45rpx;display: block;@include ezy-no-repeat-cover;
  261. background-image: url("@/static/images/catalog/lock-img.png");margin-top: 10rpx;
  262. }
  263. .brand-item:nth-child(1){
  264. width: 298rpx;height: 144rpx;@include ezy-no-repeat-cover;
  265. padding: 40rpx 0 10rpx;position: absolute;top:320rpx;right:60rpx;
  266. background-image: url("@/static/images/catalog/chang-pai-disabled.png");
  267. }
  268. .brand-item.brand-active:nth-child(1){background-image: url("@/static/images/catalog/chang-pai-active.png");}
  269. .brand-item:nth-child(2){
  270. width: 231rpx;height: 147rpx;@include ezy-no-repeat-cover;
  271. padding: 40rpx 0 10rpx;position: absolute;top:540rpx;left:75rpx;
  272. background-image: url("@/static/images/catalog/duan-pai-disabled.png");
  273. }
  274. .brand-item:nth-child(3){
  275. width: 298rpx;height: 144rpx;@include ezy-no-repeat-cover;
  276. padding: 40rpx 0 10rpx;position: absolute;top:692rpx;right:90rpx;
  277. background-image: url("@/static/images/catalog/chang-pai-disabled.png");
  278. }
  279. .brand-item:nth-child(4){
  280. width: 185rpx;height: 121rpx;@include ezy-no-repeat-cover;
  281. padding: 16rpx 10rpx 10rpx 10rpx;position: absolute;top:1112rpx;right:140rpx;
  282. background-image: url("@/static/images/catalog/ceshi-pai.png");
  283. .brand-lock{left: 0;top: -30rpx;}
  284. }
  285. @media (max-height: 800px) {
  286. // 0.92
  287. .ezy-study-wrap{width: 690rpx;height: 1284rpx;}
  288. .chapter-box{width: 138rpx;top:130rpx;left:304rpx;font-size: 28rpx;}
  289. .chapter-title-box{width: 247rpx;top:178rpx;left:247rpx;font-size: 28rpx;}
  290. .brand-item:nth-child(1){top:280rpx;right:32rpx;}
  291. .brand-item:nth-child(2){top:480rpx;left:70rpx;}
  292. .brand-item:nth-child(3){top:632rpx;right:78rpx;}
  293. .brand-item:nth-child(4){top:1016rpx;right:140rpx;}
  294. }
  295. @media (max-height: 700px) {
  296. //0.88
  297. .ezy-study-wrap{width: 644rpx;height: 1198rpx;}
  298. .chapter-box{top:120rpx;left:278rpx;}
  299. .chapter-title-box{width: 232rpx;top:165rpx;left:230rpx;}
  300. .brand-item:nth-child(1){top:245rpx;right:30rpx;}
  301. .brand-item:nth-child(2){top:440rpx;left:60rpx;}
  302. .brand-item:nth-child(3){top:578rpx;right:50rpx;}
  303. .brand-item:nth-child(4){top:942rpx;right:124rpx;}
  304. }
  305. @media (max-height: 600px) {
  306. //0.76
  307. min-height:1200rpx;
  308. .ezy-study-wrap{width: 577rpx;height: 1072rpx;}
  309. .chapter-box{width: 120rpx;top:105rpx;left:252rpx;font-size: 26rpx;}
  310. .chapter-title-box{width: 215rpx;top:145rpx;left:204rpx;font-size: 26rpx;}
  311. .brand-item:nth-child(1){top:205rpx;right:4rpx;}
  312. .brand-item:nth-child(2){top:380rpx;left:30rpx;}
  313. .brand-item:nth-child(3){top:508rpx;right:30rpx;}
  314. .brand-item:nth-child(4){top:836rpx;right:104rpx;}
  315. }
  316. }
  317. //目录页
  318. .ezy-catalogue-dialog{
  319. width: 663rpx;height: 1038rpx;padding: 180rpx 52rpx 60rpx;box-sizing: border-box;position: relative;
  320. background-image: url("@/static/images/catalog/catalog-bj.png");@include ezy-no-repeat-cover;
  321. display: flex;
  322. .catalogue-close-btn{
  323. width: 54rpx;height: 54rpx;
  324. background-image: url("@/static/images/catalog/catalog-close-btn.png");@include ezy-no-repeat-cover;
  325. position: absolute;top: 40rpx;right: 36rpx;
  326. }
  327. .ezy-catalogue-collapse{
  328. background-color: transparent!important;flex: 1;overflow-y: auto;
  329. .collapse-item-box{
  330. display: flex;flex-direction: column;padding: 24rpx 10rpx 24rpx 10rpx;box-sizing: border-box;
  331. border-bottom: 2rpx dashed #9dc0f6;
  332. .uni-collapse-item__wrap{background-color: transparent!important;}
  333. .collapse-title{display: flex;font-size: 30rpx;font-weight: 700;color: #0a549d;position: relative;}
  334. .collapse-num-box{
  335. width: 46rpx;height: 46rpx;line-height: 46rpx;font-size: 30rpx;font-weight: 700;color: #fff;text-align: center;
  336. background-image: url("@/static/images/catalog/num-bj.png");@include ezy-no-repeat-cover;
  337. -webkit-text-stroke: 1rpx #0d64d7;text-stroke: 1rpx #0d64d7;margin-right: 20rpx;flex-shrink: 0;
  338. }
  339. .collapse-name{@include single-line-ellipsis;width: 380rpx;}
  340. .uni-collapse-item__title-arrow{margin-right: 60rpx;}
  341. .uni-icons{
  342. width: 37rpx;height: 37rpx;
  343. background-image: url("@/static/images/catalog/jt-btn.png");@include ezy-no-repeat-cover;
  344. &::before{display: none;}
  345. }
  346. .collapse-lock{
  347. width: 35rpx;height: 41rpx;position: absolute;right: -90rpx;top: 0rpx;
  348. background-image: url("@/static/images/catalog/catalog-lock.png");@include ezy-no-repeat-cover;
  349. }
  350. }
  351. .collapse-item-box.collapse-active{
  352. border: 0;
  353. .collapse-title{color: #01b106;}
  354. .collapse-num-box{
  355. background-image: url("@/static/images/catalog/num-active-bj.png");
  356. -webkit-text-stroke: 1rpx #009931;text-stroke: 1rpx #009931;
  357. }
  358. .uni-icons{
  359. background-image: url("@/static/images/catalog/jt-active-btn.png");transform:unset;
  360. }
  361. }
  362. .collapse-content-box{border-top: 2rpx dashed #9dc0f6;margin: 20rpx 0 100rpx;}
  363. .collapse-content-item{
  364. font-size: 28rpx;color:#343434;
  365. border-bottom: 1px dashed #999;
  366. padding: 20rpx 10rpx;margin: 0 10rpx;
  367. }
  368. // .collapse-item-box:last-child{border: 0;}
  369. }
  370. }
  371. // 考试页
  372. .ezy-exam-page{
  373. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  374. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  375. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  376. .ezy-exam-swiper{
  377. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  378. uni-swiper-item{overflow: auto;}
  379. }
  380. .exam-submit-btn{
  381. width: 87rpx;height: 125rpx;@include ezy-no-repeat-cover;z-index: 2;
  382. background-image: url("@/static/images/exam/submit-btn.png");margin: 10rpx 42rpx 0 auto;
  383. }
  384. .tip-mask-box{
  385. width: 100%;height: 100vh;position: relative;position: absolute;top: 0;left: 0;z-index: 3;
  386. }
  387. .exam-tip-box{
  388. width: 750rpx;height: 355.77rpx;@include ezy-no-repeat-cover;
  389. background-image: url("@/static/images/exam/exam-tip-bj.png");
  390. color: #036f6f;font-size: 32rpx;z-index: 3;padding: 180rpx 0 0 100rpx;
  391. position: absolute;left: 0;right: 0;bottom: var(--window-bottom);
  392. }
  393. }
  394. // 成绩页
  395. .ezy-result-page{
  396. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  397. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  398. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  399. .result-exam-swiper{
  400. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;
  401. uni-swiper-item{overflow: auto;}
  402. .flex-center{
  403. height: 100%;
  404. .body{height: 100%;display: flex;flex-direction: column;}
  405. .ezy-danxuan-box{flex: 1;overflow-y: auto;}
  406. }
  407. }
  408. .answer-content-box{
  409. margin-top: 24rpx;
  410. .answer-title{width: 150rpx;height: 62rpx;flex-shrink: 0;
  411. background-image: url("@/static/images/exam/answer-title.png");@include ezy-no-repeat-cover;
  412. }
  413. .answer-btn-box{
  414. display: flex;height: 135rpx;
  415. margin: 20rpx 0 20rpx 10rpx;}
  416. .answer-item-left,.answer-item-right{
  417. width: 100%;flex: 1;align-items: center;justify-content: center;
  418. display: flex;flex-direction: column;background-color: rgba(255, 255, 255, 0.3);
  419. .answer-item-title{font-size: 32rpx;color: #333;margin-bottom: 4rpx;}
  420. .answer-item-error{font-size: 32rpx;color: #ef1417;}
  421. .answer-item-correct{font-size: 32rpx;color: #15ab2e;}
  422. }
  423. .answer-item-left{border-radius: 4px 0 4px 0;position: relative;}
  424. .answer-item-right{border-radius: 0 4px 4px 0;}
  425. .answer-line{width: 1px;position: absolute;top: 16rpx;right: 0;bottom: 16rpx;background: #d1e9f5;}
  426. .answer-btn{width: 144rpx;height: 135rpx;@include ezy-no-repeat-cover;
  427. background-image: url("@/static/images/exam/answer-btn.png");
  428. margin: 0 32rpx;flex-shrink: 0;
  429. }
  430. }
  431. }
  432. // 得分页
  433. .exam-score-dialog{
  434. width: 750rpx;height: 1250rpx;margin-bottom: 24%;position: relative;
  435. background-image: url("@/static/images/exam/score-bj.png");@include ezy-no-repeat-cover;
  436. // -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  437. .score-content-box{
  438. position: absolute;top: 746rpx;left: 200rpx;word-spacing: 18rpx;
  439. font-size: 38rpx;font-weight: 800; color: #000;
  440. .text-red{color: #ff6500;margin: 0 8rpx;}
  441. .text-score{
  442. width: 160rpx;font-size: 82rpx;font-weight: 800;color: #ff6701;
  443. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  444. margin: 110rpx 0 0 160rpx;text-align: center;}
  445. }
  446. .ckst-btn,.jxxx-btn{width: 115rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  447. .score-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  448. .ckst-btn{background-image: url("@/static/images/exam/ckst-btn.png");}
  449. .jxxx-btn{background-image: url("@/static/images/exam/jxxx-btn.png");}
  450. @media (max-height: 700px) {zoom: 0.9;}
  451. @media (max-height: 600px) {margin-bottom: 40%;}
  452. }
  453. // 答案解析
  454. .ezy-dajx-page{
  455. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  456. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  457. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  458. .shiti-frame-box{overflow-y: auto;}
  459. .dajx-content-box{
  460. width: 615rpx;flex: 1;z-index: 2;margin: 0 auto;overflow-y: auto;
  461. .slfx-title,.spjj-title{
  462. width: 231rpx;height: 63rpx;@include ezy-no-repeat-cover;margin-bottom: 16rpx;
  463. }
  464. .slfx-title{background-image: url("@/static/images/exam/slfx-title.png");}
  465. .spjj-title{background-image: url("@/static/images/exam/spjj-title.png");}
  466. .slfx-content{
  467. font-size: 32rpx;color: #333;line-height: 1.6;margin-bottom: 42rpx;
  468. box-sizing: border-box;padding: 0 20rpx;word-wrap: break-word;word-break: break-all;
  469. }
  470. }
  471. .spjj-video-box{
  472. width: 606rpx;height: 394rpx;@include ezy-no-repeat-cover;margin: 0 auto 42rpx;
  473. background-image: url("@/static/images/exam/video-frame-bj.png");position: relative;
  474. box-sizing: border-box;padding: 18rpx;
  475. .spjj-video{
  476. width: 100%;height: 100%!important;
  477. .prism-big-play-btn{top: 50%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;}
  478. .prism-info-display{display: none;}
  479. }
  480. }
  481. }
  482. // 课程页面
  483. .ezy-course-page{
  484. width: 100%;height: 100vh;background-color: #0ab2f0;position: relative;
  485. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  486. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/exam/exam-shiti-bj.png");
  487. .course-video-box{
  488. width: 100%;height: 400rpx!important;flex-shrink: 0;position: relative;
  489. .prism-big-play-btn{top: 50%;left: 50%!important;transform: translate(-50%, -50%);z-index: 20;}
  490. .prism-info-display{display: none;}
  491. }
  492. .course-content-border{
  493. width: 100%;display: flex;flex: 1;position: relative;
  494. background-color: rgba(255, 255, 255, 0.6);overflow-y: auto;
  495. }
  496. .course-content-box{
  497. flex: 1;margin: 20rpx 20rpx 0;background-color: #fff;overflow-y: auto;
  498. box-sizing: border-box;padding: 42rpx 24rpx;
  499. }
  500. .course-content-item{
  501. width: 100%;background-color: #f7f8fa;border-radius: 8rpx;
  502. display: flex;box-sizing: border-box;padding: 20rpx;margin-bottom: 24rpx;
  503. }
  504. .course-title{color: #088aea;font-size: 42rpx;margin-bottom: 20rpx;}
  505. .course-play-btn{width: 48rpx;height: 48rpx;margin-right: 20rpx;
  506. @include ezy-no-repeat-cover;background-image: url("@/static/images/course/video-play.png");
  507. }
  508. .course-content{
  509. display: flex;flex-direction: column;color: #666;font-size: 32rpx;
  510. .content-kcwz{font-size: 28rpx;margin-top: 16rpx;}
  511. }
  512. }
  513. // 课程得分页面
  514. .course-score-dialog{
  515. width: 750rpx;height: 1250rpx;@include ezy-no-repeat-cover;
  516. background-image: url("@/static/images/course/video-score-bj.png");
  517. margin-bottom: 20%;position: relative;
  518. .text-score{
  519. width: 220rpx;font-size: 100rpx;font-weight: 800;color: #ff6701;
  520. -webkit-text-stroke: 0.6rpx #fff;text-stroke: 0.6rpx #fff;
  521. margin: 110rpx 0 0 160rpx;text-align: right;position: absolute;
  522. bottom: 230rpx;left: 0;
  523. }
  524. .return-btn,.continue-btn{width: 115.38rpx;height: 135rpx;@include ezy-no-repeat-cover;margin: 0 36rpx;}
  525. .course-btn-box{position: absolute;bottom: 0;display: flex;left: 50%;transform: translateX(-50%);}
  526. .return-btn{background-image: url("@/static/images/course/fh-btn.png");}
  527. .continue-btn{background-image: url("@/static/images/course/jx-btn.png");}
  528. @media (max-height: 600px) {margin-bottom: 40%;}
  529. }
  530. // 我的页面
  531. .ezy-my-page{
  532. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  533. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  534. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  535. .my-head-box{
  536. width: 100%;padding: 80rpx 24rpx 42rpx;box-sizing: border-box;display: flex;align-items: center;color: #fff;
  537. .head-img-box{width: 154rpx;height: 154rpx;margin: 0 24rpx 0 12rpx;@include ezy-no-repeat-cover;}
  538. .head-content-box{font-size: 30rpx;}
  539. .jf-box{
  540. width: 142rpx;height: 46rpx;display: flex;align-items: center;line-height: 1.2;font-size: 26rpx;
  541. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-bj.png");margin-top: 20rpx;
  542. }
  543. .jf-icon{width: 35rpx;height: 35rpx;margin:0 4rpx 0 10rpx;flex-shrink: 0;
  544. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/jf-qb.png");}
  545. .jf-text{min-width: 60rpx;
  546. text-align: center;}
  547. }
  548. .hyqy-box,.hyqy-disabled-box{
  549. width: 731rpx;height: 385rpx;margin: 0 auto;position: relative;
  550. @include ezy-no-repeat-cover;
  551. .hyqy-btn{width: 154rpx;height: 54rpx;position: absolute;top: 46rpx;right: 46rpx;
  552. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/hyqy-btn.png");}
  553. }
  554. .hyqy-box{background-image: url("@/static/images/my/hyqy-img.png");}
  555. // 未登录的值----待修改
  556. .hyqy-disabled-box{background-image: url("@/static/images/my/hyqy-img-disabled.png");}
  557. .my-list-box{
  558. width:700rpx;margin: 36rpx auto 0;
  559. .list-row{border-bottom: 2rpx solid #5bcdfb;color: #fff;box-sizing: border-box;padding: 30rpx 20rpx;
  560. display: flex;align-items: center;position: relative;}
  561. .list-row::after{
  562. content: '';width: 19rpx;height: 33rpx;@include ezy-no-repeat-cover;
  563. background-image: url("@/static/images/my/list-jt.png");
  564. position: absolute;right: 20rpx;
  565. }
  566. .no-jt::after,.no-jt::after{display: none;}
  567. .list-icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  568. .tel-icon{background-image: url("@/static/images/my/list-icon1.png");}
  569. .error-icon{background-image: url("@/static/images/my/list-icon2.png");}
  570. .order-icon{background-image: url("@/static/images/my/list-icon3.png");}
  571. .login-out-icon{background-image: url("@/static/images/my/list-icon4.png");}
  572. .about-icon{background-image: url("@/static/images/my/list-icon5.png");}
  573. }
  574. @media (max-height: 700px) {
  575. .my-head-box{padding: 60rpx 24rpx 32rpx;}
  576. .my-list-box{
  577. margin: 16rpx auto 0;
  578. .list-row{padding: 24rpx 20rpx;}
  579. }
  580. }
  581. @media (max-height: 600px) {
  582. min-height: 1200rpx;overflow-y: auto;
  583. .my-head-box{padding: 42rpx 24rpx 24rpx;}
  584. .my-list-box{
  585. margin: 12rpx auto 0;
  586. .list-row{padding: 16rpx;}
  587. .list-row::after{right: 16rpx;}
  588. }
  589. }
  590. }
  591. .ezy-my-page::before{
  592. content: '';width: 279rpx;height: 250rpx;display:block;
  593. position: absolute;top:calc(20rpx - var(--status-bar-height));right:20rpx;
  594. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/my-page-img.png");
  595. }
  596. // 关于我们
  597. .ezy-about-page{
  598. width: 100%;height: 100vh;background-color: #00c5fe;position: relative;
  599. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  600. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/my/my-page-bj.png");
  601. .about-body-border{
  602. flex: 1;width: 92%;height: auto;background-color: rgba(255, 255, 255, 0.6);border-radius: 10px;
  603. margin: 12rpx auto 200rpx;position: relative;display: flex;flex-direction: column;
  604. }
  605. .about-body-box{
  606. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  607. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  608. box-sizing: border-box;padding: 52rpx 24rpx 24rpx;overflow-y: auto;
  609. }
  610. .content-top-box{
  611. display: flex;flex-shrink: 0;font-size: 24rpx;color: #333;
  612. box-sizing: border-box;padding-bottom: 42rpx;border-bottom: 1px dashed #fff;
  613. .about-icon-box{
  614. width: 192rpx;height: 188rpx;margin-right: 36rpx;
  615. @include ezy-no-repeat-cover;background-image: url("@/static/images/my/about-icon.png");
  616. }
  617. .about-name{
  618. font-size: 30rpx;margin: 20rpx 0 42rpx;
  619. }
  620. .about-text{margin: 16rpx 0;}
  621. }
  622. .content-box{
  623. font-size: 30rpx;margin-top: 50rpx;line-height: 2;color: #333;
  624. text-align: justify;box-sizing: border-box;padding: 0 10rpx;
  625. }
  626. @media (max-height: 600px) {
  627. .about-body-border{margin: 12rpx auto 150rpx;}
  628. .about-body-box{padding: 32rpx 20rpx 20rpx;}
  629. .content-top-box{padding-bottom: 24rpx;}
  630. .content-box{margin-top: 20rpx;}
  631. }
  632. }
  633. // 绑定手机号弹窗
  634. .my-tel-dialog{
  635. background-color: rgba(255, 255, 255, 0.6);
  636. position: fixed;display: flex;flex-direction: column;top: 0;left: 0;bottom:0;right: 0;
  637. justify-content: center;align-items: center;
  638. .tel-close{width: 50rpx;height: 50rpx;@include ezy-no-repeat-cover;position: absolute;right: 30rpx;top: 30rpx;
  639. background-image: url("@/static/images/login/agree-sections-close.png");}
  640. .my-tel-content{
  641. width: 625rpx;height: 740rpx;box-sizing: border-box;padding: 56rpx 62rpx;
  642. background-image: url("@/static/images/my/my-tel-bj.png");@include ezy-no-repeat-cover;position: relative;
  643. }
  644. .my-tel-title{font-size: 40rpx;color: #333;text-align:center;margin-bottom: 24rpx;}
  645. .tel-row{border-bottom: 1px dashed #70cbf4;}
  646. .yzm-row{padding-top: 24rpx;}
  647. /***** 输入手机号页面*****/
  648. .my-input-box{
  649. width:500rpx;height: 88rpx;box-sizing: border-box;
  650. display: flex;align-items: center;
  651. background-image: url("@/static/images/my/my-tel-input.png");@include ezy-no-repeat-cover;
  652. .my-input {font-size: 32rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
  653. .uni-input-placeholder {font-size: 25rpx;color: #ffffffd9;}
  654. .close-btn{width: 36rpx;height: 36rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
  655. background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
  656. }
  657. // 滑块
  658. .nc-container{
  659. position: unset;padding: 24rpx 0 36rpx;box-sizing: border-box;
  660. .nc_wrapper{width: 100%!important;}
  661. .nc_iconfont.btn_ok{font-family: unset;font-size: 0;}
  662. .nc_iconfont.btn_ok::before{content: '';width: 20px;height:20px;display: block;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);
  663. @include ezy-no-repeat-cover;background-image: url("@/static/images/login/slider-right-icon.png");z-index: 4;}
  664. }
  665. .get-yzm-btn{color: #3b73bf;margin-bottom: 16rpx;font-size: 25rpx;}
  666. .get-yzm-disabled{color: #666;}
  667. .yzm-tip{
  668. color: #3b73bf;margin:0 0 16rpx;font-size: 25rpx;
  669. }
  670. .my-bind-btn{
  671. width:500rpx;height: 88rpx;text-align: center;line-height: 88rpx;color: #fff;margin-top: 16rpx;
  672. background-image: url("@/static/images/my/my-tel-btn.png");@include ezy-no-repeat-cover;
  673. }
  674. }
  675. // SVIP
  676. .ezy-svip-page{
  677. width: 100%;height: 100vh;background-color: #23befb;position: relative;
  678. padding-top:var(--status-bar-height);display: flex;flex-direction: column;
  679. @include ezy-no-repeat-cover(bottom);background-image: url("@/static/images/pay/svip-page-bj.png");
  680. .svip-login{
  681. width: 673rpx;height: 269rpx;margin: 0 auto;
  682. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-logo.png");
  683. }
  684. .svip-list-box{
  685. margin: 0 auto;
  686. .list-item-box{display: flex;align-items: center;color: #fff;margin-bottom: 24rpx;}
  687. .list-icon{
  688. width: 96rpx;height: 106rpx;@include ezy-no-repeat-cover;margin-right: 16rpx;
  689. }
  690. .list-title{
  691. font-size: 28rpx;font-weight: 600;margin-bottom: 10rpx;
  692. }
  693. .list-content{font-size: 25rpx;}
  694. }
  695. .open-svip-box{
  696. width: 702rpx;height:413rpx;margin: 0 auto;box-sizing: border-box;padding: 0 16rpx;
  697. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-block-bj.png");
  698. .svip-price-box{
  699. display: flex;justify-content: space-between;border-bottom: 2rpx solid #efd774;
  700. margin-top: 120rpx;box-sizing: border-box;padding:0 24rpx 24rpx;color: #87664d;
  701. .original-price{text-decoration: line-through;}
  702. .discount-price{color: #ff0101;}
  703. }
  704. .pay-type-box{
  705. display: flex;align-items: center;
  706. }
  707. .type-radio-box{display: flex;align-items: center;}
  708. .open-svip-btn{
  709. width: 333rpx;height: 88rpx;line-height: 88rpx;text-align: center;color: #fff;
  710. @include ezy-no-repeat-cover;background-image: url("@/static/images/pay/svip-btn-bj.png");
  711. }
  712. }
  713. }