广州矛调粤政易端
xusd
7 days ago d27794814b69d18aeb8ee96a46cae91d5613570c
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
.location-picker-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    background-color: #f5f7fa;
    margin-top: 0px;
    
    /* 占位区样式 */
    .placeholder-container {
        width: 100%;
        flex: 1;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        
        .placeholder-content {
            color: #86909c;
            font-size: 16px;
        }
    }
    
    /* 手动输入区域样式 */
    .manual-input-container {
        width: 100%;
        background-color: #f5f7fa;
        // padding: 12px 0;
        
        /* 区域选择样式 */
        .area-selection-container {
            background-color: #ffffff;
            // margin-bottom: 12px;
            // padding-left: 16px;
            padding-right: 16px;
            
            .area-form-item {
                // padding-top: 12px;
                height: 47px;
                .dtm-list-line{
                    padding: 0px;
                    .dtm-list-content{
                        height: 47px;
                        .dtm-select{
                            .dtm-select-default-item{
                                .dtm-list-content{
                                    display: flex;
                                    align-items: center;
                                    justify-content: flex-end;
                                }
                            }
                            .dtm-select-placeholder{
                                display: flex;
                                align-items: center;
                                height: 100%;
                                justify-content: flex-end;
                            }
                        }
                    }
                }
                
                .dtm-form-item-default-label {
                    height: 23px;
                    font-size: 15px;
                    font-weight: 400;
                    color: #171a1d;
                    line-height: 23px;
                }
                
                .dtm-select-placeholder {
                    height: 23px;
                    font-size: 15px;
                    font-weight: 400;
                    color: rgba(23,26,29,0.40);
                    line-height: 23px;
                }
            }
        }
        
        /* 具体地点输入样式 */
        .detail-location-container {
            background-color: #ffffff;
            // padding-left: 16px;
            // padding-right: 16px;
            height: 74px;
            
            .detail-form-item {
                padding-top: 12px;
                
                .dtm-form-item-default-label {
                    height: 23px;
                    font-size: 15px;
                    font-weight: 400;
                    color: #171a1d;
                    line-height: 23px;
                    margin-bottom: 8px;
                }
                
                .dtm-input-item {
                    height: 23px;
                    // border: 1px solid #e5e6eb;
                    // border-radius: 4px;
                    // padding: 0 12px;
                    
                    input {
                        font-size: 15px !important;
                        color: #171a1d;
                    }
                    
                    &::placeholder {
                        color: rgba(23,26,29,0.40);
                    }
                }
            }
        }
    }
    
    /* 底部保存按钮样式 */
    .bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background-color: #ffffff;
        box-shadow: 0 -1px 4px rgba(0,0,0,0.08);
        
        .save-button {
            width: 100%;
            height: 44px;
            background-color: #1a6fb8;
            border-color: #1a6fb8;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            
            &:active {
                background-color: darken(#1a6fb8, 10%);
            }
        }
    }