.van-cell {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	padding: 10px 16px;
	overflow: hidden;
	color: #323233;
	font-size: 14px;
	line-height: 24px;
	background-color: #fff
}

.van-cell:after {
	position: absolute;
	box-sizing: border-box;
	content: " ";
	pointer-events: none;
	right: 16px;
	bottom: 0;
	left: 16px;
	border-bottom: 1px solid #ebedf0;
	-webkit-transform: scaleY(.5);
	transform: scaleY(.5)
}

.van-cell--borderless:after,
.van-cell:last-child:after {
	display: none
}

.van-cell__label {
	margin-top: 4px;
	color: #969799;
	font-size: 12px;
	line-height: 18px
}

.van-cell__title,
.van-cell__value {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1
}

.van-cell__value {
	position: relative;
	overflow: hidden;
	color: #969799;
	text-align: right;
	vertical-align: middle;
	word-wrap: break-word
}

.van-cell__value--alone {
	color: #323233;
	text-align: left
}

.van-cell__left-icon,
.van-cell__right-icon {
	height: 24px;
	font-size: 16px;
	line-height: 24px
}

.van-cell__left-icon {
	margin-right: 4px
}

.van-cell__right-icon {
	margin-left: 4px;
	color: #969799
}

.van-cell--clickable {
	cursor: pointer
}

.van-cell--clickable:active {
	background-color: #f2f3f5
}

.van-cell--required {
	overflow: visible
}

.van-cell--required:before {
	position: absolute;
	left: 8px;
	color: #ee0a24;
	font-size: 14px;
	content: "*"
}

.van-cell--center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.van-cell--large {
	padding-top: 12px;
	padding-bottom: 12px
}

.van-cell--large .van-cell__title {
	font-size: 16px
}

.van-cell--large .van-cell__label {
	font-size: 14px
}

.van-field__label {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	flex: none;
	box-sizing: border-box;
	width: 6.2em;
	margin-right: 12px;
	color: #646566;
	text-align: left;
	word-wrap: break-word
}

.van-field__label--center {
	text-align: center
}

.van-field__label--right {
	text-align: right
}

.van-field--disabled .van-field__label {
	color: #c8c9cc
}

.van-field__value {
	overflow: visible
}

.van-field__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.van-field__control {
	display: block;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	color: #323233;
	line-height: inherit;
	text-align: left;
	background-color: transparent;
	border: 0;
	resize: none
}

.van-field__control::-webkit-input-placeholder {
	color: #c8c9cc
}

.van-field__control::placeholder {
	color: #c8c9cc
}

.van-field__control:disabled {
	color: #c8c9cc;
	cursor: not-allowed;
	opacity: 1;
	-webkit-text-fill-color: #c8c9cc
}

.van-field__control:read-only {
	cursor: default
}

.van-field__control--center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center
}

.van-field__control--right {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: right
}

.van-field__control--custom {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	min-height: 24px
}

.van-field__control[type=date],
.van-field__control[type=datetime-local],
.van-field__control[type=time] {
	min-height: 24px
}

.van-field__control[type=search] {
	-webkit-appearance: none
}

.van-field__button,
.van-field__clear,
.van-field__icon,
.van-field__right-icon {
	-webkit-flex-shrink: 0;
	flex-shrink: 0
}

.van-field__clear,
.van-field__right-icon {
	margin-right: -8px;
	padding: 0 8px;
	line-height: inherit
}

.van-field__clear {
	color: #c8c9cc;
	font-size: 16px;
	cursor: pointer
}

.van-field__left-icon .van-icon,
.van-field__right-icon .van-icon {
	display: block;
	font-size: 16px;
	line-height: inherit
}

.van-field__left-icon {
	margin-right: 4px
}

.van-field__right-icon {
	color: #969799
}

.van-field__button {
	padding-left: 8px
}

.van-field__error-message {
	color: #ee0a24;
	font-size: 12px;
	text-align: left
}

.van-field__error-message--center {
	text-align: center
}

.van-field__error-message--right {
	text-align: right
}

.van-field__word-limit {
	margin-top: 4px;
	color: #646566;
	font-size: 12px;
	line-height: 16px;
	text-align: right
}

.van-field--error .van-field__control::-webkit-input-placeholder {
	color: #ee0a24;
	-webkit-text-fill-color: currentColor
}

