[v-cloak] {
	display: none !important;
}

img {
	object-fit: contain;
}

/* body {
	width: 100%;
	height: 100%;
	background-color: #0cc7ff;
} */

#app {
	min-height: 113.106667rem;
	position: relative;
	background: url('../images/bg.png') no-repeat center / 100% 100%;
	padding-top: 0.1rem;
}

#app .adImg {
	width: 1.92rem;
	height: 1.92rem;
	display: block;
	position: fixed;
	top: 40%;
	right: 0;
	z-index: 10;
}

#app .ruleImg {
	width: 0.789333rem;
	height: 2.325333rem;
	display: block;
	position: absolute;
	top: 14%;
	right: 4%;
	z-index: 9;
}

#app .top {
	width: 100%;
}

#app .top .user_info {
	width: 8.8rem;
	height: 3.1rem;
	background: url(../images/info_bg.png) no-repeat center / 100% 100%;
	position: absolute;
	top: 1rem;
	left: 0.54rem;
	display: flex;
	justify-content: space-between;
}

#app .top .user_info .photo {
	width: 2.3rem;
	height: 2.3rem;
	background: url(../images/photo_bg.png) no-repeat center / 100% 100%;
	margin: 0.25rem 0rem 0rem -0.2rem;
	overflow: hidden;
	/* 关键属性：裁剪超出部分 */
	border-radius: 50%;
	/* 可选：继承父元素圆角 */
}

#app .top .user_info .photo .photo_img {
	width: 100%;
	/* 使用百分比适应容器 */
	height: 100%;
	object-fit: cover;
	/* 保持比例填充容器 */
}

#app .top .user_info .info {
	width: 6.5rem;
	height: 76%;
	margin: 0.25rem 0rem 0rem 0.2rem;
	font-size: 0.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#app .top .user_info .info .phone1 {
	/* height: 0.8rem; */
	color: #00452d;
}

#app .top .user_info .info .phone .phone_num {
	color: #00452d;
	font-family: 'FZLTCHJW';
	font-weight: 500;
}

#app .top .user_info .info .phone .change {
	color: #202020;
	margin-left: 0.2rem;
	font-family: 'FZLTHJW';
	text-decoration: underline;
}

#app .top .user_info .info .time {
	color: #00452d;
}

#app .top .user_info .info .name {
	color: #00452d;
}

#app .top .my_ecoin {
	width: 5.3rem;
	height: 2.8rem;
	background: url(../images/my_ecoin_bg.png) no-repeat center / 100% 100%;
	position: absolute;
	top: 1.1rem;
	right: 0.24rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0rem 0.2rem 0rem 0.2rem;
}

#app .top .my_ecoin .img {
	width: 1.6rem;
	height: 1.6rem;
	margin-top: -1rem;
}

#app .top .my_ecoin .img img {
	width: 100%;
	height: 100%;
}

#app .top .my_ecoin .text {
	width: 2.5rem;
	height: 1.6rem;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-top: -0.4rem;
}

#app .top .my_ecoin .text .txt {
	font-size: 0.6rem;
	color: #00452d;
	font-family: 'FZLTHJW';
	font-weight: 500;
}

#app .top .my_ecoin .text .num {
	font-size: 0.56rem;
	color: #0b9f42;
	font-family: 'FZLTZCHK';
}

#app .top .my_ecoin .icon {
	width: 0.4rem;
	height: 0.4rem;
	display: flex;
	align-self: center;
}

#app .top .my_ecoin .icon img {
	width: 100%;
	height: 100%;
}

#app .top .expired_ecoin {
	width: 5.2rem;
	height: 1.5rem;
	background: url(../images/expired_ecoin_bg.png) no-repeat center / 100% 100%;
	position: absolute;
	top: 3.7rem;
	right: 0.24rem;
	display: flex;
	padding: 0.35rem;
}

