管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-26 3f7ec892d68f71e996489d14d9918dc332281b1e
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
.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-image-viewer {
  position: fixed;
  top: var(--td-image-viewer-top, var(--td-position-fixed-top, 0));
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1001;
  height: 100%;
  transform: translateZ(0);
  overflow: hidden;
}
.t-image-viewer__mask {
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.t-image-viewer__content {
  width: 100vw;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1005;
}
.t-image-viewer .swiper {
  outline: 0;
}
.t-image-viewer__image {
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.t-image-viewer .t-image--external {
  width: inherit;
  height: inherit;
  display: block;
}
.t-image-viewer__nav {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--td-image-viewer-nav-height, 96rpx);
  background-color: var(--td-image-viewer-nav-bg-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
  left: 0;
  color: var(--td-image-viewer-nav-color, var(--td-font-white-1, #ffffff));
  z-index: 1005;
}
.t-image-viewer__nav-close {
  margin-left: var(--td-image-viewer-close-margin-left, var(--td-spacer-1, 24rpx));
}
.t-image-viewer__nav-close:empty {
  display: none;
}
.t-image-viewer__nav-delete {
  margin-right: var(--td-image-viewer-delete-margin-right, var(--td-spacer-1, 24rpx));
}
.t-image-viewer__nav-delete:empty {
  display: none;
}
.t-image-viewer__nav-close,
.t-image-viewer__nav-delete {
  font-size: 48rpx;
}
.t-image-viewer__nav-index {
  flex: 1;
  font-size: var(--td-image-viewer-nav-index-font-size, var(--td-font-size-base, 28rpx));
  text-align: center;
}