QYF-GitLab1
14 小时以前 3dd2f91fbc88641202a272d8d179d40e0686ace4
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* pages/resourceDetails/document/index.wxss */
.nacigationBar {
  background-color: #fff;
  display: flex;
  align-items: center;
}
 
.navbar-title {
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  color: #0F1214;
  font-size: 40rpx;
  font-weight: bold;
  margin-bottom: 5rpx;
}
 
.button-example {
  margin: 0 70rpx;
  background-color: #ff6c00;
  display: flex;
  justify-content: center;
}
 
.button-example .text {
  background-color: #ff6c00;
}
 
.t-button--default {
  background-color: #ff6c00 !important;
}
 
.t-button {
  --td-button-default-border-color: #ff6c00 !important;
}
 
.zipImageBox {
  display: flex;
  justify-content: center;
}
 
.divider {
  text-align: center;
  margin: 20px 0;
}
 
.titleNameBox {
  min-height: 77rpx;
  background: #FFFFFF;
  box-shadow: 0rpx 9rpx 9rpx 2rpx rgba(0, 0, 0, 0.06);
  padding: 20rpx 50rpx;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 29rpx;
  color: #333333;
}
 
.pictureBox {
  display: flex;
  justify-content: center;
  margin-top: 20rpx;
  width: 100%;
  height: 100%;
}
 
 
 
.download-btn {
  width: 100%;
}
 
.heart {
  animation-name: scaleDraw;
  /*关键帧名称*/
  animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  animation-iteration-count: infinite;
  /*动画播放的次数*/
  animation-duration: 2s;
  /*动画所花费的时间*/
}
 
@keyframes scaleDraw {
 
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
 
  25% {
    transform: scale(1.5);
    /*放大1.1倍*/
  }
 
  50% {
    transform: scale(1.75);
  }
 
  75% {
    transform: scale(2.0);
  }
}
 
.img-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px 1px #00000029;
}
 
.excelBox {
  margin: 30rpx auto;
}
 
.textBox {
  display: flex;
  font-size: 24rpx;
}
 
.textWidth {
  text-align: center;
  flex: 1;
}
 
.scrollBox {
  height: calc(100vh - env(safe-area-inset-bottom) - 60px);
}
 
.prompDialog {
  --td-button-primary-bg-color: #ff6c00;
  --td-button-primary-border-color: #ff6c00;
  --td-button-primary-active-bg-color: #ff984d;
  --td-button-primary-active-border-color: #ff984d;
}
 
.prompDialog .t-dialog__header {
  margin-top: 30rpx;
}