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
| /* pages/developIng/developIng.wxss */
| page{
| width: 100%;
| height: 100%;
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .developIng{
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| }
| image{
| width: 135rpx;
| height: 90rpx;
| margin-bottom:20rpx;
| }
|
| .copy {
| font-size: 18px;
| color: #fff;
| background: linear-gradient(#33c3ff, #1790ff);
| width: 335px;
| height: 50px;
| line-height: 30px;
| display: flex;
| justify-content: center;
| align-items: center;
| border-radius: 2px;
| box-shadow: 0px 4px 8px 0px rgba(196, 222, 255, 1);
| }
|
|