testResult.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. <template>
  2. <view class="bg">
  3. <view style="overflow: hidden;"></view>
  4. <view class="scale_name">象牙塔闯关:你是适应达人 还是新手上路?</view>
  5. <view class="test_time">测试时间:{{ time }}</view>
  6. <view class="role_medal">测试结果</view>
  7. <view class="chart_wrap">
  8. <view class="situation">
  9. <view class="situation_title">测评得分</view>
  10. <view class="situation_score">分数:<text>{{ dimensions[0].score }}</text>(满分{{dimensions[0].maxScore}})
  11. </view>
  12. <view class="situation_conclusion">结论:</view>
  13. <image class="situation_role" v-if="dimensions.length > 0"
  14. :src="`https://test.jue-ming.com:8849/api/show?filePath=./webo/Adapt/${roleInfo[dimensions[0].symptom]}.png`"
  15. mode="widthFix">
  16. </image>
  17. </view>
  18. <view class="radar_wrap">
  19. <leiDa2 :options="options" />
  20. </view>
  21. <view class="my_table">
  22. <view class="t-head">
  23. <view width="50%">维度</view>
  24. <view>得分</view>
  25. <view>满分</view>
  26. </view>
  27. <view class="t-body" v-for="(item, index) in scoreList">
  28. <view>{{ indicator[index].name }}</view>
  29. <view>{{ item }}</view>
  30. <view style="border-right: 0;">{{maxScoreList[index]}}</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="rgtd_box" v-for="item in dimensions">
  35. <view class="rgtd_box_title"><text>{{ item.name }}</text></view>
  36. <view class="rgtd_box_wrap">
  37. <view style="overflow: hidden;"></view>
  38. <!-- <view v-for="(item, index) in resultObj">
  39. <template v-if="index > 0"> -->
  40. <!-- <view class="dimension_name"><text>{{item.name}}</text></view> -->
  41. <view class="dimension_title">
  42. 得分
  43. </view>
  44. <view class="dimension_content dc1">
  45. <text>{{ item.score }}</text>
  46. </view>
  47. <view class="dimension_title">
  48. 维度结论
  49. </view>
  50. <view class="dimension_content dc1">
  51. <text>{{ item.symptom }}</text>
  52. </view>
  53. <view class="dimension_title">
  54. 维度说明
  55. </view>
  56. <view class="dimension_content">
  57. {{ item.nameExplain }}
  58. </view>
  59. <view class="dimension_title">
  60. 维度解释
  61. </view>
  62. <view class="dimension_content">
  63. {{ item.improvementSuggestions }}
  64. </view>
  65. </view>
  66. </view>
  67. <view class="report_desc">
  68. <view class="desc_title">报告阅读说明</view>
  69. <view class="desc_txt">谢谢您的参与,阅读本报告时,请注意以下内容:</view>
  70. <view style="display: flex;">
  71. <view class="list_mark">·</view>
  72. <view class="desc_txt">本结果仅供参考,不可作为临床诊断的依据;</view>
  73. </view>
  74. <view style="display: flex;">
  75. <view class="list_mark">·</view>
  76. <view class="desc_txt">如对报告有不理解的地方,建议咨询专业人员;</view>
  77. </view>
  78. <view style="display: flex;">
  79. <view class="list_mark">·</view>
  80. <view class="desc_txt">如结果与你自己或他人的感受有出入,可回忆在测试时是否有事情影响到你,或自己回答时是否有所顾虑。</view>
  81. </view>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. import {
  87. getRecordById
  88. } from "@/api/index.js";
  89. import {
  90. photoUrl
  91. } from "@/common/config.js"
  92. const photoUrls = `${photoUrl}api/show?filePath=./webo`
  93. import {
  94. getTestTime
  95. } from "@/utils/util.js"
  96. import leiDa2 from "@/components/mpvueEcharts/leiDa2.vue"
  97. import options from "./echartsData.js";
  98. export default {
  99. components: {
  100. leiDa2
  101. },
  102. data() {
  103. return {
  104. photoUrl: photoUrl,
  105. isChecked: true,
  106. isShake: false,
  107. scaleDetail: {},
  108. questionList: [],
  109. currentQuestion: {},
  110. currentAnswerList: [],
  111. currentIndex: 0,
  112. userAnswerList: [],
  113. resultId: '',
  114. isLoading: false,
  115. isDisbale: false,
  116. resultObj: [],
  117. resultId: '',
  118. scoreNum: 0,
  119. maxScore: 450,
  120. minScore: 0,
  121. keywords: '',
  122. characteristic: '', // 特点
  123. time: '',
  124. indicator: [],
  125. scoreList: [],
  126. maxScoreList: [],
  127. totalScore: {},
  128. dimensions: [],
  129. roleInfo: {
  130. '适应能力较低': 'role1',
  131. '适应能力中等': 'role2',
  132. '适应能力较强': 'role3',
  133. },
  134. options: options
  135. }
  136. },
  137. onLoad(options) {
  138. if (options && options.resultId) {
  139. this.resultId = options.resultId
  140. this.getScaleTestResults(this.resultId);
  141. }
  142. },
  143. computed: {
  144. percentage() {
  145. return ((this.scoreNum / this.maxScore) * 627) + 'rpx'
  146. }
  147. },
  148. methods: {
  149. getScaleTestResults(id) {
  150. let _this = this;
  151. _this.$request
  152. .get({
  153. url: `${getRecordById}?id=${id}`,
  154. loadingTip: "加载中...",
  155. data: {},
  156. })
  157. .then(
  158. (res) => {
  159. if (res.code == 200) {
  160. let testResult = JSON.parse(res.data?.userRecordEntity?.testResult);
  161. let result = testResult[0]['newTableContext']['result'];
  162. result.forEach((item, index) => {
  163. if (index > 0) {
  164. this.indicator.push({
  165. name: item.name
  166. });
  167. this.scoreList.push(item.score)
  168. this.maxScoreList.push(item.maxScore);
  169. }
  170. this.dimensions.push(item);
  171. })
  172. this.time = getTestTime(res.data.userRecordEntity.testDate);
  173. this.totalScore = result[0].score;
  174. this.options.radar.indicator = this.indicator;
  175. this.options.series[0].data[0].value = this.maxScoreList;
  176. this.options.series[0].data[1].value = this.scoreList;
  177. } else if (res.code == 401) {} else {
  178. (res) => {
  179. console.log("世界上绝对绝对绝对绝对绝对的", res);
  180. }
  181. }
  182. })
  183. },
  184. getAdvantage(str) {
  185. let tempArr = str.split("——");
  186. let title = tempArr[0].split(".")
  187. let advant = {
  188. title: title[1],
  189. content: tempArr[1]
  190. }
  191. return advant
  192. },
  193. getTips(str) {
  194. let temp = str.split(':');
  195. return `${temp[0]}是指${temp[1]}`
  196. }
  197. }
  198. }
  199. </script>
  200. <style lang="less" scoped>
  201. .bg {
  202. width: 100%;
  203. background: linear-gradient(0deg, #F4BEF0 0%, #9051FB 100%);
  204. position: relative;
  205. padding-bottom: 100rpx;
  206. }
  207. .scale_name {
  208. width: 423rpx;
  209. font-family: 'Alibaba PuHuiTi 2.0';
  210. font-weight: bold;
  211. font-size: 36rpx;
  212. color: #FFFFFF;
  213. margin: 20rpx 0 0 32rpx;
  214. }
  215. .test_time {
  216. font-family: 'Alibaba PuHuiTi 2.0';
  217. font-weight: normal;
  218. font-size: 28rpx;
  219. color: #ffffff;
  220. margin: 16rpx 0 0 32rpx;
  221. }
  222. .role_medal {
  223. width: 205rpx;
  224. line-height: 53rpx;
  225. background: #FFFFFF;
  226. border-radius: 27rpx;
  227. font-family: 'Alibaba PuHuiTi 2.0';
  228. font-weight: normal;
  229. font-size: 32rpx;
  230. color: #333333;
  231. text-align: center;
  232. position: absolute;
  233. top: 36rpx;
  234. right: 25rpx;
  235. }
  236. .role_wrap {
  237. position: relative;
  238. }
  239. .role_char {
  240. width: 714rpx;
  241. height: 156rpx;
  242. display: flex;
  243. justify-content: space-around;
  244. align-items: center;
  245. position: absolute;
  246. left: 18rpx;
  247. bottom: 0;
  248. }
  249. .char_item {
  250. width: 30%;
  251. font-family: 'ZhankuKuaiLeTi';
  252. font-weight: 800;
  253. font-size: 36rpx;
  254. color: #333333;
  255. line-height: 52rpx;
  256. text-align: center;
  257. }
  258. .shadow_img {
  259. display: block;
  260. width: 170rpx;
  261. position: absolute;
  262. left: 50%;
  263. bottom: -6rpx;
  264. transform: translateX(-50%);
  265. }
  266. .role_name {
  267. text-align: center;
  268. margin: 202rpx 0 0 0;
  269. }
  270. .role_name image {
  271. width: 550rpx;
  272. }
  273. .temp_type {
  274. width: 714rpx;
  275. margin: 0 auto;
  276. }
  277. .carton {
  278. width: 718rpx;
  279. margin: 0 16rpx;
  280. }
  281. .score_percentage {
  282. display: flex;
  283. align-items: center;
  284. justify-content: space-between;
  285. width: 627rpx;
  286. height: 20rpx;
  287. background: #FFFFFF;
  288. border-radius: 10rpx;
  289. border-radius: 14rpx;
  290. margin: 14rpx 0 8rpx 20rpx;
  291. position: relative;
  292. z-index: 3;
  293. overflow-x: hidden;
  294. }
  295. .process_bar {
  296. width: 0rpx;
  297. height: 16rpx;
  298. background: #FF1E00;
  299. border-radius: 8rpx;
  300. box-shadow: 0rpx 0rpx 4rpx 2rpx #FFC600;
  301. position: absolute;
  302. top: 3rpx;
  303. left: 4rpx;
  304. }
  305. .rgtd_box {
  306. box-sizing: border-box;
  307. width: 712rpx;
  308. min-height: 700rpx;
  309. padding: 24rpx;
  310. margin: 0 auto 124rpx;
  311. position: relative;
  312. z-index: 0;
  313. background: #7A2FFF;
  314. box-shadow: 0rpx 8rpx 11rpx 0rpx rgba(47, 24, 76, 0.22);
  315. border-top: 2px solid #FFFDA1;
  316. border-radius: 58rpx;
  317. }
  318. .rgtd_box_title {
  319. width: 701rpx;
  320. height: 97rpx;
  321. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/Adapt/title_bg.png) no-repeat center;
  322. background-size: 488rpx 30rpx;
  323. text-align: center;
  324. }
  325. .rgtd_box_title text {
  326. font-family: 'Alibaba PuHuiTi 2.0';
  327. font-weight: 600;
  328. font-size: 40rpx;
  329. color: #FFFDA2;
  330. line-height: 97rpx;
  331. margin-top: 20rpx;
  332. }
  333. .dimension_name {
  334. width: 465rpx;
  335. height: 79rpx;
  336. padding-top: 2rpx;
  337. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/dimension_name.png) no-repeat;
  338. background-size: cover;
  339. margin: 60rpx auto 0;
  340. text-align: center;
  341. }
  342. .dimension_name text {
  343. font-family: 'Alibaba PuHuiTi 2.0';
  344. font-weight: bold;
  345. font-size: 44rpx;
  346. color: #FFFEFE;
  347. }
  348. .dimension_title {
  349. box-sizing: border-box;
  350. width: 100%;
  351. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/list_style_bg.png) no-repeat 16rpx center;
  352. background-size: 19rpx auto;
  353. padding: 26rpx 0 0 44rpx;
  354. font-family: Alibaba PuHuiTi 2.0;
  355. font-weight: 600;
  356. font-size: 32rpx;
  357. color: #FFFDA1;
  358. }
  359. .dt1 {
  360. margin-top: 78rpx;
  361. }
  362. .dimension_content {
  363. box-sizing: border-box;
  364. width: 598rpx;
  365. min-height: 91rpx;
  366. padding: 30rpx 32rpx;
  367. background: #FFFFFF;
  368. border-radius: 28rpx;
  369. margin: 20rpx auto;
  370. font-family: 'Alibaba PuHuiTi 2.0';
  371. font-weight: normal;
  372. font-size: 28rpx;
  373. color: #333333;
  374. line-height: 50rpx;
  375. text-align: justify;
  376. }
  377. .dimension_explain {
  378. font-family: 'Alibaba PuHuiTi 2.0';
  379. font-weight: normal;
  380. font-size: 20rpx;
  381. color: #D3987E;
  382. line-height: 24rpx;
  383. margin-top: 10rpx;
  384. }
  385. .dc1 {
  386. width: 598rpx;
  387. line-height: 1;
  388. background: #FFFFFF;
  389. box-shadow: 0rpx 7rpx 8rpx 0rpx rgba(4, 129, 200, 0.13);
  390. border-radius: 48rpx;
  391. font-family: 'Alibaba PuHuiTi 2.0';
  392. font-weight: normal;
  393. font-size: 32rpx;
  394. color: #7A2FFF;
  395. text-align: center;
  396. }
  397. .rgtd_box_wrap {
  398. box-sizing: border-box;
  399. width: 668rpx;
  400. min-height: 700rpx;
  401. margin: 0 auto;
  402. position: relative;
  403. z-index: 1;
  404. padding-top: 46rpx;
  405. }
  406. .rgtd_box_content {
  407. box-sizing: border-box;
  408. width: 674rpx;
  409. min-height: 390rpx;
  410. padding: 28rpx 47rpx;
  411. background: #FFF9FA;
  412. border-radius: 18rpx;
  413. margin: 0 auto;
  414. font-family: 'Alibaba PuHuiTi 2.0';
  415. font-weight: normal;
  416. font-size: 32rpx;
  417. color: #333333;
  418. line-height: 50rpx;
  419. letter-spacing: 2rpx;
  420. }
  421. .rgtd_text {
  422. width: 181rpx;
  423. margin: 6rpx 0 0 39rpx;
  424. }
  425. .emo_img {
  426. width: 112rpx;
  427. margin-right: 7rpx;
  428. }
  429. .rgtg_content {
  430. box-sizing: border-box;
  431. width: 714rpx;
  432. padding: 40rpx;
  433. background: #FFFFFF;
  434. border-radius: 35rpx;
  435. margin: 0 auto;
  436. font-family: 'Alibaba PuHuiTi 2.0';
  437. font-weight: normal;
  438. font-size: 28rpx;
  439. color: #333333;
  440. line-height: 1.8;
  441. letter-spacing: 2rpx;
  442. }
  443. .mrmj_content {
  444. display: flex;
  445. flex-wrap: wrap;
  446. min-height: 255rpx;
  447. }
  448. .star_img {
  449. width: 92rpx;
  450. margin-right: 43rpx;
  451. }
  452. .mrmj_content .mr_name {
  453. height: 44rpx;
  454. padding: 0 34rpx;
  455. margin: 4rpx 10rpx;
  456. background: #E4FFD3;
  457. border-radius: 22rpx;
  458. border: 1px solid #66C666;
  459. font-family: 'Alibaba PuHuiTi 2.0';
  460. font-weight: normal;
  461. font-size: 28rpx;
  462. color: #0B7000;
  463. line-height: 44rpx;
  464. text-align: center;
  465. }
  466. .mr_pic_box {
  467. width: 100%;
  468. }
  469. .mr_pic {
  470. width: 316rpx;
  471. margin: 5rpx 8rpx;
  472. }
  473. .advantage_title {
  474. font-family: 'Alibaba PuHuiTi 2.0';
  475. font-weight: bold;
  476. font-size: 32rpx;
  477. color: #333333;
  478. margin: 25rpx 5rpx 8rpx;
  479. }
  480. .advantage_content {
  481. box-sizing: border-box;
  482. width: 632rpx;
  483. background: #E4FFD3;
  484. border-radius: 22rpx;
  485. border: 1px solid #66C666;
  486. padding: 28rpx;
  487. margin: 0 auto;
  488. }
  489. .ad_item_title {
  490. display: flex;
  491. align-items: center;
  492. font-family: 'Alibaba PuHuiTi 2.0';
  493. font-weight: bold;
  494. font-size: 32rpx;
  495. color: #156300;
  496. }
  497. .love_role {
  498. width: 571rpx;
  499. margin: 0 auto;
  500. }
  501. .single_star {
  502. width: 32rpx;
  503. margin: 0 8rpx 4rpx 0;
  504. }
  505. .heart_img {
  506. width: 93rpx;
  507. margin-right: 16rpx;
  508. }
  509. .lover_type_title {
  510. font-family: 'Alibaba PuHuiTi 2.0';
  511. font-weight: bold;
  512. font-size: 32rpx;
  513. color: #333333;
  514. line-height: 43rpx;
  515. }
  516. .love_decode {
  517. box-sizing: border-box;
  518. width: 632rpx;
  519. padding: 39rpx 30rpx;
  520. background: #FFE8FD;
  521. border-radius: 22rpx;
  522. border: 1px solid #FF59F1;
  523. margin: 0 auto;
  524. font-family: 'Alibaba PuHuiTi 2.0';
  525. font-weight: normal;
  526. font-size: 28rpx;
  527. color: #333333;
  528. }
  529. .result_box {
  530. width: 702rpx;
  531. min-height: 807rpx;
  532. background: #ffffff;
  533. box-shadow: 0rpx 3rpx 24rpx 0rpx rgba(126, 77, 0, 0.13);
  534. border-radius: 26rpx;
  535. margin: 168rpx auto 0;
  536. position: relative;
  537. }
  538. .pad_box {
  539. width: 100%;
  540. height: 200rpx;
  541. border-radius: 26rpx;
  542. overflow: hidden;
  543. }
  544. .title_img {
  545. height: 60rpx;
  546. margin: 37rpx 0 0 96rpx;
  547. }
  548. .result_box_r {
  549. box-sizing: border-box;
  550. width: 702rpx;
  551. min-height: 453rpx;
  552. margin: -188rpx auto 0;
  553. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/result_bg_r.png) no-repeat top;
  554. background-size: 100% auto;
  555. border-radius: 33rpx;
  556. font-family: 'Alibaba PuHuiTi 2.0';
  557. font-weight: normal;
  558. font-size: 32rpx;
  559. color: #555555;
  560. line-height: 50rpx;
  561. position: relative;
  562. z-index: 2;
  563. }
  564. .r_content {
  565. width: 600rpx;
  566. min-height: 307rpx;
  567. background: #FFE1E1;
  568. border-radius: 20rpx;
  569. border: 1px solid #FF6666;
  570. margin: 20rpx auto 0;
  571. padding: 30rpx;
  572. font-family: 'Alibaba PuHuiTi 2.0';
  573. font-weight: normal;
  574. font-size: 32rpx;
  575. color: #333333;
  576. line-height: 50rpx;
  577. display: flex;
  578. align-items: flex-start;
  579. }
  580. .report_desc {
  581. padding: 0 38rpx;
  582. letter-spacing: 1px;
  583. }
  584. .desc_title {
  585. font-family: 'Alibaba PuHuiTi 2.0';
  586. font-weight: normal;
  587. font-size: 28rpx;
  588. color: #ffffff;
  589. line-height: 46rpx;
  590. }
  591. .stext {
  592. font-family: 'Alibaba PuHuiTi 2.0';
  593. font-weight: normal;
  594. font-size: 20rpx;
  595. color: #ffffff;
  596. line-height: 30rpx;
  597. }
  598. .desc_txt {
  599. font-family: 'Alibaba PuHuiTi 2.0';
  600. font-weight: normal;
  601. font-size: 20rpx;
  602. color: #ffffff;
  603. line-height: 30rpx;
  604. }
  605. .list_mark {
  606. line-height: 0.7;
  607. font-size: 36rpx;
  608. color: #ffffff;
  609. font-weight: 600;
  610. margin-right: 5rpx;
  611. }
  612. .analysis_title {
  613. width: 362rpx;
  614. position: absolute;
  615. top: -30rpx;
  616. left: 50%;
  617. transform: translateX(-50%);
  618. }
  619. .paperclip {
  620. width: 55rpx;
  621. position: absolute;
  622. top: -40rpx;
  623. left: 38rpx;
  624. }
  625. .score_title {
  626. font-family: 'Alibaba PuHuiTi 2.0';
  627. font-weight: normal;
  628. font-size: 32rpx;
  629. color: #333333;
  630. line-height: 24rpx;
  631. margin: 0 0 0 5rpx;
  632. }
  633. .score_num {
  634. font-family: 'Alibaba PuHuiTi 2.0';
  635. font-weight: bold;
  636. font-size: 93rpx;
  637. color: #FF1E00;
  638. text-align: center;
  639. margin-top: 20rpx;
  640. line-height: 1.2;
  641. }
  642. .score_explain {
  643. font-family: 'Alibaba PuHuiTi 2.0';
  644. font-weight: normal;
  645. font-size: 24rpx;
  646. color: #999999;
  647. line-height: 34rpx;
  648. text-align: center;
  649. }
  650. .chart_wrap {
  651. width: 702rpx;
  652. min-height: 1053rpx;
  653. background: #FFFFFF;
  654. border-radius: 16rpx;
  655. margin: 16rpx auto 100rpx;
  656. padding-bottom: 30rpx;
  657. }
  658. .my_table {
  659. width: 634rpx;
  660. line-height: 52rpx;
  661. margin: 0 auto;
  662. text-align: center;
  663. border: 0;
  664. }
  665. .my_table {}
  666. .my_table .t-head {
  667. width: 634rpx;
  668. height: 52rpx;
  669. background: #2394FC;
  670. font-family: 'Alibaba PuHuiTi 2.0';
  671. font-size: 28rpx;
  672. color: #FEFEFE;
  673. }
  674. .my_table .t-head,
  675. .my_table .t-body {
  676. display: flex;
  677. }
  678. .my_table .t-head view,
  679. .my_table .t-body view {
  680. flex: 1;
  681. }
  682. .my_table .t-body view {
  683. font-family: 'Alibaba PuHuiTi 2.0';
  684. font-weight: normal;
  685. font-size: 20rpx;
  686. color: #333333;
  687. line-height: 50rpx;
  688. border-right: 1px solid #E6EFF5;
  689. border-bottom: 1px solid #E6EFF5;
  690. }
  691. .my_table .t-body:nth-child(2n+1) {
  692. background: #EFF7FF;
  693. }
  694. .situation {
  695. width: 100%;
  696. min-height: 111rpx;
  697. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/Adapt/situation_bg.png) no-repeat;
  698. background-size: 100% auto;
  699. overflow: hidden;
  700. font-family: 'Alibaba PuHuiTi 2.0';
  701. font-weight: normal;
  702. font-size: 32rpx;
  703. color: #333333;
  704. }
  705. .situation_title {
  706. margin: 24rpx 0 0 26rpx;
  707. }
  708. .situation_score {
  709. font-size: 24rpx;
  710. margin: 17rpx 0 30rpx 52rpx;
  711. text {
  712. font-size: 32rpx;
  713. color: #FF1E00;
  714. font-weight: 600;
  715. }
  716. }
  717. .situation_conclusion {
  718. font-size: 24rpx;
  719. margin-left: 52rpx;
  720. }
  721. .situation_role {
  722. width: 628rpx;
  723. height: auto;
  724. margin-left: 52rpx;
  725. }
  726. .radar_wrap {
  727. width: 100%;
  728. margin: 26rpx 0;
  729. }
  730. .container {
  731. width: 630rpx !important;
  732. height: 576rpx !important;
  733. /* padding: 0 !important; */
  734. background: #F7F9FA;
  735. border-radius: 27rpx;
  736. margin: 0 auto;
  737. }
  738. </style>