quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
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
.diy-container {
    display: flex;
  }
 
  .diy-container .diy-menu {
    padding: 10px;
    width: 120px;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    height: calc(100vh - 150px);
    overflow-y: auto;
  }
 
  .diy-menu .min-group .hd {
    position: relative;
    height: 30px;
    line-height: 30px;
    color: #CCCCCC;
    font-size: 14px;
  }
  .diy-menu .min-group .hd::after{
    position: absolute;
    content: '';
    border: 4px solid transparent;
    border-top-color: #CCCCCC;
    right: 0;
    top: 12px;
  }
 
  .diy-menu .min-group .bd {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; */
  }
 
  .diy-menu .min-group .bd .item {
    position: relative;
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin-bottom: 4px;
    border-top: 1px solid #CCCCCC;
    cursor: pointer;
  }
  .diy-menu .min-group .bd .item:hover{ color: #3a8ee6;}
  .diy-menu .min-group .bd .item:hover::after{
      position: absolute;
      top: 7px;
      right: 0;
      display: block;
      content: '+';
      width: 16px;
      height: 16px;
      line-height: 16px;
      border-radius: 50%;
      text-align: center;
      border: 1px solid #3a8ee6;
 
  }
 
  .diy-menu .min-group .p-icon {
    display: none;
    padding-top: 6px;
  }
 
  .diy-menu .min-group .p-text {
    line-height: 20px;
  }
 
  .diy-container .diy-phone {
    width: 375px;
    margin: 0 30px;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
    overflow: hidden;
  }
 
  .diy-container .diy-info {
    flex: 1;
    padding: 10px;
    border: 1px solid #CCCCCC;
    height: calc(100vh - 150px);
    overflow-y: auto;
  }