*{
	padding: 0;
	margin: 0;
}
body{
	background: #f2f2f2;
	min-width: 320px;
    max-width: 750px;
    margin: 0 auto!important;
}
a{
   text-decoration: none;
}
p{
	margin: 0;
}
.coverBg{
	width: 100%;
	position: fixed;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 8;
	height: 100%;
	display: none;
}

.cover{
	width: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 8;
}

/*顶部标题*/
.header_top{
	width: 100%;
    height: 44px;
	background: #f8f8f8;
	padding: 0px 10px;
	text-align: center;
	line-height: 44px;
	box-sizing: border-box;
}
.header_top span{
	float: left;
}
.header_top h3{
	font-weight: normal;
	font-size: 17px;
	display: inline-block;
}
/*确认框样式*/
.confirm_wrapper{
	width: 90%;
    height: auto;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    top: 26%;
    left: 5%;
    z-index: 9;
}
.confirm_wrapper h1{
	width: 100%;
	font-size: 16px;
	color: #999;
	font-weight: normal;
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #ebebeb;
}
.confirm_wrapper p{
	color: #333;
	padding: 15px 0px;
}
.confirm_wrapper button{
	width: 45%;
	color: #f50033;
	border: 1px solid #f50033;
}
.confirm_wrapper button:nth-of-type(2){
	color: #fff;
	background:#f50033 ;
	margin-left: 15px;
}
/*弹出框样式*/
.DialogCom{
	width: 100%;
    background: #fff;
    position: fixed;
    bottom: 0px;
    z-index: 9;
    display: none;
}
.DialogCom p{
	color: #999;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding: 0px 10px;
}
.DialogCom p span{
	float: right;
}
.DialogCom ul{
	width: 100%;
	padding: 10px 15px;
}
.DialogCom ul li{
	list-style: none;
	margin: 10px;
	font-size: 15px;
}

.DialogCom  button{
	width: 100%;
    border-radius: 0;
    color: #fff;
    padding: 13px 0px;
    border: none;
    background: -webkit-linear-gradient(left,#f50033,#ff5411);
    background: linear-gradient(to right,#f50033,#ff5411);
}
/*复选框样式*/
input[type='radio']{
	width: 20px;
	height: 20px;
	-webkit-appearance: none;
	background: url(../images/input.png);
	background-size: 100%;
	background-color: transparent;
	border: none;
	vertical-align: top;
	margin-right: 3px;
}
input[type='radio']:checked{
	background: url(../images/inputCheck.png);
	background-size: 100%;
    background-color: transparent;
    margin: 0;
    margin-right: 3px;
}
input[type='checkbox']{
	width: 20px;
	height: 20px;
	-webkit-appearance: none;
	background: url(../images/input.png);
	background-size: 100%;
	background-color: transparent;
	border: none;
	vertical-align: top;
	margin-right: 3px;
}
input[type='checkbox']:checked{
	background: url(../images/inputCheck.png);
	background-size: 100%;
    background-color: transparent;
    margin: 0;
    margin-right: 3px;
}
/*弹出提示框*/
.toast_tip {
    position: fixed;
    bottom: 0;
    left: 19%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    z-index: 999;
    color: #fff;
    border-radius: 5px;
}