@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;
}
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 {
	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;
}
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;
}

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


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

.wrapper {
	float: left;
	width: 100%;
	background: url(../images/wrap-bg.png) no-repeat left top, url(../images/wrap-down.png) no-repeat left bottom;
	background-size: 100% auto, 100% auto;
	background-color: #76adce;
	min-height: 100vh;
	overflow: hidden;
}
.main {
	float: left;
	width: 100%;
	padding: 1rem .2rem .5rem .2rem;
}
.main.index {
	padding-top: 6.3rem;
	background: url(../images/banner1.png) no-repeat;
	background-size: 100% auto;
}
.main.middle {
	position: relative;
}
.bigbox {
	float: left;
	width: 100%;
}
.bigbox.marg40 {
	margin: .4rem 0 0 0;
}
.bigbox .top {
	float: left;
	width: 100%;
	height: .35rem;
	background: url(../images/big-top.png) no-repeat;
	background-size: 100% 100%;
}
.bigbox .down {
	float: left;
	width: 100%;
	height: .35rem;
	background: url(../images/big-down.png) no-repeat;
	background-size: 100% 100%;
}
.bigbox .mid {
	float: left;
	width: 100%;
	padding: .01rem .3rem;
	margin: -.01rem 0;
	background: url(../images/big-mid.png) repeat-y;
	background-size: 100% auto;
}
.indexTitle {
	float: left;
	width: 100%;
	background: url(../images/title-bg.png) no-repeat center;
	background-size: auto 100%;
	line-height: .65rem;
	font-size: .36rem;
	color: #d54727;
	font-weight: bold;
	text-align: center;
}
.indexInfo {
	float: left;
	width: 100%;
	margin: .2rem 0;
	line-height: 1.8;
	font-size: .28rem;
	text-align: center;
}
.indexInfo b {
	display: inline-block;
	padding: 0 .2rem;
	margin: 0 .1rem;
	border-radius: .3rem;
	line-height: .4rem;
	color: #fff;
}
.indexInfo b:nth-child(2) {
	background: #d54727;
}
.indexInfo b:nth-child(3) {
	background: #415895;
}
.indexInfo b:nth-child(4) {
	background: #e69117;
}
.indexTxt {
	float: left;
	width: 100%;
	font-size: .27rem;
	text-align: justify;
}
.indexTxt span {
	color: #d54727;
}
.indexBtn {
	float: left;
	width: 100%;
	padding: 0 1.25rem;
	margin: .2rem 0 0 0;
}
.indexBtn a {
	float: left;
	width: 100%;
	height: 1.4rem;
	background: url(../images/btn-bg.png) no-repeat;
	background-size: 100% 100%;
	line-height: 1.3rem;
	color: #fff;
	font-size: .38rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .05rem;
	text-shadow: -0.02rem -0.02rem 0 #7d1b1b, 0.02rem -0.02rem 0 #7d1b1b, -0.02rem 0.02rem 0 #7d1b1b, 0.02rem 0.02rem 0 #7d1b1b;
}
.indexBtn.zoom a {
	animation: btnZoom 1s linear infinite alternate;
	-webkit-animation: btnZoom 1s linear infinite alternate;
}
@keyframes btnZoom {
	from {}
	to {
		transform: scale(.8);
	}
}
@-webkit-keyframes btnZoom {
	from {}
	to {
		transform: scale(.8);
	}
}

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


/**** 动画页 ****/


/** 摇签 **/

.yaoqianBox {
	position: absolute;
	left: 50%;
	top: 30%;
	width: 2.85rem;
	height: 5rem;
	margin: 0 0 0 -1.4rem;
	background: url(../images/qiantong.png) no-repeat;
	background-size: 100% 100%;
	animation: lottery 1s linear infinite;
	-webkit-animation: lottery 1s linear infinite;
	transform-origin: center bottom;
	-webkit-transform-origin: center bottom;
	z-index: 9;
}
@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);
	}
}
@-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);
	}
}

/** 摇签 **/


/** 出签 **/

.chuqianBox {
	float: left;
	width: 100%;
}

/*.chuqianBox {
	position: absolute;
	top: 2rem;
	left: 0;
	width: 100%;
	padding: 0 .2rem;
}*/

