myPage.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  1. <template>
  2. <view class="page flex-col">
  3. <view class="group_1 flex-col justify-between">
  4. <view class="box_37 flex-col">
  5. <view class="box_3 flex-col">
  6. <view class="text-wrapper_25 flex-row">
  7. <text class="text_29">{{info.fans}}</text>
  8. <text class="text_30">粉丝</text>
  9. <text class="text_31">{{info.follow}}</text>
  10. <text class="text_32">关注</text>
  11. </view>
  12. <view class="box_38 flex-row">
  13. <view class="image-text_45 flex-row">
  14. <text class="text_4">{{info.nickname}}</text>
  15. <view class="box_20 flex-row u-row-around" style="align-items: center;">
  16. <view class="image-text_46 flex-row justify-between">
  17. <!-- <view class="box_21 flex-col"></view>
  18. <text class="text-group_20">已认证</text> -->
  19. <image src="../../static/profile/8@2x.png" mode="" style="width: 96rpx;height: 32rpx" v-show="info.vip_level==0"></image>
  20. </view>
  21. <!-- <view class="image-text_47 flex-row justify-between">
  22. <view class="box_21 flex-col"></view>
  23. <text class="text-group_20">已认证</text>
  24. </view> -->
  25. <!-- <image src="../../static/profile/ganxingqu@2x.png" mode="" style="width: 152rpx;height: 52rpx;"></image> -->
  26. </view>
  27. </view>
  28. </view>
  29. <image
  30. class="image_1"
  31. referrerpolicy="no-referrer"
  32. :src="info.headimg"
  33. />
  34. </view>
  35. </view>
  36. <view class="box_22 flex-col">
  37. <view class="text-wrapper_26 flex-row justify-between">
  38. <text class="text_33" @click="itemclick(index)" :class="{'select':current==index}" :key="index"
  39. v-for="(item,index) in list">{{item}}</text>
  40. </view>
  41. <view class="" v-show="current==0">
  42. <view class="group_50 flex-row justify-between">
  43. <text class="text_49">性别</text>
  44. <view class="flex-row">
  45. <text class="text_50">{{info.sex==1?'男':'女'}}</text>
  46. </view>
  47. </view>
  48. <view class="group_50 flex-row justify-between">
  49. <text class="text_49">年龄</text>
  50. <view class="flex-row">
  51. <input type="text" disabled v-model='info.age' style="text-align: right;">
  52. </view>
  53. </view>
  54. <view class="group_50 flex-row justify-between">
  55. <text class="text_49">星座</text>
  56. <view class="flex-row">
  57. <input type="text" disabled v-model='info.constellation' style="text-align: right;">
  58. </view>
  59. </view>
  60. <view class="group_50 flex-row justify-between">
  61. <text class="text_49">身高</text>
  62. <view class="flex-row">
  63. <text class="text_50">{{info.height?info.height+'cm':''}}</text>
  64. <!-- <input type="text" disabled v-model='info.height' style="text-align: right;"> -->
  65. </view>
  66. </view>
  67. <view class="group_50 flex-row justify-between">
  68. <text class="text_49">体重</text>
  69. <view class="flex-row">
  70. <text class="text_50">{{info.weight?info.weight+'kg':''}}</text>
  71. <!-- <input type="text" disabled v-model='info.weight' style="text-align: right;"> -->
  72. </view>
  73. </view>
  74. <view class="group_50 flex-row justify-between">
  75. <text class="text_49">学历</text>
  76. <view class="flex-row">
  77. <text class="text_50">{{info.education||''}}</text>
  78. </view>
  79. </view>
  80. <view class="group_50 flex-row justify-between">
  81. <text class="text_49">毕业院校</text>
  82. <view class="flex-row">
  83. <input type="text" disabled v-model='info.graduation_school' style="text-align: right;">
  84. </view>
  85. </view>
  86. <view class="group_50 flex-row justify-between">
  87. <text class="text_49">兴趣爱好</text>
  88. <view class="flex-row">
  89. <text class="text_50">{{info.hobby||''}}</text>
  90. <!-- <input type="text" disabled v-model='info.hobby' style="text-align: right;"> -->
  91. </view>
  92. </view>
  93. </view>
  94. <view class="" v-show="current==1">
  95. <view class="group_50 flex-row justify-between">
  96. <text class="text_49">姓名</text>
  97. <view class="flex-row">
  98. <text class="text_50">{{info.username}}</text>
  99. </view>
  100. </view>
  101. <view class="group_50 flex-row justify-between">
  102. <text class="text_49">工作单位</text>
  103. <view class="flex-row">
  104. <text class="text_50">{{info.danwei||''}}</text>
  105. </view>
  106. </view>
  107. <view class="group_50 flex-row justify-between">
  108. <text class="text_49">工作性质</text>
  109. <view class="flex-row">
  110. <text class="text_50">{{info.xingzhi||''}}</text>
  111. </view>
  112. </view>
  113. <!-- <view class="group_50 flex-row justify-between">
  114. <text class="text_49">职务</text>
  115. <view class="flex-row">
  116. <input type="text" disabled v-model='info.position' style="text-align: right;">
  117. </view>
  118. </view> -->
  119. <view class="group_50 flex-row justify-between">
  120. <text class="text_49">月收入</text>
  121. <view class="flex-row">
  122. <input type="text" disabled v-model='info.income' style="text-align: right;">
  123. </view>
  124. </view>
  125. </view>
  126. <view class="" v-show="current==2">
  127. <view class="group_50 flex-row justify-between">
  128. <text class="text_49">婚史</text>
  129. <view class="flex-row">
  130. <!-- <input type="text" disabled v-model='info.hunshi' style="text-align: right;"> -->
  131. <text>{{info.status==1?'未婚':info.status==2?'离异':info.status==3?'丧偶':''}}</text>
  132. </view>
  133. </view>
  134. <view class="group_50 flex-row justify-between">
  135. <text class="text_49">有无子女</text>
  136. <view class="flex-row">
  137. <text>{{info.is_zinv==1?'有':info.is_zinv==2?'无':''}}</text>
  138. </view>
  139. </view>
  140. <view class="group_50 flex-row justify-between" v-if="info.is_zinv==1">
  141. <text class="text_49">子女性别</text>
  142. <view class="flex-row">
  143. <text>{{info.zinv_sex==1?'男':info.zinv_sex==2?'女':''}}</text>
  144. </view>
  145. </view>
  146. <view class="group_50 flex-row justify-between">
  147. <text class="text_49">是否独生子女</text>
  148. <view class="flex-row">
  149. <text>{{info.is_du==1?'是':info.is_du==2?'否':''}}</text>
  150. </view>
  151. </view>
  152. <view class="group_50 flex-row justify-between" v-if="info.is_du==2">
  153. <text class="text_49">兄弟姊妹几人</text>
  154. <view class="flex-row">
  155. <text>{{info.children||0}}</text>
  156. </view>
  157. </view>
  158. <view class="group_50 flex-row justify-between">
  159. <text class="text_49">居住情况</text>
  160. <view class="flex-row">
  161. <text>{{info.home==1?'自有产权房':info.home==2?'租住':info.home==3?'与父母同住':''}}</text>
  162. </view>
  163. </view>
  164. <view class="group_50 flex-row justify-between">
  165. <text class="text_49">是否有车</text>
  166. <view class="flex-row">
  167. <text>{{info.is_car==1?'是':info.is_car==2?'否':''}}</text>
  168. </view>
  169. </view>
  170. <view class="group_50 flex-row justify-between" v-if="info.is_car==1">
  171. <text class="text_49">车辆型号</text>
  172. <view class="flex-row">
  173. <text>{{info.car_model||''}}</text>
  174. </view>
  175. </view>
  176. <view class="group_50 flex-row justify-between">
  177. <text class="text_49">父亲工作</text>
  178. <view class="flex-row">
  179. <text class="text_50">{{info.fa_work||''}}</text>
  180. <!-- <input type="text" disabled placeholder="" v-model='info.fa_work'
  181. style="text-align: right;"> -->
  182. </view>
  183. </view>
  184. <view class="group_50 flex-row justify-between">
  185. <text class="text_49">母亲工作</text>
  186. <view class="flex-row">
  187. <text class="text_50">{{info.ma_work||''}}</text>
  188. <!-- <input type="text" disabled placeholder="" v-model='info.ma_work'
  189. style="text-align: right;"> -->
  190. </view>
  191. </view>
  192. </view>
  193. <view class="" v-show="current==3">
  194. <view class="person" @click="toPerson">
  195. <image :src="personPhoto[0].url" mode="aspectFill" v-if="personPhoto.length!=0"
  196. style="position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;width: 690rpx;height: 400rpx;">
  197. </image>
  198. <view class="bag">
  199. 个人照片
  200. </view>
  201. <view class="u-flex-col" style="margin-top: 98rpx;" v-show="personPhoto.length==0">
  202. <image src="../../static/auth/2@2x.png" mode="" style="width: 55rpx;height: 55rpx;"></image>
  203. <text style="font-size: 20rpx;color: #666666;margin-top: 28rpx;">还未上传照片,去上传</text>
  204. </view>
  205. </view>
  206. <view class="person" @click="toLife">
  207. <image :src="lifePhoto[0].url" mode="aspectFill" v-if="lifePhoto.length!=0"
  208. style="position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;width: 690rpx;height: 400rpx;">
  209. </image>
  210. <view class="bag">
  211. 生活照片
  212. </view>
  213. <view class="u-flex-col" style="margin-top: 98rpx;" v-show="lifePhoto.length==0">
  214. <image src="../../static/auth/2@2x.png" mode="" style="width: 55rpx;height: 55rpx;"></image>
  215. <text style="font-size: 20rpx;color: #666666;margin-top: 28rpx;">还未上传照片,去上传</text>
  216. </view>
  217. </view>
  218. </view>
  219. <!-- <view class="text-wrapper_13 flex-col" v-show="current!=4" @click="storage">
  220. <text class="text_46">保存修改</text>
  221. </view> -->
  222. </view>
  223. </view>
  224. <u-picker :show="showsex" :columns="sexcolumns" keyName="name" @confirm='changesex' @cancel='showsex=false'
  225. :closeOnClickOverlay='true'>
  226. </u-picker>
  227. <u-picker :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker"
  228. :columns="educationcolumns" @confirm="confirmEducation">
  229. </u-picker>
  230. <u-picker :show="showunit" :columns="unitcolumns" keyName="name" @confirm='changeunit' @cancel='showunit=false'
  231. :closeOnClickOverlay='true'>
  232. </u-picker>
  233. <u-picker :show="shownature" @cancel='shownature=false' title="工作性质" @confirm='confirmWork' keyName="name"
  234. :columns="naturecolumns"></u-picker>
  235. </view>
  236. </template>
  237. <script>
  238. import AddressPicker from "@/components/lingdang-AddressPicker/AddressPicker.vue"
  239. export default {
  240. components: {
  241. AddressPicker
  242. },
  243. data() {
  244. return {
  245. shownature: false,
  246. showunit: false,
  247. showEducation: false,
  248. showsex: false,
  249. list: ['个人档案', '工作职业', '家庭情况', '相册'],
  250. current: 0,
  251. value: false,
  252. info: {},
  253. personPhoto: [],
  254. lifePhoto: [],
  255. sexcolumns: [
  256. ['男', '女']
  257. ],
  258. educationcolumns: [
  259. ['高中', '大专', '本科', '硕士', '博士']
  260. ],
  261. unitcolumns: [
  262. []
  263. ],
  264. naturecolumns: [
  265. []
  266. ],
  267. };
  268. },
  269. onLoad() {
  270. this.getWorking()
  271. this.getWork()
  272. },
  273. onShow() {
  274. this.getInfo()
  275. this.getpersonPhoto()
  276. this.getlifePhoto()
  277. },
  278. methods: {
  279. storage() {
  280. uni.showLoading({
  281. })
  282. let data1 = {
  283. sex: this.info.sex,
  284. constellation: this.info.constellation,
  285. height: this.info.height,
  286. age: this.info.age,
  287. weight: this.info.weight,
  288. education: this.info.education,
  289. graduation_school: this.info.graduation_school,
  290. province_id: this.info.province_id,
  291. city_id: this.info.city_id,
  292. area_id: this.info.area_id
  293. }
  294. let data2 = {
  295. working: this.info.working,
  296. nature: this.info.nature,
  297. position: this.info.position,
  298. income: this.info.income
  299. }
  300. let data3 = {
  301. is_du: this.info.is_du,
  302. fa_work: this.info.fa_work,
  303. ma_work: this.info.ma_work,
  304. home: this.info.home,
  305. }
  306. uni.$u.http.post('/api/user/user_info', data1).then(res => {
  307. if (res.code == 1) {
  308. uni.$u.http.post('/api/user/user_work', data2).then(res => {
  309. if (res.code == 1) {
  310. uni.$u.http.post('/api/user/user_home', data3).then(res => {
  311. uni.hideLoading()
  312. this.$u.toast('个人信息已更新')
  313. })
  314. }
  315. })
  316. }
  317. })
  318. },
  319. confirmWork(e) {
  320. console.log(e)
  321. this.info.xingzhi = e.value[0].name
  322. this.info.nature = e.value[0].id
  323. this.shownature = false
  324. },
  325. getWork() {
  326. uni.$u.http.post('/api/index/WorkNature').then(res => {
  327. this.naturecolumns = [res.data]
  328. })
  329. },
  330. getWorking() {
  331. uni.$u.http.post('/api/Publics/working').then(res => {
  332. this.unitcolumns = [res.data]
  333. })
  334. },
  335. changeunit(e) {
  336. // this.current = e.value[0]
  337. this.info.danwei = e.value[0].name
  338. this.info.working = e.value[0].id
  339. this.showunit = false
  340. },
  341. change(result) {
  342. this.info.province_id = result.data[0].id
  343. this.info.city_id = result.data[1].id
  344. this.info.area_id = result.data[2].id
  345. this.info.address = '';
  346. result.data.forEach((item, index) => {
  347. if (index === 0) {
  348. this.info.address += item.name
  349. } else {
  350. this.info.address += '-' + item.name
  351. }
  352. });
  353. let arr = this.info.address.split('-');
  354. },
  355. confirmEducation(e) {
  356. this.info.education = e.value[0]
  357. this.showEducation = false
  358. },
  359. changesex(e) {
  360. this.info.sex = e.indexs[0] * 1 + 1
  361. this.showsex = false
  362. },
  363. getpersonPhoto() {
  364. uni.$u.http.post('/api/user/personal_album', {
  365. id: uni.getStorageSync('userId')
  366. }).then(res => {
  367. if (res.code == 1) {
  368. this.personPhoto = res.data
  369. }
  370. })
  371. },
  372. getlifePhoto() {
  373. uni.$u.http.post('/api/user/life_album', {
  374. id: uni.getStorageSync('userId')
  375. }).then(res => {
  376. if (res.code == 1) {
  377. this.lifePhoto = res.data
  378. }
  379. })
  380. },
  381. getInfo() {
  382. uni.$u.http.post('/api/user/userinfo').then(res => {
  383. if (res.code == 1) {
  384. this.info = res.data
  385. }
  386. })
  387. },
  388. itemclick(index) {
  389. if (this.current != index) {
  390. this.current = index
  391. }
  392. },
  393. tojubao() {
  394. uni.navigateTo({
  395. url: './jubao'
  396. })
  397. },
  398. toPerson() {
  399. uni.navigateTo({
  400. url: './personPhoto'
  401. })
  402. },
  403. toLife() {
  404. uni.navigateTo({
  405. url: './lifePhoto'
  406. })
  407. }
  408. },
  409. };
  410. </script>
  411. <style lang="scss">
  412. @import '@/common/common.css';
  413. page {}
  414. .person {
  415. position: relative;
  416. padding: 26rpx 20rpx;
  417. margin: 0 auto 20rpx;
  418. width: 690rpx;
  419. height: 400rpx;
  420. background: #F3F4F6;
  421. border-radius: 20rpx;
  422. .bag {
  423. position: relative;
  424. z-index: 11;
  425. text-align: center;
  426. width: 140rpx;
  427. height: 52rpx;
  428. line-height: 52rpx;
  429. background: #000000;
  430. border-radius: 26rpx;
  431. font-size: 24rpx;
  432. color: #fff;
  433. }
  434. }
  435. .page {
  436. background-color: #FBF8FD;
  437. position: relative;
  438. width: 750rpx;
  439. overflow: hidden;
  440. }
  441. .group_1 {
  442. width: 750rpx;
  443. /* height: 1624rpx; */
  444. }
  445. .box_37 {
  446. width: 750rpx;
  447. /* height: 514rpx; */
  448. }
  449. .group_45 {
  450. width: 680rpx;
  451. height: 34rpx;
  452. margin: 30rpx 0 0 42rpx;
  453. }
  454. .text-wrapper_24 {
  455. width: 108rpx;
  456. height: 34rpx;
  457. overflow-wrap: break-word;
  458. font-size: 0;
  459. letter-spacing: -0.2800000011920929px;
  460. font-family: Helvetica;
  461. text-align: center;
  462. white-space: nowrap;
  463. line-height: 34rpx;
  464. }
  465. .text_56 {
  466. width: 108rpx;
  467. height: 34rpx;
  468. overflow-wrap: break-word;
  469. color: rgba(0, 0, 0, 1);
  470. font-size: 28rpx;
  471. font-family: Helvetica;
  472. text-align: left;
  473. white-space: nowrap;
  474. line-height: 34rpx;
  475. }
  476. .text_57 {
  477. width: 108rpx;
  478. height: 34rpx;
  479. overflow-wrap: break-word;
  480. color: rgba(0, 0, 0, 1);
  481. font-size: 28rpx;
  482. font-family: Helvetica;
  483. text-align: left;
  484. white-space: nowrap;
  485. line-height: 34rpx;
  486. }
  487. .group_46 {
  488. width: 34rpx;
  489. height: 22rpx;
  490. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) -2rpx -2rpx no-repeat;
  491. background-size: 36rpx 24rpx;
  492. margin: 6rpx 0 0 438rpx;
  493. }
  494. .group_47 {
  495. width: 30rpx;
  496. height: 22rpx;
  497. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) -2rpx 0rpx no-repeat;
  498. background-size: 32rpx 24rpx;
  499. margin: 4rpx 0 0 10rpx;
  500. }
  501. .group_48 {
  502. width: 50rpx;
  503. height: 24rpx;
  504. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  505. background-size: 100% 100%;
  506. margin: 4rpx 0 0 10rpx;
  507. }
  508. .group_49 {
  509. width: 706rpx;
  510. height: 74rpx;
  511. margin: 24rpx 0 0 30rpx;
  512. }
  513. .section_4 {
  514. width: 64rpx;
  515. height: 64rpx;
  516. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  517. background-size: 100% 100%;
  518. }
  519. .text_3 {
  520. width: 146rpx;
  521. height: 50rpx;
  522. overflow-wrap: break-word;
  523. color: rgba(34, 34, 34, 1);
  524. font-size: 36rpx;
  525. letter-spacing: 0.2266666740179062px;
  526. font-family: PingFangSC-Medium;
  527. text-align: right;
  528. white-space: nowrap;
  529. line-height: 50rpx;
  530. margin: 22rpx 0 0 208rpx;
  531. }
  532. .section_33 {
  533. width: 168rpx;
  534. height: 60rpx;
  535. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  536. background-size: 100% 100%;
  537. margin: 14rpx 0 0 120rpx;
  538. }
  539. .box_3 {
  540. background-color: rgba(255, 255, 255, 1);
  541. border-radius: 14px 14px 0px 0px;
  542. height: 232rpx;
  543. width: 750rpx;
  544. position: relative;
  545. margin: 98rpx 0 22rpx 0;
  546. }
  547. .text-wrapper_25 {
  548. width: 318rpx;
  549. height: 60rpx;
  550. margin: 48rpx 0 0 336rpx;
  551. }
  552. .text_29 {
  553. width: 54rpx;
  554. height: 60rpx;
  555. overflow-wrap: break-word;
  556. color: rgba(34, 34, 34, 1);
  557. font-size: 52rpx;
  558. letter-spacing: 0.7607405185699463px;
  559. font-family: DINAlternate-Bold;
  560. text-align: left;
  561. white-space: nowrap;
  562. line-height: 60rpx;
  563. }
  564. .text_30 {
  565. width: 50rpx;
  566. height: 34rpx;
  567. overflow-wrap: break-word;
  568. color: rgba(34, 34, 34, 1);
  569. font-size: 24rpx;
  570. letter-spacing: 0.3511109948158264px;
  571. text-align: left;
  572. white-space: nowrap;
  573. line-height: 34rpx;
  574. margin: 20rpx 0 0 8rpx;
  575. }
  576. .text_31 {
  577. width: 28rpx;
  578. height: 60rpx;
  579. overflow-wrap: break-word;
  580. color: rgba(34, 34, 34, 1);
  581. font-size: 52rpx;
  582. letter-spacing: 0.7607405185699463px;
  583. font-family: DINAlternate-Bold;
  584. text-align: left;
  585. white-space: nowrap;
  586. line-height: 60rpx;
  587. margin-left: 120rpx;
  588. }
  589. .text_32 {
  590. width: 50rpx;
  591. height: 34rpx;
  592. overflow-wrap: break-word;
  593. color: rgba(34, 34, 34, 1);
  594. font-size: 24rpx;
  595. letter-spacing: 0.3511109948158264px;
  596. text-align: left;
  597. white-space: nowrap;
  598. line-height: 34rpx;
  599. margin: 20rpx 0 0 8rpx;
  600. }
  601. .box_38 {
  602. width: 100%;
  603. height: 44rpx;
  604. margin: 50rpx 0 30rpx 40rpx;
  605. }
  606. .image-text_45 {
  607. width: 100%;
  608. height: 44rpx;
  609. }
  610. .text_4 {
  611. height: 44rpx;
  612. overflow-wrap: break-word;
  613. color: rgba(34, 34, 34, 1);
  614. font-size: 32rpx;
  615. letter-spacing: 0.46814799308776855px;
  616. font-family: PingFangSC-Medium;
  617. text-align: left;
  618. white-space: nowrap;
  619. line-height: 44rpx;
  620. }
  621. .box_20 {
  622. position: relative;
  623. height: 32rpx;
  624. background-size: 100% 100%;
  625. margin-top: 6rpx;
  626. }
  627. .image-text_46 {
  628. width: 86rpx;
  629. height: 28rpx;
  630. margin-left: 4rpx;
  631. }
  632. .box_21 {
  633. width: 24rpx;
  634. height: 24rpx;
  635. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  636. background-size: 100% 100%;
  637. margin-top: 4rpx;
  638. }
  639. .text-group_20 {
  640. width: 62rpx;
  641. height: 28rpx;
  642. overflow-wrap: break-word;
  643. color: rgba(255, 255, 255, 1);
  644. font-size: 20rpx;
  645. letter-spacing: 0.29259249567985535px;
  646. font-family: PingFangSC-Medium;
  647. text-align: left;
  648. white-space: nowrap;
  649. line-height: 28rpx;
  650. }
  651. .image-text_47 {
  652. position: absolute;
  653. left: 4rpx;
  654. top: 0;
  655. width: 86rpx;
  656. height: 28rpx;
  657. }
  658. .image_1 {
  659. border-radius: 50%;
  660. position: absolute;
  661. left: 40rpx;
  662. top: -60rpx;
  663. width: 200rpx;
  664. height: 200rpx;
  665. }
  666. .box_22 {
  667. background-color: rgba(255, 255, 255, 1);
  668. width: 750rpx;
  669. margin-top: -2rpx;
  670. }
  671. .text-wrapper_26 {
  672. width: 690rpx;
  673. height: 44rpx;
  674. margin: 36rpx 0 28rpx 30rpx;
  675. }
  676. .text_33 {
  677. position: relative;
  678. width: 130rpx;
  679. height: 44rpx;
  680. overflow-wrap: break-word;
  681. color: #999999;
  682. font-size: 32rpx;
  683. letter-spacing: 0.20148147642612457px;
  684. font-family: PingFangSC-Medium;
  685. text-align: center;
  686. white-space: nowrap;
  687. line-height: 44rpx;
  688. padding-bottom: 12rpx;
  689. }
  690. .select {
  691. position: relative;
  692. color: #222222;
  693. }
  694. .select::before {
  695. content: '';
  696. position: absolute;
  697. left: 50%;
  698. transform: translateX(-50%);
  699. bottom: 0;
  700. width: 40rpx;
  701. height: 8rpx;
  702. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  703. border-radius: 4rpx;
  704. }
  705. .text_34 {
  706. width: 122rpx;
  707. height: 42rpx;
  708. overflow-wrap: break-word;
  709. color: rgba(153, 153, 153, 1);
  710. font-size: 30rpx;
  711. letter-spacing: 0.18888889253139496px;
  712. font-family: PingFangSC-Medium;
  713. text-align: left;
  714. white-space: nowrap;
  715. line-height: 42rpx;
  716. margin: 2rpx 0 0 84rpx;
  717. }
  718. .text_35 {
  719. width: 122rpx;
  720. height: 42rpx;
  721. overflow-wrap: break-word;
  722. color: rgba(153, 153, 153, 1);
  723. font-size: 30rpx;
  724. letter-spacing: 0.18888889253139496px;
  725. font-family: PingFangSC-Medium;
  726. text-align: left;
  727. white-space: nowrap;
  728. line-height: 42rpx;
  729. margin: 2rpx 0 0 86rpx;
  730. }
  731. .text_36 {
  732. width: 62rpx;
  733. height: 42rpx;
  734. overflow-wrap: break-word;
  735. color: rgba(153, 153, 153, 1);
  736. font-size: 30rpx;
  737. letter-spacing: 0.18888889253139496px;
  738. font-family: PingFangSC-Medium;
  739. text-align: left;
  740. white-space: nowrap;
  741. line-height: 42rpx;
  742. margin: 2rpx 0 0 84rpx;
  743. }
  744. .box_23 {
  745. width: 40rpx;
  746. height: 8rpx;
  747. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  748. background-size: 100% 100%;
  749. margin: 2rpx 0 0 76rpx;
  750. }
  751. .box_24 {
  752. background-color: rgba(242, 242, 242, 1);
  753. width: 690rpx;
  754. height: 2rpx;
  755. margin: 28rpx 0 0 30rpx;
  756. }
  757. .group_50 {
  758. width: 690rpx;
  759. height: 42rpx;
  760. margin: 20rpx 0 0 30rpx;
  761. }
  762. .text_49 {
  763. height: 42rpx;
  764. overflow-wrap: break-word;
  765. color: rgba(136, 136, 136, 1);
  766. font-size: 30rpx;
  767. letter-spacing: 0.18888889253139496px;
  768. text-align: right;
  769. white-space: nowrap;
  770. line-height: 42rpx;
  771. }
  772. .text_50 {
  773. height: 42rpx;
  774. overflow-wrap: break-word;
  775. color: rgba(34, 34, 34, 1);
  776. font-size: 30rpx;
  777. letter-spacing: 0.18888889253139496px;
  778. text-align: right;
  779. white-space: nowrap;
  780. line-height: 42rpx;
  781. }
  782. .section_32 {
  783. width: 28rpx;
  784. height: 28rpx;
  785. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  786. background-size: 100% 100%;
  787. margin: 8rpx 0 0 4rpx;
  788. }
  789. .group_51 {
  790. width: 690rpx;
  791. height: 112rpx;
  792. margin: 36rpx 0 0 30rpx;
  793. }
  794. .text-group_32 {
  795. width: 62rpx;
  796. height: 112rpx;
  797. }
  798. .text_44 {
  799. width: 62rpx;
  800. height: 42rpx;
  801. overflow-wrap: break-word;
  802. color: rgba(136, 136, 136, 1);
  803. font-size: 30rpx;
  804. letter-spacing: 0.18888889253139496px;
  805. text-align: right;
  806. white-space: nowrap;
  807. line-height: 42rpx;
  808. }
  809. .text_38 {
  810. width: 62rpx;
  811. height: 42rpx;
  812. overflow-wrap: break-word;
  813. color: rgba(136, 136, 136, 1);
  814. font-size: 30rpx;
  815. letter-spacing: 0.18888889253139496px;
  816. text-align: right;
  817. white-space: nowrap;
  818. line-height: 42rpx;
  819. margin-top: 28rpx;
  820. }
  821. .text-group_33 {
  822. width: 92rpx;
  823. height: 112rpx;
  824. }
  825. .text_45 {
  826. width: 92rpx;
  827. height: 42rpx;
  828. overflow-wrap: break-word;
  829. color: rgba(34, 34, 34, 1);
  830. font-size: 30rpx;
  831. letter-spacing: 0.18888889253139496px;
  832. text-align: right;
  833. white-space: nowrap;
  834. line-height: 42rpx;
  835. }
  836. .text-group_21 {
  837. width: 92rpx;
  838. height: 42rpx;
  839. overflow-wrap: break-word;
  840. color: rgba(34, 34, 34, 1);
  841. font-size: 30rpx;
  842. letter-spacing: 0.18888889253139496px;
  843. text-align: right;
  844. white-space: nowrap;
  845. line-height: 42rpx;
  846. margin-top: 28rpx;
  847. }
  848. .text-wrapper_27 {
  849. width: 690rpx;
  850. height: 42rpx;
  851. margin: 36rpx 0 0 30rpx;
  852. }
  853. .text_39 {
  854. width: 62rpx;
  855. height: 42rpx;
  856. overflow-wrap: break-word;
  857. color: rgba(136, 136, 136, 1);
  858. font-size: 30rpx;
  859. letter-spacing: 0.18888889253139496px;
  860. text-align: right;
  861. white-space: nowrap;
  862. line-height: 42rpx;
  863. }
  864. .text-group_22 {
  865. width: 72rpx;
  866. height: 42rpx;
  867. overflow-wrap: break-word;
  868. color: rgba(34, 34, 34, 1);
  869. font-size: 30rpx;
  870. letter-spacing: 0.18888889253139496px;
  871. text-align: right;
  872. white-space: nowrap;
  873. line-height: 42rpx;
  874. }
  875. .group_52 {
  876. width: 690rpx;
  877. height: 42rpx;
  878. margin: 36rpx 0 0 30rpx;
  879. }
  880. .text_41 {
  881. width: 62rpx;
  882. height: 42rpx;
  883. overflow-wrap: break-word;
  884. color: rgba(136, 136, 136, 1);
  885. font-size: 30rpx;
  886. letter-spacing: 0.18888889253139496px;
  887. text-align: right;
  888. white-space: nowrap;
  889. line-height: 42rpx;
  890. }
  891. .text-group_24 {
  892. width: 92rpx;
  893. height: 42rpx;
  894. overflow-wrap: break-word;
  895. color: rgba(34, 34, 34, 1);
  896. font-size: 30rpx;
  897. letter-spacing: 0.18888889253139496px;
  898. text-align: right;
  899. white-space: nowrap;
  900. line-height: 42rpx;
  901. margin-left: 504rpx;
  902. }
  903. .group_39 {
  904. width: 28rpx;
  905. height: 28rpx;
  906. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  907. background-size: 100% 100%;
  908. margin: 8rpx 0 0 4rpx;
  909. }
  910. .text-wrapper_28 {
  911. width: 690rpx;
  912. height: 42rpx;
  913. margin: 36rpx 0 0 30rpx;
  914. }
  915. .text_51 {
  916. width: 122rpx;
  917. height: 42rpx;
  918. overflow-wrap: break-word;
  919. color: rgba(136, 136, 136, 1);
  920. font-size: 30rpx;
  921. letter-spacing: 0.18888889253139496px;
  922. text-align: right;
  923. white-space: nowrap;
  924. line-height: 42rpx;
  925. }
  926. .text_52 {
  927. width: 122rpx;
  928. height: 42rpx;
  929. overflow-wrap: break-word;
  930. color: rgba(34, 34, 34, 1);
  931. font-size: 30rpx;
  932. letter-spacing: 0.18888889253139496px;
  933. text-align: right;
  934. white-space: nowrap;
  935. line-height: 42rpx;
  936. }
  937. .group_53 {
  938. width: 690rpx;
  939. height: 42rpx;
  940. margin: 36rpx 0 0 30rpx;
  941. }
  942. .text_53 {
  943. width: 122rpx;
  944. height: 42rpx;
  945. overflow-wrap: break-word;
  946. color: rgba(136, 136, 136, 1);
  947. font-size: 30rpx;
  948. letter-spacing: 0.18888889253139496px;
  949. text-align: right;
  950. white-space: nowrap;
  951. line-height: 42rpx;
  952. }
  953. .image-text_48 {
  954. width: 216rpx;
  955. height: 42rpx;
  956. }
  957. .text-group_29 {
  958. width: 184rpx;
  959. height: 42rpx;
  960. overflow-wrap: break-word;
  961. color: rgba(34, 34, 34, 1);
  962. font-size: 30rpx;
  963. letter-spacing: 0.18888889253139496px;
  964. text-align: right;
  965. white-space: nowrap;
  966. line-height: 42rpx;
  967. }
  968. .group_41 {
  969. width: 28rpx;
  970. height: 28rpx;
  971. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) 100% no-repeat;
  972. background-size: 100% 100%;
  973. margin-top: 8rpx;
  974. }
  975. .text-wrapper_13 {
  976. position: fixed;
  977. bottom: 84rpx;
  978. left: 50%;
  979. transform: translateX(-50%);
  980. height: 92rpx;
  981. border-radius: 46rpx;
  982. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  983. background-size: 100% 100%;
  984. width: 650rpx;
  985. }
  986. .text_46 {
  987. width: 146rpx;
  988. height: 50rpx;
  989. overflow-wrap: break-word;
  990. color: rgba(255, 255, 255, 1);
  991. font-size: 36rpx;
  992. letter-spacing: 0.2266666740179062px;
  993. font-family: PingFangSC-Medium;
  994. text-align: right;
  995. white-space: nowrap;
  996. line-height: 50rpx;
  997. margin: 22rpx 0 0 252rpx;
  998. }
  999. </style>