#app .top .expired_ecoin .expired_warn {
	font-size: 0.4rem;
	white-space: nowrap;
	/* 防止换行 */
	overflow: auto;
	max-width: 100%;
	/* 确保内容不超出容器 */
}

#app .top .scrool {
	width: 14rem;
	height: 1.5rem;
	background: url('../images/scrool_bg.png') no-repeat center / 100% 100%;
	font-size: 0.6rem;
	color: #ffffff;
	font-family: 'FZLTHJW';
	line-height: 100%;
	margin: 4.7rem auto 0rem;
	overflow: hidden;
	position: relative;
}

#app .top .scrool .scrool_in {
	height: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

#app .top .scrool .scrool_in .scrool_write {
	height: 100%;
	display: flex;
	align-items: center;
}

.scroll-enter-active,
.scroll-leave-active {
	transition: all 0.3s ease;
}

.scroll-enter {
	opacity: 0;
	transform: translateY(30px);
}

.scroll-leave-to {
	opacity: 0;
	transform: translateY(-30px);
}

#app .top .scrool img {
	width: 0.6rem;
	height: 0.6rem;
}

#app .top .bubble_box {
	width: 16rem;
	height: 9rem;
	position: relative;
}

#app .top .bubble_box .bubble_item {
	width: 3rem;
	height: 3.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	animation: floatAnimation 2s infinite ease-in-out;
	transition: all 0.3s ease-out;
	will-change: transform, opacity;
}

#app .top .bubble_box .bubble_item .bubble {
	width: 2.2rem;
	height: 2.2rem;
	color: #0d8800;
	font-weight: 500;
	font-family: 'FZLTCHJW';
	background: url(../images/bubble.png) no-repeat center / 100% 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#app .top .bubble_box .bubble_item .bubble .text {
	width: 1.7rem;
	height: 1.7rem;
	margin-top: 0.4rem;
	line-height: 0.25rem;
	text-align: center;
}

#app .top .bubble_box .bubble_item .bubble .num {
	font-size: 0.8rem;
}

#app .top .bubble_box .bubble_item .bubble .unit {
	font-size: 0.45rem;
	line-height: 1.2;
}

#app .top .bubble_box .bubble_item .bubble .bot {
	font-size: 0.55rem;
	font-weight: bold;
	/* padding-top: 0.2rem; */
	/* 替换 margin-top */
	margin-top: 0;
	/* 确保无冲突 */
	line-height: 1.2;
	/* 避免文字重叠 */
}

#app .top .bubble_box .bubble_item .bubble_text {
	width: 3.3rem;
	height: 1rem;
	font-size: 0.5rem;
	color: #4eae68;
	text-align: center;
	/* 	line-height: 0.6rem; */
	display: flex;
	justify-content: flex-end;
	align-items: center;
	/*text-align: right;  备用方案，确保右对齐 */
	/* 使用text-shadow模拟描边效果 */
	text-shadow:
		-0.02rem -0.02rem 0 #FFFFFF,
		0.02rem -0.02rem 0 #FFFFFF,
		-0.02rem 0.02rem 0 #FFFFFF,
		0.02rem 0.02rem 0 #FFFFFF;
}

#app .top .bubble_box .bubble_item .bubble_text img {
	width: 0.7rem;
	height: 0.7rem;
}

#app .top .bubble_box .bubble_item0 {
	position: absolute;
	top: 2.8rem;
	left: 0.3rem;
	opacity: 0.6;
}

#app .top .bubble_box .bubble_item0.normal-opacity {
	opacity: 1;
}

#app .top .bubble_box .bubble_item1 {
	position: absolute;
	top: 1rem;
	left: 3.1rem;
}

#app .top .bubble_box .bubble_item2 {
	position: absolute;
	top: 0.1rem;
	left: 9.3rem;
}

#app .top .bubble_box .bubble_item3 {
	position: absolute;
	top: 3.3rem;
	left: 12.1rem;
}

#app .top .btn_box {
	width: 100%;
	height: 2.7rem;
	display: flex;
	justify-content: start;
	margin-top: 6rem;
}

