13693261870
2023-06-21 cdf12fc9e88b1af69f5c85165eb9fef4e23bf57a
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
53
54
55
56
57
58
59
60
<template>
  <div class="box">
    <div class="image"></div>
    <div class="labelOne">热点</div>
    <div class="labelTwo">疫情防控 北京疫情防控相关描述 01-15 </div>
  </div>
</template>
 
<script>
export default {
  //import引入的组件需要注入到对象中才能使用
  components: {},
  data() {
    //这里存放数据
    return {}
  },
  //方法集合
  methods: {},
  created() {},
}
</script>
<style lang="less" scoped>
//@import url(); 引入公共css类
.box {
  // display: flex;
  width: 100%;
  height: 100%;
  float: left;
  padding: 16px;
  color: white;
  .image {
    height: 28px;
    width: 28px;
    background: url('../../../assets/img/5.png') no-repeat center;
    background-size: 100% 100%;
    float: left;
  }
  .labelOne {
    float: left;
font-family: SourceHanSansCN;
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 27px;
    /* identical to box height, or 100% */
    margin-left: 10px;
    color: #ffa014;
  }
  .labelTwo{
    float: left;
  font-family: SourceHanSansCN;
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 27px;
    /* identical to box height, or 100% */
    margin-left: 10px;
  }
}
</style>