@charset "utf-8";
/*  chat CSS xlqt2005  20200224 */
.topnewback{
	display:none;
	width:100%;
	padding: 10px;
	align-content: center;
	vertical-align: middle;
    z-index: 4000;
	position: fixed;
	top:0;
	left:0;
	background-color: rgba(0,0,0,0.5);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s   
}
.topnewpan{
	width:100%;
	margin: auto;
	min-height: 60px;
	align-self: center;
	border-radius: 10px;
	background-color: white;
	vertical-align: middle;
}
.topnewico{
	width:60px;
	min-height:60px;
	vertical-align: middle;
	text-align: center
}
.topimg{
	width:60px;
	height:60px;
	border-radius: 8px;
}
.topnewtext{
	width:auto;
	position:relative;
	font-size: 14px;
	padding: 10px;
	font-weight: bold;
	font-family: "微软雅黑";
	vertical-align: middle;
	text-align:justify;
	text-justify:inter-ideograph;
}
/* 添加动画 */

@-webkit-keyframes animatetop {
    from {top:-200px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-200px; opacity:0}
    to {top:0; opacity:1}
}