.side-selector{
	position: fixed;
	background: rgba(0,0,0,0);
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: background .3s;
	transition: background .3s;
	overflow: hidden;
	z-index:999999;
}
.side-selector.active{
	background: rgba(0,0,0,.5);
}
.side-selector.hide{
	display: none;
}
.selector-wrapper{
	position: absolute;
	left: 2.25rem;
	top: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	-webkit-transform: translate(100%,0) translateZ(0);
	transform: translate(100%,0) translateZ(0);
	-webkit-transition: -webkit-transform .3s;
	transition: transform .3s;
}
.side-selector.active .selector-wrapper{
	-webkit-transform: translate(0,0) translateZ(0);
	transform: translate(0,0) translateZ(0);
}
.selector-wrapper h3{
	font-size: 16px;font-weight: normal;
	text-align: center;
	height: 44px;
	line-height: 44px;
	border-bottom: 1px solid #ccc;
	color: #4385F5;
	position: relative;
}

.selector-wrapper .icon-back2 {
	position: absolute;
  background: url(http://static.hehenian.com/m/img/icon-back2.png) 50% 50% no-repeat;
  background-size: 30%;
  left: 12px;
  top: 12px;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
}

.selector-list{
	position: absolute;
	overflow-x: hidden;
	overflow-y: auto;
	top: 44px;
	left: 0;
	bottom: 0;
	right: 0;
}
.selector-list li{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
		height: 40px;
	line-height: 40px;
	font-size: 16px;
	border-bottom: 1px solid #eee;
	padding-left: .5rem;
}

.selector-list li:active{
	background: #eee;
}
.selector-list li.selected{
	position: relative;
	background: #eee;
}
.selector-list li.selected:after{
	content:' ';
	display: inline-block;
	width: .8rem;
	height: .8rem;
	-webkit-background-size: contain;
	background-size: contain;
	position: absolute;
	right: .7rem;
	top: .7rem;
}