:root {
	--main-color: #222;
	--main-tips-color: #999;
	--main-active-color: #f73;
}
body {
	background-color: #f5f5f5;
}
.pay-box {
	max-width: 600px;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
	border-radius: 5px;
	overflow: hidden;
	margin-top: 20px;
}
.pay-box>h2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-weight: normal;
	padding: 40px 40px 20px;
	background-color: ;
}
.pay-box>h2>span {
	flex: 1;
	border-left: 1px #eee solid;
	margin-left: 10px;
	padding-left: 10px;
	font-size: 24px;
}
.pay-form {
	padding: 20px 40px;
}
.pay-form>li {
	list-style: none;
	overflow: hidden;
	margin-bottom: 8px;
}
.pay-form>li>label {
	font-size: 12px;
	color: #666;
}
.pay-form>li>.amount,
.pay-form>li>.type {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}
.pay-form>li>.tips {
	font-size: 12px;
	color: red;
	margin-top: 10px;
}
.amount-radio-item {
	margin: 8px 8px 0 0;
}
.amount-radio-item input[type="radio"] {
	display: none;
}
.amount-radio-btn {
	border: 2px #eee solid;
	cursor: pointer;
	width: 100px;
	height: 44px;
	line-height: 44px;
	display: inline-block;
	font-size: 14px;
	background-color: #f9f9f9;
	text-align: center;
}
.amount-radio-item input[type="radio"]:checked + .amount-radio-btn {
	border-color: #FF753A;
	background: url(../images/ico_checkon.svg) no-repeat right bottom;
	background-size: 14px 14px;
}
.pay-radio-item {
	margin: 8px 8px 0 0;
}
.pay-radio-item input[type="radio"] {
	display: none;
}
.pay-radio-btn {
	border: 2px #eee solid;
	cursor: pointer;
	width: 100px;
	height: 44px;
	line-height: 44px;
	display: flex;
	font-size: 14px;
	background-color: #f9f9f9;
	text-align: center;
	margin: 0;
	justify-content: center;
	align-items: center;
}
.pay-radio-btn>img {
	max-width: 80%;
}
.pay-radio-item input[type="radio"]:checked + .pay-radio-btn {
	border-color: #FF753A;
	background: url(../images/ico_checkon.svg) no-repeat right bottom;
	background-size: 14px 14px;
}
.pay-btn {
	padding: 20px 40px;
	border-top: 1px #f9f9f9 solid;
	text-align: right;
	background-color: #f9f9f9;
}
.pay-btn>button[type="submit"] {
	padding: 15px 30px;
	cursor: pointer;
	border: 0;
	outline: 0;
	border-radius: 3px;
	background-color: #FF753A;
	color: #fff;
	font-weight: bold;
}
.pay-prcode {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.pay-prcode {
	margin: 20px 0 60px;
}
.pay-prcode>.amount {
	font-size: 13px;
}
.pay-prcode>.amount>b {
	color: #FF753A;
	font-size: 16px;
}
.qrcode {
	border: 1px #f5f5f5 solid;
	padding: 10px;
	width: 200px;
	height: 200px;
	position: relative;
	margin-bottom: 10px;
}
.qrcode>span {
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
}
.qrcode>span.tips {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.qrcode>span.code>img {
	border: 0;
}
.qrcode>span.tips {
	background-color: rgba(0,0,0,.7);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.qrcode>span.tips {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.qrcode>span.tips>img {
	max-width: 70px;
	margin-bottom: 10px;
}
.qrcode>span.tips>span {
	text-align: center;
}
.qrcode>span.tips>span>b {
	font-size: 14px;
}
.qrcode>span.tips>span>p {
	font-size: 12px;
	margin-top: 5px;
}
.pay-prcode>p {
	font-size: 14px;
	margin-bottom: 10px;
	color: #999;
}
.copy {
	text-align: center;
	font-size: 12px;
	color: #999;
	margin-top: 20px;
}
.copy>a {
	color: #999;
	text-decoration: none;
}
.copy>a:hover {
	text-decoration: underline;
	color: #FF753A;
}