head.wxss
1.6 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
88
89
90
91
92
93
94
.headBoxBox {
width: 100%;
}
.headBox,
.state,
.nav {
width: 750rpx;
}
/* 头部整体内容 */
.headBox {
position: fixed;
top: 0;
left: 0;
z-index: 100;
}
/* 状态栏 */
.state {
position: relative;
}
/* 导航栏 */
.nav {
display: flex;
align-items: center;
position: relative;
}
.searchImg {
width: 32rpx;
height: 32rpx;
}
.backBtnBlack {
margin-left: 32rpx;
right: 50rpx;
top: 150rpx;
content: "";
display: inline-block;
height: 20rpx;
width: 20rpx;
border-width: 0 0 2px 2px;
border-color: #000;
border-style: solid;
transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.backBtnWhite {
margin-left: 32rpx;
right: 50rpx;
top: 150rpx;
content: "";
display: inline-block;
height: 20rpx;
width: 20rpx;
border-width: 0 0 2px 2px;
border-color: #fff;
border-style: solid;
transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.bottomBtn {
right: 50rpx;
top: 150rpx;
content: "";
display: inline-block;
height: 16rpx;
width: 16rpx;
border-width: 0 2px 2px 0;
border-color: #fff;
border-style: solid;
transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.address {
display: flex;
align-items: center;
margin-left: 32rpx;
}
.addressText {
color: #fff;
font-weight: 600;
width: 96rpx;
overflow: hidden;
white-space: nowrap;
}
.title {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}