* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
input,select{
	background: transparent !important;
}
.container {
	height: 100vh;
}

.top {
	position: relative;
	line-height: 44px;
	background-color: #3f90f4;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
}

.top a {
	height: 44px;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	padding-left: 15px;
	font-size: 14px;
}

.top a::before {
	content: "";
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	border-color: transparent transparent #fff #fff;
	border-width: 2px;
	border-style: solid;
	transform: rotate(45deg);
	border-radius: 3px;
}
.cover{
	height: 100vh;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	background: rgba(0, 0, 0, 0.2);
	display: none;
}
.popup{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	background-color: #fff;
	padding: 0px 10px;
	box-sizing: border-box;
	border-radius: 3px;
	font-size: 14px;
	display: none;
}
.popup .tit{
	padding: 10px;
	color: #787878;
	margin-bottom: 15px;
}
.popup .con .box2{
	display: flex;
	align-items: center;
	line-height: 40px;
	margin-bottom: 15px;
}
.popup .con .box2 span{
	width: 70px;
	text-align: right;
	color: #434343;
}
.popup .con .box2 select,.popup .con .box2 input{
    flex: 1;
    height: 40px;
    background-color: transparent;
    border: 1px solid #ededed;
    outline: none;
    font-size: 14px;
    border-radius: 3px;
    padding: 0px 10px;
    color: #787878;
    overflow: hidden;
    box-sizing: border-box;
}
.popup .con p{
	padding: 10px 10px 30px;
	color: #434343;
}
.popup .btn-box{
	border-top: 1px solid #ededed;
	padding: 20px 0;
	text-align: right;
}
.popup .btn-box button{
	width: 70px;
	height: 33px;
	border-radius: 3px;
	font-size: 14px;
	margin-left: 10px;
}
.popup .btn-box button.cancel{
	background-color: transparent;
	color: #3f90f4;
	border: 1px solid #3f90f4;
}
.popup .btn-box button.ack{
	background-color: #3f90f4;
	color: #ffffff;
	border: none;
}

.tempContainer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 13;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.tempContainer img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width:600px) {
	.container,.cover {
		width: 100%;
	}
}

@media screen and (min-width:600px) {
	.container,.cover{
		width: 600px;
		margin: 0 auto;
	}
}