广州矛调粤政易端
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
.preview-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    background-color: #F2F2F2;
    position: relative;
 
    /* 预览区域样式 */
    .preview-area {
        flex: 1;
        background-color: #F2F2F2;
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        margin-bottom: 80px;
        margin-top: 64px;
        height: calc(100vh - 56px - 80px - 64px);
        overflow-y: auto;
 
        .preview-content {
            .preview-section {
                background-color: #ffffff;
                border-radius: 8px;
                padding: 16px;
                margin-bottom: 12px;
 
                .section-title {
                    font-size: 16px;
                    font-weight: 500;
                    color: #171a1d;
                    margin-bottom: 12px;
                    position: relative;
                    padding-left: 12px;
 
                    &:before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 3px;
                        height: 16px;
                        width: 4px;
                        background-color: #1a6fb8;
                        border-radius: 2px;
                    }
                }
 
                .section-content {
                    .info-item {
                        display: flex;
                        margin-bottom: 12px;
                        font-size: 14px;
                        line-height: 22px;
 
                        &:last-child {
                            margin-bottom: 0;
                        }
 
                        .info-label {
                            color: #86909c;
                            min-width: 110px;
                            margin-right: 12px;
                        }
 
                        .info-value {
                            color: #171a1d;
                            flex: 1;
                        }
                    }
 
                    .text-content {
                        font-size: 14px;
                        line-height: 22px;
                        color: #171a1d;
                        word-break: break-word;
                    }
                }
            }
        }
    }
 
    /* 底栏按钮区域样式 */
    .button-area {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100vw;
        z-index: 100;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 68px;
        background-color: #ffffff;
        box-sizing: border-box;
        box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.08);
 
        .edit-button {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 28px;
            font-size: 14px;
            color: #171a1d;
            margin-right: 8px;
            gap: 2px;
        }
 
        .self-handle-button {
            width: 116px;
            height: 44px;
            background-color: #ffffff;
            color: #1a6fb8;
            border: 1px solid #1a6fb8;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            margin: 0 8px;
        }
 
        .submit-button {
            flex: 1;
            height: 44px;
            background-color: #1a6fb8;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            margin: 0 8px;
 
            &:last-child {
                margin-right: 0;
            }
        }
    }
}
 
.preview-tab {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    position: fixed;
    top: 44px;
    left: 0;
    width: 100vw;
    z-index: 99;
    box-sizing: border-box;
}
 
.preview-tab-bar {
    display: flex;
    background: #5fa6d4;
    overflow: hidden;
}
 
.preview-tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #fff;
    background: #5fa6d4;
    font-size: 14px;
    cursor: pointer;
}
 
.preview-tab-item-active {
    background: #1a6fb8;
    color: #e6f7ff;
}