html,
body {
	font-family: AppleGothic;
	font-size: 0.48rem;
	color: #1b1b1b;
	background-color: #fff;
	margin: 0;
	padding: 0;
}

.content {
	width: 86.9%;
	margin: 0 auto;
	padding: 1px 0;
	padding-bottom: 1rem;
	position: relative;
	min-height: 100vh;
}

.top {
	width: 100%;
	margin: 0.22rem auto 0.30rem;
	font-size: 0.26rem;
	color: #383838;
	text-align: right;
	text-decoration: underline;
}

.line {
	width: 100%;
	height: 2px;
	background-color: #323232;
}

.tipWrap {
	display: flex;
	flex: 1;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	font-weight: bold;
	height: 1.34rem;
	color: #328838;
	font-size: 0.37rem;
}

.tipWrap img {
	width: 0.43rem;
	height: auto;
}

.title {
	width: 100%;
	height: 0.91rem;
	background-color: #f3f3f3;
	font-size: 0.43rem;
	font-weight: bold;
	line-height: 0.91rem;
	padding-left: 0.24rem;
}

.ordWrap {
	font-size: 0.40rem;
	width: 100%;
	padding: 0.14rem 0 0.14rem 0.24rem;

}

.ordWrap div {
	/* height:0.58rem; */
	line-height: 0.7rem;
	word-wrap: break-word;
	word-break: break-word;
}

.ordAmt {
	font-family: Arial-BoldMT;
	font-size: 0.43rem;
	color: #c51d37;
	font-weight: bold;
}

.discBox {
	font-family: DFHeiHK-W5;
	color: #240303;
	font-size: 0.19rem;
	font-weight: normal;
	margin-left: 0.15rem;
}

.typBtnWrap {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 345rem;
	font-size: 0.34rem;
	padding: 0.53rem 0 0.53rem;
}

.bocBtnBox {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	background-color: #ffffff;
	border-radius: 0.10rem;
	border: solid 1px #464646;
	margin-left: 0.24rem;
	height: 0.66rem;
	cursor: pointer;
	padding: 0.15rem;
	margin-bottom: 0.2rem;
}

.bocBtnBox img {
	width: 0.8rem;
	height: auto;
}

.typBtnBox {
	width: 100%;
	min-height: 1.64rem;
	background-color: #ffffff;
	border-radius: 0.2rem;
	border: solid 1px #ccc;
	margin: 0.24rem;
	background-position: center;
	background-repeat: no-repeat;
	padding: 0.2rem 0.3rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.typBtnBox img {
	width: 0.86rem;
}

.selected_box img {
	width: 0.5rem;
	height: 0.5rem;
}

.wechatBox {
	background-image: url(../img/wechat.png);
	background-size: 2.23rem auto;
}

.aliBox {
	background-image: url(../img/alipay.png);
	background-size: 1.85rem auto;
}

footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #383838;
	font-size: 0.20rem;
	width: 86.9%;
	margin: 0 auto 0.40rem;
	position: absolute;
	bottom: 0;
	font-size: 0.34rem;
}

.qrCodeWrap {
	width: 2.82rem;
	margin: 0 auto;
	text-align: center;
	padding: 0.15rem 0;
}

.cancelBox {
	font-family: DFHeiHK-W5;
	text-decoration: underline;
	font-size: 0.16rem;
	line-height: 0.44rem;
	color: #3d3a3a;
	opacity: 0.5;
	margin-top: 0.12rem;
	cursor: pointer;
}

.tipBox {
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.34rem;
	color: #1b1b1b;
	height: 0.34rem;
	background-color: rgba(70, 70, 70, 0.2);
}

.codeBox {
	width: 3.50rem;
	height: 3.50rem;
	padding: 0.10rem;
}

.dialogWrap {
	display: flex;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-family: DFHeiHK-W5;
	color: #383838;
	line-height: 1;
}
.err-wrap{
	width:80%;
	font-size: 0.6rem;
	background: #9e9e9e;
	padding: 0.6rem;
	border-radius: 0.2rem;
}
.wrap-tips{
	position: fixed;
	z-index: 100;
	top:50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}
.mock {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3)
}

.dialogCont {
	width: 6.80rem;
	background: #cccccc;
	z-index: 99999;
	text-align: center;
}