#app .top .btn_box .ecoin_btn {
	width: 2.2rem;
	height: 100%;
	background: url('../images/get_ecoin_btn.png') no-repeat center / 100% 100%;
	margin-left: 1.4rem;
	position: relative;
}

#app .top .btn_box .tip {
	width: 0.55rem;
	height: 0.55rem;
	font-size: 0.45rem;
	line-height: 0.55rem;
	background-color: #f34320;
	color: #ffffff;
	border-radius: 0.25rem;
	position: absolute;
	top: 0.2rem;
	right: 0;
	text-align: center;
}

#app .top .btn_box .lottery_btn {
	width: 2.2rem;
	height: 100%;
	background: url('../images/draw_lottery_btn.png') no-repeat center / 100% 100%;
	margin-left: 1rem;
	position: relative;
}

#app .top .btn_box .fuli_btn {
	width: 2.8rem;
	height: 100%;
	background: url('../images/lingfuli.png') no-repeat center / 100% 100%;
	margin-left: 1rem;
	position: relative;
}

#app .sign_in {
	width: 15.4rem;
	height: 22.5rem;
	background: url(../images/sign_in_bg.png) no-repeat center / 100% 100%;
	margin: 1rem auto 0rem;
	padding: 1rem;
}

#app .sign_in .progress_box {
	width: 13.1rem;
	height: 2.2rem;
	background-color: #ffd6ab;
	border-radius: 1.2rem;
	margin: 1rem auto 0rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

#app .sign_in .progress_box .text {
	width: 2.8rem;
	font-size: 0.5rem;
	color: #1a1a1a;
	font-family: 'FZLTZHK';
}

#app .sign_in .progress_box .progress_bar {
	width: 9rem;
	height: 0.4rem;
	background: url('../images/progress_bar.png') no-repeat center / 100% 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

#app .sign_in .progress_box .progress_bar .progress_sign {
	width: 3rem;
	height: 0.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

#app .sign_in .progress_box .progress_bar .progress_sign .star {
	width: 0.6rem;
	height: 0.6rem;
	background: url('../images/stare.png') no-repeat center / 100% 100%;
}

#app .sign_in .progress_box .progress_bar .progress_sign .star.active {
	width: 0.7rem;
	height: 0.7rem;
	background: url('../images/stare_sign.png') no-repeat center / 100% 100%;
}

#app .sign_in .progress_box .progress_bar .progress_sign.active {
	background: url('../images/progress_sign.png') no-repeat center / 100% 100%;
}

#app .sign_in .btn_box {
	width: 8.5rem;
	height: 2.4rem;
	margin: 0.5rem auto 0rem;
	background: url('../images/sign_in_btn.png') no-repeat center / 100% 100%;
	position: relative;
}

#app .sign_in .btn_box1 {
	width: 8.5rem;
	height: 2.4rem;
	margin: 0.5rem auto 0rem;
	background: url('../images/sign_in_btn1.png') no-repeat center / 100% 100%;
	position: relative;
}

#app .sign_in .btn_box .hand {
	width: 1.7rem;
	height: 1.7rem;
	position: absolute;
	top: 0.7rem;
	right: -0.3rem;
	background: url(../images/hand1.png) no-repeat center / 100% 100%;
	animation: translateHand 2s infinite ease-in-out;
}

#app .sign_in .prize {
	width: 13.4rem;
	height: 12rem;
	background: url(../images/prize_bg.png) no-repeat center / 100% 100%;
	margin: 0rem auto 0rem;
	padding: 3rem 0rem 0rem 0rem;
}

#app .sign_in .prize .prize_box {
	width: 12rem;
	height: 6rem;
	margin: 0rem auto 0rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#app .sign_in .prize .prize_box .prize_item {
	width: 6.5rem;
	height: 6rem;
}

#app .sign_in .prize .prize_box .prize_item1 {
	background: url(../images/prize_item1.png) no-repeat center / 100% 100%;
}