.van-field--error .van-field__control,
.van-field--error .van-field__control::placeholder {
	color: #ee0a24;
	-webkit-text-fill-color: currentColor
}

.van-field--min-height .van-field__control {
	min-height: 60px
}

.van-image {
	position: relative;
	display: inline-block
}

.van-image--round {
	overflow: hidden;
	border-radius: 50%
}

.van-image--round img {
	border-radius: inherit
}

.van-image__error,
.van-image__img,
.van-image__loading {
	display: block;
	width: 100%;
	height: 100%
}

.van-image__error,
.van-image__loading {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #969799;
	font-size: 14px;
	background-color: #f7f8fa
}

.van-image__error-icon,
.van-image__loading-icon {
	color: #dcdee0;
	font-size: 32px
}

.my-video[data-v-691d4eb0] {
	position: relative;
	height: 100%
}

.my-video video[data-v-691d4eb0] {
	width: 100%;
	height: 100%;
	-o-object-fit: fill;
	object-fit: fill
}

.van-radio-group--horizontal {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.van-radio,
.van-radio-group--horizontal {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.van-radio {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none
}

.van-radio--disabled {
	cursor: not-allowed
}

.van-radio--label-disabled {
	cursor: default
}

.van-radio--horizontal {
	margin-right: 12px
}

.van-radio__icon {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	flex: none;
	height: 1em;
	font-size: 20px;
	line-height: 1em;
	cursor: pointer
}

.van-radio__icon .van-icon {
	display: block;
	box-sizing: border-box;
	width: 1.25em;
	height: 1.25em;
	color: transparent;
	font-size: .8em;
	line-height: 1.25;
	text-align: center;
	border: 1px solid #c8c9cc;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-property: color, border-color, background-color;
	transition-property: color, border-color, background-color
}

.van-radio__icon--round .van-icon {
	border-radius: 100%
}

.van-radio__icon--checked .van-icon {
	color: #fff;
	background-color: #1989fa;
	border-color: #1989fa
}

.van-radio__icon--disabled {
	cursor: not-allowed
}

.van-radio__icon--disabled .van-icon {
	background-color: #ebedf0;
	border-color: #c8c9cc
}

.van-radio__icon--disabled.van-radio__icon--checked .van-icon {
	color: #c8c9cc
}

.van-radio__label {
	margin-left: 8px;
	color: #323233;
	line-height: 20px
}

.van-radio__label--left {
	margin: 0 8px 0 0
}

.van-radio__label--disabled {
	color: #c8c9cc
}

.van-checkbox-group--horizontal {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.main[data-v-2de8d170] .van-dialog {
	background-color: transparent
}

[data-v-2de8d170] .van-checkbox__icon .van-icon {
	border: 1px solid #333
}

.td[data-v-2de8d170] {
	background: url(../img/閫€璁�.465e579e.png) no-repeat;
	background-size: 100% 100%;
	padding: 5rem 15px;
	padding-bottom: 2rem;
	display: flex;
	flex-direction: column
}

.td input[data-v-2de8d170] {
	height: 2rem;
	border-color: transparent;
	border-radius: 10px;
	padding-left: 8px;
	box-sizing: border-box
}

.td p[data-v-2de8d170] {
	display: flex;
	margin-top: 15px;
	justify-content: space-between
}

.td p span[data-v-2de8d170] {
	color: #fff;
	text-align: center;
	height: 3rem;
	line-height: 3rem;
	background: url(../img/31711635904754_.pic_hd.f704bdb6.jpg) no-repeat;
	background-size: 100% 100%;
	width: 100%;
	margin-left: 5px
}

.td p img[data-v-2de8d170] {
	width: 45%
}

.td form[data-v-2de8d170] {
	height: 250px
}

.td form div[data-v-2de8d170] {
	background-color: transparent
}

.btn-box[data-v-2de8d170] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: .4rem
}

.btn-box span[data-v-2de8d170] {
	flex: 1;
	padding: .2rem .3rem;
	text-align: center;
	border-radius: .3rem;
	font-size: .32rem;
	color: #fff;
	font-weight: 700
}

.btn-box .cancel-btn[data-v-2de8d170] {
	background-color: #b7b7b7;
	margin-right: .2rem
}

.btn-box .sure-btn[data-v-2de8d170] {
	background-color: #fa972d
}