@charset "utf-8";

/* CSS Document */

body {
	min-width: 3.2rem;
	max-width: 7.5rem;
	margin: 0 auto !important;
	overflow-x: hidden;
	background: #fff;
	font: .32rem/1.5 "microsoft yahei", Arial, Helvetica, sans-serif;
	color: #333;
}
body, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, th, td, input, textarea, select, img {
	margin: 0;
	padding: 0;
	border: 0;
}
ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: lighter;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
em, i {
	display: inline-block;
	font-weight: normal;
	font-style: normal;
}
textarea, select, input {
	font-family: "Microsoft Yahei";
	font-size: .32rem;
	color: #666;
}
b {
	font-weight: bold;
}
img {
	margin: 0;
	padding: 0;
	border: 0;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	/*color:#333; */
	text-decoration: none;
}
input[type="text"], input[type="password"], input[type="button"], input[type="submit"], button, textarea {
	-webkit-appearance: none;
}
.cfx:after, nav.mini:after, .h:after, .hn:after, .PH:after {
	content: ' ';
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
	line-height: 0;
}
* {
	box-sizing: border-box;
}
.fl {
	float: left;
}
.fr {
	float: right;
}

/**** 公共css ****/


/**** 首页 ****/

.indexWrap {
	width: 100%;
	float: left;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}
.indexBann {
	width: 100%;
	float: left;
	height: 7.3rem;
	background: url(../images/banner.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	padding: 2rem 2.3rem 0 1.8rem;
}
.indexBann img {
	width: 100%;
	float: left;
	animation: flicker .5s linear infinite alternate;
	-moz-animation: flicker .5s linear infinite alternate;
	-webkit-animation: flicker .5s linear infinite alternate;
	-o-animation: flicker .5s linear infinite alternate;
}
@keyframes flicker {
	from {}
	to {
		opacity: .4;
	}
}
@-moz-keyframes flicker {
	from {}
	to {
		opacity: .4;
	}
}
@-webkit-keyframes flicker {
	from {}
	to {
		opacity: .4;
	}
}
@-o-keyframes flicker {
	from {}
	to {
		opacity: .4;
	}
}
.indexMain {
	width: 100%;
	float: left;
	background: #99000b;
	padding: 0 .3rem .5rem .3rem;
}
.picTitle {
	position: relative;
	margin: -.2rem 0 0 0;
}
.picTitle, .picTitle img {
	width: 100%;
	float: left;
}
.indexTxt {
	width: 100%;
	float: left;
	font-size: .28rem;
	color: #f8e2ae;
	text-align: justify;
	margin: .3rem 0 0 0;
}
.indexInfo {
	width: 100%;
	float: left;
	background: #df2936;
	border-radius: .25rem;
	padding: .2rem;
	font-size: .27rem;
	color: #f8e2ae;
	text-align: justify;
	margin: .3rem 0 0 0;
}
.indexInfo b {
	color: #ffb22c;
}
.indexBtn {
	width: 100%;
	float: left;
	padding: 0 .55rem;
	margin: .3rem 0 0 0;
}
.indexBtn a {
	float: left;
	width: 100%;
	background: url(../images/button-bg.png) no-repeat center;
	background-size: 100% 100%;
	line-height: .9rem;
	font-size: .45rem;
	color: #bb1100;
	font-weight: bold;
	text-align: center;
}
.indexBtn.zoom {
	animation: zoom 1s linear infinite alternate;
	-moz-animation: zoom 1s linear infinite alternate;
	-webkit-animation: zoom 1s linear infinite alternate;
	-o-animation: zoom 1s linear infinite alternate;
}
@keyframes zoom {
	from {}
	to {
		transform: scale(.8);
	}
}
@-moz-keyframes zoom {
	from {}
	to {
		transform: scale(.8);
	}
}
@-webkit-keyframes zoom {
	from {}
	to {
		transform: scale(.8);
	}
}
@-o-keyframes zoom {
	from {}
	to {
		transform: scale(.8);
	}
}

/**** 首页 ****/


/**** 遮罩层 ****/

.zhezhaoBg {
	width: 100%;
	float: left;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, .7);
	max-width: 7.5rem;
	padding: 1.7rem .3rem 0 .3rem;
	z-index: 99;
}

/**** 遮罩层 ****/


/**** 摇签 ****/