#app .sign_in .prize .prize_box .prize_item2 {
	background: url(../images/prize_item2.png) no-repeat center / 100% 100%;
}

#app .sign_in .prize .btn {
	width: 7.5rem;
	height: 2.1rem;
	background: url(../images/get_btn.png) no-repeat center / 100% 100%;
	margin: 0.4rem auto 0rem;
}

#app .sign_in .prize .btn1 {
	width: 7.5rem;
	height: 2.1rem;
	background: url(../images/get_btn1.png) no-repeat center / 100% 100%;
	margin: 0.4rem auto 0rem;
}

#app .sign_in .prize .btn2 {
	width: 7.5rem;
	height: 2.1rem;
	background: url(../images/get_btn2.png) no-repeat center / 100% 100%;
	margin: 0.4rem auto 0rem;
}

#app .sign_in .desc {
	width: 100%;
	height: 2.5rem;
	/* padding: 0.4rem; */
	margin: 0.2rem auto;
	font-size: 0.5rem;
	color: #6c6c6c;
	font-family: 'FZLTHK';
	text-align: justify;
}

#app .bottom {
	width: 100%;
	padding: 0.1rem 0.4rem;
}

#app .bottom .tab_box {
	width: 100%;
	height: 1.5rem;
	display: flex;
	justify-content: center;
	padding: 0 0.4rem;
}

#app .bottom .tab_box .tab_item {
	width: 25%;
	height: 100%;
	text-align: center;
	line-height: 1.5rem;
	font-size: 0.6rem;
	color: #525252;
	font-family: 'FZLTHJW';
	position: relative;
}

#app .bottom .tab_box .tab_item.active {
	color: #0d5706;
	font-weight: bolder;
}

#app .bottom .tab_box .tab_item.active::after {
	content: '';
	background: url(../images/underline.png) no-repeat center / 100% 100%;
	position: absolute;
	bottom: 0;
	left: 1.1rem;
	right: 0;
	height: 0.3rem;
	width: 1.4rem;
}

#app .bottom .tab_box {
	transition: all 0.3s ease;
}

#app .bottom .tab_box.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #e6f8e0;
	z-index: 999;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#app .bottom .privilege {
	width: 15rem;
	margin: 0.5rem auto 0rem;
}

#app .bottom .welfare {
	height: 7rem;
	background: url(../images/welfare_bg.png) no-repeat center / 100% 100%;
	display: flex;
	padding: 2.4rem 0.6rem 0rem;
	justify-content: space-between;
}

#app .bottom .welfare .item {
	width: 6.8rem;
	height: 4rem;
	background: url(../images/welfare_item_bg.png) no-repeat center / 100% 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#app .bottom .welfare .item img {
	width: 2rem;
	height: 2rem;
	margin-bottom: 0.4rem;
	margin-right: 0.2rem;
}

#app .bottom .welfare .item .info {
	width: 4rem;
}

#app .bottom .welfare .item .info .title {
	font-size: 0.8rem;
	font-weight: 500;
	font-family: 'FZLTZCHK';
	color: #1a1a1a;
}

#app .bottom .welfare .item .info .desc {
	font-size: 0.5rem;
	font-weight: 400;
	font-family: 'FZLTHJW';
	color: #565656;
}

#app .bottom .welfare .item .info .btn {
	width: 3rem;
	height: 1.3rem;
	background: url(../images/welfare_item_btn.png) no-repeat center / 100% 100%;
}

#app .bottom .welfare .item .info .btn1 {
	width: 3rem;
	height: 1.3rem;
	background: url(../images/welfare_item_btn1.png) no-repeat center / 100% 100%;
}

#app .bottom .oneyuan {
	height: 8rem;
	background: url(../images/oneyuan_bg.png) no-repeat center / 100% 100%;
	padding: 2.8rem 0.6rem 0rem;
}

