AI销管
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

684 Zeilen
20 KiB

  1. <template>
  2. <view class="box">
  3. <view class="boxtittabs">
  4. <div class="items" @tap="screenShow = true">{{ showTimeText }}
  5. <u-icon name="arrow-down" size="24" style="padding-left: 12rpx"></u-icon>
  6. </div>
  7. <div class="items" @tap="showTemplate = true">{{ showBeText }}
  8. <u-icon name="arrow-down" size="24" style="padding-left: 12rpx"></u-icon>
  9. </div>
  10. </view>
  11. <!-- 销讲业务 -->
  12. <u-select :mask-close-able="false" label-name="templateName" value-name="id" v-model="showTemplate"
  13. mode="single-column" :list="templateList" @cancel="templateCancel" @confirm="templateConfirm"></u-select>
  14. <view class="single">
  15. <view class="title">
  16. <view class="title1" style="flex: 1;">接待量排名(TOP10)</view>
  17. </view>
  18. <view class="hejisan">
  19. <view class="sanbox1">
  20. <view class="text1-2">{{newlisttabinfo1.total}}</view>
  21. <view class="text1-1">合计接待次数</view>
  22. </view>
  23. <view class="sanbox1">
  24. <view class="text1-2">{{newlisttabinfo1.count}}</view>
  25. <view class="text1-1">顾问人数</view>
  26. </view>
  27. <view class="sanbox1">
  28. <view class="text1-2">{{newlisttabinfo1.avg}}</view>
  29. <view class="text1-1">人均接待次数</view>
  30. </view>
  31. </view>
  32. <view class="jindu" style="margin-top: 20rpx;">
  33. <view v-if="newlisttabinfo1.result.length" class="jindu-box"
  34. v-for="(item,index) in newlisttabinfo1.result" :key="index">
  35. <view class="jindu-boxche">
  36. <view class="jindu-name u-flex" style='width: 170rpx' v-if="item.name">
  37. <image v-if="index==0" class="sort-img" src="/static/images/top1.png" mode="" />
  38. <image v-if="index==1" class="sort-img" src="/static/images/top2.png" mode="" />
  39. <image v-if="index==2" class="sort-img" src="/static/images/top3.png" mode="" />
  40. <view class="sort-number" v-if="index>2">{{index+1}}</view>
  41. {{item.name.substring(0,4)}}
  42. </view>
  43. <view class="progress-cus">
  44. <view class="color1" v-if="index==0" :style="'width:'+ item.zxl||0 + '%'"></view>
  45. <view class="color2" v-if="index==1" :style="'width:'+ getPercent(item.zxl,1) + '%'"></view>
  46. <view class="color3" v-if="index==2" :style="'width:'+ getPercent(item.zxl,1) + '%'"></view>
  47. <view class="color4" v-if="index>2" :style="'width:'+ getPercent(item.zxl,1) + '%'"></view>
  48. </view>
  49. <view class="jindu-zxl">{{item.zxl==null?0:item.zxl}}次</view>
  50. </view>
  51. </view>
  52. <view v-if="newlisttabinfo1.result.length==0" style="width: 100%;text-align: center;margin-top: 60rpx;">
  53. 暂无数据
  54. </view>
  55. </view>
  56. </view>
  57. <view class="single">
  58. <view class="title">
  59. <view class="title1" style="flex: 1;">平均执行率排行(TOP10)</view>
  60. </view>
  61. <view class="hejisan">
  62. <view class="sanbox1" style="width: 40%;">
  63. <view class="text1-2">{{newlisttabinfo3.count}}</view>
  64. <view class="text1-1">顾问人数</view>
  65. </view>
  66. <view class="sanbox1" style="width: 25%;">
  67. <view class="text1-2">{{newlisttabinfo3.avg}}%</view>
  68. <view class="text1-1">人均执行率</view>
  69. </view>
  70. </view>
  71. <view class="jindu" style="margin-top: 20rpx;">
  72. <view v-if="newlisttabinfo3.result.length" class="jindu-box"
  73. v-for="(item,index) in newlisttabinfo3.result" :key="index">
  74. <view class="jindu-boxche">
  75. <view class="jindu-name u-flex" style='width: 170rpx' v-if="item.name">
  76. <image v-if="index==0" class="sort-img" src="/static/images/top1.png" mode="" />
  77. <image v-if="index==1" class="sort-img" src="/static/images/top2.png" mode="" />
  78. <image v-if="index==2" class="sort-img" src="/static/images/top3.png" mode="" />
  79. <view class="sort-number" v-if="index>2">{{index+1}}</view>
  80. {{item.name.substring(0,4)}}
  81. </view>
  82. <!-- <view class="jindu-name" v-if="item.name">{{item.name.substring(0,4)}}</view> -->
  83. <!-- <view class="progress-cus">
  84. <view class="color" :style="'width:'+ item.zxl||0 + '%'" ></view>
  85. </view> -->
  86. <view class="progress-cus">
  87. <view class="color1" v-if="index==0" :style="'width:'+ getPercent1(item.zxl) + '%'"></view>
  88. <view class="color2" v-if="index==1" :style="'width:'+ getPercent1(item.zxl) + '%'"></view>
  89. <view class="color3" v-if="index==2" :style="'width:'+ getPercent1(item.zxl) + '%'"></view>
  90. <view class="color4" v-if="index>2" :style="'width:'+ getPercent1(item.zxl) + '%'"></view>
  91. </view>
  92. <view class="jindu-zxl">{{item.zxl==null?0:item.zxl}}%</view>
  93. </view>
  94. </view>
  95. <view v-if="newlisttabinfo3.result.length==0" style="width: 100%;text-align: center;margin-top: 60rpx;">
  96. 暂无数据
  97. </view>
  98. </view>
  99. </view>
  100. <view class="single">
  101. <view class="title">
  102. <view class="title1" style="flex: 1;">录音时长(TOP10)</view>
  103. </view>
  104. <view class="hejisan">
  105. <view class="sanbox1">
  106. <view class="text1-2">{{newlisttabinfo2.total}}</view>
  107. <view class="text1-1">合计时长/分钟</view>
  108. </view>
  109. <view class="sanbox1">
  110. <view class="text1-2">{{newlisttabinfo2.count}}</view>
  111. <view class="text1-1">顾问人数</view>
  112. </view>
  113. <view class="sanbox1">
  114. <view class="text1-2">{{newlisttabinfo2.avg}}</view>
  115. <view class="text1-1">人均录音时长/分钟</view>
  116. </view>
  117. </view>
  118. <view class="jindu" style="margin-top: 20rpx;">
  119. <view v-if="newlisttabinfo2.result.length" class="jindu-box"
  120. v-for="(item,index) in newlisttabinfo2.result" :key="index">
  121. <view class="jindu-boxche">
  122. <view class="jindu-name u-flex" style='width: 170rpx' v-if="item.name">
  123. <image v-if="index==0" class="sort-img" src="/static/images/top1.png" mode="" />
  124. <image v-if="index==1" class="sort-img" src="/static/images/top2.png" mode="" />
  125. <image v-if="index==2" class="sort-img" src="/static/images/top3.png" mode="" />
  126. <view class="sort-number" v-if="index>2">{{index+1}}</view>
  127. {{item.name.substring(0,4)}}
  128. </view>
  129. <view class="progress-cus">
  130. <view class="color1" v-if="index==0" :style="'width:'+ item.zxl||0 + '%'"></view>
  131. <view class="color2" v-if="index==1" :style="'width:'+ getPercent(item.zxl,2)+ '%'"></view>
  132. <view class="color3" v-if="index==2" :style="'width:'+ getPercent(item.zxl,2)+ '%'"></view>
  133. <view class="color4" v-if="index>2" :style="'width:'+ getPercent(item.zxl,2)+ '%'"></view>
  134. </view>
  135. <view class="jindu-zxl u-line-1">{{item.zxl==null?0:item.zxl}}分钟</view>
  136. </view>
  137. </view>
  138. <view v-if="newlisttabinfo2.result.length==0" style="width: 100%;text-align: center;margin-top: 60rpx;">
  139. 暂无数据
  140. </view>
  141. </view>
  142. </view>
  143. <view class="single">
  144. <view class="title">
  145. <view class="title1" style="flex: 1;">违禁次数排名(TOP10)</view>
  146. </view>
  147. <view class="hejisan">
  148. <view class="sanbox1">
  149. <view class="text1-2">{{newlisttabinfo4.total}}</view>
  150. <view class="text1-1">合计次数</view>
  151. </view>
  152. <view class="sanbox1">
  153. <view class="text1-2">{{newlisttabinfo4.count}}人</view>
  154. <view class="text1-1">顾问人数</view>
  155. </view>
  156. <view class="sanbox1">
  157. <view class="text1-2">{{newlisttabinfo4.avg}}</view>
  158. <view class="text1-1">人均违禁次数</view>
  159. </view>
  160. </view>
  161. <view class="jindu" style="margin-top: 20rpx;min-height: 300rpx">
  162. <view v-if="newlisttabinfo4.result.length" class="jindu-box"
  163. v-for="(item,index) in newlisttabinfo4.result" :key="index">
  164. <view class="jindu-boxche">
  165. <view class="jindu-name u-flex" style='width: 170rpx' v-if="item.name">
  166. <image v-if="index==0" class="sort-img" src="/static/images/top1.png" mode="" />
  167. <image v-if="index==1" class="sort-img" src="/static/images/top2.png" mode="" />
  168. <image v-if="index==2" class="sort-img" src="/static/images/top3.png" mode="" />
  169. <view class="sort-number" v-if="index>2">{{index+1}}</view>
  170. {{item.name.substring(0,4)}}
  171. </view>
  172. <view class="progress-cus">
  173. <view class="color1" v-if="index==0" :style="'width:'+ item.zxl||0 + '%'"></view>
  174. <view class="color2" v-if="index==1" :style="'width:'+ getPercent(item.zxl,4)+ '%'"></view>
  175. <view class="color3" v-if="index==2" :style="'width:'+ getPercent(item.zxl,4) + '%'"></view>
  176. <view class="color4" v-if="index>2" :style="'width:'+ getPercent(item.zxl,4)+ '%'"></view>
  177. </view>
  178. <view class="jindu-zxl">{{item.zxl==null?0:item.zxl}}次</view>
  179. </view>
  180. </view>
  181. <view v-if="newlisttabinfo4.result.length==0" style="width: 100%;text-align: center;margin-top: 60rpx;">
  182. 暂无数据
  183. </view>
  184. </view>
  185. </view>
  186. <view class="single">
  187. <view class="title">
  188. <view class="title1" style="flex: 1;">接待未标顾问排名(TOP10)</view>
  189. </view>
  190. <view class="hejisan">
  191. <view class="sanbox1">
  192. <view class="text1-2">{{newlisttabinfo5.total||0}}</view>
  193. <view class="text1-1">合计</view>
  194. </view>
  195. <view class="sanbox1">
  196. <view class="text1-2">{{newlisttabinfo5.count||0}}人</view>
  197. <view class="text1-1">顾问</view>
  198. </view>
  199. <view class="sanbox1">
  200. <view class="text1-2">{{newlisttabinfo5.avg||0}}</view>
  201. <view class="text1-1">均值</view>
  202. </view>
  203. </view>
  204. <view class="jindu" style="margin-top: 20rpx;min-height: 300rpx">
  205. <view v-if="newlisttabinfo5.result.length!=0" class="jindu-box"
  206. v-for="(item,index) in newlisttabinfo5.result" :key="index">
  207. <view class="jindu-boxche">
  208. <view class="jindu-name u-flex" style='width: 170rpx' v-if="item.name">
  209. <image v-if="index==0" class="sort-img" src="/static/images/top1.png" mode="" />
  210. <image v-if="index==1" class="sort-img" src="/static/images/top2.png" mode="" />
  211. <image v-if="index==2" class="sort-img" src="/static/images/top3.png" mode="" />
  212. <view class="sort-number" v-if="index>2">{{index+1}}</view>
  213. {{item.name.substring(0,4)}}
  214. </view>
  215. <view class="progress-cus">
  216. <view class="color1" v-if="index==0" :style="'width:'+ item.zxl||0 + '%'"></view>
  217. <view class="color2" v-if="index==1" :style="'width:'+ getPercent(item.zxl,5)+ '%'"></view>
  218. <view class="color3" v-if="index==2" :style="'width:'+ getPercent(item.zxl,5) + '%'"></view>
  219. <view class="color4" v-if="index>2" :style="'width:'+ getPercent(item.zxl,5)+ '%'"></view>
  220. </view>
  221. <view class="jindu-zxl">{{item.zxl==null?0:item.zxl}}次</view>
  222. </view>
  223. </view>
  224. <view v-if="newlisttabinfo5.result.length==0" style="width: 100%;text-align: center;margin-top: 60rpx;">
  225. 暂无数据
  226. </view>
  227. </view>
  228. </view>
  229. <u-calendar v-model="totalTimeShow" mode="range" @change="totalTimeChange"></u-calendar>
  230. <!-- 加载组件 -->
  231. <u-loadings v-model="LOADING"></u-loadings>
  232. <!-- 更多筛选 -->
  233. <u-popup v-model="screenShow" mode="bottom" height="368">
  234. <view class="screen">
  235. <view class="boxtittab">
  236. <view class="tabbox">
  237. <view :class="{ activecllasscet: activeTotal == 4 }" @click="tabtimetap(4, '近七天')">近七天</view>
  238. </view>
  239. <view class="tabbox">
  240. <view :class="{ activecllasscet: activeTotal == 5 }" @click="tabtimetap(5, '近15天')">近15天</view>
  241. </view>
  242. <view class="tabbox">
  243. <view :class="{ activecllasscet: activeTotal == 6 }" @click="tabtimetap(6, '近30天')">近30天</view>
  244. </view>
  245. <view class="tabbox">
  246. <view :class="{ activecllasscet: activeTotal == 3 }" @click="tabtimetap(3, '自定义')">自定义</view>
  247. </view>
  248. </view>
  249. </view>
  250. </u-popup>
  251. </view>
  252. </template>
  253. <script>
  254. var app = getApp();
  255. var util = require("../../../utils/util.js");
  256. var config = require("../../../config");
  257. export default {
  258. data() {
  259. return {
  260. activeTotal: 4,
  261. totalTimeShow: false,
  262. // 项目id
  263. houseId: '',
  264. lastEndDate: '',
  265. lastStartDate: '',
  266. newlisttabinfo1: {
  267. avg: '',
  268. count: '',
  269. total: '',
  270. result: [],
  271. },
  272. newlisttabinfo2: {
  273. avg: '',
  274. count: '',
  275. total: '',
  276. result: [],
  277. },
  278. newlisttabinfo3: {
  279. avg: '',
  280. count: '',
  281. total: '',
  282. result: [],
  283. },
  284. newlisttabinfo4: {
  285. avg: '',
  286. count: '',
  287. total: '',
  288. result: [],
  289. },
  290. newlisttabinfo5: {
  291. avg: '',
  292. count: '',
  293. total: '',
  294. result: [],
  295. },
  296. screenShow: false, // 时间筛选弹窗
  297. showTimeText: '近一周', // 展示文字
  298. showBeText: '全部业务', //
  299. templateList: [], // 销讲业务
  300. showTemplate: false, // 展示选择销讲业务弹窗
  301. marketingBusiness: '', // 选择的业务id
  302. };
  303. },
  304. onLoad() {
  305. this.LOADING = true
  306. // 获取项目id
  307. this.houseId = uni.getStorageSync('buildingID').id;
  308. this.init()
  309. this.getMarketingBusiness()
  310. },
  311. computed: {
  312. },
  313. onPullDownRefresh() {
  314. this.init()
  315. setTimeout(function() {
  316. uni.stopPullDownRefresh();
  317. }, 1000);
  318. },
  319. methods: { // 销讲业务方法
  320. templateCancel() {
  321. this.showTemplate = false;
  322. },
  323. // 确认选择销讲业务
  324. templateConfirm(e) {
  325. this.showTemplate = false;
  326. this.marketingBusiness = e[0].value
  327. this.showBeText = e[0].label
  328. this.init()
  329. },
  330. // 获取销讲业务
  331. getMarketingBusiness() {
  332. this.$u.get('/customer/marketingBusiness', {
  333. houseId: uni.getStorageSync('buildingID').id,
  334. }).then(res => {
  335. this.templateList = res
  336. this.templateList.unshift({
  337. templateName: '全部业务',
  338. id: ''
  339. })
  340. })
  341. },
  342. getPercent(num, type) {
  343. if (this.newlisttabinfo1.result && this.newlisttabinfo1.result.length && type == 1) {
  344. let index0 = this.newlisttabinfo1.result[0]
  345. let percent = num / (index0.zxl == 0 ? 1 : index0.zxl) * 100
  346. return percent.toFixed(2)
  347. } else if (this.newlisttabinfo2.result && this.newlisttabinfo2.result.length && type == 2) {
  348. let index0 = this.newlisttabinfo2.result[0]
  349. let percent = num / (index0.zxl == 0 ? 1 : index0.zxl) * 100
  350. return percent.toFixed(2)
  351. } else if (this.newlisttabinfo4.result && this.newlisttabinfo4.result.length && type == 4) {
  352. let index0 = this.newlisttabinfo4.result[0]
  353. let percent = num / (index0.zxl == 0 ? 1 : index0.zxl) * 100
  354. return percent.toFixed(2)
  355. } else if (this.newlisttabinfo5.result && this.newlisttabinfo5.result.length && type == 5) {
  356. let index0 = this.newlisttabinfo5.result[0]
  357. let percent = num / (index0.zxl == 0 ? 1 : index0.zxl) * 100
  358. return percent.toFixed(2)
  359. } else {
  360. return 0
  361. }
  362. },
  363. getPercent1(num) {
  364. return num || 0
  365. },
  366. init() {
  367. this.newlisttabinfo1 = {
  368. avg: '',
  369. count: '',
  370. total: '',
  371. result: [],
  372. },
  373. this.newlisttabinfo2 = {
  374. avg: '',
  375. count: '',
  376. total: '',
  377. result: [],
  378. },
  379. this.newlisttabinfo3 = {
  380. avg: '',
  381. count: '',
  382. total: '',
  383. result: [],
  384. },
  385. this.newlisttabinfo4 = {
  386. avg: '',
  387. count: '',
  388. total: '',
  389. result: [],
  390. }
  391. this.newlisttabinfo2 = {
  392. avg: '',
  393. count: '',
  394. total: '',
  395. result: [],
  396. }
  397. this.newlisttabinfo3 = {
  398. avg: '',
  399. count: '',
  400. total: '',
  401. result: [],
  402. }
  403. this.newlisttabinfo4 = {
  404. avg: '',
  405. count: '',
  406. total: '',
  407. result: [],
  408. }
  409. this.newlisttabinfo5 = {
  410. avg: '',
  411. count: '',
  412. total: '',
  413. result: [],
  414. }
  415. var activeTotal = 0;
  416. if (this.activeTotal == 3) {
  417. activeTotal = null;
  418. } else {
  419. activeTotal = this.activeTotal;
  420. this.lastEndDate = '';
  421. this.lastStartDate = '';
  422. }
  423. var promse = {
  424. timeType: activeTotal,
  425. lastStartDate: this.lastStartDate,
  426. lastEndDate: this.lastEndDate,
  427. houseId: this.houseId
  428. }
  429. this.staffStatisticsReceptionTop10(promse)
  430. this.staffStatisticsRecordingTimTop10(promse)
  431. this.staffStatisticsExecutionRateTop10(promse)
  432. this.staffStatisticsProhibitedTop10(promse)
  433. this.staffStatisticsUnlabeledTop10(promse)
  434. },
  435. //接待量排名
  436. staffStatisticsReceptionTop10(promse) {
  437. this.$u.post('/cusLvStatistics/staffStatisticsReceptionTop10', promse).then(res => {
  438. res.result.forEach(item => {
  439. item.zxl = item.data
  440. item.name = item.accountName
  441. })
  442. res.result = this.dealData(res.result)
  443. this.newlisttabinfo1 = res;
  444. })
  445. },
  446. //录音时长
  447. staffStatisticsRecordingTimTop10(promse) {
  448. this.$u.post('/cusLvStatistics/staffStatisticsRecordingTimTop10', promse).then(res => {
  449. res.result.forEach(item => {
  450. item.zxl = item.data
  451. item.name = item.accountName
  452. })
  453. res.result = this.dealData(res.result)
  454. this.newlisttabinfo2 = res;
  455. })
  456. },
  457. //销讲
  458. staffStatisticsExecutionRateTop10(promse) {
  459. this.$u.post('/cusLvStatistics/staffStatisticsExecutionRateTop10', promse).then(res => {
  460. res.result.forEach(item => {
  461. item.zxl = item.data;
  462. item.zxl1 = item.data;
  463. item.name = item.accountName
  464. })
  465. this.newlisttabinfo3 = res;
  466. })
  467. },
  468. //j禁忌
  469. staffStatisticsProhibitedTop10(promse) {
  470. this.$u.post('/cusLvStatistics/staffStatisticsProhibitedTop10', promse).then(res => {
  471. res.result.forEach(item => {
  472. item.zxl = item.data
  473. item.name = item.accountName
  474. })
  475. res.result = this.dealData(res.result)
  476. this.newlisttabinfo4 = res;
  477. })
  478. },
  479. //未标记客户数量排名,
  480. staffStatisticsUnlabeledTop10(promse) {
  481. this.$u.post('/cusLvStatistics/staffStatisticsUnlabeledTop', promse).then(res => {
  482. this.LOADING = false
  483. res.result.forEach(item => {
  484. item.zxl = item.tagCustomer
  485. item.name = item.accountName
  486. })
  487. res.result = this.dealData(res.result)
  488. this.newlisttabinfo5 = res;
  489. }).catch(e => {
  490. this.LOADING = false
  491. })
  492. },
  493. //自定义时间
  494. totalTimeChange(e) {
  495. this.screenShow = false
  496. this.showTimeText = `${e.startDate}-${e.endDate}`
  497. this.activeTotal = 3;
  498. this.lastEndDate = e.endDate
  499. this.lastStartDate = e.startDate
  500. this.init()
  501. },
  502. //时间切换
  503. tabtimetap(index, text) {
  504. if (index == 3) {
  505. this.totalTimeShow = true;
  506. this.screenShow = false
  507. } else {
  508. this.screenShow = false
  509. this.showTimeText = text
  510. this.activeTotal = index;
  511. this.lastEndDate = '';
  512. this.lastStartDate = '';
  513. this.init()
  514. }
  515. },
  516. // 定义一个公共方法对数据进行处理
  517. dealData(arr) {
  518. // 获取最大值
  519. let num = Math.max.apply(Math, arr.map(function(o) {
  520. return o.zxl
  521. })) //结果:3
  522. arr.map(item => {
  523. item.zxl1 = Math.floor(item.zxl / num * 100)
  524. })
  525. return arr
  526. },
  527. }
  528. };
  529. </script>
  530. <style lang="scss" scoped>
  531. .boxtittabs {
  532. width: 100%;
  533. height: 92rpx;
  534. background: #FFFFFF;
  535. display: flex;
  536. align-items: center;
  537. .items {
  538. padding: 0 24rpx;
  539. width: 50%;
  540. height: 100%;
  541. display: flex;
  542. align-items: center;
  543. justify-content: center;
  544. overflow: hidden;
  545. white-space: nowrap;
  546. text-overflow: ellipsis;
  547. }
  548. }
  549. .screen {
  550. width: 100%;
  551. .boxtittab {
  552. width: 100%;
  553. flex-direction: column;
  554. border: none;
  555. .tabbox {
  556. width: 100%;
  557. }
  558. }
  559. }
  560. .box {
  561. width: 100%;
  562. height: 100%;
  563. background: #FAFAFA;
  564. }
  565. .single {
  566. padding-bottom: 20rpx;
  567. margin-top: 20rpx;
  568. }
  569. .boxtittab {
  570. position: sticky;
  571. top: var(--window-top);
  572. z-index: 999;
  573. }
  574. .hejisan {
  575. width: 92%;
  576. margin: 0 auto;
  577. display: flex;
  578. padding-top: 20rpx;
  579. padding-bottom: 20rpx;
  580. .sanbox1 {
  581. flex: 1;
  582. display: flex;
  583. flex-direction: column;
  584. justify-content: center;
  585. align-items: center;
  586. position: relative;
  587. &::after {
  588. position: absolute;
  589. content: '';
  590. width: 1rpx;
  591. height: 86rpx;
  592. background: #E0E0E0;
  593. right: 0;
  594. top: 0;
  595. }
  596. &:last-child::after {
  597. position: absolute;
  598. content: '';
  599. width: 1rpx;
  600. height: 86rpx;
  601. right: 0;
  602. top: 0;
  603. background: #fff;
  604. }
  605. }
  606. .text1-1 {
  607. font-size: 24rpx;
  608. font-family: PingFangSC-Regular, PingFang SC;
  609. font-weight: 400;
  610. color: #333333;
  611. line-height: 32rpx;
  612. }
  613. .text1-2 {
  614. color: #333333;
  615. font-size: 40rpx;
  616. line-height: 46rpx;
  617. font-family: PingFangSC-Regular, PingFang SC;
  618. margin-bottom: 10rpx;
  619. }
  620. }
  621. .jindu-name {
  622. width: 180rpx;
  623. margin-left: 15rpx;
  624. }
  625. .sort-img {
  626. width: 44rpx;
  627. height: 44rpx;
  628. margin-right: 15rpx;
  629. }
  630. .sort-number {
  631. width: 40rpx;
  632. height: 40rpx;
  633. background: #E5F0FF;
  634. border-radius: 50%;
  635. font-size: 24rpx;
  636. font-family: PingFangSC-Regular, PingFang SC;
  637. font-weight: 400;
  638. color: #333333;
  639. text-align: center;
  640. line-height: 40rpx;
  641. margin-right: 15rpx;
  642. }
  643. </style>