.yaoqianBox {
	width: 2.5rem;
	display: block;
	margin: .5rem auto 0 auto;
}
.yaoqianBox .qiantong, .yaoqianBox .qiantong img {
	width: 100%;
	float: left;
}
.yaoqianBox .qiantong {
	animation: lottery 1s linear infinite;
	-moz-animation: lottery 1s linear infinite;
	-webkit-animation: lottery 1s linear infinite;
	-o-animation: lottery 1s linear infinite;
	transform-origin: center bottom;
	-webkit-transform-origin: center bottom;
}
@keyframes lottery {
	0% {}
	30% {
		transform: rotate(-20deg);
	}
	40% {
		transform: rotate(20deg);
	}
	50% {
		transform: rotate(-20deg);
	}
	60% {
		transform: rotate(12deg);
	}
	70% {
		transform: rotate(-8deg);
	}
	80%, 100% {
		transform: rotate(0);
	}
}
@-moz-keyframes lottery {
	0% {}
	30% {
		transform: rotate(-20deg);
	}
	40% {
		transform: rotate(20deg);
	}
	50% {
		transform: rotate(-12deg);
	}
	60% {
		transform: rotate(12deg);
	}
	70% {
		transform: rotate(-8deg);
	}
	80%, 100% {
		transform: rotate(0);
	}
}
@-webkit-keyframes lottery {
	0% {}
	30% {
		transform: rotate(-20deg);
	}
	40% {
		transform: rotate(20deg);
	}
	50% {
		transform: rotate(-12deg);
	}
	60% {
		transform: rotate(12deg);
	}
	70% {
		transform: rotate(-8deg);
	}
	80%, 100% {
		transform: rotate(0);
	}
}
@-o-keyframes lottery {
	0% {}
	30% {
		transform: rotate(-20deg);
	}
	40% {
		transform: rotate(20deg);
	}
	50% {
		transform: rotate(-12deg);
	}
	60% {
		transform: rotate(12deg);
	}
	70% {
		transform: rotate(-8deg);
	}
	80%, 100% {
		transform: rotate(0);
	}
}

/**** 摇签 ****/


/**** 出签 ****/

.chuqianBox {
	position: absolute;
	width: 100%;
	max-width: 6.9rem;
	top: .5rem;
}
.chuqianBox div {
	display: none;
}
.chuqianBox .qiannum {
	width: .87rem;
	height: 4.71rem;
	display: block;
	margin: 0 auto;
	background: url(../images/qianbg1.png) no-repeat;
	background-size: 100% 100%;
	padding: 1.05rem .1rem 0 .1rem;
	line-height: .45rem;
	font-size: .38rem;
	color: #90340c;
	text-align: center;
}
.chuqianBox .qiannum.fadeIn {
	animation: fadeIn 1s linear forwards;
	-moz-animation: fadeIn 1s linear forwards;
	-webkit-animation: fadeIn 1s linear forwards;
	-o-animation: fadeIn 1s linear forwards;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@-moz-keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@-o-keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.chuqianBox .qiannum.move {
	animation: move 1s linear forwards;
	-moz-animation: move 1s linear forwards;
	-webkit-animation: move 1s linear forwards;
	-o-animation: move 1s linear forwards;
}
@keyframes move {
	from {}
	to {
		transform: translate(-2rem, 0) scale(.7);
	}
}
@-moz-keyframes move {
	from {}
	to {
		transform: translate(-2rem, 0) scale(.7);
	}
}
@-webkit-keyframes move {
	from {}
	to {
		transform: translate(-2rem, 0) scale(.7);
	}
}
@-o-keyframes move {
	from {}
	to {
		transform: translate(-2rem, 0) scale(.7);
	}
}
.chuqianBox .qiantxt {
	width: 100%;
	float: left;
	background: url(../images/qianbg2.png) no-repeat;
	background-size: 100% 100%;
	padding: .3rem;
	line-height: .6rem;
	color: #90340c;
	text-align: center;
	margin: .5rem 0 0 0;
}
.chuqianBox .qiantxt b {
	font-size: .42rem;
	color: #bb1100;
}
.chuqianBox .qiantxt p {
	font-weight: bold;
}

/**** 出签 ****/


/**** 掷杯 ****/

.zhibeiBox {
	width: 4.42rem;
	float: right;
	animation: beiMove 1.2s linear;
	-moz-animation: beiMove 1.2s linear;
	-webkit-animation: beiMove 1.2s linear;
	-o-animation: beiMove 1.2s linear;
}
.zhibeiBox img {
	width: 2rem;
	float: left;
}
@keyframes beiMove {
	from {
		transform: translateY(-3rem) scale(.5);
		opacity: 0;
	}
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}
@-moz-keyframes beiMove {
	from {
		transform: translateY(-3rem) scale(.5);
		opacity: 0;
	}
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}
@-webkit-keyframes beiMove {
	from {
		transform: translateY(-3rem) scale(.5);
		opacity: 0;
	}
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}
@-o-keyframes beiMove {
	from {
		transform: translateY(-3rem) scale(.5);
		opacity: 0;
	}
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}
.zhibeiBox img.cupRotate {
	animation: beiTurn .5s linear infinite;
	-moz-animation: beiTurn .5s linear infinite;
	-webkit-animation: beiTurn .5s linear infinite;
	-o-animation: beiTurn .5s linear infinite;
}
.zhibeiBox img.cupShow {
	display: none;
	width: 3.84rem;
}
@keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-moz-keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-o-keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}