.loadingBox {
	margin: 1.34rem auto 0.55rem;
	width: 0.96rem;
	height: 0.96rem;

}

@keyframes roate {
	0% {
		-webkit-transform: rotateZ(0);
		transform: rotateZ(0);
	}

	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);

	}
}

.loadingBox img {
	width: 100%;
	height: 100%;
	animation: roate 1.5s infinite linear;
	-webkit-animation: roate 1.5s infinite linear;
}

.payText {
	font-size: 0.48rem;
	font-weight: bold;
	color: #696969;
	padding-bottom: 0.4rem;
}

.cncelBtn {
	text-decoration: underline;
	font-size: 0.24rem;
	color: #464646;
	margin: 0.49rem auto 0.95rem;
	cursor: pointer;
}

.aliPayPage {
	width: 100%;
	position: fixed;
	top: 0.176rem;
	bottom: 0;
	z-index: 99999;
	background: #fff;
	padding-bottom: 0.70rem;
}

.btnWrap {
	height: 0.70rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 99999999;
	background: #eee;
}

.btnWrap .btnBtn {
	height: 0.40rem;
	border: 1rem solid #ccc;
	line-height: 0.40rem;
	border-radius: 0.10rem;
	margin: 0 10rem;
	padding: 0 10rem;
	cursor: pointer;
}

.aliPayPage iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0.70rem;
	top: 0;
	padding-bottom: 0.70rem;
}

.succImgBox {
	margin: 1.34rem auto 0.55rem;
	width: 0.96rem;
	height: 0.96rem;
}

.succImgBox img {
	width: 100%;
	height: 100%;
}

.QRCodeDiv {
	width: 6.25rem;
	margin: 0.65rem auto 0;
	background: rgba(240, 240, 240, 0.5);
	text-align: center;
	padding: 0.31rem 0 0.22rem;
	color: #323232;
}

.saotextBox {
	font-size: 0.23rem;

}

.ordAmtBox {
	font-size: 0.37rem;
	color: #b5002a;
	font-weight: bold;
	margin: 0.17rem auto 0.31rem;
}

.typImgWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.13rem auto 0.21rem;
}

.tip_pay_text {
	font-size: 0.20rem;
	width: 2.86rem;
	word-break: break-word;
	word-wrap: break-word;
	margin: 0 auto;
}

.typImgWrap img:nth-of-type(1) {
	height: 0.46rem;
	width: auto;
}

.typImgWrap img:nth-of-type(2) {
	margin-left: 0.25rem;
	height: 0.38rem;
	width: auto;
}

.typImgWrap img:nth-of-type(3) {
	margin-left: 0.25rem;
	height: 0.36rem;
	width: auto;
}

.youBox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0.4rem 0;
}

.youBox img {
	width: 0.8rem;
	height: auto;
	margin-right: 0.15rem;
}

.dialogWrap {
	display: flex;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	justify-content: center;
	align-items: center;
	font-family: DFHeiHK-W5;
	color: #383838;
	line-height: 1;
	z-index: 10;
}

.advWrap {
	width: 100%;
	height: auto;
	margin: 2rem auto 1rem;
}

.advWrap a {
	width: 100%;
	height: 100%;
	display: block;
}

.advWrap img {
	width: 100%;
	height: auto;
}

.waitCont {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	color: #666666;
	font-size: 0.7rem;
	align-items: center;
	padding: 2.5rem 0 1.96rem;
}

.waitCont img {
	width: 2.75rem;
	height: auto;
}

.waitCont .wait_text {
	margin: 0.35rem auto 0.2rem;
}

.jumpWrap {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #dddddd;
	padding-top: 1px;
}

.logoWrap {
	width: 80%;
	margin: 20vh auto 0;
}

.logoWrap img {
	width: 100%;
	height: auto;
}

.jumpText {
	margin-top: 0.5rem;
	text-align: center;
	line-height: 2;
	font-size: 0.6rem;
}

.pay_succ_text {
	font-size: 0.5rem;
	max-width: 60%;
	word-break: break-word;
	word-wrap: break-word;
	white-space: normal;
	margin: 0.35rem auto;
}

.f-btw {
	display: flex;
	justify-content: space-between;
}