#app .bottom .oneyuan .img {
	width: 13.781333rem;
	height: 4.053333rem;
	background: url(../images/1yuanfuli.png) no-repeat center / 100% 100%;
	color: #ffeedb;
	font-size: 1rem;
	font-weight: 500;
	font-family: 'FZLTZCHK';
	padding: 1.3rem 0rem 0rem 4.2rem;
}

#app .bottom .oneyuan .img1 {
	width: 13.781333rem;
	height: 4.053333rem;
	background: url(../images/1yuanfuli1.png) no-repeat center / 100% 100%;
	color: #ffeedb;
	font-size: 1rem;
	font-weight: 500;
	font-family: 'FZLTZCHK';
	padding: 1.3rem 0rem 0rem 4.2rem;
}

#app .bottom .birthday {
	height: 9rem;
	background: url(../images/birthday_bg.png) no-repeat center / 100% 100%;
	padding: 2.6rem 0.6rem 0rem;
}

#app .bottom .birthday .img {
	width: 13.8rem;
	height: 5.5rem;
	background: url(../images/birthday.png) no-repeat center / 100% 100%;
	border-radius: 0.4rem;
}

#app .bottom .ecoin {
	height: 29.141333rem;
	background: url(../images/ecoin_bg.png) no-repeat center / 100% 100%;
	padding: 2rem 0.8rem 0.4rem;
}

#app .bottom .ecoin .ecoin_out {
	width: 100%;
	height: 95%;
	margin-top: 0.6rem;
	overflow: auto;
}

#app .bottom .ecoin .exchange {
	width: 100%;
	margin-bottom: 3%;
}

#app .bottom .ecoin .exchange .title {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

#app .bottom .ecoin .exchange .title .tit {
	font-size: 0.8rem;
	color: #363636;
	font-family: 'FZLTCHJW';
	font-weight: bold;
}

#app .bottom .ecoin .exchange .title .desc {
	font-size: 0.5rem;
	color: #a1a1a1;
	font-family: 'FZLTCHJW';
	font-weight: normal;
	line-height: 1.3rem;
}

#app .bottom .ecoin .exchange .item_box {
	width: 100%;
	/* 	margin-top: 0.2rem; */
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

#app .bottom .ecoin .exchange .item_box .item {
	width: 4.2rem;
	height: 7rem;
	background-color: #fff9d9;
	border: 0.06rem solid #ffe093;
	border-radius: 0.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	margin: 0.213333rem 0 0 0.25rem;
}

#app .bottom .ecoin .exchange .item_box .item .img {
	width: 2.4rem;
	height: 2.4rem;
}

#app .bottom .ecoin .exchange .item_box .item .img img {
	width: 100%;
	height: 100%;
}

#app .bottom .ecoin .exchange .item_box .item .text {
	width: 100%;
	/* 	height: 1.6rem; */
}

#app .bottom .ecoin .exchange .item_box .item .text .txt {
	width: 100%;
	font-size: 0.6rem;
	text-align: center;
	color: #1a1a1a;
	font-weight: 500;
	font-family: 'FZLTZHK';
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

#app .bottom .ecoin .exchange .item_box .item .text .desc {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#app .bottom .ecoin .exchange .item_box .item .text .desc img {
	width: 0.8rem;
	height: 0.8rem;
}

#app .bottom .ecoin .exchange .item_box .item .text .desc .price {
	font-size: 0.5rem;
	color: #ff6c00;
	margin-top: 0.2rem;
}

#app .bottom .ecoin .exchange .item_box .item .btn {
	width: 3.5rem;
	height: 1.4rem;
	background: url(../images/ljdh_btn.png) no-repeat center / 100% 100%;
}

#app .bottom .ecoin .exchange .item_box .item .btn1 {
	width: 3.5rem;
	height: 1.4rem;
	background: url(../images/ljdh_btn1.png) no-repeat center / 100% 100%;
}

