﻿@charset "utf-8";

html {
	-ms-touch-action: none;
	/* 阻止windows Phone 的默认触摸事件 */
	height: 100%;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

body,
div,
p {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

.pos_abs {
	position: absolute;
}

.clear {
	zoom: 1;
}

.clear:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

body {
	width: 100%;
	*cursor: default;
	font: 16px/1.5 "Microsoft YaHei", Helvetica, STHeiti STXihei, Microsoft JhengHei, Arial;
	background: #fff;
}

.auto {
	margin: 0 auto;
}

.mt20 {
	margin-top: 0.2rem;
}

.mb20 {
	margin-bottom: 0.2rem;
}

/* 箭头 */
.arrow_up {
	position: fixed;
	bottom: 0.1rem;
	left: 50%;
	width: 0.9rem;
	height: 0.4rem;
	z-index: 9999;
	-webkit-transform: translateX(-50%);
	-webkit-animation: dong 1s linear 0s infinite alternate;
	transform: translateX(-50%);
	animation: dong 1s linear 0s infinite alternate;
}

@-webkit-keyframes dong {
	from {
		bottom: 0.1rem;
	}

	to {
		bottom: 0.25rem;
	}
}

@keyframes dong {
	from {
		bottom: 0.1rem;
	}

	to {
		bottom: 0.25rem;
	}
}


@-webkit-keyframes ball_s {

	50% {
		transform: scale(1.1);
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
	}
}

.ball_01,
.ball_02,
.ball_03,
.ball_04 {
	animation: ball_s 1s infinite ease-in-out;
	-ms-animation: ball_s 1s infinite ease-in-out;
	-webkit-animation: ball_s 1s infinite ease-in-out;
	-moz-animation: ball_s 1s infinite ease-in-out;
	-o-animation: ball_s 1s infinite ease-in-out;
}

@-webkit-keyframes balls {
	from {
		bottom: 0.5rem;
		-webkit-transform: scale(1, 1);
	}

	to {
		bottom: 5.9rem;
		-webkit-transform: scale(0.2, 0.2);
	}
}

@keyframes balls {
	from {
		bottom: 0.5rem;
		transform: scale(1, 1);
	}

	to {
		bottom: 5.9rem;
		transform: scale(0.2, 0.2);
	}
}

.ball_ani {
	animation: balls 1s linear;
	-webkit-animation: balls 1s linear;
}


@-webkit-keyframes hh {
	0% {
		-webkit-transform: scale(1, 1);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1.3, 1.3);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(0.8, 0.8);
		opacity: 0;
		visibility: hidden !important;
	}
}

@keyframes hh {
	0% {
		transform: scale(1, 1);
		opacity: 1;
	}

	50% {
		transform: scale(1.3, 1.3);
		opacity: 0.5;
	}

	100% {
		transform: scale(0.8, 0.8);
		opacity: 0;
		visibility: hidden !important;
	}
}


.hh_ani {
	animation: hh 0.5s linear;
	-webkit-animation: hh 0.5s linear;
}


.loading {
	width: 100%;
	height: 100%;
	background: #f7fef8;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10000;
}

.loading img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.16rem;
	margin-top: -1.2rem;
	margin-left: -1.08rem;
	z-index: 10001;
}

/* 自适应框架（设计图宽度） */
body {
	max-width: 7.5rem;
	margin: 0 auto;
}


.mask {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	top: 0;
	display: none;
	z-index: 30;
}

.mask span {
	font-size: 15px;
	position: fixed;
	right: 0.1rem;
	top: 0.1rem;
}

.fx_box {
	width: 300px;
	height: 60px;
	background: #fff;
	z-index: 2;
	left: 50%;
	top: 50%;
	margin-left: -150px;
	display: none;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	-moz-border-radius: 10px;
}

.fx_box img {
	width: 40px;
}

.quit {
	width: 30px;
	height: 30px;
	font-size: 30px;
	position: absolute;
	right: -30px;
	top: -30px;
	color: #fff;
	cursor: pointer;
	z-index: 33;
}

.close {
	color: #fff;
}

.page01 {
	display: none;
}

.page01 img {
	display: block;
}

.page02 input {
	width: 6.5rem;
	height:50px;
	background: #fff;
	border-radius: 8px;
	font-size: 15px;
	padding-left: 10px;
	outline: none;
	margin-bottom: 0.2rem;
	margin-top: 0.2rem;
	border: 1px solid #B3B3B3;
	color: #333;
	padding-top: 5px;
	padding-bottom: 5px;
}

.page02 textarea {
	width: 6.5rem;
	height: 3rem;
	background: #fff;
	border-radius: 8px;
	font-size: 15px;
	padding-left: 10px;
	outline: none;
	margin-bottom: 0.2rem;
	margin-top: 0.2rem;
	border: 1px solid #B3B3B3;
	color: #333;
}

.page02 select {
	width: 6.5rem;
	height: 40px;
	background: #fff;
	border-radius: 8px;
	font-size: 15px;
	padding-left: 10px;
	outline: none;
	margin-bottom: 0.2rem;
	margin-top: 0.2rem;
	border: 1px solid #B3B3B3;
	color: #333;
}

.imgBox {
	width: 6.6rem;
	margin-left: -15px;
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
}

.imgBox table {
	float: left;
	display: inline;
	width: 2rem;
	height: 2rem;
	margin: 0;
	padding: 0;
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

.imgBox table tr td {
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
	text-align: center;
	background: #eee;
	margin: 0;
	padding: 0;
	position: relative;
}

.imgBox table tr td span {
	font-size: 15px;
	color: #c00;
	position: absolute;
	right: 0;
	top: -0.15rem;
}

.imgBox table tr td img {
	display: block;
	padding: 0;
	margin: 0 auto;
	max-height: 2rem;
	max-width: 2rem;
}

.btn_tj {
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto;
	background: #c00;
	color: #fff;
	border-radius: 5px;
	font-size: 13px;
	letter-spacing: 20px;
	text-indent: 20px;
}

.masks {
	position: absolute;
	width: 100%;
	height: 30px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	text-align: center;
	line-height: 30px;
	left: 0;
	top: 0;
	border-radius: 5px;
	font-size: 13px;
	display: none;
}

#capture {
	width: 750px;
	height: 1625px;
	background: url(./../images/share.jpg) no-repeat left top;
	background-size: 100% 100%;
	position: fixed;
	left: -999999999999999px;

}

#capture .num {
	position: absolute;
	left: 160px;
	top: 935px;
	color: #C1270D;
	font-size: 85px;
	width: 380px;
	/* background: rgba(0, 0, 0, 0.7); */
	text-align: center;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	line-height: 1em;
	border-bottom: 1px solid #C13218;
}

.share-img-box {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#shaer-img {
	height: 80%;
}

.close {
	font-size: 30px;
}

.tips {
	color: #fff;
	font-size: 12px;
	margin-top: 20px;
}

.ios,
.android {
	display: none;
}

.areas{
	display: flex;
	justify-content:space-between;
}
.areas{
	select{
		width: 48%;
	}
}