11
jhzh
2024-08-01 69518ee75abbbd000c913e4b8bc045dd5c7dd3ed
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
46
47
48
49
50
51
52
<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>
.border-radius {
  border-radius: 60px;
  background: #eaebee;
}
 
.circle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
}
</style>