/*
*{
	padding:0;
	margin:0;
}
a{
	text-decoration: none;
}

.form-control{
	display: inline-block;
    width: auto;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.btn{
	display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
*/
/*组件主样式*/
.overflow-text{
	display: block;
    white-space:nowrap;
    overflow:hidden; 
    text-overflow:ellipsis;
    opacity:0;
    clear: both;
    padding:0 10px;        /*左右空白边距*/
    border-radius: 10px;
    box-sizing: border-box;
    max-width: 100%;
    color:#fff;
    animation:colorchange 3s infinite alternate;
	-webkit-animation:colorchange 3s infinite alternate; /*Safari and Chrome*/
}
#barrage {
	.height: 80px;
	.overflow: hidden;
	.position: fixed;
	.z-index: 999;
	.max-width: 100%;
	.right: 50px;
	.bottom: 30px;
	.pointer-events: none;
}

#barrage li {
	display: flex;
	.justify-content: center;  /*flex水平布局:居中*/
	align-items: center;     /*flex垂直布局:居中【解决了浏览器字体放大居中偏离的问题】*/
	.opacity: 0;
	border-radius: 20px;    /*横条背景圆角*/
	color: #fff;            /*字体颜色*/
	.padding: 0px 8px 0px 3px;
	text-align: center;
	clear: both;
	.font-size: 13px;     /*字体大小,关闭则继承默认字体大小*/
	height: 20px;
	float: right;
	line-height: 20px;
}

#barrage li img {  /*控制头像图片*/
	width: 22px;
	height: 22px;
	border-radius: 50%;    /*头像圆形*/
	margin-right: 6px;      /*与右侧文字边距*/
	.margin: 4px 6px 4px 0px;  /*上右下左边距*/
	.padding: 5px 3px 5px 0px;
	.vertical-align: inherit;  /*继承父级垂直对齐*/
	.pointer-events: auto;
}
@keyframes colorchange{
	0%{
		color:#FFFAFF;
	}
	30%{
		color:#AFFAFF;
	}
	100%{
		color:#FFFFFF;
	}
}
		/*组件主样式*/