.all{
	background-color: #f5f6f9;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.top{
    height: 40px;
    background: #2196F3;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.top>a{
    position: absolute;
    top: 0;
    left: 10px;
    font-weight: normal;
    color: #fff;
    font-size: 12px;
}
.top>span{
	flex:1;
}
.content{
	flex: 1;
    overflow: auto;
}
.content .item{
    background-color: #fff;
    margin: 12px;
    padding: 10px 12px;
    border-radius: 5px;
    display:flex;
    align-items: end;
    position: relative;
}
.shelfInfo{
    display: flex;
    flex-direction: column;
    margin-right:12px;
}
.shelfInfo .code{
	font-size:20px;
	margin-bottom:5px;
	color:#2196f3;
}
.shelfInfo .name{
	font-size:14px;
	color:#787878;
}
.content .item .box{
	flex:1;
	color:#787878;
}
.content .item .box span:nth-child(2){
    color: #FF5722;
    font-weight: bold;
}
.content .item i{
	position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%) rotate(180deg);
    color: #999;
    font-size: 14px;
}

@media only screen and (min-width:600px ) {
	.all{
		width: 600px;
		margin: 0 auto;
	}
}
@media only screen and (max-width:600px ) {
	.all{
		width: 100%;
		margin: 0 auto;
	}
}