.chuqianBox .qiannum {
	display: block;
	width: .76rem;
	height: 5.08rem;
	margin: 0 auto;
	background: url(../images/num-bg.png) no-repeat;
	background-size: 100% 100%;
	padding: 1.4rem .2rem 0 .2rem;
	line-height: .4rem;
	font-size: .34rem;
	color: #965001;
	text-align: center;
	opacity: 0;
}
.chuqianBox .qiannum.numShow {
	animation: numShow 1s linear 3s forwards;
	-webkit-animation: numShow 1s linear 3s forwards;
}
@keyframes numShow {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@-webkit-keyframes numShow {
	from {
		opacity: 0;
		transform: translateY(2rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.chuqianBox .qiannum.move {
	animation: numMove 1s linear forwards;
	-webkit-animation: numMove 1s linear forwards;
}
@keyframes numMove {
	from {}
	to {
		opacity: 1;
		transform: translate(-2rem, -.5rem) scale(.7);
	}
}
@-webkit-keyframes numMove {
	from {}
	to {
		opacity: 1;
		transform: translate(-2rem, -.5rem) scale(.7);
	}
}
.qianCon {
	float: left;
	width: 100%;
	transform: translateX(120%);
	animation: conMove 2s linear 3s forwards;
	-webkit-animation: conMove 2s linear 3s forwards;
}
@keyframes conMove {
	from {}
	to {
		transform: translateX(0%);
	}
}
@-webkit-keyframes conMove {
	from {}
	to {
		transform: translateX(0%);
	}
}
.qianpic {
	float: left;
	width: 2.8rem;
	height: 3.28rem;
	margin: -.6rem 0 0 -.4rem;
	background: url(../images/daxian.png) no-repeat;
	background-size: 100% 100%;
}
.qiantitle {
	float: left;
	width: 4rem;
	margin: .3rem 0 0 0;
	background: #ffd09e;
	border: solid .02rem #f99f49;
	border-radius: .3rem;
	line-height: .6rem;
	color: #d54727;
	text-align: center;
}
.qiantxt {
	float: left;
	width: 4rem;
	margin: .3rem 0 0 0;
	text-align: center;
}
.qiantxt span {
	color: #d54727;
}

/** 出签 **/


/** 掷杯 **/

.zhibeiBox {
	position: absolute;
	top: 2.5rem;
	right: 1rem;
	width: 3rem;
	animation: beiMove 1.2s linear;
	-webkit-animation: beiMove 1.2s linear;
}
.zhibeiBox img {
	float: left;
	width: 1.32rem;
}
@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;
	}
}
.zhibeiBox img.cupRotate {
	animation: beiTurn .5s linear infinite;
	-webkit-animation: beiTurn .5s linear infinite;
}
.zhibeiBox img.cupShow {
	display: none;
	width: 2.8rem;
}
@keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes beiTurn {
	from {}
	to {
		transform: rotate(360deg);
	}
}

/** 掷杯 **/


/**** 动画页 ****/


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

.freeBox {
	float: left;
	width: 100%;
	padding: .2rem .1rem;
	background: #fdf0df;
	border-radius: .1rem;
}
.picture, .picture img {
	float: left;
	width: 100%;
}
.freeTxt {
	float: left;
	width: 100%;
	text-align: justify;
	margin: .3rem 0 0 0;
}
.freeTxt b {
	color: #d54727;
}
.freeTxt span {
	display: inline-block;
	padding: 0 .3rem;
	margin-bottom: .05rem;
	background: #fdf0df;
	border-radius: .3rem;
	color: #965001;
}

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


/**** 结果页 ****/

.resultQian {
	position: relative;
	float: left;
	width: 100%;
	height: 4.61rem;
	background: url(../images/qian-bg.png) no-repeat;
	background-size: 100% 100%;
}
.resultQian .num {
	position: absolute;
	left: .65rem;
	top: 2.4rem;
	width: .35rem;
	line-height: 1.15;
	font-size: .35rem;
	color: #d54727;
	font-weight: bold;
	font-family: "宋体";
}
.resultQian .list {
	position: absolute;
	right: 2.5rem;
	top: .55rem;
	width: 2.6rem;
}
.resultQian .list ul li {
	float: right;
	width: .35rem;
	margin: 0 .15rem;
}
.resultQian .qji {
	position: absolute;
	right: .9rem;
	top: 2.7rem;
	width: .51rem;
	line-height: 1.05;
	font-size: .36rem;
	color: #fff;
	font-weight: bold;
	font-family: "宋体";
	text-align: center;
}
.resultXiaob {
	float: left;
	width: 100%;
	margin: .2rem 0;
	font-size: .36rem;
	color: #b42617;
	font-weight: bold;
	text-align: center;
}
.resultQianji {
	float: left;
	width: 100%;
	background: url(../images/qji-bg.png) no-repeat center;
	background-size: auto 100%;
	line-height: .6rem;
	font-size: .36rem;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.resultTips {
	float: left;
	width: 100%;
	color: #d54727;
	text-align: justify;
	margin: .3rem 0 0 0;
}
.resultFu {
	margin: .3rem 0 0 0;
	padding: 0 10%;
}
.resultFu, .resultFu img {
	float: left;
	width: 100%;
}
.resultSave {
	float: right;
	width: .6rem;
	padding: .2rem .1rem;
	margin: -6rem 16% 0 0;
	background: #fce8a6;
	border-radius: .2rem;
	line-height: 1.2;
	color: #d54727;
	text-align: center;
}
.resultEnd {
	float: left;
	width: 80%;
	margin: .3rem 10% 0 10%;
	background: #f38c6c;
	border-radius: .2rem;
	line-height: 1rem;
	font-size: .42rem;
	color: #fdfae7;
	text-align: center;
}

/**** 结果页 ****/