pages.scss 87 KB

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