* {
	margin: 0;
	padding: 0;
	border: none;
    outline: 0;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}


html, body {
	-webkit-touch-callout:none;
	-webkit-text-size-adjust:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	-webkit-user-select:none;
	width: 100%;
	display: flex;
    flex-direction: column;
    height: 100vh;
}


.view {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
	flex: 1;
    display: flex;
}

.view::-webkit-scrollbar { width: 0 !important }

.content{
    position: relative;
    height: 100%;
    -webkit-box-flex: 1;
    overflow: hidden;
    overflow-y: auto;
}

.content::-webkit-scrollbar {
    display: none;
}

img{
	width: 100%;
	display: block;
}

.btn{
    width: 100%;
    height: 75px;
}

.btn img {
	height: 100%;
}

.mask {
	position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 500px;
    transition: all 0.3s;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    background-color: rgba(255,255,255,0.8);
    z-index: 10;
}

.showMask {
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
}

.picView {
	width: 100%;
	/*height: 76px;*/
	text-align: center;
}

.picView img {
	display: inline-block;
}

.arrow {
	margin: 10px 0;
	width: 100%;
	height: 20px;
	background: url(../images/ioc01.png) no-repeat center;
	background-size: 16px 9px;
}

.ico01 {
	width: 100%;
	height: 36px;
	background-image: url(../images/top.png);
	background-repeat: no-repeat;
	background-position: center;
    background-size: 190px 36px;
}

form {
	margin-top: 10px;	
	width: 100%;
	height: 100%;
    -webkit-box-flex: 1;
    overflow: hidden;
    overflow-y: auto;
	text-align: center;
}

form::-webkit-scrollbar {
    display: none;
}

.item {
	margin: 6px;
	padding: 0 16px;
	display: flex;
	flex-direction: row;
	height: 50px;
	background-color: #F0F0F2;
	border-radius: 5px;
}

.item span {
	width: 100px;
	height: 50px;
	line-height: 50px;
	color: #222;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
}

.item div {
	flex: 1;
	-webkit-user-select:text !important;
}

select {
	width: 100%;
    height: 50px;
    line-height: 38px;
    color: #333;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    background: none;
}

input {
	width: 100%;
    height: 50px;
    background-color: transparent;
    -webkit-user-select:text !important;
}

.getCode {
	margin-left: 10px;
    line-height: 50px;
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.register {
	margin: 20px 6px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	background-color: #E82837;
	border-radius: 6px;
	text-align: center;
}

.long_regists {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 12
}

.long_registerts {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80%;
	text-align: center;
	padding: 10px;
	background: #fff;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.long_registerts span {
	font-size: 14px;
	color:#333;
}

@media screen and (min-width: 415px) {
	.view {
		display: inline-block;
	    position: absolute;
	    left: 50%;
	    top: 100px;
	    transform: translateX(-50%);
	    -webkit-transform: translateX(-50%);
	    width: 414px;
	    height: 736px;
	    display: -webkit-flex;
	    -webkit-flex-direction: column;
	    flex-direction: column;
	    background: #f5f5f5;
	    -webkit-box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
	    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
	    overflow: hidden;
	}
}

/**@supports (bottom: env(safe-area-inset-bottom)){
    body,
    .btn {
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
    }
}**/


video {
	width: 100%;
}