/**** 掷杯 ****/


/**** 免费页 ****/

.freeWrap {
	width: 100%;
	float: left;
	min-height: 100vh;
	background: url(../images/free-wrap.jpg) no-repeat;
	background-size: 100% auto;
	padding: 1.5rem .65rem 1rem .65rem;
	position: relative;
}
.freeClose {
	position: absolute;
	right: .4rem;
	top: .93rem;
	width: .72rem;
}
.freeClose a, .freeClose a img {
	width: 100%;
	float: left;
}
.freeDaxian {
	width: 100%;
	float: left;
}
.freeDaxian img {
	width: 4.04rem;
	display: block;
	margin: 0 auto;
}
.freeQiannum {
	width: 100%;
	float: left;
	font-size: .3rem;
	color: #f8e2ae;
	text-align: center;
}
.freeQiannum b {
	display: block;
	font-size: .4rem;
	color: #ffd400;
}

/**** 免费页 ****/


/**** 付费页 ****/

.resultWrap {
	width: 100%;
	float: left;
	background: #84001c;
	padding: .2rem;
}
.resultQian {
	width: 100%;
	float: left;
	height: 4.95rem;
	background: url(../images/result-bg1.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	font-family: "宋体";
}
.resultQian .num {
	width: .35rem;
	position: absolute;
	left: .45rem;
	top: 2.8rem;
	line-height: 1;
	font-size: .35rem;
	color: #bb1100;
	font-weight: bold;
}
.resultQian .list {
	width: 2.6rem;
	position: absolute;
	right: 2.65rem;
	top: .8rem;
}
.resultQian .list ul li {
	width: .35rem;
	float: right;
	margin: 0 .15rem;
	line-height: 1.3;
	font-size: .35rem;
	color: #392807;
	font-weight: bold;
}
.resultQian .qji {
	width: 1.6rem;
	position: absolute;
	right: .5rem;
	top: 3.92rem;
	line-height: .51rem;
	font-size: .34rem;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.resultBox {
	width: 100%;
	float: left;
	background: #efece5;
	border-radius: .1rem;
	padding: .3rem;
	margin: .3rem 0 0 0;
}
.resultTitle {
	width: 100%;
	float: left;
	background: url(../images/title-bg.png) no-repeat center;
	background-size: auto 100%;
	line-height: .85rem;
	font-size: .36rem;
	color: #ffedae;
	font-weight: bold;
	text-align: center;
}
.resultXiaob {
	width: 100%;
	float: left;
	font-size: .4rem;
	color: #bb1100;
	font-weight: bold;
	text-align: center;
	margin: .2rem 0;
}
.resultQianji {
	width: 100%;
	float: left;
	background: url(../images/qianji-bg.png) no-repeat center;
	background-size: auto 100%;
	line-height: .5rem;
	color: #fff8e8;
	text-align: center;
}
.resultTxt {
	width: 100%;
	float: left;
	color: #3a2807;
	text-align: justify;
	margin: .3rem 0 0 0;
}
.resultTxt b {
	width: auto;
	display: inline-block;
	color: #bb1100;
}
.resultTxt b::after {
	width: 100%;
	float: left;
	content: "";
	height: .12rem;
	background: #ffd562;
	border-radius: .35rem;
	margin-top: -.16rem;
}
.resultTxt span {
	color: #bb1100;
}
.resultFu {
	margin: .3rem 0;
}
.resultFu, .resultFu img {
	width: 100%;
	float: left;
}
.resultSave {
	float: left;
	width: 2.7rem;
	margin: 0 1.9rem;
	background: #da1129;
	border-radius: .45rem;
	line-height: .6rem;
	color: #fff8e8;
	text-align: center;
	font-weight: bold;
}

/**** 付费页 ****/