.newsbox {
        position: relative;
        background: rgba(0, 0, 0, .7);
        width: 938px;
        float: right;
        overflow: hidden;
        height: 61px;
        color: #ffffff;
    }
    .newsbox .inner{
        position: relative;
        width: 80%;
        height: 61px;
        margin-left: 50px;
    }
    .newsbox img {
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
    }
    .newsbox .inner p{
        color: #ffffff;
        font-size: 18px;
        line-height: 60px;
        margin-left: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .newsbox .inner p span{
        font-size: 16px;
        color: #999;
        cursor: pointer;
    }
	.newsbox button{
    	position: absolute;
    	right: 40px;
    	top: 50%;
    	transform: translateY(-50%);
    	width: 80px;
    	height: 30px;
    	color: #ffffff;
    	font-size: 15px;
    	border-radius: 5px;
    	background: red;
    	text-align: center;
    	outline: none;
    	border: 0;
    	line-height: 30px;
    	cursor: pointer;
    }