* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	/* 解决ios点击闪烁 */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background: url() center center no-repeat;
	background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	min-height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-family: arial, "microsoft yahei", "微软雅黑", 'Open Sans', 'sans-serif';
	/* 微信浏览器页面加载完字体会放大,ios端解决办法 */
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	margin: 0;
	-moz-text-size-adjust: 100% !important;
}

.resize {
	position: absolute;
	z-index: 1;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 3px;
	border-bottom: 1px solid #C60061;
	color: #C60061;
	font-weight: 800;
}

.title {
	text-align: center;
	font-size: 15px;
	line-height: 1.1;

}

.topbar>div {
	width: 30px;
	vertical-align: bottom;
	height: auto;
}

.topbar img {
	width: 30px;
}

.base-btn {
	height: 32px;
	line-height: 32px;
	font-size: 15px;
	background-color: #c60061;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: none;
	color: white;
	font-weight: bold;
}

select {
	/* 可以设置padding等 */
	/* appearance: none;
          -webkit-appearance: none; */
}

/* 表单样式 */
.form-item {
	position: relative;
	margin: 15px 0;
	font-size: 0;
}

.form-item>label {
	 letter-spacing: 2px;
	display: block;
	font-size: 14px;
	padding-left: 5%;
}

.form-item>label[required]::before {
	content: "* ";
	color: #4171DA;
}
 

.address {
	display: inline-block;
	width: calc(100% - 80px);
	vertical-align: top;
	font-size: 13px;
}

.address select {
	background-color: white;
	border: 1px solid grey;
	font-size: 13px;
	width: 45%;
	height: 23px;
}

.address textarea {
	font-size: 13px;
	width: 100%;
	border: 1px solid grey;
}

/* 提交按钮 */
#sbt,
#cancel {
	background-color: #fdbb2f;
	color: white;
	margin: 10px;
	border: none;
	width: 30%;
	padding: 10px;
}

/* 验证码按钮 */
#send-btn {
	position: absolute;
	right: 5%;
	font-size: 16px;
	bottom: 5px;
	color: white;
	width: 120px;
	height: 23px;
	padding: 0 8px;
	background-color: #231815;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

/* 弹窗 */
.dialog {
	z-index: 99;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	font-size: 16px;

}

.dialog-content {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
	max-height: 90%;
	overflow-y: auto;
	background-color: white;
}

.dialog-content .close {
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	font-size: 1.5rem;
	color: #231815;
}

.form .dialog-title {
	text-align: center;
	padding: 20px;
	font-size: 18px;
}

.form .dialog-content {
	background-color: rgba(249, 249, 249, .9);
	border-radius: 8px;
}

.form input,
.form textarea,
.form select {
	width: 90%;
	margin: 5px 5%;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	font-size: 14px;
	border-radius: 2px;
	border: 1px solid #AFAFB0;
	background-color: white;
}
.form textarea{
	height: 90px;
}
.form input[type=checkbox] {
	width: 20px;
	vertical-align: middle;
}

.form .btns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 8% 20px;
}

.form .btns .btn {
	flex: 0 0 45%;
	text-decoration: none;
	background-color:#4171DA;
	color: white;
	border-radius: 6px;
	text-align: center;
	padding: 6px;
	cursor: pointer;
}

.form .btns .btn.plain {
	background-color: transparent;
	color: #231815;
}

.logo {
	border-bottom: 1px solid #eaeaea;
}

.logo .search {
	position: absolute;
	right: 20px;
	top: 10px;
	height: 24px;
}
.logo>img{
	margin: 12px 20px 8px;
	height: 20px;
}