.f-start {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.f-around {
	display: flex;
	justify-content: space-around;
}

.f-center {
	display: flex;
	justify-content: center;
}

.f-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.boc_pay {
	box-sizing: border-box;
	padding: 0.4rem;
}

.btn {
	font-size: 0.48rem;
	color: #999;
	text-align: center;
	height: 1.6rem;
	line-height: 1.6rem;
	border-radius: 0.2rem;
	border: 1px solid #999;
	margin: 0 auto;
	cursor: pointer;
	margin-bottom: 0.8rem;
}

.btn2 {
	font-size: 0.48rem;
	color: #999;
	text-align: center;
	height: 1.8rem;
	line-height: 1.8rem;
	border-radius: 0.2rem;
	border: 0.02rem solid #999;
	margin: 0 auto;
	cursor: pointer;
	margin-bottom: 0.8rem;
}

.btn3 {
	font-size: 0.48rem;
	color: #999;
	text-align: center;
	height: 1.6rem;
	line-height: 1.6rem;
	border-radius: 0.2rem;
	border: 0.02rem solid #999;
	margin: 0 auto;
	cursor: pointer;
	color: rgb(176, 10, 50);
	border-color: rgb(176, 10, 50);
	margin-bottom: 0.2rem;
}


.card_item {
	height: 1.8rem;
	border: 0.02rem solid #999;
	border-radius: 0.2rem;
	margin-bottom: 0.8rem;
	color: #999;
	font-size: 0.44rem;
	align-items: center;
	box-sizing: border-box;
	padding: 0.4rem;
}

.success {
	box-sizing: border-box;
	padding: 0.4rem;
}

.con {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 11.5rem;
	height: 12rem;
	background-color: #fff;
	box-sizing: border-box;
	z-index: 1000;
	border-radius: 0.2rem;
}

.con_top {
	height: 1.4rem;
	line-height: 1.4rem;
	text-align: center;
	border-bottom: 0.02rem solid #eee;
}

.con_middle {
	box-sizing: border-box;
	padding: 0.8rem;
	position: relative;
}

.dialog,
.dialog2 {
	font-size: 0.48rem;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	color: #666;
}

.card_m {
	position: relative;
	width: 7rem;
	box-sizing: border-box;
	padding: 0.4rem;
	background-color: #eee;
	border-radius: 0.3rem;
	border: 0.02rem solid #999;
	margin: 0.6rem 0;
}

.con_btm {
	position: relative;
	left: 0;
	top: 0;
}

.dialogCont2 {
	background-color: #fff;
	width: 6.80rem;
	z-index: 99999;
	padding: 0.4rem;
	text-align: center;
}

.mop {
	display: inline-block;
	height: 0.5rem;
	line-height: 0.5rem;
	text-align: center;
	color: rgb(176, 10, 50);
	border-radius: 0.25rem;
	border: 1px solid rgb(176, 10, 50);
	padding: 0 0.15rem;
	margin-left: 0.2rem;
}

.select_active {
	border: 1px solid rgb(176, 10, 50);
}

.card_info {
	font-size: 0.48rem;
	color: #999;
}

.card_info .item {
	width: 100%;
	height: 1.4rem;
	border: 1px solid #999;
	border-radius: 0.2rem;
	box-sizing: border-box;
	padding: 0.2rem;
	align-items: center;
}

.card_info .item2 {
	height: 1.4rem;
	border: 1px solid #999;
	border-radius: 0.2rem;
	box-sizing: border-box;
	padding: 0.2rem;
	align-items: center;
}

.card_info .item2 input {
	min-width: 4.5rem !important;
	width: 4.5rem !important;
	padding: 0;
	padding-left: 0.1rem;
	box-sizing: border-box;
}

.card_info .item2 iframe {
	width: 4.5rem !important;
}

.card_info iframe {
	width: 9rem;
}

.card_info .active {
	color: rgb(176, 10, 50);
	border-color: rgb(176, 10, 50);
}

.card_info .unactive {
	color: #999;
	border-color: #999;
}

.card_info input,
.card_info p {
	min-width: 9rem !important;
	width: 9rem !important;
	background: none;
	outline: none;
	border: 1px solid #fff;
	height: 100%;
	flex-grow: 1;
	-webkit-appearance: none !important;
	outline: none;
}
