pages.scss 87 KB

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