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
| page{
| display: flex;
| flex-direction: column;
| /* height: 100%; */
| }
| swiper {
| display: block;
| height: 32vh;
| }
|
| .slide-image {
| background-size: cover;
| width: 100%;
| height: 32vh;
| }
|
| .activityDetail-main {
| display: flex;
| flex-direction: column;
| padding: 2vh;
| border:1px solid rgba(247, 251, 255, 1);
| box-shadow:0px 4px 8px 0px rgba(136, 136, 136, 0.11);
| }
|
| .activityDetail-apply{
| flex: 1;
| display: flex;
| justify-content: center;
| align-items: center;
| height: 35vh;
| }
|
| .activityDetail-main-buttton {
| font-size:14px;
| color:#fff;
| background:#8C9198;
| width:170rpx;
| height:170rpx;
| line-height:30px;
| display:flex;
| justify-content:center;
| align-items:center;
| border-radius:50%;
| border:14rpx solid #D9DDE2;
| }
|
| .headLineTitle{
| color: #3D444D;
| font-size:14px;
| }
|
| .headLineInfo{
| display: flex;
| flex-direction: columns;
| font-size: 12px;
| color: #8C9198;
| }
|
| .tel-area{
| height: 6vh;
| margin-top: ;
| padding: 0 2vh;
| font-size: 14px;
| display:flex;
| flex-direction:columns;
| /* justify-content: center; */
| align-items: center;
| color: #000;
| }
| .tel-area>view{
| flex: 1;
| }
|
| .tel-area image{
| width: 3vh;
| height: 3vh
| }
|
| .activityDetail-content{
| font-size: 14px;
| color: #000;
| }
|
| .apply {
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| display: flex;
| flex-direction: column;
| }
|
| .apply-message {
| display: flex;
| padding: 2vh;
| border-top: 1px solid #f2f2f2;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .apply-message span:nth-child(1) {
| border-left: 3px solid #2195ff;
| }
|
| .apply-message span:nth-child(2) {
| padding-left: 1vh;
| font-size: 18px;
| font-weight: bold;
| }
|
| .apply-list {
| display: flex;
| margin-left: 2vh;
| padding: 2vh 2vh 2vh 0;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .apply-list-left {
| margin-right: auto;
| font-size: 14px;
| color: #333;
| width: 30%;
| }
|
| .apply-list-center {
| font-size: 14px;
| color: #999;
| }
|
| input{
| font-size:14px;
| color:#999;
| text-align:right;
| }
|
|