沙盘演示系统应用的微信小程序
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
.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-result {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-result__icon {
  font-size: 160rpx;
}
.t-result__title {
  line-height: var(--td-result-title-line-height, 56rpx);
  font-size: var(--td-result-title-font-size, var(--td-font-size-l, 40rpx));
  font-weight: 700;
  color: var(--td-result-title-color, var(--td-text-color-primary, var(--td-font-gray-1, rgba(0, 0, 0, 0.9))));
}
.t-result__thumb:not(:empty) + .t-result__title:not(:empty) {
  margin-top: var(--td-result-title-margin-top, var(--td-spacer-1, 24rpx));
}
.t-result__description {
  text-align: center;
  color: var(--td-result-description-color, var(--td-text-color-secondary, var(--td-font-gray-2, rgba(0, 0, 0, 0.6))));
  font-size: var(--td-result-description-font-size, var(--td-font-size-base, 28rpx));
  line-height: var(--td-result-description-line-height, 44rpx);
}
.t-result__title + .t-result__description:not(:empty) {
  margin-top: var(--td-result-description-margin-top, var(--td-spacer, 16rpx));
}
.t-result--theme-default {
  color: var(--td-result-icon-default-color, var(--td-brand-color, var(--td-primary-color-7, #0052d9)));
}
.t-result--theme-success {
  color: var(--td-result-icon-success-color, var(--td-success-color, var(--td-success-color-5, #2ba471)));
}
.t-result--theme-warning {
  color: var(--td-result-icon-warning-color, var(--td-warning-color, var(--td-warning-color-5, #e37318)));
}
.t-result--theme-error {
  color: var(--td-result-icon-error-color, var(--td-error-color, var(--td-error-color-6, #d54941)));
}