沙盘演示系统应用的微信小程序
zuoxiao
2024-08-28 eb3dbfdcb126beeb1d08f3306ac8f5bbc466e133
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
.t-float-left {
  float: left;
}
.t-float-right {
  float: right;
}
@keyframes tdesign-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hotspot-expanded.relative {
  position: relative;
}
.hotspot-expanded::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.5);
}
.t-popup {
  position: fixed;
  z-index: 11500;
  max-height: 100vh;
  transition: all 300ms ease;
  background-color: var(--td-popup-bg-color, var(--td-bg-color-container, var(--td-font-white-1, #ffffff)));
}
.t-popup__content {
  position: relative;
  z-index: 1;
}
.t-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20rpx;
  line-height: 1;
}
.t-popup--top {
  top: 0;
  left: 0;
  width: 100%;
  border-bottom-left-radius: var(--td-popup-border-radius, var(--td-radius-default, 12rpx));
  border-bottom-right-radius: var(--td-popup-border-radius, var(--td-radius-default, 12rpx));
}
.t-popup--bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: var(--td-popup-border-radius, var(--td-radius-default, 12rpx));
  border-top-right-radius: var(--td-popup-border-radius, var(--td-radius-default, 12rpx));
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.t-popup--left {
  top: 0;
  left: 0;
  height: 100vh;
}
.t-popup--right {
  top: 0;
  right: 0;
  height: 100vh;
}
.t-popup--center {
  top: 50%;
  left: 50%;
  transform: scale(1) translate3d(-50%, -50%, 0);
  transform-origin: 0% 0%;
  border-radius: var(--td-popup-border-radius, var(--td-radius-default, 12rpx));
}
.t-popup.t-fade-enter.t-popup--top,
.t-popup.t-fade-leave-to.t-popup--top {
  transform: translateY(-100%);
}
.t-popup.t-fade-enter.t-popup--bottom,
.t-popup.t-fade-leave-to.t-popup--bottom {
  transform: translateY(100%);
}
.t-popup.t-fade-enter.t-popup--left,
.t-popup.t-fade-leave-to.t-popup--left {
  transform: translateX(-100%);
}
.t-popup.t-fade-enter.t-popup--right,
.t-popup.t-fade-leave-to.t-popup--right {
  transform: translateX(100%);
}
.t-popup.t-fade-enter.t-popup--center,
.t-popup.t-fade-leave-to.t-popup--center {
  transform: scale(0.6) translate3d(-50%, -50%, 0);
  opacity: 0;
}
.t-popup.t-dialog-enter.t-popup--center,
.t-popup.t-dialog-leave-to.t-popup--center {
  transform: scale(0.6) translate3d(-50%, -50%, 0);
  opacity: 0;
}