1
李凌
2025-09-06 b7eb749eb71ae802f9868e3b099aa362e23d7cc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
  <div class="text-center">
    <div class="pt-80 pb-50 font-28">
      <slot name="desc"></slot>
    </div>
    <div class="flex justify-between px-72 ">
      <div class="relative w-320 h-80 box-border py-16 border-radius">
        好评
        <div class="circle flex justify-center items-center">
          <img class="w-32 h-32" src="@/assets/image/c2c/el_thumbs-up.png" alt="">
        </div>
      </div>
      <div class="relative w-320 h-80 box-border py-16 border-radius">
        差评
        <div class="circle flex justify-center items-center">
          <img class="w-32 h-32" src="@/assets/image/c2c/el_thumbs-up(2).png" alt="">
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "Evaluation"
}
</script>
 
<style lang="scss" scoped>
@import "@/assets/css/copy2.scss";
.border-radius {
  border-radius: 60px;
  background: #EAEBEE;
}
 
.circle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
}
</style>