litian
2024-04-24 300c9e790fd04de30c982a05f8d7cd157f442b45
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import './base.css';
 
#app {
  width: 100%;
  height: 100%;
}
 
page {
  display: block;
}
 
.imgBox {
  position: relative;
}
 
.imgBox img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
ul {
  list-style: none;
  padding:0;
}
.hover{
  cursor: pointer;
}
 
/* 画笔工具 */
.popinnerBox .brush,.popinnerBox .write{
  display: flex;
  padding: 10px 0;
}
.popinnerBox  .thickness {
  border-right: 1px solid #f3f3f3;
  width: 40px;
  padding-right:10px;
  text-align: center;
  
}
.popinnerBox .thickness .small {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cccccc;
  margin:0 auto;
}
.popinnerBox .thickness .middle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cccccc;
  margin:0 auto;
  margin-top:15px;
}
.popinnerBox .thickness .large {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cccccc;
  margin:0 auto;
  margin-top:15px;
}
.popinnerBox .thickness .active {
  background: #0093ff;
}
.popinnerBox .lineStyle .lineTypeBox{
  display: flex;
  justify-content: space-between;
  padding:0 10px;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem{
  flex:1;
  padding:5px 20px;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  margin:0 5px;
  position: relative;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem .solid{
  border: 1px solid #707070;
  margin: 7px auto;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem .dashed{
  border: 1px dashed #707070;
  margin: 7px auto;
}
.popinnerBox .lineStyle .lineTypeBox .lineTypeActive {
  border: 1px solid #0093ff;
}
.popinnerBox .lineStyle .lineTypeBox .lineTypeActive .activeIcon{
  width:12px;
  height:11px;
  background:#0093ff;
  border-radius: 5px 0 5px 0;
  position: absolute;
  right:0;
  bottom: 0;
  display: flex;
  justify-content:center;
  align-items: center;
}
 
 
.popinnerBox .colorSelectBox {
  padding: 0 10px;
  width: 190px;
  display: flex;
  background: #ffffff;
  border-radius: 5px;
}
.popinnerBox .colorSelectBox .flex1 {
  flex: 1;
  
}
.popinnerBox .colorSelectBox .scribeItem {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin: 15px auto 0 auto;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.popinnerBox .cleanup,.popinnerBox .label{
  display: flex;
  justify-content: space-between;
  padding:10px 0
}
.popinnerBox .cleanup .cleanupItem,.popinnerBox .label .labelItem{
  flex:1;
  text-align: center;
}