king
2023-10-22 110b028e0cb54d9f50d57d1e1efd9d9bf9a8388e
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
.wx-note {
  display: flex;
  .note-wrap {
    flex: 1;
 
    .note {
      border: 1px solid #d9d9d9;
      width: 270px;
      margin: 0 auto;
      border-radius: 4px;
      height: 100%;
 
      >p {
        text-align: center;
        border-bottom: 1px solid #d9d9d9;
        padding: 7px;
        margin-bottom: 0px;
      }
      >div {
        padding: 15px;
        p {
          margin-bottom: 0px;
        }
      }
    }
  }
}