/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
menu, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.live_button {
    margin: 0 8px 0 0; /* 按钮间10px左右间距，更贴合图片 */
    padding: 8px 22px; /* 缩小内边距，匹配图片按钮大小 */
    background-color: #e60012; /* 图片同款深红色 */
    color: #ffffff;
    font-size: 14px; /* 匹配图片文字大小 */
    font-weight: bold;
    border-radius: 999px; /* 椭圆形状 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* 手机端不换行 */
    flex-shrink: 0; /* 按钮不被挤压 */
    vertical-align: middle;
    border: 0;
    gap: 4px; /* 图标和文字间距更紧凑 */
    line-height: 1; /* 消除文字行高导致的按钮增高 */
}

.live_button img {
    width: 16px; /* 匹配图片小喇叭图标大小 */
    height: 16px;
    vertical-align: middle;
    display: inline-block;
}