/*自助下单*/
.page-name{
	height:20px;
	font-size:18px;
	color:#4e4e4e;
	font-weight:bold;
	border-left:2px solid #32d693;
	line-height:20px;
	padding-left:12px;
}
.person-info{
	width:200px;
	height:206px;
	overflow:hidden;
	background:#fff;
}
.avatar{
	width:100px;
	height:112px;
	margin:0 auto;
	margin-top:8px;
}
.person-info>span{
	display:inline-block;
	width:100%;
	margin-top:7px;
	text-align:center;
	font-size:16px;
	color:#32d693;
}
.person-info p{
	width:100%;
	text-align:center;
	margin-top:10px;
	line-height:18px;
	font-size:14px;
	color:#666;
}
.remind{
	width:200px;
	margin-top:20px;
	background-color:#fffef5;
	border:1px solid #fabf7b;
	position:relative;
	padding-bottom:20px;
}
.warn{
	width:30px;
	height:32px;
	position:absolute;
	top:21px;
	left:11px;
}
.warn img{
	width:100%;
}
.warn-content{
	width:181px;
	margin:28px 0 0 10px;
}
/*定义滚动条的样式*/
.warn-content::-webkit-scrollbar{
	width:2px;
	height:1px;
	background:#fabf7b;
	border-radius:5px;
}
.warn-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
.test-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(204,204,204,0.2);
    border-radius: 10px;
    background: #EDEDED;
}
.warn-content p{
	font-size:14px!important;
	color:#666;
}
.warn-content .title{
	font-size:14px;
	color:#666;
	font-weight:bold;
	text-align:center;
	margin-bottom:15px;
}
.remind>p{
	display:inline-block;
	width:100%;
	height:20px;
	padding-left:30%;
	margin-top:10px;
	font-size:12px;
	background:url('../png/down.png') no-repeat 62% center;
	display:none;
	cursor:pointer;
	color:#fc916d;
}
.equip-detail{
	display:block;
	width:200px;
	height:60px;
	font-size:18px;
	color:#666;
	font-weight:bold;
	margin-top:20px;
	line-height:60px;
	padding-left:18px;
	background:#fff url('../png/arrow-3.png') no-repeat 90% center;
}
@keyframes arrow-move{
	0%{
		background-position:91% center;
	}
	20%{
		background-position:92% center;
	}
	40%{
		background-position:93% center;
	}
	60%{
		background-position:92% center;
	}
	80%{
		background-position:91% center;
	}
	100%{
		background-position:90% center
	}
}