VVT789
2025-04-18 4a13279fe13ad1cf6736670f6d1c5c61c8cba59b
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<template>
  <div class="mycard">
    <div class="mycard-title">
      <div class="name">{{ title }}</div>
    </div>
    <slot></slot>
  </div>
</template>
 
<script setup>
defineProps(["title"])
</script>
 
<style lang="scss" scoped>
.themeDark {
  .mycard {
    margin: 0 13px;
    margin-top: 10px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #22408c;
    padding-bottom: 10px;
 
    .mycard-title {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 50px;
      border-radius: 7px 7px 0 0;
      padding: 20px;
      background-color: #22408c;
      
      .name {
        font-family: OPPOSans, OPPOSans;
        font-weight: bold;
        font-size: 18px;
        color: #fff;
        position: relative;
        padding-left: 12px;
        
        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 5px;
          height: 18px;
          background-color: #3883FA;
          border-radius: 2px;
        }
      }
    }
  }
}
 
.themeLight {
  .mycard {
    margin: 0 13px;
    margin-top: 10px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #ebebeb;
    padding-bottom: 10px;
    background-color: #fff;
    
    .mycard-title {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 50px;
      border-radius: 7px 7px 0 0;
      padding: 20px;
      background-color: #e7eefd;
      
      .name {
        font-family: OPPOSans, OPPOSans;
        font-weight: bold;
        font-size: 18px;
        color: #2d2e31;
        position: relative;
        padding-left: 12px;
        
        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 5px;
          height: 18px;
          background-color: #3883FA;
          border-radius: 2px;
        }
      }
    }
  }
}
</style>