:root {
	--bg: #ffffff;
	--text: #111111;
	--subtext: #7a7a7a;
	--muted: #b7b7b7;
	--line: #efefef;
	--primary: #07c160;
	--tap: #f2f2f2;
	--title: 28px;
	--radius: 12px;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent
}

html,
body {
	height: 100%;
	overflow-x: hidden
}

body {
	margin: 0;
	background: #f5f5f5 !important;
	color: var(--text)
}

.page {
	min-height: 100%;
	padding-bottom: 84px;
	background-color: #f5f5f5;
	width: 100%;
}


.back {
	border: 0;
	background: transparent;
	padding: 8px;
	margin: 0;
	border-radius: 20px
}

.back:active {
	background: var(--tap)
}

.back-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-left: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: rotate(45deg)
}

.status-spacer {
	flex: 1
}

.content {
}

/* 头部文案 */
.hero {
	padding: 0 16px;
}

.title {
	margin: 12px 0 12px;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 700
}

.subtitle {
	margin: 0;
	color: var(--subtext);
	font-size: 15px;
	line-height: 22px
}

/* 分组 cells */
.cell-group {
	margin: 12px -16px 0;
	padding: 0 16px;
	margin-bottom: 16px;
}

.cell {
	width: 100%;
	padding: 18px 16px;
	border: 0;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff
}

.cell:first-child {
	border-top: 0;
	margin-bottom: 10px;
}

.cell:active {
	background: var(--tap)
}

.cell-title {
	font-size: 17px;
	flex: 0 0 auto;
	font-weight: 600
}

.cell-value {
	margin-left: auto;
	color: #b3b3b3
}

.cell-arrow {
	width: 9px;
	height: 9px;
	border-right: 1.5px solid #bbb;
	border-top: 1.5px solid #bbb;
	transform: rotate(45deg);
	margin-left: 8px
}

.cell.static {
	background: #fff
}

.phone-input {
	border: 0;
	background: transparent;
	color: #111111;
	font-size: 15px;
	line-height: 22px;
	outline: none;
	
}
.phone-input::placeholder {
	color: #9a9a9a;
}

/* Section 与文本域 */
.section {
background-color: #fff;
padding: 16px;
margin-bottom: 12px;
}

.section-title {
	font-size: 17px;
	font-weight: 600;
	width: 100%;
	margin-bottom: 12px;
}

.optional {
	font-weight: 400;
	color: #9a9a9a
}

.tips {
	color: #9a9a9a;
	margin: 8px 0 12px;
	font-size: 13px;
	line-height: 20px
}

.textarea-wrap {
	position: relative;
	margin-top: 10px
}

.textarea-wrap textarea {
	width: 100%;
	min-height: 148px;
	padding: 12px 0;
	border-radius: 8px;
	border: 1px solid #ffff;
	font-size: 15px;
	line-height: 22px;
	resize: vertical;
	outline: none
}

.textarea-wrap textarea::placeholder {
	color: #9a9a9a
}

.counter {
	position: absolute;
	right: 10px;
	bottom: 8px;
	color: #9a9a9a;
	font-size: 12px
}

/* 图片上传 */
 .uploader {
 	display: flex;
 	flex-wrap: wrap;
 	gap: 8px
}

.upload-tile {
	width: 112px;
	height: 112px;
	border: 1px dashed var(--line);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #a8a8a8;
	gap: 6px;
	cursor: pointer;
	background-color: #f5f5f5;
}

.upload-tile input {
	display: none
}

 .upload-tile .camera {
 	width: 36px;
 	height: 36px;
 	background: url("./photo.png") no-repeat center / 24px 24px;
 	border: 0;
 	border-radius: 0
 }

.upload-tile .hint {
	font-size: 12px
}

.preview {
	width: 112px;
	height: 112px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: #f6f6f6
}

.preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.preview .del {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	border-radius: 10px;
	border: 0;
	font-size: 12px;
	line-height: 20px
}

/* 协议与提交 */
.agree {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 8px 0 0;
	color: #666;
	font-size: 13px;
	line-height: 20px;
	padding: 0 16px;
	margin-bottom: 12px;
}

.agree input {
	width: 18px;
	height: 18px;
	margin-top: 1px;
}

.footer {
	padding: 10px 16px 16px
}

.submit {
	width: 100%;
	height: 44px;
	border-radius: 8px;
	border: 0;
	background: #dff3e8;
	color: #fff;
	font-size: 17px
}

.submit.enabled {
	background: var(--primary)
}

.submit:active {
	opacity: .9
}

/* 动作面板 */
.actionsheet {
	position: fixed;
	inset: 0;
	display: none;
	width: auto;
}

.actionsheet[aria-hidden="false"] {
	display: block
}

.actionsheet .mask {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	width: auto;
}

.actionsheet .panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	width: auto;
	background: #f5f5f5;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
}

.sheet-list {
	background: #fff;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
}

.sheet-list .sheet-item+.sheet-item {
	border-top: 1px solid var(--line)
}

.sheet-item {
	width: 100%;
	padding: 14px 0;
	border: 0;
	background: #fff;
	text-align: center;
	font-size: 18px;
	box-sizing: border-box;
}
.sheet-item:first-child {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.sheet-item:active {
	background: var(--tap)
}

.sheet-cancel {
	margin-top: 8px;
	width: 100%;
	padding: 14px 0px;
	border: 0;
	background: #fff;
	font-size: 18px
}

/* 安全区域 */
@supports (padding: env(safe-area-inset-bottom)) {
	.footer {
		padding-bottom: calc(16px + env(safe-area-inset-bottom))
	}
}

/* 结果页 */
.result-page{background:#fff}
.result{
	min-height:100vh;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	padding:24px;
	text-align:center;
}
.result-wechat{padding-top:80px}
.result-icon{
	width:56px;height:56px;border-radius:28px;background:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.result-icon .tick{
	display:block;width:14px;height:26px;border-right:3px solid #fff;border-bottom:3px solid #fff;transform:rotate(45deg);margin-top:-2px;
}
.result-title{margin:6px 0 10px;font-size:18px;font-weight:700;color:#111}
.result-subtitle{margin:0 auto 28px;color:#666;line-height:22px;font-size:14px;max-width:280px}
.btn-primary{
    border: 0 !important;
	display:inline-block;padding:10px 0;background:var(--primary);color:#fff;text-decoration:none;border-radius:6px;font-size:16px;min-width:180px;
}
.btn-wechat{width:200px}