# 常用媒体查询兼容方案

@base: 100 / 1080vw;

/* PC 兼容 */
@media screen and (min-width: 600px) {
    html {
        font-size: 55.5555555px;
    }
}

/* iphone xr & iphone x & iphone xs */
@media screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3),
screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2),
screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .m-playlist {
        // padding-bottom: 20px;
    }

    .act-modal-container .mrc-modal-container .m-act-modal .u-btn-close {
        bottom: -180 * @base;
    }

    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 15px;
        p {
            font-size: 15px;
        }
    }
}

/* ip7 plus */
@media screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
    .m-bubble {
        .box {
            // top: -20vw
            top: -12vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 16px;
        p {
            font-size: 16px;
        }
    }
}

/* ip6 */
@media screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
    .m-bubble {
        .box {
            top: -10vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 15px;
        p {
            font-size: 15px;
        }
    }
}

/* ip6s plus: ip6的分辨率&DPR 是 3 */
@media screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 3) {
    .m-bubble {
        .box {
            top: -10vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 15px;
        p {
            font-size: 15px;
        }
    }
}

/* ip5 se */
@media screen and (max-width: 320px) {
    .m-bubble {
        .box {
            top: -8vw
        }
    }
    .m-playlist .playlist-top .count.f-vc {
        left: 112px;
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 13px;
        p {
            font-size: 13px;
        }
    }
}

/* 常规安卓1080P标准屏 */
@media screen and (device-width: 360px) and (device-height: 640px) {
    .m-bubble {
        .box {
            top: -8vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

/* ==== 普通安卓360P设备 start ==== */
@media screen and (device-width: 360px) and (max-height: 630px) {
    .m-bubble {
        .box {
            top: -8vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

@media screen and (device-width: 360px) and (max-height: 605px) {
    .m-bubble {
        .box {
            top: -13vw
        }
        .ctrl.f-hc {
            bottom: 9vw;
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

@media screen and (device-width: 360px) and (max-height: 590px) {
    .m-bubble {
        .box {
            top: -13vw
        }
        .ctrl.f-hc {
            bottom: 3vw;
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

/* ==== 普通安卓360P设备 end ==== */

/* 安卓1080P长屏 */
@media screen and (device-width: 360px) and (min-height: 700px) and (-webkit-device-pixel-ratio: 3){
    .m-bubble {
        .box {
            top: -6vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

/* 华为P30 pro */
@media screen and (device-width: 360px) and (device-height: 780px) and (-webkit-device-pixel-ratio: 3){
    .m-bubble {
        .box {
            top: -2vw;
        }
    }

    .m-playlist .playlist-top .count.f-vc {
        left: 128px;
    }

    .m-playlist .playlist-box .playlist-item .info .song-artist.f-thide {
        bottom: 10px;
    }

    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

/* 魅族 某古老机型 */
@media screen and (device-width: 384px) and (device-height: 640px) {
    .m-bubble {
        .box {
            top: -12vw
        }
    }
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}

/* 小米 8 */
@media screen and (device-width: 393px) and (device-height: 818px) {
    // 滑动引导子项
    .u-slide-box.z-new2 .msg-item {
        height: 14px;
        p {
            font-size: 14px;
        }
    }
}
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
更新时间: 11/21/2021, 2:45:24 AM