pages.scss 56 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297
  1. /********** 这里放页面样式 **********/
  2. /*** 登录页面***/
  3. .phone-login-page{
  4. width:100%;height:100vh; background-color: #fff;position: relative;
  5. .login-wrap-box{
  6. width:100%;height: 1283rpx;background-image: url("@/static/images/login/login-bj-img.png");@include ezy-no-repeat-cover(top);
  7. position: absolute;top:0;
  8. }
  9. .bjcx-head-box{width: 100%;text-align: center;margin-bottom: 100rpx;
  10. margin-top: calc(180rpx + var(--status-bar-height));display: inline-block;}
  11. .bjcx-logo-box{
  12. width:200rpx;height: 200rpx;background-image: url("@/static/images/login/login-logo.png");@include ezy-no-repeat-cover;
  13. }
  14. .bjcx-logo-title{font-size: 34rpx;color: #000;margin-top: 16rpx;}
  15. .login-input-box{
  16. display: flex;align-items: center;border-bottom: 1rpx solid #eee;margin:32rpx 56rpx;
  17. padding: 24rpx 0;
  18. .login-input{flex: 1;font-size: 32rpx;}
  19. .user-icon,.tel-icon{width:40rpx;height:40rpx;@include ezy-no-repeat-cover;margin-right: 32rpx;}
  20. .user-icon{background-image: url("@/static/images/login/login-tel-icon.png");}
  21. .tel-icon{background-image: url("@/static/images/login/login-lock-icon.png");}
  22. .close-btn,.login-eye{width:30rpx;height:30rpx;@include ezy-no-repeat-cover;border-radius: 50%;}
  23. .close-btn{background-image: url("@/static/images/login/login-close-icon.png");}
  24. .login-eye{background-image: url("@/static/images/login/login-eye-icon.png");}
  25. .login-eye + .close-btn{margin-left: 24rpx;}
  26. }
  27. .login-btn{margin:48rpx 56rpx;}
  28. }
  29. /*** 首页 ***/
  30. .client-shouye-page{
  31. overflow: auto;height: 100vh;padding-bottom: 150rpx;position: relative;
  32. .default-img-box{
  33. display: flex;flex-direction: column;position: absolute;left: 50%;top:50%;transform: translate(-50%,-50%);
  34. margin-bottom: 100rpx;
  35. icon{
  36. width: 254rpx;height: 335rpx;box-sizing: border-box;
  37. background-image: url("@/static/images/index/index-default-img.png");@include ezy-no-repeat-cover();
  38. }
  39. text{margin-top: 16rpx;color: #666;}
  40. }
  41. .shouye-card-box{margin: 20rpx;border: 1rpx solid;border-radius: 6rpx;}
  42. // head
  43. .card-head-box{
  44. height: 70rpx;display: flex;align-items: center;padding: 0 6rpx 0 20rpx;
  45. .card-line-title {display: block;color: #fff;font-size: 30rpx;line-height: 1;}
  46. .card-line-title:before{content: ' ';width: 6rpx;height: 28rpx;background-color:#fff;
  47. margin-right: 12rpx;display: inline-block;vertical-align: middle;}
  48. .card-more{
  49. font-size: 24rpx;color: #fff;margin-left: auto;display: flex;align-items: center;
  50. .more-num{border: 1rpx solid;border-radius: 50%;box-sizing:border-box;
  51. min-width: 26rpx;display: inline-flex;margin-left:6rpx;justify-content: center;
  52. span{font-size: 18rpx;}
  53. }
  54. .more-jt{
  55. width: 0;height: 0;
  56. border-right: 5px solid transparent;border-bottom: 5px solid transparent;border-left: 6px solid #fff;
  57. margin-left: 8rpx;border-top: 5px solid transparent;
  58. }
  59. }
  60. }
  61. // name
  62. .card-name-box{
  63. border-bottom: 1rpx dashed #ccc;margin: 0 10rpx 0 16rpx;padding: 16rpx 0;
  64. display: flex;justify-content: space-between;align-items: center;
  65. .card-name{
  66. font-size: 28rpx;display: flex;align-items: center;
  67. icon{width: 10rpx;height: 10rpx;border-radius: 10rpx;margin-right: 10rpx;}
  68. }
  69. .card-level{font-size: 26rpx;border: 1rpx solid;border-radius: 6rpx;padding: 2rpx 20rpx;}
  70. }
  71. // content
  72. .card-content-box{
  73. display: flex;display: flex;flex-wrap: wrap;padding: 20rpx 0;
  74. .card-content-item{
  75. width: 50%;display: flex;flex-direction: row;justify-content: center;align-items: center;margin: 10rpx 0;
  76. icon{width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;}
  77. .card-time-icon{background-image: url("@/static/images/index/index-content-icon1.png");}
  78. .card-sum-icon{background-image: url("@/static/images/index/index-content-icon3.png");}
  79. .card-num-icon{background-image: url("@/static/images/index/index-content-icon4.png");}
  80. .card-pass-icon{background-image: url("@/static/images/index/index-content-icon2.png");}
  81. .content-text-box{
  82. min-width: 140rpx;
  83. text{font-size: 26rpx;color: #666;}
  84. view{font-size: 32rpx;color: #333;}
  85. }
  86. }
  87. }
  88. // bottom
  89. .card-bottom-box{
  90. border-top: 1rpx dashed #ccc;margin: 0 10rpx;
  91. .index-card-btn{width: 360rpx;height: 70rpx;line-height: 70rpx;margin:16rpx auto;font-size: 30rpx;}
  92. }
  93. // kaoshi
  94. .kaoshi-card-box{
  95. border-color:#3fd2a1;
  96. .card-head-box{background-color:#4fe1b0;}
  97. .card-content-box{padding: 10rpx 0;}
  98. .card-level{color:#00a573;}
  99. .card-name{color:#1e9472;}
  100. .card-name icon{background-color:#1e9472;}
  101. .index-card-btn[type='default']{background-color: #4fe1b0;color: #fff;}
  102. }
  103. // lianxi
  104. .lianxi-card-box{
  105. border-color:#6186fb;
  106. .card-head-box{background-color:#6186fb;}
  107. .card-level{color:#4794ff;}
  108. .card-name{color:#4794ff;}
  109. .index-card-btn[type='default']{background-color: #6186fb;color: #fff;}
  110. }
  111. // kecheng
  112. .kecheng-card-box{
  113. border-color:#febb6a;
  114. .card-head-box{background-color:#febb6a;}
  115. .card-level{color:#ffba03;}
  116. .card-name{color:#ffba03;}
  117. .index-card-btn[type='default']{background-color: #febb6a;color: #fff;}
  118. }
  119. }
  120. .admin-shouye-page{
  121. width: 100%;background-color: #f8f9fd;box-sizing: border-box;padding-bottom: 120rpx;overflow: auto;
  122. height: 100vh;
  123. /* #ifdef H5 */
  124. // height: calc(100vh - 180rpx);
  125. /* #endif */
  126. /* #ifdef APP-PLUS */
  127. /* #endif */
  128. .shouye-head-box{
  129. width: 100%;height: 376rpx;text-align: center;font-size: 34rpx;color: #fff;
  130. box-sizing: border-box;font-weight: 600;
  131. background-image: url("@/static/images/index/index-head-bj.png");@include ezy-no-repeat-cover(bottom);
  132. height: 376rpx;padding-top: 100rpx;
  133. }
  134. // banner
  135. .index-banner-default{width: 718rpx;height: 281rpx;margin: 0 auto;@include ezy-no-repeat-cover;
  136. background-image: url("@/static/images/index/index-banner.png");margin-top: -180rpx;}
  137. .shouye-swiper-box{
  138. margin-top: -180rpx;overflow: unset!important;
  139. .index-banner-img{width: 718rpx;height: 281rpx;margin: 0 auto;display: block;}
  140. }
  141. .tj-btn-box{
  142. width: 100%;box-sizing: border-box;padding:0 20rpx;margin-top: 50rpx;
  143. text{font-size: 26rpx;padding:4rpx;margin-right: 24rpx;display: inline-block;color:#333;}
  144. .active{border-bottom: 2rpx solid #3fd2a1;color:#3fd2a1;}
  145. }
  146. .index-tj-row{width: 100%;display: flex;box-sizing: border-box;padding:6rpx 16rpx;align-items: center;}
  147. .index-tj-box{
  148. width: 400rpx;height: 150rpx;@include ezy-no-repeat-cover(right);background-image: url("@/static/images/index/tj-bj.png");
  149. border-radius: 25rpx;padding: 16rpx 30rpx;box-sizing:border-box;flex-shrink: 0;
  150. .tj-num-box{font-size: 48rpx;color:#fff;margin: 12rpx 0 6rpx;font-weight: bold;}
  151. .tj-tip-box{font-size: 24rpx;color:#fff;}
  152. }
  153. .index-kc-box{
  154. height: 136rpx;flex: 1;background-color: #fff;border: 1rpx solid #3fd2a1;position: relative;
  155. border-radius: 16rpx;padding: 6rpx 16rpx;box-sizing:border-box;margin: 4rpx 0 0 8rpx;
  156. .tj-num-box{font-size: 42rpx;color: #3fd2a1;margin: 12rpx 0 6rpx;font-weight: bold;}
  157. .tj-tip-box{font-size: 24rpx;color: #3fd2a1;}
  158. .sjkc-jt-icon{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;
  159. background-image: url("@/static/images/common/nav-bar-green-jt.svg");
  160. position: absolute;right:12rpx;top:48rpx;transform: rotate(180deg);}
  161. }
  162. .index-tongzhi-box{
  163. display: flex;justify-content: space-between;align-items: center;margin:6rpx 16rpx 16rpx;
  164. background-color: #fff;border-radius: 12rpx;padding:10rpx 12rpx 10rpx 24rpx;box-sizing:border-box;
  165. .tongzhi-num{
  166. width: 80rpx;height: 80rpx;color: #3fd2a1;@include ezy-no-repeat-contain;text-align: center;flex-shrink: 0;
  167. background-image: url("@/static/images/index/tz-icon.png");padding-top: 42rpx;box-sizing:border-box;
  168. font-size: 28rpx;font-weight: bold;
  169. }
  170. .tongzhi-content{
  171. height: 84rpx;padding:0 10rpx 0 20rpx;box-sizing: border-box;line-height: 1.5;flex: 1;
  172. @include ezy-rich-text();@include multi-line-ellipsis(2);font-size: 26rpx;color:#333;
  173. display: flex;align-items: center;margin: 16rpx 0;
  174. >div,p{@include multi-line-ellipsis(2);}
  175. }
  176. icon{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  177. background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  178. transform: rotate(270deg);margin-left: 4rpx;}
  179. }
  180. .card-list-title{width: 100%;font-size: 28rpx;color: #33a366;font-weight: 600;margin-bottom: 24rpx;}
  181. .card-list-box{
  182. display: flex;flex-wrap: wrap;box-sizing: border-box;padding:16rpx;margin: 16rpx;
  183. background-color: #fff;border-radius: 8rpx;margin-bottom: 16rpx;}
  184. .card-item-box{
  185. width: 25%;display: flex;flex-direction: column;align-items: center;
  186. font-size: 24rpx;color: #333;
  187. .index-icon{width: 100rpx;height: 100rpx;@include ezy-no-repeat-cover;margin-bottom: 6rpx;}
  188. }
  189. .card-item-box:nth-child(5) ~ *{margin-top: 30rpx;}
  190. .jz-icon{background-image: url("@/static/images/index/jz-icon.png");}
  191. .zzh-icon{background-image: url("@/static/images/index/zzh-icon.png");}
  192. .kz-icon{background-image: url("@/static/images/index/kz-icon.png");}
  193. .ks-icon{background-image: url("@/static/images/index/ks-icon.png");}
  194. .cj-icon{background-image: url("@/static/images/index/cj-icon.png");}
  195. .lx-icon{background-image: url("@/static/images/index/lx-icon.png");}
  196. .kc-icon{background-image: url("@/static/images/index/kc-icon.png");}
  197. .zjz-icon{background-image: url("@/static/images/index/zjzgs-icon.png");}
  198. .ht-a-icon{background-image: url("@/static/images/index/ht-a-icon.png");}
  199. .ht-icon{background-image: url("@/static/images/index/ht-icon.png");}
  200. .jzkh-icon{background-image: url("@/static/images/index/jzkh-icon.png");}
  201. .sfht-icon{background-image: url("@/static/images/index/sfht-icon.png");}
  202. }
  203. /*** 考试页面***/
  204. .phone-list-page{
  205. box-sizing: border-box;
  206. // 只有tabbar的
  207. .phone-scroll-view {height: calc(100vh - 202rpx - var(--status-bar-height));}
  208. // 带筛选的
  209. .phone-scroll-saixuan-view {height: calc(100vh - 290rpx - var(--status-bar-height));}
  210. // 带搜索的
  211. .admin-phone-scroll-view{height: calc(100vh - 332rpx - var(--status-bar-height));}
  212. // 只有tabbar
  213. .admin-phone-tabbar-view {height: calc(100vh - 220rpx - var(--status-bar-height));}
  214. // 带上边线的
  215. .scroll-top-border{border-top: 1rpx solid #f4f6fa;}
  216. .admin-list-box{
  217. .admin-list-item-box{border-bottom: 20rpx solid #f4f6fa;}
  218. .uni-list--border,.uni-list--border-top{display: none;}
  219. // admin课程
  220. .kecheng-list-card{
  221. display: flex;
  222. .kc-totalTm{margin-left: 0;}
  223. .kc-fenlei{width: 360rpx;margin-left: 0;@include single-line-ellipsis();}
  224. .kc-name{width: 360rpx;@include single-line-ellipsis();}
  225. img{width: 300rpx;height: 210rpx;margin-right: 32rpx;border-radius: 8rpx;flex-shrink: 0;}
  226. }
  227. }
  228. // 列表区域
  229. .item-card-row {
  230. width: 100%;
  231. .ks-item-top {
  232. display: flex;justify-content: space-between;margin-bottom: 20rpx;
  233. .ks-name {font-size: 34rpx;color: #000;@include single-line-ellipsis();}
  234. .ks-zyLevelName {font-size: 26rpx;padding: 4rpx 24rpx;border-radius: 4px;
  235. border: 1px solid #3fd2a1;color:#3fd2a1;flex-shrink: 0;}
  236. }
  237. .ks-totalTm-row{display: flex;align-items: center;}
  238. .ks-totalTm {font-size: 26rpx;color: #333;margin-bottom: 20rpx;line-height: 1;margin-left: 40rpx;}
  239. .phone-time-icon,.phone-cishu-icon,.phone-zongfen-icon,.phone-jigefen-icon,
  240. .phone-defen-icon,.phone-tel-icon,.phone-user-icon,.phone-fenlei-icon{width: 24rpx;height: 24rpx;@include ezy-no-repeat-cover();
  241. vertical-align: top;margin-right: 10rpx;flex-shrink: 0;}
  242. .phone-time-icon{background-image: url("@/static/images/common/time-icon.png");}
  243. .phone-fenlei-icon{background-image: url("@/static/images/common/fenlei-icon.svg");}
  244. .phone-cishu-icon{background-image: url("@/static/images/common/cishu-icon.png");}
  245. .phone-user-icon{background-image: url("@/static/images/common/user-icon.png");}
  246. .phone-tel-icon{background-image: url("@/static/images/common/tel-icon.png");}
  247. .phone-zongfen-icon{background-image: url("@/static/images/common/zongfen-icon.png");vertical-align: unset;}
  248. .phone-jigefen-icon{background-image: url("@/static/images/common/jigefen-icon.png");vertical-align: unset;}
  249. .phone-defen-icon{background-image: url("@/static/images/common/defen-icon.png");vertical-align: unset;}
  250. .ks-score-content{
  251. width: 100%;font-size: 26rpx;margin-bottom: 20rpx;line-height: 1;
  252. display: flex;flex-direction: row;flex-wrap: nowrap;
  253. .ks-score,.ks-okScore,.cj-okScore,.ks-getScore{width: 33.33%;box-sizing: border-box;}
  254. .ks-score {
  255. background-color: #f4f6fa;padding: 12rpx 0 12rpx 16rpx;border-radius: 8rpx 0 0 8rpx;
  256. text{color: #ff7023;}
  257. }
  258. .ks-okScore {
  259. background-color: #f4f6fa;padding:12rpx 0;border-radius:0 8rpx 8rpx 0;
  260. text{color: #3fd2a1;}
  261. }
  262. .cj-okScore{border-radius:0;padding:12rpx 0;}
  263. .ks-getScore {
  264. background-color: #f4f6fa;padding: 12rpx 16rpx 12rpx 0;border-radius:0 8rpx 8rpx 0;
  265. text{color: #3fd2a1;}
  266. }
  267. }
  268. .item-view-btn {width:220rpx;font-size: 26rpx;background-color: #3fd2a1;}
  269. }
  270. }
  271. .kecheng-list{
  272. .kecheng-list-card-box{
  273. display: flex;align-items: center;padding: 4rpx 0;
  274. img{width: 300rpx;max-height: 260rpx;margin-right: 32rpx;}
  275. .card-right-box{
  276. font-size: 28rpx;
  277. view{color: #666;line-height: 1.6;}
  278. .card-name{color: #333;font-weight: 600;}
  279. }
  280. }
  281. }
  282. /*** 进入考试页面***/
  283. .phone-kaoshi-page {
  284. display: flex;flex-direction: column;background-color: #f4f6fa;position: relative;
  285. .kaoshi-page-title {
  286. height: 80rpx;line-height: 80rpx;background-color: #fff;margin-top: 20rpx;font-size: 26rpx;color: #333;
  287. display: flex;justify-content: space-between;padding: 0 24rpx;border-bottom: 1rpx solid #ebebeb;
  288. .title-types{font-size: 32rpx;color: #000;}
  289. }
  290. .kaoshi-shiti-content {padding: 24rpx 24rpx 0 24rpx;background-color: #fff;flex: 1;}
  291. .kaoshi-bottom-box {
  292. width: 100%;height: 100rpx;background-color: #f0f0f0;
  293. display: flex;align-items: center;justify-content: space-between;
  294. padding: 0 24rpx;box-sizing: border-box;position: fixed;bottom: var(--window-bottom);
  295. .bj-btn,.jx-btn,.save-btn{height: 60rpx;line-height: 58rpx;box-sizing: border-box;}
  296. .bj-btn{margin-left: unset;}
  297. .jx-btn,.save-btn{margin-right: unset;}
  298. .shiti-num-icon{
  299. width: 27px;height: 24px;vertical-align: middle;
  300. background-image: url("@/static/images/exam/shiti-num-icon.png");@include ezy-no-repeat-cover();
  301. }
  302. .active-num{color: #30c190;}
  303. }
  304. .ks-btn-prev {position: fixed;bottom: 130rpx;left:24rpx;}
  305. .ks-btn-next {position: fixed;bottom: 130rpx;right: 24rpx;}
  306. }
  307. /*** 得分页面***/
  308. .exam-score-dialog{
  309. width: 100%;height: 100vh;line-height:1.6;background-color: #fff;
  310. .score-content-box{box-sizing: border-box;border-bottom: 1rpx solid #e5e5e5;margin: 30rpx;padding: 0 10rpx 20rpx;}
  311. .content-score-box{display: flex;align-items: center;justify-content: space-between;}
  312. .score-content-name{width:100%;color: #000;font-size: 30rpx;margin-bottom:12rpx;font-weight: 600;}
  313. .score-content-text{
  314. color: #666;font-size: 30rpx;margin-bottom:4rpx;
  315. text{font-size: 64rpx;color:#ff6c6c;margin-right: 4rpx;}
  316. }
  317. .score-dialog-btn{width: 360rpx;margin: 100rpx auto 24rpx;font-size: 30rpx;}
  318. .progress-circle-box{}
  319. .progress-text-btn-box{
  320. display: flex;flex-direction: column;align-items: center;
  321. .cneter-box{font-size: 32rpx!important;color: #3fd2a1;}
  322. .progress-text{margin-bottom: 16rpx;}
  323. .container .rightcircle,.container .left .leftcircle{z-index: 2;border-color:#ecedef;}
  324. }
  325. }
  326. /*** 课程学习 ***/
  327. .kecheng-study-page{
  328. display: flex;height: 100vh;flex-direction: column;
  329. .phone-video-box{
  330. width:100%;height: 460rpx;
  331. .kecheng-video{height: 460rpx!important;}
  332. .prism-big-play-btn{left: 50%!important;margin-left: -32px;}
  333. .prism-player .prism-progress .prism-progress-played{background-color: #3fd2a1;}
  334. .prism-player .prism-progress .prism-progress-cursor{background: unset;}
  335. }
  336. .master-image{
  337. width: 100%;height: 460rpx;position: relative;
  338. @include ezy-no-repeat-cover();background-image: url("@/static/images/common/video-bj.png");
  339. }
  340. // 课程引导阴影
  341. .yindao-shadow-image{
  342. width: 80rpx;height: 80rpx;margin: 0;background-repeat: no-repeat;
  343. background-image: url("@/static/images/common/course-point-icon.gif");background-size: contain;
  344. position: absolute;right: 100rpx;top: 780rpx;pointer-events: none;
  345. }
  346. .kc-name-box{
  347. display: flex;align-items: center;box-sizing: border-box;padding: 24rpx 36rpx 6rpx;
  348. icon{
  349. width: 60rpx;height: 40rpx;flex-shrink: 0;
  350. }
  351. icon::before{content:'';width:40rpx;height: 40rpx;display: inline-block;
  352. @include ezy-no-repeat-cover();background-image: url("@/static/images/common/return-icon.png");}
  353. }
  354. .kc-info-box{width: 100%;box-sizing: border-box;padding: 6rpx 36rpx 24rpx;border-bottom: 1rpx solid #ebebeb;
  355. display: flex;align-items: center;justify-content: space-between;color: #555;font-size: 28rpx;}
  356. .kecheng-mulu-box{
  357. width: 100%;box-sizing: border-box;padding: 0 36rpx;
  358. .collapse-item-icon,.kejian-item-icon{width: 36rpx;height: 36rpx;@include ezy-no-repeat-cover();}
  359. .my-collapse-item {
  360. border-bottom: 1rpx solid #ebebeb;padding: 16rpx 0;
  361. display: flex;align-items: center;justify-content: space-between;
  362. }
  363. .collapse-text{font-size: 30rpx;color: #333;}
  364. .collapse-item-icon{background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");flex-shrink: 0;margin-left: 10rpx;}
  365. .item-open .collapse-item-icon{transform: rotate(180deg);}
  366. .my-card-content {height: 0rpx;overflow: hidden;margin: 0 20rpx;}
  367. .content-open{
  368. display: block;height: auto;
  369. .content-open{margin: 0;}
  370. .item-open{
  371. border:0;
  372. .collapse-text{color: #333;}
  373. }
  374. }
  375. .kejian-item{display: flex;align-items: center;padding: 16rpx;font-size: 28rpx;justify-content: space-between;
  376. color: #666;border-radius: 4rpx;background-color: #f4f7ff;margin-bottom:16rpx;}
  377. .kejian-item-icon{background-image: url("@/static/images/common/play-icon.svg");flex-shrink: 0;margin-right: 8rpx;}
  378. .kejian-item-name{margin-right: auto;}
  379. .kejian-active{
  380. color: #3fd2a1;background-color: #3fd2a11a;
  381. .kejian-item-icon{background-image: url("@/static/images/common/play-icon-a.svg");}
  382. }
  383. }
  384. .kecheng-content-box{flex: 1;overflow: auto;}
  385. .kecheng-jieshao-box{
  386. display: block;box-sizing: border-box;padding: 24rpx;font-size: 30rpx;color: #666;
  387. word-break: break-all;line-height: 1.6;
  388. img{max-width: 100%;margin: 0 auto;}
  389. @include ezy-rich-text();
  390. }
  391. }
  392. /*** 进入成绩 ***/
  393. .phone-score-page{
  394. width: 100%;height: 100vh;
  395. display: flex;flex-direction: column;background-color: #f4f6fa;
  396. .score-page-title{
  397. height: 80rpx;line-height: 80rpx;background-color: #fff;font-size: 26rpx;color: #333;
  398. display: flex;justify-content: space-between;padding: 0 24rpx;border-bottom: 10rpx solid #f4f6fa;
  399. .title-types{font-size: 32rpx;color: #000;}
  400. .user-score{color: #30c190;}
  401. }
  402. .score-shiti-content{
  403. padding: 24rpx 0 160rpx;background-color: #fff;flex: 1;overflow: auto;
  404. .phone-danxuan-box,.phone-duoxuan-box,.phone-panduan-box,.phone-tiankong-box{height: auto;margin: 0 32rpx;}
  405. .dajx-row{padding-bottom: 150rpx;}
  406. }
  407. .score-answer-box{
  408. background-color: #fff;border-top: 10rpx solid #f4f6fa;
  409. .score-line-title{margin-bottom: 0;}
  410. }
  411. .phone-question-answer-box{
  412. overflow: unset;
  413. }
  414. // bottom
  415. .score-bottom-box{
  416. width: 100%;height: 100rpx;background-color: #f0f0f0;
  417. display: flex;align-items: center;justify-content: space-between;
  418. padding: 0 24rpx;box-sizing: border-box;position: fixed;bottom: var(--window-bottom);
  419. .score-num-icon{
  420. width: 27px;height: 24px;vertical-align: middle;
  421. background-image: url("@/static/images/exam/shiti-num-icon.png");@include ezy-no-repeat-cover();
  422. }
  423. .active-num{color: #30c190;}
  424. .score-answer-btn{margin: 0;}
  425. .score-answer-btn + .score-answer-btn{margin-left:24rpx;}
  426. }
  427. }
  428. /*** 答题卡 ***/
  429. .answer-card-popup{
  430. width: 100%;height: 100vh;display: flex;flex-direction: column;overflow: auto;background-color: #fff;
  431. .card-content-box{overflow: auto;flex: 1;}
  432. .answer-card-content{display: flex;flex-wrap: wrap;box-sizing: border-box;padding: 20rpx 16rpx;}
  433. .paragraph-title{width: 100%;font-size: 30rpx;margin:0 0 10rpx 24rpx;}
  434. .paragraph-qa {
  435. width: 80rpx;height: 80rpx;line-height: 78rpx;margin: 20rpx 30rpx;border: 1rpx solid transparent;
  436. border-radius: 50%;text-align: center;overflow: hidden;
  437. }
  438. // 答题卡 答完样式
  439. .paragraph-qa-block-done {
  440. background-color: #6186fb;color: #fff;border: 1rpx solid transparent;
  441. }
  442. // 答题卡 未答完样式
  443. .paragraph-qa-block-init {
  444. background-color: #fff;color: #000;border: 1rpx solid #ccc;
  445. }
  446. // 答题卡 标记样式
  447. .paragraph-qa-block-mark {
  448. background-color: #3fd2a1;color: #fff;border: 1rpx solid #3fd2a1;
  449. }
  450. }
  451. /*** 答题解析***/
  452. .phone-question-answer-box{
  453. font-size: 30rpx;color: #666;box-sizing: border-box;padding: 32rpx;
  454. line-height: 1.6;max-height: 60vh;overflow: auto;
  455. .phone-line-title{margin-bottom: 24rpx;}
  456. .btdf-row{
  457. margin-bottom: 10rpx;
  458. text{color: #3fd2a1;margin-right: 6rpx;}
  459. }
  460. .ndda-row{
  461. min-width: 50%;display: inline-block;margin-bottom: 10rpx;
  462. text{color: #ff6b67;}
  463. }
  464. .zqda-row{
  465. min-width: 50%;display: inline-block;margin-bottom: 10rpx;
  466. text{color: #3fd2a1;}
  467. }
  468. }
  469. /*** 我的页面***/
  470. .client-my-page{
  471. background-color:#f8f9fd;height: 100vh;box-sizing: border-box;padding-bottom: 120rpx;overflow: auto;
  472. // head
  473. .my-head-box{
  474. width: 100%;height:300rpx;display: flex;align-items: center;box-sizing: border-box;padding: 24rpx 52rpx;
  475. background-image: url("@/static/images/my/client-my-bj.png");@include ezy-no-repeat-cover(top);
  476. }
  477. .head-img-box{
  478. width: 170rpx;height: 170rpx;margin-right: 32rpx;display: flex;align-items: center;
  479. border-radius: 50%;overflow: hidden;
  480. }
  481. .head-img{width: 100%;height: auto;}
  482. .head-content-box{
  483. font-size: 32rpx;color: #fff;
  484. .head-content-row-box{display: flex;align-items: center;margin-top: 20rpx;}
  485. .tel-icon,.idcard-icon{width: 40rpx;height:40rpx;@include ezy-no-repeat-cover();flex-shrink: 0;}
  486. .tel-icon{background-image: url("@/static/images/my/my-tel-icon.png");}
  487. .idcard-icon{background-image: url("@/static/images/my/my-idcard-icon.png");}
  488. .content-text{font-size: 30rpx;margin-left: 10rpx;}
  489. }
  490. // admin
  491. .admin-head-box{
  492. background-color: #fff;box-sizing: border-box;padding: 30rpx 36rpx;border-radius: 12rpx;
  493. display: flex;align-items: center;margin: -180rpx 20rpx 20rpx;
  494. .head-content-box{font-size: 32rpx;color: #333;margin-left: 20rpx;}
  495. .tel-icon{background-image: url("@/static/images/login/login-tel-icon.png");}
  496. }
  497. .jzgs-name-box{
  498. width: 100%;text-align: center;font-size: 34rpx;color: #fff;
  499. box-sizing: border-box;font-weight: 600;@include ezy-no-repeat-cover(bottom);
  500. background-image: url("@/static/images/my/admin-my-bj.png");
  501. height: 376rpx;padding-top: 100rpx;
  502. }
  503. // num
  504. .my-num-box{
  505. background-color: #fff;box-sizing: border-box;padding: 24rpx 36rpx;border-radius: 8rpx;
  506. display: flex;justify-content: space-around;margin: 20rpx;
  507. .num-item-box{
  508. display: flex;flex-direction: column;align-items: center;position: relative;
  509. icon{width: 100rpx;height: 100rpx;@include ezy-no-repeat-cover();margin-bottom: 10rpx;}
  510. .ks-icon{background-image: url("@/static/images/my/my-ks-icon.png");}
  511. .lx-icon{background-image: url("@/static/images/my/my-lx-icon.png");}
  512. .kc-icon{background-image: url("@/static/images/my/my-kc-icon.png");}
  513. .my-num-badge{position: absolute;right: -8rpx;top: -12rpx;}
  514. .num-title{font-size: 28rpx;color: #333;}
  515. }
  516. }
  517. // list
  518. .my-list-box{
  519. margin: 0 20rpx;background-color: #fff;border-radius: 8rpx;padding: 0 36rpx;
  520. .list-row{border-bottom: 2rpx solid #eee;color: #333;box-sizing: border-box;padding: 36rpx 0;
  521. display: flex;align-items: center;position: relative;}
  522. .list-row::after{
  523. content: '';width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;
  524. background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  525. position: absolute;right: 0;transform: rotate(270deg);
  526. }
  527. .list-row:last-child{border: 0;}
  528. .list-icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover;margin-right: 32rpx;}
  529. .user-icon{background-image: url("@/static/images/my/my-editor-icon.png");}
  530. .jzxx-icon{background-image: url("@/static/images/my/my-jzxx-icon.png");}
  531. .mm-icon{background-image: url("@/static/images/login/login-lock-icon.png");}
  532. .code-icon{background-image: url("@/static/images/my/two-code-icon.png");}
  533. .score-icon{background-image: url("@/static/images/my/my-score-icon.png");}
  534. .login-out-icon{background-image: url("@/static/images/my/login-out-icon.png");}
  535. .sxtcs-icon{background-image: url("@/static/images/my/my-sxtcs-icon.png");}
  536. .sxtsm-icon{background-image: url("@/static/images/my/my-sxtsm-icon.png");}
  537. }
  538. }
  539. /*** 个人信息页面 ***/
  540. .my-info-page{
  541. background-color: #f8f9fd;height: 100vh;
  542. .user-img-box{
  543. display: flex;background-color: #fff;margin-bottom: 24rpx;
  544. padding: 16rpx;box-sizing: border-box;align-items: center;
  545. .uni-file-picker__container{justify-content: center;border: 0;border-radius: 50%;}
  546. .file-picker__box-content{border: 0;border-width: 0 !important;}
  547. .user-file-picker{
  548. .is-add{justify-content: space-between;}
  549. .file-picker__box{width: 100%!important;}
  550. .file-picker-image{max-height: 200rpx;max-width: 160rpx;}
  551. .file-image >div{max-width: 160rpx;max-height: 200rpx;margin: 0 auto;}
  552. img{max-width: 100%;max-height: 200rpx;}
  553. }
  554. .user-title{font-size: 30rpx;color: #333;margin-left: 20rpx;}
  555. .user-jt-icon{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;
  556. background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  557. transform: rotate(270deg);margin-left: 4rpx;}
  558. }
  559. .info-btn{width: 360rpx;margin: 100rpx auto 24rpx;font-size: 30rpx;}
  560. }
  561. /*** 家政人员列表 ***/
  562. .admin-jiazheng-list{
  563. width: 100%;height: 100vh;position: relative;
  564. .jz-scroll-view{height: calc(100vh - 400rpx - var(--status-bar-height));}
  565. .all-type-box{
  566. position: absolute;top: 80rpx;left: 0;right: 0;bottom: 0;
  567. z-index: 2;background-color: rgba(0,0,0,0.3);
  568. .data-check-radio-group{height: 500rpx;border:1rpx solid #f5f5f5;}
  569. }
  570. .jz-new-btn-box{
  571. padding: 20rpx 24rpx 20rpx;background-color: #f4f6fa;box-sizing: border-box;
  572. .phone-green-btn{font-size: 28rpx;}
  573. }
  574. .uni-list .jz-list-item-box:nth-child(2){padding-top: 20rpx;}
  575. .jz-list-item-box{
  576. background-color: #f4f6fa!important;
  577. .uni-list--border{display: none!important;}
  578. .uni-list-item__container{padding: 0 24rpx 24rpx;flex-direction: column;}
  579. }
  580. .jz-list-item-box{
  581. width: 100%;
  582. .card-head-row{
  583. background-color:#e5f8f4;display: flex;justify-content: space-between;align-items: center;
  584. box-sizing: border-box;padding: 24rpx;border-radius: 10rpx 10rpx 0 0;
  585. .head-name{font-size: 28rpx;color: #000;font-weight: 600;}
  586. .head-status{font-size: 26rpx;color: #39c194;}
  587. .status-line{margin: 0 8rpx;}
  588. .bz-tel-btn{font-size: 24rpx;width: 100rpx;padding: 0 10rpx;flex-shrink: 0;
  589. line-height: 50rpx;border-radius: 8rpx;margin: 0;margin-left: 24rpx;}
  590. .bz-bind-btn{font-size: 24rpx;width: 120rpx;padding: 0 10rpx;flex-shrink: 0;
  591. line-height: 50rpx;border-radius: 8rpx;margin: 0;margin-left: auto;}
  592. .fx-btn-box{margin-left: 24rpx;}
  593. }
  594. .card-body-row{
  595. display: flex;box-sizing: border-box;padding:16rpx 24rpx;background-color:#fff;border-radius: 0 0 10rpx 10rpx;
  596. .body-content-row{width: 100%;display: flex;flex-direction: column;justify-content: space-evenly;}
  597. .card-img-box{width: 180rpx;height: 240rpx;display: flex;align-items: center;margin-right: 24rpx;flex-shrink: 0;overflow: hidden;border-radius: 8rpx;}
  598. img{width: 180rpx;height: auto;}
  599. .content-text-row{
  600. display: flex;justify-content: space-between;font-size: 30rpx;color: #333;line-height: 46rpx;
  601. .text-status{font-size: 26rpx;color: #3fd2a1;border: 1rpx solid #3fd2a1;padding: 0 12rpx;border-radius: 8rpx;}
  602. }
  603. }
  604. }
  605. .content-lx-box{
  606. display: flex;align-items: center;flex-wrap: wrap;max-height: 100rpx;overflow: hidden;
  607. .content-lx-item{border: 1rpx solid #ccc;color: #888;font-size: 24rpx;margin-right: 16rpx;margin-top: 12rpx;
  608. border-radius: 6rpx;padding: 4rpx 10rpx 5rpx;box-sizing: border-box;line-height: 1;}
  609. }
  610. }
  611. /*** 家政页面筛选***/
  612. .jiazheng-search-box{
  613. width: 100%;box-sizing: border-box;padding: 20rpx 20rpx;position: relative;
  614. display: flex;justify-content: space-between;align-items: center;border-top: 1rpx solid #f4f6fa;
  615. .jiazheng-search-right{display: flex;margin-left: auto;}
  616. .select-item-box{
  617. font-size: 30rpx;display: flex;align-items: center;
  618. .select-text{max-width: 200rpx;@include single-line-ellipsis();display: inline-block;}
  619. .kc-select-text{max-width: 650rpx;@include single-line-ellipsis();display: inline-block;}
  620. .select-jt-default,.select-jt-click{
  621. width: 16rpx;height: 16rpx;vertical-align: middle;margin-left: 10rpx;
  622. background-image: url("@/static/images/common/sanjiao-shixin-icon.svg");@include ezy-no-repeat-contain();
  623. }
  624. .select-jt-click{transform: rotate(180deg);}
  625. }
  626. .saixuan-item-box{
  627. margin-right: 42rpx;font-size: 26rpx;color: #000;
  628. text{vertical-align: middle;}
  629. .saixuan-jt-default,.saixuan-jt-click{
  630. width: 16rpx;height: 16rpx;vertical-align: middle;margin-left: 6rpx;@include ezy-no-repeat-cover();
  631. }
  632. .saixuan-jt-default{background-image: url("@/static/images/common/sanjiao-xia-icon.svg");}
  633. .saixuan-jt-click{
  634. background-image: url("@/static/images/common/sanjiao-shang-icon.svg");
  635. }
  636. }
  637. .saixuan-active text{color: #3fd2a1;}
  638. .saixuan-disabled{color: #999;}
  639. .uni-icons{display: flex;align-items:center;}
  640. }
  641. /*** 家政人员管理 ***/
  642. .admin-jiazheng-page{
  643. height: 100vh;background-color: #f8f9fd;display: flex;flex-direction: column;
  644. .jz-content-box{flex: 1;overflow: auto;display: flex;flex-direction: column;}
  645. .mask-view{position: relative;}
  646. .mask-view::before{content: '';z-index: 9;position: absolute;top: 0;left: 0;right: 0;bottom: 0;}
  647. .content-body-box{flex: 1;overflow: auto;}
  648. .content-footer-box{flex-shrink: 0;}
  649. .form-top-margin{margin-top: 20rpx;}
  650. .upload-img-box{background-color: #fff;padding: 20rpx 0;margin: 20rpx 0;}
  651. .upload-img-mask-box{position: relative;}
  652. .upload-img-mask-box::before{content:'';position: absolute;left: 0;right: 0;top: 0;bottom: 0;z-index: 9;}
  653. // 个人资料
  654. .agree-section-box{
  655. background-color: #fff;padding: 30rpx;font-size: 28rpx;
  656. .phone-green-btn{font-size: 28rpx;margin: 20rpx auto 36rpx;width: 36%;}
  657. }
  658. .flex-start-row{
  659. align-items: flex-start;
  660. .phone-form-label{line-height: 70rpx;}
  661. }
  662. .page-btn-box{
  663. margin: 20rpx 8rpx 0;display: flex;justify-content: center;padding: 32rpx 0;background-color: #fff;
  664. .phone-white-btn,.phone-green-btn{width: 36%;font-size: 28rpx;margin: 0 16rpx;}
  665. }
  666. .phone-radio-group{
  667. display: flex;flex-wrap: wrap;flex: 1;padding: 0;
  668. .phone-radio-item{width: 29%;margin:10rpx 2%;padding: 0 6rpx;}
  669. }
  670. // 照片资料
  671. .ziliao-upload-box{
  672. background-color: #fff;display: flex;flex-wrap: wrap;padding: 32rpx;
  673. .ziliao-image-box{position: relative;}
  674. .ziliao-image{width: 200rpx;max-height: 200rpx;}
  675. .ziliao-image-box{margin-right: 24rpx;}
  676. .ziliao-image-close{
  677. width: 36rpx;height: 36rpx;@include ezy-no-repeat-cover();
  678. background-image: url("@/static/images/common/img-close-icon.svg");
  679. position: absolute;top: 0;right: 0;z-index: 2;
  680. }
  681. .admin-upload-btn-box{margin: 0;}
  682. .upload-item-box + .upload-item-box{margin-left: 16rpx;}
  683. }
  684. .zpzl-tip-box{
  685. background-color: #fff;padding:24rpx 38rpx;font-size: 30rpx;color: #333;
  686. .red-tip{font-size: 24rpx;color: #ff0101;margin: 16rpx 0;}
  687. .scbg-tip{text-align: center;font-size: 28rpx;color: #555;
  688. padding: 42rpx 0 24rpx;border-top: 1rpx solid #f8f9fd;margin-top: 24rpx;}
  689. .scbg-btn{font-size: 28rpx;margin: 20rpx 8rpx 10rpx;}
  690. }
  691. .zpzl-open-box,.zpzl-close-box{
  692. padding-bottom: 20rpx;
  693. .gdzl-row{width:100%;border-top: 1rpx solid #f8f9fd;border-bottom: 1rpx solid #f8f9fd;
  694. line-height:60rpx;font-size: 30rpx;color: #3fd2a1;background-color: #fff;
  695. display: flex;justify-content: center;align-items: center;
  696. box-sizing: border-box;padding:20rpx 20rpx 20rpx 42rpx;
  697. icon{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover();margin-left: 20rpx;
  698. background-image: url("@/static/images/common/nav-bar-jt-bottom-green.svg");}
  699. }
  700. }
  701. .zpzl-open-box{
  702. .gdzl-row icon{transform: rotate(180deg);}
  703. }
  704. // 办证信息
  705. .bzsm-tip-box{
  706. background-color: #fff;padding:24rpx 38rpx;font-size: 28rpx;color: #666;
  707. .title-btn-box{display: flex;justify-content: space-between;margin-bottom: 24rpx;}
  708. .reset-btn{background-color: #3fd2a1;color: #fff;padding: 5rpx 20rpx;font-size: 24rpx;border-radius: 8rpx;line-height: 1.2;}
  709. .tip-content-box{margin-bottom: 12rpx;font-size: 26rpx;}
  710. }
  711. // 办证信息list
  712. .bzxx-list-page{
  713. width:100%;background-color: #f8f9fd;position: absolute;top: calc(170rpx + var(--status-bar-height));bottom: 0;
  714. display: flex;flex-direction: column;
  715. .bz-new-btn-box{
  716. padding: 20rpx 24rpx 20rpx;background-color: #f4f6fa;box-sizing: border-box;display: flex;align-items: center;
  717. uni-button{font-size: 28rpx;width: 100%;}
  718. }
  719. .bzxx-wrap-box{flex: 1;overflow: auto;padding-bottom: 140rpx;}
  720. .bzxx-card-box{background-color: #fff;padding:24rpx 38rpx;font-size: 28rpx;color: #666;line-height: 1;margin-top: 20rpx;}
  721. .bzxx-card-box:first-child{margin-top: 0;}
  722. .name-btn-box{
  723. font-size: 32rpx;color: #000;display: flex;justify-content: space-between;align-items: center;margin-bottom: 16rpx;
  724. .jg-name{@include single-line-ellipsis();}
  725. .name-btn{font-size: 26rpx;padding: 8rpx 20rpx;border-radius: 8rpx;line-height: 1.1;flex-shrink: 0;}
  726. .editer-btn{background-color: #fff;color: #3fd2a1;border: 1rpx solid #3fd2a1;margin-left: auto;}
  727. .delete-btn{background-color: #3fd2a1;color: #fff;margin-left: 20rpx;}
  728. }
  729. .bzxx-zy-row{
  730. display: flex;align-items: center;margin-bottom: 16rpx;padding: 0 32rpx;box-sizing: border-box;
  731. icon{width: 28rpx;height: 28rpx;@include ezy-no-repeat-cover;margin-right: 12rpx;flex-shrink: 0;}
  732. text{color: #333;}
  733. .zy-icon{background-image: url("@/static/images/common/zymc-icon.png");}
  734. .zydj-icon{background-image: url("@/static/images/common/zydj-icon.png");}
  735. }
  736. .bzxx-zy-row +.bzxx-zy-row{margin-top: 6rpx;}
  737. .bzxx-time-row{
  738. display: flex;align-items: center;
  739. background-color:#f4f6fa;box-sizing: border-box;padding: 16rpx 32rpx;border-radius: 8rpx;font-size: 24rpx;
  740. .time-icon{width: 20rpx;height: 20rpx;@include ezy-no-repeat-cover();
  741. vertical-align: top;margin-right: 10rpx;flex-shrink: 0;background-image: url("@/static/images/common/time-icon.png");}
  742. }
  743. .bzxx-btn-box{
  744. position: fixed;width: 100%;bottom: var(--window-bottom);left: 0;right: 0;
  745. margin: 20rpx 0 0;display: flex;justify-content: center;padding: 32rpx 0;background-color: #fff;
  746. .phone-white-btn,.phone-green-btn{width: 36%;font-size: 28rpx;margin: 0 16rpx;}
  747. }
  748. .bzxx-add-btn-box{
  749. width: 100%; height: 100vh; background-color: #fff;display: flex; flex-direction: column;align-items: center;
  750. .bzxx-add-btn{
  751. width: 400rpx;height: 220rpx;line-height: 220rpx;border: 1rpx dashed #3fd2a1;font-size: 32rpx;
  752. border-radius: 8rpx;color: #3fd2a1;text-align: center;margin-top: 100rpx;
  753. text{color:#3fd2a1;font-size: 42rpx;margin-right: 16rpx;}
  754. }
  755. }
  756. }
  757. // 搜索
  758. .city-search-box{
  759. display: flex;align-items: center;padding:20rpx 24rpx;
  760. .city-select-btn{margin-right: 16rpx;flex-shrink: 0;font-size: 26rpx;color: #333;}
  761. .city-select-btn::after{
  762. content: '';width: 24rpx;height: 24rpx;@include ezy-no-repeat-cover();display: inline-block;vertical-align: middle;
  763. background-image: url("@/static/images/common/nav-bar-jt.svg");transform: rotate(270deg);margin-left: 6rpx;
  764. }
  765. .city-input-box{width: 100%;}
  766. .search-icon{right: 35rpx;}
  767. }
  768. }
  769. /*** 消息列表 ***/
  770. .phone-tongzhi-list{
  771. .uni-list-item__container{padding: 0!important;}
  772. .xiaoxi-list-card-box{
  773. width: 100%;
  774. }
  775. .card-head-row{
  776. width: 100%;display: flex;align-items: center;border-bottom: 1rpx solid #f4f6fa;
  777. padding: 10rpx 20rpx;box-sizing: border-box;justify-content: space-between;
  778. .head-name{font-size: 32rpx;color:#49be89;@include single-line-ellipsis();}
  779. .head-createTime{font-size: 28rpx;color:#969495;margin-left: auto;flex-shrink: 0;}
  780. icon{width: 24rpx;height: 24rpx;@include ezy-no-repeat-cover;flex-shrink: 0;
  781. background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  782. transform: rotate(270deg);margin-left:4rpx;}
  783. }
  784. .card-content{
  785. width: 100%;height: 84rpx;padding:0 20rpx;box-sizing: border-box;@include multi-line-ellipsis(2);
  786. @include ezy-rich-text();font-size: 28rpx;color:#666;margin: 16rpx 0;line-height: 1.5;
  787. }
  788. }
  789. /*** 消息详情 ***/
  790. .phone-tongzhi-page{
  791. width: 100%;display: flex;flex-direction: column;text-align: center;
  792. .tongzhi-down-icon{width: 36rpx;height: 36rpx;@include ezy-no-repeat-cover;
  793. background-image: url("@/static/images/common/down-icon.svg");}
  794. .tongzhi-body-box{box-sizing: border-box;padding: 20rpx;overflow: auto;height: calc(100vh - 160rpx - var(--status-bar-height));}
  795. .tongzhi-name{font-size: 32rpx;color:#333;margin-bottom: 24rpx;line-height: 1.6;box-sizing: border-box;padding:0 20rpx;}
  796. .tongzhi-time{font-size: 28rpx;color:#969495;margin-bottom: 24rpx;}
  797. .tongzhi-content{font-size: 28rpx;color:#666;text-align: left;line-height: 1.6;;}
  798. }
  799. /*** 办证 ***/
  800. .phone-banzheng-page{
  801. // width: 100%;height: 100vh;background-color: #f4f6fa;
  802. .banzheng-list-item-box{
  803. background-color: #f4f6fa!important;
  804. .uni-list--border{display: none!important;}
  805. .uni-list-item__container{padding: 0 24rpx 24rpx;}
  806. }
  807. .uni-list .banzheng-list-item-box:nth-child(2){padding-top: 20rpx;}
  808. .banzheng-list-card-box{
  809. width: 100%;
  810. .card-head-row{
  811. background-color:#e5f8f4;display: flex;justify-content: space-between;align-items: center;
  812. box-sizing: border-box;padding: 24rpx;border-radius: 10rpx 10rpx 0 0;
  813. .head-name{font-size: 28rpx;color: #000;font-weight: 600;}
  814. .head-status{font-size: 26rpx;color: #39c194;}
  815. .status-line{margin: 0 8rpx;}
  816. .head-clear{width: 30rpx;height: 30rpx;display: inline-block;vertical-align: middle;margin-left: 24rpx;
  817. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/clear-bz-icon.svg");}
  818. }
  819. .card-body-row{
  820. display: flex;box-sizing: border-box;padding:16rpx 24rpx;background-color:#fff;border-radius: 0 0 10rpx 10rpx;
  821. .body-content-row{width: 100%;display: flex;flex-direction: column;justify-content: center;}
  822. .card-img-box{width: 180rpx;max-height: 240rpx;display: flex;align-items: center;margin-right: 24rpx;flex-shrink: 0;}
  823. img{max-width: 180rpx;max-height: 240rpx;border-radius: 8rpx;}
  824. .content-text-row{
  825. display: flex;align-items: center;font-size: 28rpx;color: #333;line-height: 46rpx;
  826. text{color: #000;font-weight: 600;flex-shrink: 0;}
  827. }
  828. .bz-tel-btn{font-size: 24rpx;width: 100rpx;padding: 0 10rpx;flex-shrink: 0;
  829. line-height: 50rpx;border-radius: 8rpx;margin: 0;margin-left: auto;}
  830. .jg-zy-box{
  831. background-color:#f4f6fa;border-radius: 10rpx;font-size: 26rpx;color: #666;
  832. box-sizing: border-box;padding: 16rpx;line-height: 1.4;
  833. .jg-zy-row{display: flex;align-items: flex-start;}
  834. .jg-zy-row +.jg-zy-row{margin-top: 6rpx;}
  835. text{@include multi-line-ellipsis(2);}
  836. icon{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;margin-right: 10rpx;flex-shrink: 0;}
  837. .bz-icon{background-image: url("@/static/images/common/bz-icon.png");}
  838. .zy-icon{background-image: url("@/static/images/common/zy-icon.png");}
  839. }
  840. }
  841. }
  842. // 办证状态
  843. .banzheng-search-box{
  844. width: 100%;box-sizing: border-box;padding: 20rpx 20rpx;position: relative;
  845. display: flex;justify-content: space-between;align-items: center;border-top: 1rpx solid #f4f6fa;
  846. .select-item-box{
  847. font-size: 30rpx;
  848. .select-jt-default,.select-jt-click{
  849. width: 16rpx;height: 16rpx;vertical-align: middle;margin-left: 10rpx;
  850. background-image: url("@/static/images/common/sanjiao-shixin-icon.svg");@include ezy-no-repeat-contain();
  851. }
  852. .select-jt-click{transform: rotate(180deg);}
  853. }
  854. // 带筛选按钮的
  855. .filter-btn{font-size: 28rpx;color: #666;position: relative;margin-right: 20rpx;}
  856. .filter-btn::after{
  857. content: '';width: 0;height: 0;position: absolute;bottom: 5rpx;right: -12rpx;
  858. border-left: 4rpx solid transparent;border-top: 4rpx solid transparent;
  859. border-bottom: 4rpx solid #666;border-right: 4rpx solid #666;
  860. }
  861. }
  862. .banzheng-type-box{
  863. position: absolute;top: 80rpx;left: 0;right: 0;bottom: 0;
  864. z-index: 2;background-color: rgba(0,0,0,0.3);
  865. .data-check-radio-group{height: 500rpx;border:1rpx solid #f5f5f5;align-content: flex-start;}
  866. }
  867. }
  868. /*** 筛选 ***/
  869. .phone-filter-page{
  870. width: 100%;height: 100vh;background-color: #f8f9fd;
  871. display: flex;flex-direction: column;overflow: auto;-webkit-overflow-scrolling: touch;
  872. .filter-body-box{margin-top: 20rpx;background-color: #fff;flex:1;overflow: auto;}
  873. .filter-body-name{margin: 0 calc(16rpx + 1%);font-size: 28rpx;color: #333;
  874. font-weight: 600;box-sizing: border-box;padding: 20rpx 0 0;}
  875. .filter-body-radio{margin: 0 calc(16rpx + 1%);box-sizing: border-box;font-size: 28rpx;padding: 24rpx 0 0;}
  876. .radio-name-box{display: flex;align-items: center;}
  877. .filter-radio-group{border-bottom:1rpx solid #f5f5f5;}
  878. .filter-btn-box{display: flex;background-color: #fff;box-sizing: border-box;
  879. border-top: 1rpx solid #f5f5f5;justify-content: center;padding: 32rpx 42rpx;
  880. }
  881. .filter-btn{font-size: 26rpx;width: 200rpx;margin: 0;}
  882. .filter-btn + .filter-btn{margin-left: 60rpx;}
  883. }
  884. /*** 家政人员简历 ***/
  885. .phone-jianli-page{
  886. width: 100%;background-color: #f8f9fd;display: flex;flex-direction: column;
  887. height: 100vh;
  888. .right-icon-delete-btn{
  889. width: 35rpx;height: 35rpx;@include ezy-no-repeat-cover();margin-right: 10rpx;
  890. background-image: url("@/static/images/common/clear-icon.svg");
  891. }
  892. .jianli-wrap-box{overflow: auto;box-sizing: border-box;padding-bottom: 120rpx;}
  893. .jianli-head-box{
  894. display: flex;background-color:#3fd2a1;box-sizing: border-box;padding: 24rpx 36rpx;
  895. margin: 24rpx 32rpx;border-radius: 10rpx;
  896. .head-img-box{
  897. width: 180rpx;height: 240rpx;margin-right: 32rpx;display: flex;align-items: center;
  898. border-radius: 10rpx;overflow: hidden;position: relative;
  899. .head-img{width: 180rpx;height: auto;}
  900. .head-status{
  901. height: 32rpx;line-height: 32rpx;padding: 0 16rpx;
  902. position: absolute;right:0;bottom:0;border-radius: 10rpx 0 10rpx 0;text-align: center;
  903. font-size: 24rpx;color: #fff;background-image: linear-gradient(to right, #fbba31, #fea32b);}
  904. }
  905. .head-content-box{
  906. display: flex;flex-direction: column;justify-content: space-around;font-size: 28rpx;color:#fff;
  907. .name-row{font-size: 34rpx;font-weight: bold;}
  908. }
  909. }
  910. .jianli-body-box{background-color: #fff;box-sizing: border-box;padding: 24rpx 36rpx;}
  911. .jbxx-label{word-spacing: 48rpx;margin-right: 10rpx;color: #666;flex-shrink: 0;}
  912. .leixing-row{
  913. display: flex;background-color: #e7f8f2;border-radius: 10rpx;
  914. box-sizing: border-box;padding: 24rpx 32rpx;font-size: 30rpx;
  915. .leixing-content{color: #333;font-weight: bold;line-height: 1.6;}
  916. }
  917. .body-jbxx-box{
  918. box-sizing: border-box;padding: 24rpx 32rpx 0;
  919. >view{color: #333;font-size: 32rpx;display: flex;margin-bottom: 20rpx;line-height: 1.5;}
  920. .jbxx-title{font-size: 30rpx;color: #3fd2a1;font-weight: bold;}
  921. }
  922. .jbxx-tip{font-size: 24rpx;color: #666;text-align:center;
  923. box-sizing: border-box;padding: 20rpx 32rpx 0;justify-content: center;margin-bottom: 0;}
  924. .jianli-bottom-box{
  925. width: 100%;height: 100rpx;background-color: #f9f9f9;border-top: 1rpx solid #eeeeee;z-index: 9;
  926. position: fixed;left: var(-window-left);right: var(-window right);bottom: var(--window-bottom);
  927. box-sizing: border-box;padding-bottom: env(safe-area-inset-bottom);display: flex;justify-content: space-around;align-items: center;
  928. .bottom-icon{width: 36rpx;height: 36rpx;display: block;@include ezy-no-repeat-cover();margin: 0 auto 2rpx;}
  929. .zl-icon{background-image: url("@/static/images/common/jz-editor-icon.png");}
  930. .tel-icon{background-image: url("@/static/images/common/jz-tel-icon.png");}
  931. .ht-icon{background-image: url("@/static/images/common/ht-icon.png");}
  932. .bottom-text{font-size: 24rpx;color: #333;}
  933. }
  934. .jbxx-tel-btn{width: 240rpx;margin-top: 32rpx;font-size: 28rpx;}
  935. }
  936. /*** 地图浮层 ***/
  937. .map-popup-box{
  938. width: 100%;height: 100vh;display: flex;flex-direction: column;
  939. .map-card-list{width: 100%;padding: 24rpx;box-sizing: border-box;flex: 1;overflow: auto;}
  940. .map-card-box{border-bottom: 1rpx solid #ccc;padding-bottom: 20rpx;margin-bottom: 20rpx;display: flex;align-items: center;}
  941. .map-card-box:last-child{border-bottom: 0;}
  942. .dqwz-text{color:#3fd2a1;border: 1rpx solid #3fd2a1;padding: 1rpx 10rpx 3rpx;
  943. box-sizing: border-box;border-radius: 4rpx;line-height: 1;font-size: 24rpx;margin-right: 10rpx;}
  944. .map-card-title{font-size: 30rpx;color: #000;margin-bottom: 12rpx;}
  945. .map-card-address{font-size: 24rpx;color: #666;}
  946. .map-active-icon{
  947. width: 40rpx;height: 40rpx;@include ezy-no-repeat-cover();margin-left: auto;
  948. background-image: url("@/static/images/common/markIcon.png");
  949. }
  950. .white-popup{background-color: #fff;}
  951. }
  952. /*** 分享 ***/
  953. .share-haibao-box{
  954. width: 100%;padding: 42rpx 32rpx;box-sizing: border-box;background: #fff;
  955. .share-list-box{padding: 42rpx 0;box-sizing: border-box;}
  956. .share-item-box{
  957. width: 20%;display: flex;flex-direction: column;align-items: center;font-size: 24rpx;color: #666;
  958. icon{width: 60rpx;height: 60rpx;@include ezy-no-repeat-cover();margin: 18rpx auto;}
  959. }
  960. .share-icon-box{
  961. width: 100rpx;height: 100rpx;text-align: center;line-height: 100rpx;margin-bottom: 6rpx;
  962. border: 1rpx solid #ccc;border-radius: 12rpx;box-sizing: border-box;
  963. icon{background-image: url("@/static/images/common/down-hb-icon.svg");}
  964. }
  965. }
  966. /*** 课程绑定 ***/
  967. .kc-bind-page{
  968. .kc-bind-scroll-view{height: calc(100vh - 240rpx - var(--status-bar-height));overflow-y: auto;}
  969. .kc-notbind-scroll-view{height: calc(100vh - 158rpx - var(--status-bar-height));overflow-y: auto;}
  970. .admin-list-box{
  971. .kecheng-list-card{
  972. .item-card-row {display: flex;flex-direction: column;justify-content: space-between;box-sizing: border-box;padding: 12rpx 0;}
  973. .bind-btn-row{display: flex;align-items:center;}
  974. .kc-bind-btn {width: 160rpx;font-size: 26rpx;margin:0;line-height: 2.4;}
  975. .kc-bind-btn + .kc-bind-btn{margin-left: 24rpx;}
  976. }
  977. }
  978. }
  979. /*** 子账号***/
  980. .phone-zzh-page{
  981. .zzh-saixuan-view{height: calc(100vh - 320rpx - var(--status-bar-height));}
  982. .zzh-new-btn-box{
  983. padding: 20rpx 24rpx 20rpx;background-color: #f4f6fa;box-sizing: border-box;
  984. .phone-green-btn{font-size: 28rpx;}
  985. }
  986. .zzh-list-item-box{border-bottom: 20rpx solid #f4f6fa;background-color: transparent!important;}
  987. .zzh-item-card{width: 100%;padding: 16rpx 0;}
  988. .zzh-name-row{
  989. font-size: 32rpx;color: #000;margin-bottom: 32rpx;border-bottom: 1rpx dashed #ccc;padding:0 12rpx 12rpx;
  990. .row-item{width: 100%;line-height: 1.6;display: flex;align-items: center;margin-bottom: 20rpx;}
  991. .user-icon,.tel-icon{width: 36rpx;height: 36rpx;@include ezy-no-repeat-cover();margin-right: 20rpx;}
  992. .user-icon{background-image: url("@/static/images/common/user-green-icon.png");}
  993. .tel-icon{background-image: url("@/static/images/common/tel-green-icon.png");}
  994. }
  995. .zzh-btn-row{
  996. display: flex;justify-content: center;
  997. .zzh-btn{width: 180rpx;font-size: 26rpx;margin:0;line-height: 2;}
  998. .zzh-btn + .zzh-btn{margin-left: 32rpx;}
  999. }
  1000. }
  1001. /*** 已售课程***/
  1002. .phone-yishou-page{
  1003. .ys-kc-saixuan-view{height: calc(100vh - 320rpx - var(--status-bar-height));}
  1004. .yishou-item-card-row{
  1005. display: flex;display: flex;flex-direction: column;justify-content: space-between;
  1006. box-sizing: border-box;padding: 10rpx 0 16rpx;
  1007. .time-row{margin-bottom: 0;}
  1008. }
  1009. .uni-calendar-item--multiple .uni-calendar-item--before-checked{
  1010. background-color: #74d1b2!important;
  1011. }
  1012. }
  1013. /*** 子家政公司 ***/
  1014. .phone-zjzgs-page{
  1015. background-color: #f8f9fd;display: flex;flex-direction: column;
  1016. height: 100vh;
  1017. .zjzgs-body-box{flex: 1;overflow-y: auto;}
  1018. .zjzgs-num-box{
  1019. border:1rpx solid #3fd2a1;
  1020. background-color: #fff;margin: 0 20rpx 24rpx;padding: 16rpx 0;border-radius: 8rpx;
  1021. .zjzgs-title{font-size:32rpx ;margin: 0 24rpx;color:#3fd2a1;text-align:center;font-weight: bold;margin-bottom:10rpx;}
  1022. .num-item-box{
  1023. border-bottom:1rpx dashed #3fd2a1;display: flex;align-items: center;justify-content: space-between;
  1024. font-size: 32rpx;text-align: center;color: #333;padding: 24rpx 0;margin: 0 24rpx;
  1025. .num-btn{font-size: 26rpx;padding: 8rpx 20rpx;border-radius: 8rpx;line-height: 1.1;flex-shrink: 0;
  1026. // background-color: #fff;color: #3fd2a1;border: 1rpx solid #3fd2a1;
  1027. font-size: 28rpx;background-color: #3fd2a1;color: #fff;margin-left: auto;}
  1028. >view{@include single-line-ellipsis();}
  1029. }
  1030. .num-item-box:nth-child(4){border-bottom: 0;}
  1031. }
  1032. .list-btn-box{
  1033. width: 100%;margin-top: 24rpx;
  1034. .list-btn{
  1035. padding: 14rpx 20rpx;border-radius: 8rpx;line-height: 1.1;
  1036. font-size: 28rpx;background-color: #3fd2a1;color: #fff;
  1037. margin:36rpx auto 20rpx;width: 200rpx;text-align: center;
  1038. }
  1039. }
  1040. }
  1041. /* 职业等级选择页 */
  1042. .phone-zydj-popup{
  1043. display: flex;flex-direction: column;
  1044. height: 100vh;
  1045. .phone-select-group{
  1046. display: flex;flex-wrap: wrap;align-content: flex-start;flex: 1;
  1047. overflow: auto;box-sizing: border-box;padding:16rpx;}
  1048. .phone-select-item{width: 31.7%;height:60rpx;line-height:60rpx;margin:10rpx 0.8%;padding: 0 6rpx;font-size: 24rpx;border-radius: 6rpx;
  1049. box-sizing: border-box;background-color:#f5f5f5;text-align: center;@include single-line-ellipsis();
  1050. border:1rpx solid #f5f5f5;}
  1051. .selectActive{position: relative;background-color:#e5f8f4;border:1rpx solid #6bccb0;color:#6bccb0;}
  1052. .select-item-tag{position: absolute;font-size: 22rpx;top: 2rpx;right: 3rpx;line-height: 1;color: #333;}
  1053. .zydj-popup-btn-box{
  1054. margin: 20rpx 8rpx 0;display: flex;justify-content: center;padding: 32rpx 0;background-color: #fff;
  1055. .phone-green-btn{width: 36%;font-size: 28rpx;margin: 0 16rpx;}
  1056. }
  1057. }
  1058. // 等级选择弹窗
  1059. .dj-select-item{border:1rpx solid #c5c5c5;text-align: center;margin:0 5% 30rpx;padding: 16rpx 0;font-size: 26rpx;border-radius: 8rpx;}
  1060. /* 合同页 */
  1061. .phone-hetong-page{
  1062. height: 100vh;display: flex;flex-direction: column;
  1063. .lsht-icon{width: 73rpx;height: 73rpx;background-size: cover;
  1064. background-image: url("@/static/images/hetong/ls-ht-icon.png");}
  1065. .pdf-box{flex: 1;background-color: rgba(0, 0, 0, 0.5);margin: 24rpx;border-radius: 8rpx;
  1066. display: flex;flex-direction: column;align-items: center;overflow: auto;box-sizing: border-box;
  1067. padding: 16rpx 0;border:1rpx solid rgba(0, 0, 0, 0.3);}
  1068. .pdf-img{width: 93%;margin: 16rpx auto;}
  1069. .pdf-tip-box{
  1070. position: absolute;top: calc(110rpx + var(--status-bar-height));left: 0;right:0;bottom: 0;
  1071. display: flex;align-items: center;justify-content: center;color: #666;background-color: #fff;
  1072. border: 24rpx solid #f8f9fd;}
  1073. .tip-img-box{display: flex;flex-direction: column;}
  1074. .tip-text{text-align: center;color: #666;}
  1075. .tip-text::before{content: '';width: 260rpx;height: 260rpx;display: block;margin-bottom: 16rpx;
  1076. background-image: url("@/static/images/common/loading-icon.gif");background-size: cover;}
  1077. .no-hetong-box{
  1078. height: 100vh;display: flex;flex-direction: column;
  1079. align-items: center;justify-content: center;color: #666;}
  1080. .ht-btn{width: 180px;margin-bottom: 24px;}
  1081. .hetong-tip-box{color: #3fd2a1;font-size: 24rpx;margin:0 24rpx 24rpx;line-height: 1.4;}
  1082. }
  1083. .ht-qm-popup{
  1084. width: 100%;height: 100vh;
  1085. display: flex;flex-direction: column;
  1086. .ht-qm-box{background-color: #f8f9fd;flex: 1;}
  1087. .qm-tip-box{background-color: #fff;border-radius: 6rpx;margin: 24rpx;
  1088. padding: 16rpx 24rpx;box-sizing: border-box;}
  1089. .lime-signature{width: 100%!important;height: 400rpx!important;
  1090. background-color: #f0f9f8;border-radius: 8rpx;margin-top: 10rpx;}
  1091. .qm-tip-text{font-size: 24rpx;color: #333;margin: 48rpx 0 12rpx;line-height: 1.6;}
  1092. .ht-btn-box{
  1093. display: flex;margin: 32rpx 80rpx;
  1094. .phone-green-btn,.phone-white-btn{width: 240rpx;height: 70rpx;line-height: 70rpx;box-sizing: border-box;}
  1095. }
  1096. }
  1097. /* 合同列表页 */
  1098. .ht-list-page{
  1099. .uni-scroll-view-content{display: flex;flex-direction: column;}
  1100. .ht-list-box{background-color: #f8f9fd!important;padding: 12rpx 0;flex: 1;}
  1101. .ht-list-item-box{
  1102. margin:12rpx 24rpx;
  1103. .uni-list-item__container{padding: 0;border-radius: 12rpx;border: 1rpx solid #f2f2f4;}
  1104. }
  1105. .ht-card-row{width: 100%;padding: 36rpx 0;}
  1106. .ht-status-btn-row{
  1107. display: flex;justify-content: space-between;
  1108. .ht-status{width: 300rpx;height: 52rpx;line-height: 52rpx;font-size: 30rpx;
  1109. background-color: #42ca9c;box-sizing: border-box;padding: 0 24rpx;
  1110. color: #fff;border-radius: 0 26rpx 26rpx 0;}
  1111. .ht-biew-btn{
  1112. color: #666;font-size: 28rpx;padding: 0 16rpx;display: flex;align-items: center;color: #666;
  1113. .ht-jt{
  1114. width: 24rpx;height: 24rpx;background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  1115. @include ezy-no-repeat-cover();transform: rotate(270deg);margin-left: 4rpx;
  1116. }
  1117. }
  1118. }
  1119. .ht-time{font-size: 28rpx;color: #666;display: flex;align-items: center;margin: 24rpx 24rpx 0;}
  1120. .phone-time-icon{width: 42rpx;height: 42rpx;@include ezy-no-repeat-cover();
  1121. margin-right: 8rpx;flex-shrink: 0;background-image: url("@/static/images/hetong/data-icon.png");}
  1122. .status-0,.status-1,.status-2,.status-3{display: contents;}
  1123. .status-0 { color: #feff01; }
  1124. .status-1 { color: #33ffff; }
  1125. .status-2 { color: #fff; }
  1126. .status-3 { color: #f56c6c; }
  1127. }
  1128. /* 客户列表页 */
  1129. .admin-kehu-list{
  1130. width: 100%;height: 100vh;
  1131. .kh-new-btn-box{
  1132. padding: 20rpx 24rpx 20rpx;background-color: #f4f6fa;box-sizing: border-box;
  1133. .phone-green-btn{font-size: 28rpx;}
  1134. }
  1135. .kh-scroll-view{height: calc(100vh - 398rpx - var(--status-bar-height));}
  1136. .uni-list--border-top{display: none!important;}
  1137. .ht-list-item-box{
  1138. width: 100%;background-color: #f4f6fa!important;
  1139. .uni-list--border{display: none!important;}
  1140. .uni-list-item__container{padding: 0 24rpx 20rpx;flex-direction: column;}
  1141. }
  1142. .card-head-row{
  1143. display: flex;flex-direction: row;justify-content: flex-end;position: relative;
  1144. .ht-head-btn{font-size: 24rpx;width: 120rpx;padding: 0 10rpx;flex-shrink: 0;
  1145. line-height: 50rpx;margin: 0;}
  1146. .ht-head-btn + .ht-head-btn{margin-left: 16rpx;}
  1147. .del-btn-box{
  1148. width: 80rpx;height: 80rpx;position: absolute;left: -24rpx;top: -16rpx;
  1149. display: flex;align-items: center;justify-content: center;
  1150. .del-btn{width: 40rpx;height: 40rpx;display: inline-block;vertical-align: middle;margin-left: 24rpx;
  1151. @include ezy-no-repeat-cover;background-image: url("@/static/images/common/clear-bz-icon.svg");}
  1152. }
  1153. }
  1154. .kh-card-box{
  1155. background-color:#e5f8f4;display: flex;flex-direction: column;
  1156. box-sizing: border-box;padding: 24rpx;border-radius: 16rpx;border: 1rpx solid #f0f1f5;
  1157. .card-body-row{
  1158. display: flex;flex-direction: column;justify-content: space-evenly;border: 1rpx solid #f0f1f5;
  1159. background-color: #fdfdfd;border-radius: 16rpx;margin-top: 24rpx;padding: 12rpx 0;min-height: 220rpx;
  1160. .body-row{display: flex;align-items: center;padding: 12rpx 24rpx;box-sizing: border-box;}
  1161. .user-icon,.tel-icon,.idcard-icon{width: 36rpx;height: 36rpx;@include ezy-no-repeat-cover();margin-right: 20rpx;}
  1162. .user-icon{background-image: url("@/static/images/common/user-green-icon.png");}
  1163. .tel-icon{background-image: url("@/static/images/common/tel-green-icon.png");}
  1164. .idcard-icon{background-image: url("@/static/images/common/zymc-icon.png");}
  1165. }
  1166. }
  1167. }
  1168. /* 客户info页 */
  1169. .admin-kehu-info{
  1170. width: 100%;height: 100vh;
  1171. background-color: #f8f9fd;
  1172. .flex-start-row{
  1173. align-items: flex-start;
  1174. .phone-form-label{line-height: 70rpx;}
  1175. }
  1176. .info-btn{width: 360rpx;margin: 64rpx auto 24rpx;font-size: 30rpx;}
  1177. }
  1178. /* 三方合同新增*/
  1179. .sfht-info-page{
  1180. height: 100vh;background-color: #f8f9fd;display: flex;flex-direction: column;
  1181. .sfht-form-box{
  1182. padding: 24rpx 24rpx 0;box-sizing: border-box;
  1183. .form-radius-box{border-radius: 16rpx;border: 1rpx solid #f0f1f5;}
  1184. .form-label-input{border: 1rpx solid #f8f8f8;}
  1185. }
  1186. // collapse
  1187. .sfht-collapse-box{
  1188. background-color: #f8f9fd!important; padding: 24rpx 24rpx 0;box-sizing: border-box;
  1189. .uni-collapse-item{
  1190. background-color: #fff;border-radius: 16rpx;border: 1rpx solid #f0f1f5;overflow: hidden;
  1191. .uni-collapse-item__wrap-content.uni-collapse-item--border{border: 0;}
  1192. .uni-collapse-item__title{
  1193. .uni-icons{width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;
  1194. background-image: url("@/static/images/common/nav-bar-jt-bottom.svg");
  1195. transform: rotate(180deg);margin-left: 4rpx;}
  1196. .uni-icons::before{display: none;}
  1197. }
  1198. .uni-collapse-item__title::focus-visible{border: 0;}
  1199. .uni-collapse-item__title.uni-collapse-item-border{border: 0;}
  1200. .uni-collapse-item__title.is-open.uni-collapse-item-border{border-bottom: 1rpx solid #f4f4f4;}
  1201. .uni-collapse-item__title-text{font-size: 30rpx;color: #000;}
  1202. }
  1203. .form-label-input{border-bottom: 1rpx solid #f8f8f8;}
  1204. .form-label-input:last-child{border-bottom: 0;}
  1205. }
  1206. // add btn
  1207. .sfht-add-row{
  1208. display: flex;text-align: right;justify-content: flex-end;
  1209. .sfht-title-add-btn{
  1210. display: flex;align-items: center;
  1211. font-size: 26rpx;background-color: #f2fbf8;color: #3fd2a1;padding: 6rpx 24rpx;
  1212. line-height: 1.5;border-radius: 24rpx;margin:16rpx 16rpx 0;
  1213. icon{
  1214. width: 30rpx;height: 30rpx;@include ezy-no-repeat-cover;margin-left: 20rpx;
  1215. background-image: url("@/static/images/common/add-icon.svg");position: relative;
  1216. }
  1217. icon::before{
  1218. content: '';width: 1rpx;height: 30rpx;display: block;
  1219. background-color: #c2e6da;
  1220. position: absolute;top: 0;left: -10rpx;
  1221. }
  1222. }
  1223. }
  1224. }