#app .bottom .wonderful {
	height: 8.810666rem;
	background: url(../images/wonderful_bg.png) no-repeat center / 100% 100%;
	padding: 2.7rem 0.6rem 0rem;
}

#app .bottom .wonderful .carousel-container {
	width: 100%;
	height: 100%;
	position: relative;
	/* border-radius: 0.64rem; */
	overflow: hidden;
	/* margin-top: 0.682666rem; */
}

#app .bottom .wonderful .carousel-container .carousel-slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

#app .bottom .wonderful .carousel-container .carousel-slide:not(.active) {
	pointer-events: none;
	/* 阻止非激活项响应点击 */
}

#app .bottom .wonderful .carousel-container .carousel-slide.active {
	opacity: 1;
}

#app .bottom .wonderful .carousel-container .carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#app .bottom .wonderful .carousel-container .carousel-nav {
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}

#app .bottom .wonderful .carousel-container .carousel-nav .carousel-dot {
	width: 0.213333rem;
	height: 0.213333rem;
	border-radius: 50%;
	background-color: #ffffff;
	opacity: 0.5;
	margin: 0rem 0.2rem;
	cursor: pointer;
}

#app .bottom .wonderful .carousel-container .carousel-nav .carousel-dot.active {
	background-color: #ffffff;
	opacity: 1;
}

#app .dialog_content {
	width: 13rem;
	height: 15.1rem;
	position: absolute;
	top: 5rem;
	left: 1.7rem;
	padding: 5.8rem 1.1rem 0rem 0.6rem;
}

#app .dialog_content .text {
	width: 100%;
}

#app .dialog_content .text .top {
	width: 100%;
	font-size: 0.7rem;
	color: #1a1a1a;
	font-family: 'FZLTHK';
	text-align: center;
}

#app .dialog_content .text .bot {
	width: 100%;
	font-size: 0.7rem;
	color: #1a1a1a;
	font-family: 'FZLTHK';
	text-align: center;
	font-weight: bold;
}

#app .dialog_content .btn_box {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin-top: 1rem;
}

#app .dialog_content .btn_box .zxx {
	width: 3.8rem;
	height: 1.5rem;
	background: url(../images/zxx_btn.png) no-repeat center / 100% 100%;
}

#app .dialog_content .btn_box .qrlq {
	width: 3.8rem;
	height: 1.5rem;
	background: url(../images/qrlq_btn.png) no-repeat center / 100% 100%;
}

#app .dialog_content .btn_box .qrdh {
	width: 3.8rem;
	height: 1.5rem;
	background: url(../images/qrdh_btn.png) no-repeat center / 100% 100%;
}

/* #app .dialog_content1 {
	width: 13rem;
	height: 15.1rem;
	position: absolute;
	top: 5rem;
	left: 1.7rem;
	padding: 5.2rem 1.1rem 0rem 0.6rem;
}

#app .dialog_content1 .text {
	width: 100%;
}

#app .dialog_content1 .text .top {
	width: 100%;
	font-size: 0.7rem;
	color: #1a1a1a;
	font-family: 'FZLTHK';
	text-align: center;
}

#app .dialog_content1 .text .bot {
	width: 100%;
	font-size: 0.7rem;
	color: #1a1a1a;
	font-family: 'FZLTHK';
	text-align: center;
	font-weight: bold;
}

#app .dialog_content1 .time1 {
	width: 100%;
	font-size: 0.3rem;
	color: #1a1a1a;
	font-family: 'FZLTHK';
	text-align: right;
	margin-top: 0.2rem;
}

#app .dialog_content1 .btn_box {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin-top: 0.4rem;
}

#app .dialog_content1 .btn_box .zxx {
	width: 3.8rem;
	height: 1.5rem;
	background: url(../images/zxx_btn.png) no-repeat center / 100% 100%;
} */

/* #app .dialog_content1 .btn_box .qrdh {
	width: 3.8rem;
	height: 1.5rem;
	background: url(../images/qrdh_btn.png) no-repeat center / 100% 100%;
} */


