jiangping
2024-07-26 2faa6546a9f9ddb29f81cbc9770fc25b95703695
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
.list{
  padding: 12rpx 32rpx;
  .line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100rpx;
    border-bottom: 2rpx solid #E5E5E5;
    .name{
      font-size: 30rpx;
    }
    .icon{
      width: 40rpx;
      height: 40rpx;
    }
  }
}
.logout{
  width: 670rpx;
  height: 88rpx;
  line-height: 86rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rpx;
  border: 1rpx solid #B08771;
  font-weight: 500;
  font-size: 32rpx;
  color: #B08771;
  display: flex;
  margin-top: 100rpx;
  .icon{
    width: 40rpx;
    height: 40rpx;
  }
}
.modal{
  width: 610rpx;
  height: 450rpx;
  background: #FFFFFF;
  border-radius: 8rpx;
  padding: 60rpx 40rpx 30rpx;
  .title{
    font-weight: 500;
    font-size: 36rpx;
    color: #222222;
    margin-bottom: 30rpx;
  }
  .text{
    color: #555555;
    margin-bottom: 30rpx;
    padding-bottom: 40rpx;
    border-bottom: 2rpx solid #E5E5E5;
  }
  .btns{
    display: flex;
    justify-content: space-between;
    .btn{
      width: 254rpx;
      height: 88rpx;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #F7F7F7;
      border-radius: 8rpx;
      font-weight: 500;
      font-size: 30rpx;
      color: #555555;
    }
    .cancel{
      color: #fff;
      background-color: var(--themeColor);
    }
  }
}