server_1.wxss
1.5 KB
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
page{
background: #F7F7F7;
}
.container{
width: 750rpx;
display: flex;
flex-flow: column;
}
.top{
width: 100%;
height: 200rpx;
background: #169BD5;
position: relative;
}
.top_item{
width:688rpx;
height:240rpx;
background:rgba(255,255,255,1);
box-shadow:0px 6rpx 40rpx rgba(0,34,255,0.08);
opacity:1;
border-radius:8rpx;
/* margin-top: 100rpx */
position: absolute;
top: 50rpx;
left: 31rpx;
display: flex;
box-sizing: border-box;
padding: 48rpx 32rpx;
}
.top_item_left{
width:112rpx;
height:112rpx;
background:rgba(0,0,0,0);
border-radius:50%;
opacity:1;
display: flex;
}
.top_item_left image{
width: 100%;
height: 100%;
}
.top_item_right{
display: flex;
flex-flow: column;
margin-left: 16rpx;
}
.top_item_right_top{
margin-top: 14rpx;
font-size:32rpx;
font-family:PingFang SC;
font-weight:600;
line-height:44rpx;
color:rgba(51,51,51,1);
opacity:1;
}
.top_item_right_bottom{
margin-top: 18rpx;
width:160rpx;
height:40rpx;
background:rgba(22,155,213,0.2);
/* opacity:0.2; */
border-radius:24rpx;
display: flex;
align-items: center;
justify-content: center;
}
.top_item_right_bottom_pic{
width: 20rpx;
height: 24rpx;
display: flex;
}
.top_item_right_bottom_pic image{
width: 100%;
height: 100%;
}
.top_item_right_bottom_name{
margin-left: 15rpx;
font-size:22rpx;
font-family:PingFang SC;
font-weight:400;
line-height:32rpx;
color:rgba(22,155,213,1);
opacity:1;
z-index: 999
}