riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
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
.enterprise-info__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200rpx;
}
 
.enterprise-info__wrap {
  --ei-img-height: 160rpx;
  /* background-color: var(--td-bg-color); */
  /* border-radius: var(--td-border-radius); */
  /* box-shadow: var(--td-shadow-4); */
  /* padding: var(--td-spacer-1); */
  margin-top: var(--td-spacer);
  /* display: flex; */
}
 
.enterprise-info__top {
  display: flex;
}
 
.enterprise-info__bottom {
  display: block;
}
 
/* .enterprise-info__wrap:active {
  background-color: var(--td-gray-color-1);
} */
 
.enterprise-info__img {
  width: var(--ei-img-height);
  height: var(--ei-img-height);
  border: 1px solid var(--td-gray-color-3);
  border-radius: var(--td-border-radius);
}
 
.enterprise-info__img__score {
  text-align: end;
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-placeholder);
}
 
.enterprise-info__img__score>text {
  font-size: var(--td-font-size-xl);
  color: var(--td-success-color-active);
}
 
.enterprise-info__img__score .enterprise-info__img__score_disable {
  color: var(--td-error-color-active);
}
 
.enterprise-info__img__text {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-secondary);
  text-align: start;
}
 
.enterprise-info__main {
  flex: 1;
  min-height: calc(var(--ei-img-height) + var(--td-divider-content-line-height) / 2);
  margin-left: var(--td-spacer);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
.enterprise-info__title {
  --ei-font-size: var(--td-font-size-base);
  --ei-line-height: calc(var(--td-text-line-height) * var(--ei-font-size));
  font-size: var(--ei-font-size);
  line-height: var(--ei-line-height);
  /* height: calc(var(--ei-line-height) * 2); */
  color: var(--td-text-color-secondary);
}
 
.enterprise-info__tag {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
 
.t-class-divider {
  margin: 0 !important;
}