#app .sign_box_content {
	background: url(../images/qdjllq_bg.png) no-repeat center / 100% 100%;
}

#app .eCoin_box_content {
	background: url(../images/qbdh_bg.png) no-repeat center / 100% 100%;
}

#app .eCoin_detail_content {
	width: 13rem;
	height: 18.7rem;
	position: absolute;
	top: 5rem;
	left: 1.7rem;
	padding: 3rem 1.1rem 0rem 0.6rem;
	background: url(../images/dialog_bg.png) no-repeat center / 100% 100%;
}

#app .eCoin_detail_content .title {
	width: 100%;
	text-align: center;
	font-size: 0.8rem;
	color: #ff6c00;
	font-weight: bolder;
	font-family: 'FZLTTHJW';
	text-shadow: -0.1rem -0.1rem 0 white, 0.1rem -0.1rem 0 white, -0.1rem 0.1rem 0 white, 0.1rem 0.1rem 0 white;
}

#app .eCoin_detail_content .month_picker_wrapper {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

#app .eCoin_detail_content .month_picker_wrapper .month_picker {
	width: 4.2rem;
	height: 1.2rem;
	background-color: #f4f4f4;
	border-radius: 0.2rem;
	margin: 0.4rem 0.6rem 0rem;
	border: 0.05rem solid #dadada;
	font-size: 0.6rem;
	text-align: center;
	line-height: 1.1rem;
	color: #1a1a1a;
	font-family: 'FZLTHJW';
}

#app .eCoin_detail_content .month_picker_wrapper .month_picker img {
	width: 0.4rem;
	height: 0.5rem;
	transform: rotate(90deg);
}

#app .eCoin_detail_content .month_picker_wrapper input[type="month"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	cursor: pointer;
}

#app .eCoin_detail_content .table {
	width: 13rem;
}

#app .eCoin_detail_content .table .tr {
	width: 11.5rem;
	display: flex;
	justify-content: space-around;
}

#app .eCoin_detail_content .table .tr .th {
	text-align: center;
	font-size: 0.6rem;
	color: #101010;
	font-family: 'FZLTHJW';
}

#app .eCoin_detail_content .table .tr .th:nth-child(1) {
	width: 2.7rem;
}

#app .eCoin_detail_content .table .tr .th:nth-child(2) {
	width: 6.1rem;
}

#app .eCoin_detail_content .table .tr .th:nth-child(3) {
	width: 2.7rem;
}

#app .eCoin_detail_content .table .tr_box {
	width: 11.5rem;
	max-height: 10rem;
	overflow-y: scroll;
}

#app .eCoin_detail_content .table .tr_box .tr {
	width: 11.5rem;
	display: flex;
	justify-content: space-around;
	height: 1.4rem;
	line-height: 1.4rem;
}

#app .eCoin_detail_content .table .tr_box .tr .td {
	text-align: center;
	font-size: 0.6rem;
	color: #797979;
	font-family: 'FZLTHJW';
}

#app .eCoin_detail_content .btn {
	width: 5.3rem;
	height: 1.8rem;
	background: url(../images/wzdl_btn.png) no-repeat center / 100% 100%;
	margin: 1.2rem auto 0rem;
}

@keyframes floatAnimation {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-0.4rem);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes translateHand {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(0.4rem, 0.4rem);
	}

	100% {
		transform: translate(0, 0);
	}
}

.close {
	position: absolute;
	right: 1.24rem;
	width: 1.46rem;
	height: 1.46rem;
	top: 2rem;
	z-index: 4;
	background: url('../img/close.png') no-repeat center / 100% 100%;
}

.mask {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10;
	top: 0;
	left: 0;
}

#toa-text {
	font-size: 0.6rem;
}


/* 抽奖弹框 */
.e_card {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 3rem;
	z-index: 999;
}

