otherPage.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  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">
  13. <view class="image-text_45 flex-row u-flex u-row-between">
  14. <view class="u-flex">
  15. <text class="text_4">{{info.nickname}}</text>
  16. <text style="font-size: 24rpx;" v-if="info.username">(真实姓名·{{info.username}})</text>
  17. <view class="image-text_46 flex-row justify-between">
  18. <!-- <view class="box_21 flex-col"></view>
  19. <text class="text-group_20">已认证</text> -->
  20. <image src="../../static/profile/8@2x.png" mode="" style="width: 96rpx;height: 32rpx" v-show="info.vip_level==0"></image>
  21. </view>
  22. </view>
  23. <view class="box_20 flex-row u-row-between" style="align-items: center;">
  24. <!-- <view class="image-text_47 flex-row justify-between">
  25. <view class="box_21 flex-col"></view>
  26. <text class="text-group_20">已认证</text>
  27. </view> -->
  28. <image src="../../static/profile/ganxingqu@2x.png" mode="" style="width: 152rpx;height: 52rpx;margin-right: 30rpx;" v-show="info.is_interested==0" @click="getInter"></image>
  29. </view>
  30. </view>
  31. <view class="" style="font-size: 24rpx;color: #999999;" v-if="info.sex&&info.constellation">
  32. {{info.sex==1?'男·':'女·'}}{{info.constellation}}
  33. </view>
  34. </view>
  35. <image
  36. class="image_1"
  37. referrerpolicy="no-referrer"
  38. :src="info.headimg"
  39. />
  40. </view>
  41. </view>
  42. <view class="box_22 flex-col">
  43. <view class="text-wrapper_26 flex-row justify-between">
  44. <text class="text_33" @click="itemclick(index)" :class="{'select':current==index}" :key="index" v-for="(item,index) in list">{{item}}</text>
  45. <!-- <text class="text_34">工作职业</text>
  46. <text class="text_35">家庭情况</text>
  47. <text class="text_36">相册</text> -->
  48. </view>
  49. <view class="" v-show="current==0">
  50. <view class="group_50 flex-row justify-between">
  51. <text class="text_49">性别</text>
  52. <view class="flex-row">
  53. <text class="text_50">{{info.sex==1?'男':'女'}}</text>
  54. </view>
  55. </view>
  56. <view class="group_50 flex-row justify-between">
  57. <text class="text_49">星座</text>
  58. <view class="flex-row">
  59. <text class="text_50">{{info.constellation||'暂无'}}</text>
  60. </view>
  61. </view>
  62. <view class="group_50 flex-row justify-between">
  63. <text class="text_49">身高</text>
  64. <view class="flex-row">
  65. <text class="text_50">{{info.height?info.height+'cm':'暂无'}}</text>
  66. </view>
  67. </view>
  68. <view class="group_50 flex-row justify-between">
  69. <text class="text_49">体重</text>
  70. <view class="flex-row">
  71. <text class="text_50">{{info.weight?info.weight+'kg':'暂无'}}</text>
  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. <text class="text_50">{{info.graduation_school||'暂无'}}</text>
  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.address||'暂无'}}</text>
  90. </view>
  91. </view>
  92. </view>
  93. <view class="" v-show="current==1">
  94. <view class="group_50 flex-row justify-between">
  95. <text class="text_49">工作机构</text>
  96. <view class="flex-row">
  97. <text class="text_50">{{info.danwei||'暂无'}}</text>
  98. </view>
  99. </view>
  100. <view class="group_50 flex-row justify-between">
  101. <text class="text_49">工作性质</text>
  102. <view class="flex-row">
  103. <text class="text_50">{{info.xingzhi||'暂无'}}</text>
  104. </view>
  105. </view>
  106. <view class="group_50 flex-row justify-between">
  107. <text class="text_49">职位</text>
  108. <view class="flex-row">
  109. <text class="text_50">{{info.position||'暂无'}}</text>
  110. </view>
  111. </view>
  112. <view class="group_50 flex-row justify-between">
  113. <text class="text_49">月收入</text>
  114. <view class="flex-row">
  115. <text class="text_50">{{info.income||'暂无'}}</text>
  116. </view>
  117. </view>
  118. </view>
  119. <view class="" v-show="current==2">
  120. <view class="group_50 flex-row justify-between">
  121. <text class="text_49">兄弟姐妹</text>
  122. <view class="flex-row">
  123. <u-switch v-model="info.is_du==2" :disabled="true" size="18"></u-switch>
  124. </view>
  125. </view>
  126. <view class="group_50 flex-row justify-between">
  127. <text class="text_49">父亲工作</text>
  128. <view class="flex-row">
  129. <text class="text_50">{{info.fa_work||'暂无'}}</text>
  130. </view>
  131. </view>
  132. <view class="group_50 flex-row justify-between">
  133. <text class="text_49">母亲工作</text>
  134. <view class="flex-row">
  135. <text class="text_50">{{info.ma_work||'暂无'}}</text>
  136. </view>
  137. </view>
  138. <view class="group_50 flex-row justify-between">
  139. <text class="text_49">现在与谁居住</text>
  140. <view class="flex-row">
  141. <text class="text_50">{{info.home||'暂无'}}</text>
  142. </view>
  143. </view>
  144. </view>
  145. <view class="" v-show="current==3">
  146. <view class="person" @click="toPerson">
  147. <image :src="personPhoto[0].url" mode="aspectFill" v-if="personPhoto.length!=0" style="position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;width: 690rpx;height: 400rpx;"></image>
  148. <view class="bag">
  149. 个人照片
  150. </view>
  151. <view class="u-flex-col" style="margin-top: 98rpx;">
  152. <image src="../../static/auth/2@2x.png" mode="" style="width: 55rpx;height: 55rpx;"></image>
  153. <text style="font-size: 20rpx;color: #666666;margin-top: 28rpx;">暂无照片</text>
  154. </view>
  155. </view>
  156. <view class="person" @click="toLife">
  157. <image :src="lifePhoto[0].url" mode="aspectFill" v-if="lifePhoto.length!=0" style="position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;width: 690rpx;height: 400rpx;"></image>
  158. <view class="bag">
  159. 生活照片
  160. </view>
  161. <view class="u-flex-col" style="margin-top: 98rpx;" v-show="lifePhoto.length==0">
  162. <image src="../../static/auth/2@2x.png" mode="" style="width: 55rpx;height: 55rpx;"></image>
  163. <text style="font-size: 20rpx;color: #666666;margin-top: 28rpx;">暂无照片</text>
  164. </view>
  165. </view>
  166. </view>
  167. <view class="" style="text-align: center;font-size: 28rpx;color: #999999;position: fixed;bottom: 240rpx;width: 100%;" v-show="current!=3">
  168. 用户ID:{{info.vip_number}}
  169. </view>
  170. <!-- <view class="text-wrapper_13 flex-col" v-show="current!=3">
  171. <text class="text_46">保存修改</text>
  172. </view> -->
  173. <view v-show="current!=3" style="position: fixed;bottom: 84rpx;width: 690rpx;left: 50%;transform: translateX(-50%);" class="u-flex u-row-between">
  174. <image @click="tojubao" src="../../static/profile/jubao@2x.png" mode="" style="width: 210rpx;height: 100rpx;"></image>
  175. <image src="../../static/profile/dazhaohu@2x.png" mode="" style="width: 450rpx;height: 100rpx;" @click="tomessage()"></image>
  176. </view>
  177. </view>
  178. </view>
  179. </view>
  180. </template>
  181. <script>
  182. export default {
  183. data() {
  184. return {
  185. list: ['个人档案','工作职业','家庭情况','相册'],
  186. current:0,
  187. value:false,
  188. id:'',
  189. info:{},
  190. userInfo:JSON.parse(uni.getStorageSync('userInfo')),
  191. personPhoto:[],
  192. lifePhoto:[],
  193. };
  194. },
  195. onLoad(option) {
  196. this.id=option.id
  197. this.getInfo(option.id)
  198. },
  199. onShow() {
  200. this.getpersonPhoto()
  201. this.getlifePhoto()
  202. },
  203. methods: {
  204. tomessage(){
  205. if(this.userInfo.vip_level==0){
  206. this.$u.toast('您暂未认证')
  207. return
  208. }
  209. if(this.userInfo.vip_level==2){
  210. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  211. return
  212. }
  213. if(this.userInfo.vip_level==3){
  214. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  215. return
  216. }
  217. uni.navigateTo({
  218. url:'/pages/index/message?otherid='+this.info.im_id
  219. })
  220. },
  221. getpersonPhoto(){
  222. uni.$u.http.post('/api/user/personal_album',{id:this.info.id}).then(res => {
  223. if(res.code==1){
  224. this.personPhoto=res.data
  225. }
  226. })
  227. },
  228. getlifePhoto(){
  229. uni.$u.http.post('/api/user/life_album',{id:this.info.id}).then(res => {
  230. if(res.code==1){
  231. this.lifePhoto=res.data
  232. }
  233. })
  234. },
  235. getInter(){
  236. uni.$u.http.post('/api/user/user_interested',{mid:this.info.id}).then(res => {
  237. this.$u.toast(res.msg)
  238. this.getInfo(this.id)
  239. })
  240. },
  241. getInfo(id){
  242. uni.$u.http.post('/api/user/appointuserinfo',{m_id:id}).then(res => {
  243. this.info=res.data
  244. this.getpersonPhoto()
  245. this.getlifePhoto()
  246. })
  247. },
  248. itemclick(index){
  249. if(this.current!=index){
  250. this.current=index
  251. }
  252. },
  253. tojubao(){
  254. if(this.userInfo.vip_level==0){
  255. this.$u.toast('您暂未认证')
  256. return
  257. }
  258. if(this.userInfo.vip_level==2){
  259. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  260. return
  261. }
  262. if(this.userInfo.vip_level==3){
  263. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  264. return
  265. }
  266. uni.navigateTo({
  267. url:'./jubao?id='+this.info.id
  268. })
  269. },
  270. toPerson(){
  271. if(this.personPhoto.length==0){
  272. return
  273. }
  274. uni.navigateTo({
  275. url:'./personPhoto?id='+this.info.id
  276. })
  277. },
  278. toLife(){
  279. if(this.lifePhoto.length==0){
  280. return
  281. }
  282. uni.navigateTo({
  283. url:'./lifePhoto?id='+this.info.id
  284. })
  285. }
  286. },
  287. };
  288. </script>
  289. <style lang="scss">
  290. @import '@/common/common.css';
  291. page{
  292. }
  293. .person{
  294. position: relative;
  295. padding: 26rpx 20rpx;
  296. margin: 0 auto 20rpx;
  297. width: 690rpx;
  298. height: 400rpx;
  299. background: #F3F4F6;
  300. border-radius: 20rpx;
  301. .bag{
  302. position: relative;
  303. z-index: 11;
  304. text-align: center;
  305. width: 140rpx;
  306. height: 52rpx;
  307. line-height: 52rpx;
  308. background: #000000;
  309. border-radius: 26rpx;
  310. font-size: 24rpx;
  311. color: #fff;
  312. }
  313. }
  314. .page {
  315. background-color: #FBF8FD;
  316. position: relative;
  317. width: 750rpx;
  318. overflow: hidden;
  319. }
  320. .group_1 {
  321. width: 750rpx;
  322. /* height: 1624rpx; */
  323. }
  324. .box_37 {
  325. width: 750rpx;
  326. /* height: 514rpx; */
  327. }
  328. .group_45 {
  329. width: 680rpx;
  330. height: 34rpx;
  331. margin: 30rpx 0 0 42rpx;
  332. }
  333. .text-wrapper_24 {
  334. width: 108rpx;
  335. height: 34rpx;
  336. overflow-wrap: break-word;
  337. font-size: 0;
  338. letter-spacing: -0.2800000011920929px;
  339. font-family: Helvetica;
  340. text-align: center;
  341. white-space: nowrap;
  342. line-height: 34rpx;
  343. }
  344. .text_56 {
  345. width: 108rpx;
  346. height: 34rpx;
  347. overflow-wrap: break-word;
  348. color: rgba(0, 0, 0, 1);
  349. font-size: 28rpx;
  350. font-family: Helvetica;
  351. text-align: left;
  352. white-space: nowrap;
  353. line-height: 34rpx;
  354. }
  355. .text_57 {
  356. width: 108rpx;
  357. height: 34rpx;
  358. overflow-wrap: break-word;
  359. color: rgba(0, 0, 0, 1);
  360. font-size: 28rpx;
  361. font-family: Helvetica;
  362. text-align: left;
  363. white-space: nowrap;
  364. line-height: 34rpx;
  365. }
  366. .group_46 {
  367. width: 34rpx;
  368. height: 22rpx;
  369. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) -2rpx -2rpx
  370. no-repeat;
  371. background-size: 36rpx 24rpx;
  372. margin: 6rpx 0 0 438rpx;
  373. }
  374. .group_47 {
  375. width: 30rpx;
  376. height: 22rpx;
  377. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png) -2rpx
  378. 0rpx no-repeat;
  379. background-size: 32rpx 24rpx;
  380. margin: 4rpx 0 0 10rpx;
  381. }
  382. .group_48 {
  383. width: 50rpx;
  384. height: 24rpx;
  385. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  386. 100% no-repeat;
  387. background-size: 100% 100%;
  388. margin: 4rpx 0 0 10rpx;
  389. }
  390. .group_49 {
  391. width: 706rpx;
  392. height: 74rpx;
  393. margin: 24rpx 0 0 30rpx;
  394. }
  395. .section_4 {
  396. width: 64rpx;
  397. height: 64rpx;
  398. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  399. 100% no-repeat;
  400. background-size: 100% 100%;
  401. }
  402. .text_3 {
  403. width: 146rpx;
  404. height: 50rpx;
  405. overflow-wrap: break-word;
  406. color: rgba(34, 34, 34, 1);
  407. font-size: 36rpx;
  408. letter-spacing: 0.2266666740179062px;
  409. font-family: PingFangSC-Medium;
  410. text-align: right;
  411. white-space: nowrap;
  412. line-height: 50rpx;
  413. margin: 22rpx 0 0 208rpx;
  414. }
  415. .section_33 {
  416. width: 168rpx;
  417. height: 60rpx;
  418. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  419. 100% no-repeat;
  420. background-size: 100% 100%;
  421. margin: 14rpx 0 0 120rpx;
  422. }
  423. .box_3 {
  424. background-color: rgba(255, 255, 255, 1);
  425. border-radius: 14px 14px 0px 0px;
  426. height: 232rpx;
  427. width: 750rpx;
  428. position: relative;
  429. margin: 98rpx 0 22rpx 0;
  430. }
  431. .text-wrapper_25 {
  432. width: 318rpx;
  433. height: 60rpx;
  434. margin: 48rpx 0 0 336rpx;
  435. }
  436. .text_29 {
  437. width: 54rpx;
  438. height: 60rpx;
  439. overflow-wrap: break-word;
  440. color: rgba(34, 34, 34, 1);
  441. font-size: 52rpx;
  442. letter-spacing: 0.7607405185699463px;
  443. font-family: DINAlternate-Bold;
  444. text-align: left;
  445. white-space: nowrap;
  446. line-height: 60rpx;
  447. }
  448. .text_30 {
  449. width: 50rpx;
  450. height: 34rpx;
  451. overflow-wrap: break-word;
  452. color: rgba(34, 34, 34, 1);
  453. font-size: 24rpx;
  454. letter-spacing: 0.3511109948158264px;
  455. text-align: left;
  456. white-space: nowrap;
  457. line-height: 34rpx;
  458. margin: 20rpx 0 0 8rpx;
  459. }
  460. .text_31 {
  461. width: 28rpx;
  462. height: 60rpx;
  463. overflow-wrap: break-word;
  464. color: rgba(34, 34, 34, 1);
  465. font-size: 52rpx;
  466. letter-spacing: 0.7607405185699463px;
  467. font-family: DINAlternate-Bold;
  468. text-align: left;
  469. white-space: nowrap;
  470. line-height: 60rpx;
  471. margin-left: 120rpx;
  472. }
  473. .text_32 {
  474. width: 50rpx;
  475. height: 34rpx;
  476. overflow-wrap: break-word;
  477. color: rgba(34, 34, 34, 1);
  478. font-size: 24rpx;
  479. letter-spacing: 0.3511109948158264px;
  480. text-align: left;
  481. white-space: nowrap;
  482. line-height: 34rpx;
  483. margin: 20rpx 0 0 8rpx;
  484. }
  485. .box_38 {
  486. // width: 100%;
  487. height: 44rpx;
  488. margin: 50rpx 0 30rpx 40rpx;
  489. }
  490. .image-text_45 {
  491. width: 100%;
  492. height: 44rpx;
  493. }
  494. .text_4 {
  495. height: 44rpx;
  496. overflow-wrap: break-word;
  497. color: rgba(34, 34, 34, 1);
  498. font-size: 32rpx;
  499. letter-spacing: 0.46814799308776855px;
  500. font-family: PingFangSC-Medium;
  501. text-align: left;
  502. white-space: nowrap;
  503. line-height: 44rpx;
  504. }
  505. .box_20 {
  506. position: relative;
  507. height: 32rpx;
  508. background-size: 100% 100%;
  509. margin-top: 6rpx;
  510. }
  511. .image-text_46 {
  512. width: 86rpx;
  513. height: 28rpx;
  514. margin-left: 4rpx;
  515. }
  516. .box_21 {
  517. width: 24rpx;
  518. height: 24rpx;
  519. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  520. 100% no-repeat;
  521. background-size: 100% 100%;
  522. margin-top: 4rpx;
  523. }
  524. .text-group_20 {
  525. width: 62rpx;
  526. height: 28rpx;
  527. overflow-wrap: break-word;
  528. color: rgba(255, 255, 255, 1);
  529. font-size: 20rpx;
  530. letter-spacing: 0.29259249567985535px;
  531. font-family: PingFangSC-Medium;
  532. text-align: left;
  533. white-space: nowrap;
  534. line-height: 28rpx;
  535. }
  536. .image-text_47 {
  537. position: absolute;
  538. left: 4rpx;
  539. top: 0;
  540. width: 86rpx;
  541. height: 28rpx;
  542. }
  543. .image_1 {
  544. border-radius: 50%;
  545. position: absolute;
  546. left: 40rpx;
  547. top: -60rpx;
  548. width: 200rpx;
  549. height: 200rpx;
  550. }
  551. .box_22 {
  552. background-color: rgba(255, 255, 255, 1);
  553. width: 750rpx;
  554. margin-top: -2rpx;
  555. }
  556. .text-wrapper_26 {
  557. width: 690rpx;
  558. height: 44rpx;
  559. margin: 36rpx 0 28rpx 30rpx;
  560. }
  561. .text_33 {
  562. position: relative;
  563. width: 130rpx;
  564. height: 44rpx;
  565. overflow-wrap: break-word;
  566. color: #999999;
  567. font-size: 32rpx;
  568. letter-spacing: 0.20148147642612457px;
  569. font-family: PingFangSC-Medium;
  570. text-align: center;
  571. white-space: nowrap;
  572. line-height: 44rpx;
  573. padding-bottom: 12rpx;
  574. }
  575. .select{
  576. position: relative;
  577. color: #222222;
  578. }
  579. .select::before{
  580. content: '';
  581. position: absolute;
  582. left: 50%;
  583. transform: translateX(-50%);
  584. bottom: 0;
  585. width: 40rpx;
  586. height: 8rpx;
  587. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  588. border-radius: 4rpx;
  589. }
  590. .text_34 {
  591. width: 122rpx;
  592. height: 42rpx;
  593. overflow-wrap: break-word;
  594. color: rgba(153, 153, 153, 1);
  595. font-size: 30rpx;
  596. letter-spacing: 0.18888889253139496px;
  597. font-family: PingFangSC-Medium;
  598. text-align: left;
  599. white-space: nowrap;
  600. line-height: 42rpx;
  601. margin: 2rpx 0 0 84rpx;
  602. }
  603. .text_35 {
  604. width: 122rpx;
  605. height: 42rpx;
  606. overflow-wrap: break-word;
  607. color: rgba(153, 153, 153, 1);
  608. font-size: 30rpx;
  609. letter-spacing: 0.18888889253139496px;
  610. font-family: PingFangSC-Medium;
  611. text-align: left;
  612. white-space: nowrap;
  613. line-height: 42rpx;
  614. margin: 2rpx 0 0 86rpx;
  615. }
  616. .text_36 {
  617. width: 62rpx;
  618. height: 42rpx;
  619. overflow-wrap: break-word;
  620. color: rgba(153, 153, 153, 1);
  621. font-size: 30rpx;
  622. letter-spacing: 0.18888889253139496px;
  623. font-family: PingFangSC-Medium;
  624. text-align: left;
  625. white-space: nowrap;
  626. line-height: 42rpx;
  627. margin: 2rpx 0 0 84rpx;
  628. }
  629. .box_23 {
  630. width: 40rpx;
  631. height: 8rpx;
  632. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  633. 100% no-repeat;
  634. background-size: 100% 100%;
  635. margin: 2rpx 0 0 76rpx;
  636. }
  637. .box_24 {
  638. background-color: rgba(242, 242, 242, 1);
  639. width: 690rpx;
  640. height: 2rpx;
  641. margin: 28rpx 0 0 30rpx;
  642. }
  643. .group_50 {
  644. width: 690rpx;
  645. height: 42rpx;
  646. margin: 20rpx 0 0 30rpx;
  647. }
  648. .text_49 {
  649. height: 42rpx;
  650. overflow-wrap: break-word;
  651. color: rgba(136, 136, 136, 1);
  652. font-size: 30rpx;
  653. letter-spacing: 0.18888889253139496px;
  654. text-align: right;
  655. white-space: nowrap;
  656. line-height: 42rpx;
  657. }
  658. .text_50 {
  659. height: 42rpx;
  660. overflow-wrap: break-word;
  661. color: rgba(34, 34, 34, 1);
  662. font-size: 30rpx;
  663. letter-spacing: 0.18888889253139496px;
  664. text-align: right;
  665. white-space: nowrap;
  666. line-height: 42rpx;
  667. }
  668. .section_32 {
  669. width: 28rpx;
  670. height: 28rpx;
  671. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  672. 100% no-repeat;
  673. background-size: 100% 100%;
  674. margin: 8rpx 0 0 4rpx;
  675. }
  676. .group_51 {
  677. width: 690rpx;
  678. height: 112rpx;
  679. margin: 36rpx 0 0 30rpx;
  680. }
  681. .text-group_32 {
  682. width: 62rpx;
  683. height: 112rpx;
  684. }
  685. .text_44 {
  686. width: 62rpx;
  687. height: 42rpx;
  688. overflow-wrap: break-word;
  689. color: rgba(136, 136, 136, 1);
  690. font-size: 30rpx;
  691. letter-spacing: 0.18888889253139496px;
  692. text-align: right;
  693. white-space: nowrap;
  694. line-height: 42rpx;
  695. }
  696. .text_38 {
  697. width: 62rpx;
  698. height: 42rpx;
  699. overflow-wrap: break-word;
  700. color: rgba(136, 136, 136, 1);
  701. font-size: 30rpx;
  702. letter-spacing: 0.18888889253139496px;
  703. text-align: right;
  704. white-space: nowrap;
  705. line-height: 42rpx;
  706. margin-top: 28rpx;
  707. }
  708. .text-group_33 {
  709. width: 92rpx;
  710. height: 112rpx;
  711. }
  712. .text_45 {
  713. width: 92rpx;
  714. height: 42rpx;
  715. overflow-wrap: break-word;
  716. color: rgba(34, 34, 34, 1);
  717. font-size: 30rpx;
  718. letter-spacing: 0.18888889253139496px;
  719. text-align: right;
  720. white-space: nowrap;
  721. line-height: 42rpx;
  722. }
  723. .text-group_21 {
  724. width: 92rpx;
  725. height: 42rpx;
  726. overflow-wrap: break-word;
  727. color: rgba(34, 34, 34, 1);
  728. font-size: 30rpx;
  729. letter-spacing: 0.18888889253139496px;
  730. text-align: right;
  731. white-space: nowrap;
  732. line-height: 42rpx;
  733. margin-top: 28rpx;
  734. }
  735. .text-wrapper_27 {
  736. width: 690rpx;
  737. height: 42rpx;
  738. margin: 36rpx 0 0 30rpx;
  739. }
  740. .text_39 {
  741. width: 62rpx;
  742. height: 42rpx;
  743. overflow-wrap: break-word;
  744. color: rgba(136, 136, 136, 1);
  745. font-size: 30rpx;
  746. letter-spacing: 0.18888889253139496px;
  747. text-align: right;
  748. white-space: nowrap;
  749. line-height: 42rpx;
  750. }
  751. .text-group_22 {
  752. width: 72rpx;
  753. height: 42rpx;
  754. overflow-wrap: break-word;
  755. color: rgba(34, 34, 34, 1);
  756. font-size: 30rpx;
  757. letter-spacing: 0.18888889253139496px;
  758. text-align: right;
  759. white-space: nowrap;
  760. line-height: 42rpx;
  761. }
  762. .group_52 {
  763. width: 690rpx;
  764. height: 42rpx;
  765. margin: 36rpx 0 0 30rpx;
  766. }
  767. .text_41 {
  768. width: 62rpx;
  769. height: 42rpx;
  770. overflow-wrap: break-word;
  771. color: rgba(136, 136, 136, 1);
  772. font-size: 30rpx;
  773. letter-spacing: 0.18888889253139496px;
  774. text-align: right;
  775. white-space: nowrap;
  776. line-height: 42rpx;
  777. }
  778. .text-group_24 {
  779. width: 92rpx;
  780. height: 42rpx;
  781. overflow-wrap: break-word;
  782. color: rgba(34, 34, 34, 1);
  783. font-size: 30rpx;
  784. letter-spacing: 0.18888889253139496px;
  785. text-align: right;
  786. white-space: nowrap;
  787. line-height: 42rpx;
  788. margin-left: 504rpx;
  789. }
  790. .group_39 {
  791. width: 28rpx;
  792. height: 28rpx;
  793. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  794. 100% no-repeat;
  795. background-size: 100% 100%;
  796. margin: 8rpx 0 0 4rpx;
  797. }
  798. .text-wrapper_28 {
  799. width: 690rpx;
  800. height: 42rpx;
  801. margin: 36rpx 0 0 30rpx;
  802. }
  803. .text_51 {
  804. width: 122rpx;
  805. height: 42rpx;
  806. overflow-wrap: break-word;
  807. color: rgba(136, 136, 136, 1);
  808. font-size: 30rpx;
  809. letter-spacing: 0.18888889253139496px;
  810. text-align: right;
  811. white-space: nowrap;
  812. line-height: 42rpx;
  813. }
  814. .text_52 {
  815. width: 122rpx;
  816. height: 42rpx;
  817. overflow-wrap: break-word;
  818. color: rgba(34, 34, 34, 1);
  819. font-size: 30rpx;
  820. letter-spacing: 0.18888889253139496px;
  821. text-align: right;
  822. white-space: nowrap;
  823. line-height: 42rpx;
  824. }
  825. .group_53 {
  826. width: 690rpx;
  827. height: 42rpx;
  828. margin: 36rpx 0 0 30rpx;
  829. }
  830. .text_53 {
  831. width: 122rpx;
  832. height: 42rpx;
  833. overflow-wrap: break-word;
  834. color: rgba(136, 136, 136, 1);
  835. font-size: 30rpx;
  836. letter-spacing: 0.18888889253139496px;
  837. text-align: right;
  838. white-space: nowrap;
  839. line-height: 42rpx;
  840. }
  841. .image-text_48 {
  842. width: 216rpx;
  843. height: 42rpx;
  844. }
  845. .text-group_29 {
  846. width: 184rpx;
  847. height: 42rpx;
  848. overflow-wrap: break-word;
  849. color: rgba(34, 34, 34, 1);
  850. font-size: 30rpx;
  851. letter-spacing: 0.18888889253139496px;
  852. text-align: right;
  853. white-space: nowrap;
  854. line-height: 42rpx;
  855. }
  856. .group_41 {
  857. width: 28rpx;
  858. height: 28rpx;
  859. background: url(https://oss.wdmeta.art/a7835b5dd05ecd99/011781dfdfb589a0.png)
  860. 100% no-repeat;
  861. background-size: 100% 100%;
  862. margin-top: 8rpx;
  863. }
  864. .text-wrapper_13 {
  865. position: fixed;
  866. bottom: 84rpx;
  867. left: 50%;
  868. transform: translateX(-50%);
  869. height: 92rpx;
  870. border-radius: 46rpx;
  871. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  872. background-size: 100% 100%;
  873. width: 650rpx;
  874. }
  875. .text_46 {
  876. width: 146rpx;
  877. height: 50rpx;
  878. overflow-wrap: break-word;
  879. color: rgba(255, 255, 255, 1);
  880. font-size: 36rpx;
  881. letter-spacing: 0.2266666740179062px;
  882. font-family: PingFangSC-Medium;
  883. text-align: right;
  884. white-space: nowrap;
  885. line-height: 50rpx;
  886. margin: 22rpx 0 0 252rpx;
  887. }
  888. </style>