schangxiang@126.com
2025-05-20 e92383f760f42050f55aa032c649814deb3b7752
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
.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(93deg, #5a84ff 0%, #c5d4fe 100%);
  border-radius: 12px 12px 12px 12px;
}
 
.backWrap {
  display: flex;
  width: 100%;
  height: 82px;
  // background: linear-gradient(93deg, #5a84ff 0%, #c5d4fe 100%);
  border-radius: 12px 12px 12px 12px;
  filter: blur(0px);
}
.header {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 20px;
  .title {
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    color: #ffffff;
    margin-right: 20px;
  }
  .innerInput {
    width: 150px;
    // height: 26px;
    // background: #ffffff;
    color: #fff;
    border-radius: 14px 14px 14px 14px;
 
    border: 0;
    overflow: hidden;
    :global(.cs-input__wrapper) {
      box-shadow: none !important;
      background: rgba(255, 255, 255, 0.48) !important;
      ::-webkit-input-placeholder {
        color: #fff;
      }
      .cs-input__inner {
        color: #fff;
      }
    }
 
    :global(.cs-input__inner) {
      color: #fff;
    }
  }
}
.content {
  // position: relative;
  padding:20px 10px;
  // z-index: 2;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
}