.e_card ul {
	color: #fff;
	width: 13.3rem;
	margin: 0 auto;
	background-color: #fff;
	padding: 0 0.5rem 0.5rem;
	border-radius: 0.3rem;
}

.e_card li.game,
.e_card li.game_btn {
	width: 3.8rem;
	height: 4.5rem;
	background: #feacae url("../images/e_content_8.png") center no-repeat;
	background-size: 100%;
	border-radius: 0.2rem;
	text-align: center;
	float: left;
	margin: 0.5rem 0.15rem 0;
	line-height: 1rem;
	-webkit-tap-highlight-color: transparent;
}

.e_card li.game .card_flow_title {
	font-size: 0.7rem;
	padding: 0.5rem 0 0;
}

.e_card li.game>img {
	width: 2.453333rem;
	height: 2.453333rem;
	margin: 0.5rem auto 0;
}

.e_card li.game .card_flow {
	font-size: 1.5rem;
	margin-top: 0.6rem;
}

.e_card li.game_btn {
	background: url("../images/e_card_bg3.png") center no-repeat;
	background-size: 100%;
}

.e_card li.game>.card_join {
	font-size: 1.5rem;
	line-height: 1.5rem;
	padding: 1.2rem 0;
}

.e_card li.game .card_coin_title {
	font-size: 0.8rem;
}

.e_card li.game .card_coin_img {
	width: 2rem;
	height: 2rem;
	margin-top: 0.8rem;
}

.e_card li.game_btn p {
	padding-top: 2.5rem;
	font-size: 0.7rem;
}

.e_card .history {
	color: #fff;
	text-align: right;
	background-color: #53bafd;
	border-radius: 0.106667rem;
	padding: 0.2rem 0.5rem;
	float: right;
	margin: 0.5rem 0.1rem 0;
	font-size: 0.7rem;
}

.card_close {
	width: 0.85rem;
	height: 0.85rem;
	margin-left: 13rem;
}

.card_check {
	background-color: #fc5267 !important;
}

/* 获奖历史 */
.e_history {
	z-index: 1000;
	position: relative;
}

.e_history h3 {
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	color: #fff;
	background-color: #f0975d;
	border-top-left-radius: 0.213333rem;
	border-top-right-radius: 0.213333rem;
	font-size: 0.9rem;
}

.e_history>div {
	width: 13.5rem;
	background-color: #f7f5f5;
	border-radius: 0.213333rem;
	position: fixed;
	top: 3rem;
	left: 50%;
	margin-left: -6.75rem;
}

.e_history>div {
	text-align: center;
	color: #333333;
	font-size: 0.65rem;
}

.e_history>div>div {
	height: 1.5rem;
	line-height: 1.5rem;
	border-bottom: 0.021333rem solid #dddada;
	font-size: 0.7rem;
	font-weight: bold;
}

.e_history>div>ul {
	min-height: 16rem;
	max-height: 16rem;
	overflow-y: scroll;
	font-size: 0.6rem;
}

.e_history>div>ul li {
	border-bottom: 0.021333rem solid #dddada;
	min-height: 1.5rem;
	line-height: 1.5rem;
	color: #666666;
}

.e_history>img {
	width: 1.194667rem;
	height: 1.194667rem;
	display: block;
	position: fixed;
	top: 3.4rem;
	right: 1.5rem;
	z-index: 1;
}

.pop-model {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.65);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.updateIop {
	/*width: 12.3306667rem;
    height: 13.376rem;
    background: url(../images/updateIop.png);
    background-size: 100% 100%;*/
	width: 13.589333rem;
	height: 15.872rem;
	background: url(../images/updateIop.png);
	background-size: 100% 100%;
	display: block;
	position: absolute;
	top: 5rem;
	left: 1.2rem;
	/*top: 7rem;
    left: 1.8rem;*/
}

.close-pop {
	width: 1.194667rem;
	height: 1.194667rem;
	display: block;
	position: absolute;
	bottom: -2rem;
	left: 45%;
}

.whiteBg {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
}
