@zyzgroup/core-web 0.0.30 → 0.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,63 @@
1
+ @charset "UTF-8";
2
+ @import url(./animate.css);
3
+
4
+ :root {
5
+ --animation-name: bounce;
6
+ --animation-duration: 300ms;
7
+ --animation-timing-function: cubic-bezier(0.1, 0.25, 1, 0.25);
8
+ --animation-delay: 0;
9
+ --animation-iteration-count: 1;
10
+ --animation-fill-mode: forwards;
11
+ --animation-direction: normal;
12
+ --animation-play-state: running;
13
+ }
14
+ .animation {
15
+ animation: var(--animation-name) var(--animation-duration)
16
+ var(--animation-timing-function) var(--animation-delay)
17
+ var(--animation-iteration-count) var(--animation-fill-mode)
18
+ var(--animation-direction) var(--animation-play-state);
19
+ }
20
+ .animation.infinite {
21
+ --animation-iteration-count: infinite;
22
+ animation-iteration-count: var(--animation-iteration-count);
23
+ }
24
+ .animation.repeat-1 {
25
+ --animation-iteration-count: 1;
26
+ animation-iteration-count: var(--animation-iteration-count);
27
+ }
28
+ .animation.repeat-2 {
29
+ --animation-iteration-count: 2;
30
+ animation-iteration-count: var(--animation-iteration-count);
31
+ }
32
+ .animation.repeat-3 {
33
+ --animation-iteration-count: 3;
34
+ animation-iteration-count: var(--animation-iteration-count);
35
+ }
36
+ .animation.delay-1s {
37
+ --animation-delay: 1s;
38
+ animation-delay: var(--animation-delay);
39
+ }
40
+ .animation.delay-2s {
41
+ --animation-delay: 2s;
42
+ animation-delay: var(--animation-delay);
43
+ }
44
+ .animation.delay-3s {
45
+ --animation-delay: 3s;
46
+ animation-delay: var(--animation-delay);
47
+ }
48
+ .animation.delay-4s {
49
+ --animation-delay: 4s;
50
+ animation-delay: var(--animation-delay);
51
+ }
52
+ .animation.delay-5s {
53
+ --animation-delay: 5s;
54
+ animation-delay: var(--animation-delay);
55
+ }
56
+ .animation.faster {
57
+ --animation-duration: calc(var(--animation-duration) / 2);
58
+ animation-duration: var(--animation-duration);
59
+ }
60
+ .animation.slower {
61
+ --animation-duration: calc(var(--animation-duration) * 2);
62
+ animation-duration: var(--animation-duration);
63
+ }
@@ -0,0 +1,336 @@
1
+ @charset "UTF-8";
2
+
3
+ :root {
4
+ --min-font-size: 16;
5
+ --max-font-size: 24;
6
+ --viewport-min: 375;
7
+ --viewport-max: 768;
8
+ --font-size: calc(
9
+ var(--min-font-size) * 1px + (var(--max-font-size) - var(--min-font-size)) *
10
+ (100vw /* or 100cqw */ - var(--viewport-min) * 1px) /
11
+ (var(--viewport-max) - var(--viewport-min))
12
+ );
13
+ }
14
+
15
+ *,
16
+ *::before,
17
+ *::after {
18
+ box-sizing: border-box;
19
+ margin: 0;
20
+ padding: 0;
21
+ /* 去掉点击时的蓝色外边框和灰色半透明背景 */
22
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
23
+ }
24
+ *[hide] {
25
+ display: none;
26
+ }
27
+ *[disabled] {
28
+ opacity: 0.5;
29
+ pointer-events: none;
30
+ }
31
+ /* Anything that has been anchored to should have extra scroll margin */
32
+ :target {
33
+ scroll-margin-block: 5ex;
34
+ }
35
+
36
+ html {
37
+ font-family: system-ui, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
38
+ "PingFang SC", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
39
+ "Helvetica Neue", sans-serif;
40
+
41
+ font-size: 16px;
42
+ line-height: 1.3;
43
+
44
+ text-rendering: optimizeLegibility;
45
+ -webkit-font-smoothing: antialiased;
46
+ -moz-osx-font-smoothing: grayscale;
47
+ /* 字体不会随着网页放大而变大, 自从chrome 27之后,就取消了对这个属性的支持。同时,该属性只对英文、数字生效,对中文不生效 */
48
+ text-size-adjust: none;
49
+
50
+ background-color: #ffffff;
51
+ color: #333333;
52
+ }
53
+
54
+ body {
55
+ font-size: clamp(
56
+ var(--min-font-size) * 1px,
57
+ var(--font-size),
58
+ var(--max-font-size) * 1px
59
+ );
60
+
61
+ position: relative;
62
+ min-width: 100%;
63
+ min-width: 100vw;
64
+ min-height: 100%;
65
+ min-height: 100vh;
66
+
67
+ /*局部滚动使用弹性滚动效果*/
68
+ -webkit-overflow-scrolling: touch;
69
+ /* constant 函数兼容 iOS 11.2 以下*/
70
+ padding-top: constant(safe-area-inset-top);
71
+ padding-bottom: constant(safe-area-inset-bottom);
72
+ padding-left: constant(safe-area-inset-left);
73
+ padding-right: constant(safe-area-inset-right);
74
+ /* env 函数兼容 iOS 11.2 */
75
+ padding-top: env(safe-area-inset-top);
76
+ padding-bottom: env(safe-area-inset-bottom);
77
+ padding-left: env(safe-area-inset-left);
78
+ padding-right: env(safe-area-inset-right);
79
+ }
80
+
81
+ a,
82
+ a:link,
83
+ a:visited,
84
+ a:hover,
85
+ a:active {
86
+ /* 禁止长按链接与图片弹出菜单 */
87
+ -webkit-touch-callout: none;
88
+ text-decoration: none;
89
+ }
90
+ a:focus {
91
+ outline: none;
92
+ }
93
+
94
+ img,
95
+ picture {
96
+ display: block;
97
+ max-width: 100%;
98
+ border: 0 none;
99
+ object-fit: cover;
100
+ background-color: #808080;
101
+ /* 禁止长按链接与图片弹出菜单 */
102
+ -webkit-touch-callout: none;
103
+ }
104
+
105
+ pre {
106
+ max-width: 100%;
107
+ overflow: hidden;
108
+ }
109
+
110
+ table {
111
+ border-collapse: collapse;
112
+ border-spacing: 0;
113
+ }
114
+
115
+ ul,
116
+ ol {
117
+ list-style: none;
118
+ }
119
+
120
+ input::-ms-clear {
121
+ display: none !important;
122
+ }
123
+ input,
124
+ button,
125
+ textarea,
126
+ select {
127
+ outline: none;
128
+ font: inherit;
129
+ }
130
+ textarea {
131
+ /* increase the height of the textarea automatically based on the amount of text the user enters */
132
+ form-sizing: normal;
133
+ }
134
+
135
+ /* Balance text wrapping on headings */
136
+ h1,
137
+ h2,
138
+ h3,
139
+ h4 {
140
+ text-wrap: balance;
141
+ }
142
+
143
+ /*
144
+ 清除浮动
145
+ 浮动特性
146
+ 1. 只会影响后面的元素
147
+ 2. 文本不会被浮动元素覆盖
148
+ 3. 具备内联盒子特性:宽度由内容局定
149
+ 4. 具备块级盒子特性:支持所有样式
150
+ 5. 浮动放不下,会自动换行
151
+ */
152
+ .clearfix::after {
153
+ content: "";
154
+ display: block;
155
+ clear: both;
156
+ }
157
+
158
+ .truncate {
159
+ overflow: hidden;
160
+ text-overflow: ellipsis;
161
+ white-space: nowrap;
162
+ word-wrap: normal;
163
+ word-break: break-all;
164
+ }
165
+ /* 基于高度截断 */
166
+ .truncate-twoline {
167
+ line-height: 20px;
168
+ height: 40px;
169
+ position: relative;
170
+ overflow: hidden;
171
+ word-wrap: normal;
172
+ word-break: break-all;
173
+ }
174
+ .truncate-twoline::after {
175
+ content: "...";
176
+ position: absolute;
177
+ bottom: 0;
178
+ right: 0;
179
+ padding: 0 20px 0 10px;
180
+ background: linear-gradient(to right, transparent, #fff 55%);
181
+ }
182
+ /* 基于行数截断 */
183
+ .text-ellipsis-twoline {
184
+ overflow: hidden;
185
+ text-overflow: ellipsis;
186
+ display: -webkit-box;
187
+ -webkit-line-clamp: 2;
188
+ -webkit-box-orient: vertical;
189
+ word-wrap: normal;
190
+ word-break: break-all;
191
+ }
192
+
193
+ .text-hide {
194
+ font: 0/0;
195
+ color: transparent;
196
+ text-indent: -9999px;
197
+ }
198
+
199
+ .font-10 {
200
+ font-size: 12px;
201
+ display: inline-block;
202
+ /* 触发重排 */
203
+ /* zoom: 0.83; */
204
+ -webkit-transform: scale(0.83);
205
+ }
206
+
207
+ .modal-underground-no-scroll-1 {
208
+ overflow: hidden;
209
+ }
210
+ .modal-underground-no-scroll-2 {
211
+ position: fixed;
212
+ /* 计算top */
213
+ }
214
+ .modal-underground-scroll-2 {
215
+ position: static;
216
+ top: auto;
217
+ }
218
+ .modal-underground {
219
+ transition: 0.6s filter;
220
+ filter: blur(5px);
221
+ }
222
+ .modal-mask {
223
+ position: absolute;
224
+ top: 0;
225
+ left: 0;
226
+ width: 100%;
227
+ height: 100%;
228
+ background: rgba(0, 0, 0, 0.6);
229
+ z-index: 10000;
230
+ }
231
+ .modal-content {
232
+ /* avoid scroll chaining */
233
+ overscroll-behavior-y: contain;
234
+ /* the scrollbar will only be visible if the content is long */
235
+ overflow-y: auto;
236
+ scrollbar-gutter: stable;
237
+ }
238
+
239
+ .one-pixel-line {
240
+ display: block;
241
+ position: relative;
242
+ }
243
+ .one-pixel-line::before {
244
+ content: "";
245
+ display: block;
246
+ position: absolute;
247
+ top: 0;
248
+ left: 0;
249
+ width: 100%;
250
+ transform-origin: 0 0;
251
+ border-top: 1px solid #000000;
252
+ }
253
+ /* @media (min-device-pixel-ratio: 2) { */
254
+ @media (min-resolution: 2dppx) {
255
+ .one-pixel-line::before {
256
+ width: 200%;
257
+ transform: scale(0.5) translateZ(0);
258
+ }
259
+ }
260
+ /* @media (min-device-pixel-ratio: 3) { */
261
+ @media (min-resolution: 3dppx) {
262
+ .one-pixel-line::before {
263
+ width: 300%;
264
+ transform: scale(0.333333) translateZ(0);
265
+ }
266
+ }
267
+
268
+ .border-sample {
269
+ border: 5px solid #b4a078;
270
+ outline: 6px solid #b4a078;
271
+ outline-offset: -10px;
272
+ box-shadow: 0 0 0 10px #b4a078;
273
+ box-shadow: 0 0 0 0.3em #e8e2d6, 0 0 0 0.6em #e1d9c9, 0 0 0 1em #d9cfbb,
274
+ 0 0 0 1.3em #d2c6ae, 0 0 0 1.6em #cabca0, 0 0 0 2em #c3b393,
275
+ 0 0 0 2.3em #bba985, 0 0 0 2em #b4a078;
276
+ }
277
+
278
+ @supports (display: grid) {
279
+ }
280
+
281
+ @supports not (display: grid) {
282
+ }
283
+
284
+ /*
285
+ While scrolling in a page, your finger can accidentally do a half-tap which will trigger the hover state of a specific element.
286
+ While the user is scrolling, a hover was triggered. At this point, the user didn't mean to do that at all since there is no hover on mobile.
287
+ The solution for this is to use the hover media query. It's possible to detect if the user's current input tool (trackpad vs mouse) can hover over elements.
288
+ https://developer.mozilla.org/en-US/docs/Web/CSS/@media/hover
289
+ */
290
+ @media (hover: hover) {
291
+ /* .card:hover {
292
+ background-color: gray;
293
+ } */
294
+ }
295
+
296
+ @media (prefers-color-scheme: dark) {
297
+ }
298
+ @media (prefers-color-scheme: light) {
299
+ }
300
+
301
+ /* 设备断点 */
302
+
303
+ @media (max-width: 375px) {
304
+ }
305
+
306
+ @media (max-width: 640px) {
307
+ }
308
+
309
+ /* 移动设备断点 */
310
+ @media (max-width: 768px) {
311
+ }
312
+
313
+ /* 桌面电脑断点 */
314
+ @media (max-width: 1024px) {
315
+ }
316
+
317
+ @media (min-width: 1216px) {
318
+ }
319
+
320
+ @media (max-width: 1280px) {
321
+ }
322
+
323
+ @media (max-width: 1408px) {
324
+ }
325
+
326
+ @media (max-width: 1536px) {
327
+ }
328
+
329
+ @media (max-width: 1792px) {
330
+ }
331
+
332
+ @media (max-width: 2048px) {
333
+ }
334
+
335
+ @media (max-width: 2404px) {
336
+ }
package/dist/flex.css ADDED
@@ -0,0 +1,105 @@
1
+ /*
2
+ If a flex item has a text element or an image that is bigger than the item itself, the browser won’t shrink them. That is the default behavior for flexbox.
3
+ To change that default behavior, we need to set the min-width of the flex item to 0.
4
+ That’s because the min-width default value is auto, the overflow happens.
5
+ The same thing applies to a column flex wrapper, but we will use min-height: 0 instead.
6
+ */
7
+ .flex-overflow {
8
+ overflow-wrap: break-word;
9
+ min-width: 0;
10
+ min-height: 0;
11
+ }
12
+
13
+ /*
14
+ flex布局造成子元素的height值不确定,从而无法设置滚动问题
15
+ - 解决方法
16
+ - 每一个父级元素都必须设置为display: flex
17
+ - 每一个父级元素都必须设置为overflow: auto
18
+ - 自己本身也必须设置为overflow: auto
19
+ */
20
+
21
+ .flex-container {
22
+ display: flex;
23
+ }
24
+
25
+ .flex-container-inline {
26
+ display: inline-flex;
27
+ }
28
+
29
+ /* Flex容器属性 */
30
+
31
+ /* 方向 */
32
+ .flex-direction {
33
+ /* flex-direction: row || column || row-reverse || column-reverse; */
34
+ flex-direction: row;
35
+ }
36
+
37
+ /* 换行 */
38
+ .flex-wrap {
39
+ /* flex-wrap: wrap || nowrap || wrap-reverse; */
40
+ flex-wrap: wrap;
41
+ }
42
+
43
+ .flex-flow {
44
+ /* flex-flow:flex-direction flex-wrap; */
45
+ flex-flow: row wrap;
46
+ }
47
+
48
+ /* Flex项目在Main-Axis上的对齐方式 */
49
+ .justify-content {
50
+ /* justify-content: flex-start || flex-end || center || space-between || space-around || space-evenly; */
51
+ justify-content: flex-start;
52
+ }
53
+
54
+ /* Flex项目在Cross-Axis对齐方式 */
55
+ .align-items {
56
+ /* align-items: flex-start || flex-end || center || stretch || baseline; */
57
+ align-items: stretch;
58
+ }
59
+
60
+ /* align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。 */
61
+ .align-content {
62
+ /* align-content: flex-start | flex-end | center | space-between | space-around | stretch; */
63
+ align-content: stretch;
64
+ }
65
+
66
+ /* Flex项目属性 float, clear and vertical-align have no effect on a flex item. */
67
+
68
+ /* 根据order值重新排序,从低到高 */
69
+ .order {
70
+ /* order:0 || positive number; */
71
+ order: 0;
72
+ }
73
+
74
+ /* flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。 */
75
+ .flex-grow {
76
+ /* flex-grow:0 || positive number; */
77
+ flex-grow: 0;
78
+ }
79
+
80
+ /* flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。 */
81
+ /* 如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。 */
82
+ /* 负值对该属性无效 */
83
+ .flex-shrink {
84
+ /* flex-shrink:0 || positive number; */
85
+ flex-shrink: 1;
86
+ }
87
+
88
+ .flex-basis {
89
+ /* flex-basis:% || em || rem || px; */
90
+ flex-basis: auto;
91
+ }
92
+
93
+ /* flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。 */
94
+ /* 建议优先使用这个属性,而不是单独写三个分离的属性,因为浏览器会推算相关值。 */
95
+ /* 该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto) */
96
+ .flex {
97
+ /* flex:flex-grow flex-shrink flex-basis; */
98
+ flex: 0 1 auto;
99
+ }
100
+
101
+ /* the one specified by align-items */
102
+ .align-self {
103
+ /* align-self: auto | flex-start | flex-end | center | baseline | stretch; */
104
+ align-self: auto;
105
+ }
package/dist/font.css ADDED
@@ -0,0 +1,53 @@
1
+ /**
2
+ https://transfonter.org/
3
+ 选择 Base64 encode
4
+ */
5
+ @font-face {
6
+ font-family: "D-DINExp-Bold-number";
7
+ src: url("data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAATYAA4AAAAACbAAAASAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCQggEEQgKhzCGEwscAAE2AiQDNAQgBYQfBzwbAwjIjtLUsE1S5uUgoDIIN2s2CZaQqoYz2mujNRegAl5x7l7UhKfv79nZ/W+CAMMCDQNNtKgSDz0MMI/sGnEqJ6EQ/F08IrmKVmSsZaU5aQ0sl8oV3eN80gQvFqNalg7O2yV1NPkoAASAVy+xGgHgw6STd/jrnwoCMANiABSCMCMYAAVgmkBOgA6oN3UPgGPAaPKHGgqg6DbwXIJX7beaaexAUbAJ/+cb7L3gkjMFBEAj+qToUDEa8bIZAoDB5BXM/wBlRMPLFbSRXWmSjnQABRFMROml0xseP/gBAN5n6SoAMoMCAB4AJADCgZwA8gIAAAxAQgEACsEkzgY0ajE8b0hRQ3dFmA1JIbzm53Q804tene0jwde5o18Fdl5hj/r4dUKCrx31CrDzKjfWTfo4hu2z3X0zIcHn2KOeAdiMUmxucTcP8+81QjjsPMsd/XKKnizhjn4ekiC2/Cer/4aLBRszGeL6OcKBK6p6iSm8I46leZg93yIJbw72ZTVcHtC+nq7/US8AOy/OY3g/ZiYpvK8X3aWrXhdk9VF3Gt/qiqSJ1jdzhjjbJexRpKzc7u5+9m3sVJazTGd9Ljze/7iU++Nrq4F1r9+3vvrapm/b/0WKR6xtu6NNqlkQawyR6+/PxW1pJ3UfflLvwZsOIudOIkNPSuHSWiSxyBq2GdezPG2vtSm5fQV8TnrP3Xc+HO57CJezgfEhbs1o7c/S2jND5WMKra59WU3pZmuCJMdbTSumEc/knD0w1s0rSt0nFbkdRWGjGwtzsDzKnAedBb53Xjjs3RduuejgRWW4hg2MdBk3mdR9GWpsVmqOVRH+us135Hlu8cKo+jG7c3rf7LJnEdezm86pqGa170btuIsT7hUHF+cGo6eDHqfmPFmKkE6cDYqR0kG8f6P3p7JDfykr9uIONugcC9G09lc7M+okLj+nd0Y+akbO6c3nxMz6ztfUdiVkPOgsuSLJyu3bL0r793HWJDmr4CQpNPNE+4WZodJJOag4fJs+uDg/GD297XZ5tpyT0S1a743asbesHhAjpQOzB6VwdiMAwI0E8uUmA4NvtRv1undYmqZEYSRN6kQxLj35h6EInwmAgPv75fljocW/GlPpL/q/TS3za3dR9wIwogAAAerDfsZgKwGAOoIQr81nARYAyBWgzsjLOvZUgNYMaK2AtbuR1wJo+ZullQ4DAfA3RAMACkAQQDkJAAAhrgMBAECqcgDCxA+KwXGg7fEBGKbEQyc0Vcv1TLGBRpYJQCkAEBHGQQmxBVq908CIiA46Kdl9b72IdKGKi9sqLwcbOz9BminpBBqFJksmwSoHJ5s1DmvsJogW/EvVMpX+hZv8VYfTtuZYs0/o+wI9nPwc/BbMmKZCz3O8O2ZaBTrNsAlYMMELJ/GFgFquIhIm5GUz0xGmRCEorFahLCo3h6iA2GkNNhOLlDFe24ygSYpQKDQrdnw5YoHY2bpaSPSGvHwcLUoVKBRqSySSHhMEfkVRJQWtqyIrBRL6/0EaLw9D+S6RokSLEStOvASJkgAAAA==")
8
+ format("woff2"),
9
+ url("data:font/woff;charset=utf-8;base64,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")
10
+ format("woff");
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ font-display: swap;
14
+ }
15
+
16
+ .iconfont {
17
+ font-family: "AppIcons" !important;
18
+ font-size: 16px;
19
+ line-height: 24px;
20
+ font-weight: normal;
21
+ font-style: normal;
22
+ font-variant: normal;
23
+ text-transform: none;
24
+ font-synthesis: none;
25
+ text-rendering: optimizeLegibility;
26
+ -webkit-font-smoothing: antialiased;
27
+ -moz-osx-font-smoothing: grayscale;
28
+ -webkit-text-size-adjust: 100%;
29
+ }
30
+ @font-face {
31
+ font-family: "AppIcons";
32
+ src: url("../../assets/fonts/AppIcons/AppIcons.ttf") format("truetype");
33
+ font-weight: normal;
34
+ font-style: normal;
35
+ }
36
+ /* .icon-yycar::before {
37
+ content: "\e808";
38
+ color: gray;
39
+ } */
40
+ /* @font-face {
41
+ font-family: "AppIcons";
42
+ src: url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.eot");
43
+ src: url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.eot?#iefix")
44
+ format("embedded-opentype"),
45
+ url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.otf") format("opentype"),
46
+ url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.woff2") format("woff2"),
47
+ url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.woff") format("woff"),
48
+ url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.ttf") format("truetype"),
49
+ url("../../assets/fonts/fzy3fw_tw/AppIcons-webfont.svg#fzzhunyuan-m02tregular")
50
+ format("svg");
51
+ font-weight: normal;
52
+ font-style: normal;
53
+ } */