UNPKG

1.46 kBCSSView Raw
1.taro_choose_location {
2 position: fixed;
3 display: flex;
4 flex-direction: column;
5 width: 100%;
6 height: 100%;
7 top: 100%;
8 background-color: #fff;
9 transition: ease top .3s;
10 z-index: 1;
11}
12
13.taro_choose_location_bar {
14 display: flex;
15 flex: 0 95px;
16 height: 95px;
17 background-color: #ededed;
18 color: #090909;
19}
20
21.taro_choose_location_back {
22 flex: 0 45px;
23 position: relative;
24 width: 33px;
25 height: 30px;
26 margin-top: 30px;
27}
28
29.taro_choose_location_back::before {
30 content: '';
31 position: absolute;
32 top: 0;
33 left: 0;
34 display: block;
35 width: 0;
36 height: 0;
37 border: solid 15px;
38 border-top-color: transparent;
39 border-right-color: #090909;
40 border-bottom-color: transparent;
41 border-left-color: transparent;
42}
43
44.taro_choose_location_back::after {
45 content: '';
46 position: absolute;
47 display: block;
48 width: 0;
49 height: 0;
50 top: 0;
51 left: 3px;
52 border: solid 15px;
53 border-top-color: transparent;
54 border-right-color: #ededed;
55 border-bottom-color: transparent;
56 border-left-color: transparent;
57}
58
59.taro_choose_location_title {
60 flex: 1;
61 line-height: 95px;
62 padding-left: 30px;
63}
64
65.taro_choose_location_submit {
66 width: 110px;
67 height: 60px;
68 color: #fff;
69 background-color: #08bf62;
70 border: none;
71 font-size: 28px;
72 line-height: 60px;
73 padding: 0;
74 margin: 18px 30px 0 0;
75}
76
77.taro_choose_location_frame {
78 flex: 1;
79}
\No newline at end of file