tanghaolin
2024-07-04 cc461d250428674b40f5916412ffa514be421c38
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
131
132
133
134
135
136
137
138
139
140
141
142
/**app.wxss important**/
@import "/style/iconfont.wxss";
@import '/style/icon.wxss';
@import '/style/main.wxss';
@import '/style/animation.wxss';
/* 微信小程序设置滚动条 */
::-webkit-scrollbar {
  width:0px;
  height:0px;
  color:#ffffff;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color:#FFFFFF;
}
 
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color:#39b54a;
  display:flex;
  justify-content: flex-end;
}
 
.red{color: rgb(218, 62, 51);}
.tui-show{display: block;}
.tui-hide{display: none !important;}
 
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0rpx 0;
  box-sizing: border-box;
 
page{background-color: #efeff4;}
 
 
/*  自定义tabbar样式*/
 
.tabbar {
  display: flex;
  flex-direction: row;
  position: fixed;
  width: 100%;
}
 
.tabbar-item {
  flex-grow: 1;
  padding: 6rpx 0;
  text-align: center;
}
 
.tabbar-icon {
  width: 46rpx;
  height: 46rpx;
  display: block;
  margin: 0 auto;
}
 
.tabbar-text {
  font-size: 24rpx;
}
 
 
 
 
 
 
 
 
 
 
 
/* 201912.21 */
.red_i{
  color: #E76748;
}
.hr{
  background: #E0E3DA;
  width: 100%;
  height: 4rpx;
  margin: 5rpx;
}
 
 
 
.right_btn{
    display: flex;
    align-items: center;
  z-index: 100;
}
.map_search,.right_btn,.map_search>view {
    position: fixed;
    width: 80rpx;
  border-radius: .25rem;
  top: 4.9rem;
  background-color: white;
  border-width: 0;
  right: 0.1rem;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
}
.right_btn>div {
    width: 70rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 23rpx;
    padding: 0.3rem 0px;
    border-top: 1px solid #e2eeea;
    
}
.right_btn>div:nth-child(1) {
    border-top: 0px;
}
.right_btn>div>.iconfont{
    width: 60rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #16b5cb;
    font-size: 60rpx;
    border-radius: 0.5rem;
    background-color: #ffffff;
}
.right_btn>div>span{
    text-align: center;
    color: #1E1D1C;
    font-family: "宋体";
}