litian
2024-10-22 bd78f525037c2a98d08666fc3465f717f29e6e66
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
/* 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%;
}
 
.pictureBox image {
  /* width: 100%;
  height: auto; */
}
 
.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;
}