html, body, #wrapper{
	min-height:100%;
    /*height:auto;*/
}
#wrapper{
	/* background: linear-gradient(to top, #930000, #ffffff 90%); */
	background: #21201e;
}
#snow{
    pointer-events:none;
}

/**********float-div**************/
#float-div.float-div{
	position: absolute;
    top: 2.5rem;
	right: 0;
    z-index: 800;
    border-top-left-radius: .1rem;
    border-bottom-left-radius: .1rem;
    box-shadow: 0 0 0.1rem 0 rgb(0 0 0 / 40%);
	color: #000;
	background: linear-gradient(to right, #e4ba90, #d7a36c);
    padding: 0.25rem 0;
	font-size: .26rem;
	cursor: pointer;
	text-align: center;
	width:.706rem;
}

#float-div .share-img{
	/*margin: 0 0.25rem 0.1rem 0.25rem;*/
	margin-bottom: .1rem;
	color: #5b483a;
}

#float-div .share-txt{
	margin: 0 auto;
	color: #5b483a;
}

body.lang-tw #float-div .share-txt, body.lang-cn #float-div .share-txt{
	writing-mode: vertical-rl;
}
/**********float-div**************/

/**********float-div2**************/
#float-div2.float-div2{
	position: absolute;
    top: 4.5rem;
	right: 0;
    z-index: 800;
    border-top-left-radius: .1rem;
    border-bottom-left-radius: .1rem;
    box-shadow: 0 0 0.1rem 0 rgb(0 0 0 / 40%);
	color: #000;
	background: linear-gradient(to right, #e4ba90, #d7a36c);
    padding: 0.25rem 0;
	font-size: .26rem;
	cursor: pointer;
	text-align: center;
	width:.706rem;
}

#float-div2 .app-download-img{
	width:40%;
	display: block;
	margin: 0 auto;
	margin-bottom: .1rem;
}

#float-div2 .txt{
	margin: 0 auto;
	display: flex;
    align-items: center;
	color: #5b483a;
}

body.lang-tw #float-div2 .txt, body.lang-cn #float-div2 .txt{
	writing-mode: vertical-rl;
}

#float-div2 .txt .eng{
	writing-mode:horizontal-tb;
	padding-top:.04rem
}
/**********float-div2**************/

/**********float-div3**************/
#float-div3.float-div3{
	position: absolute;
    top: 6.5rem;
	right: 0.1rem;
    z-index: 800;
	color: #fff;
	cursor: pointer;
	width:.6rem;
	transform-origin: center;
}

#float-div3.float-div3.discountAnimate{
	animation: discountAnimate 2s infinite 0.5s;
}

#float-div3 img{
	width: 100%;
	vertical-align: middle;
}

#float-div3 img.close{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

#float-div3 .txt{
	position: absolute;
	top: 55%;
	left: 45%;
	transform: translate(-50%,-50%);
	font-weight: 600;
	text-shadow: 0 0 1px black;
	text-align: center;
	font-size: .22rem;
	user-select: none
}

/**********float-div3**************/

/**********float-div4**************/
#float-div4 a{
	display: block;
	width: 100%;
	height: 100%;
}

#float-div4 a:hover{
    color: #5b483a;
    text-decoration: none;
}

#float-div4 .txt{
	writing-mode: vertical-rl;
	margin: 0 auto;
    color: #5b483a;
}
#float-div4.float-div4{
	position: absolute;
    top: 6.4rem;
	right: 0;
    z-index: 800;
    border-top-left-radius: .1rem;
    border-bottom-left-radius: .1rem;
    box-shadow: 0 0 0.1rem 0 rgb(0 0 0 / 40%);
	color: #000;
	background: linear-gradient(to right, #e4ba90, #d7a36c);
    padding: 0 0;
	cursor: pointer;
	text-align: center;
	width:.706rem;
}
/*
#float-div{
	position: absolute;
    top: 6.8rem;
    z-index: 800;
    cursor: pointer;
    width: 1rem;
    right: 0;
}
*/
#float-div4 img{
	width: 100%;
	vertical-align: middle;
}

#float-div4 .number{
	color: #5b483a;
}
/**********float-div4**************/

/**********float-div5**************/
#float-div5{
	position: fixed;
    top: 9.5rem;
    z-index: 800;
	color: #000;
	cursor: pointer;
	width:.6rem;
	height: .6rem;
	background: gold;
}
/**********float-div5**************/

.main-content{
/*	background-color: #000000;*/
	position: relative;
}


.home-marquee{
    flex: 1;
    display: flex;
    align-items: center;
}





.home-marquee .icon-noitce{
	width: 0.45rem;
    border-radius: 50% 0 0 50%;
    background: linear-gradient(to bottom, #c93534, #930000);
    padding: 0.05rem 0;
    text-align: center;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
}
.home-marquee .icon-noitce img{
	width: 0.2rem;
    vertical-align: middle;
}
.home-marquee .marquee{
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    height: .3rem;
    margin: 0 .1rem;
    overflow: hidden;
    line-height: initial;
}
.home-marquee .marquee-bg-color{
	flex: 1;
}
.home-marquee .marquee .marquee-c{
    color: #ffffff;
    font-size: .22rem;
    white-space: nowrap;
    position: absolute;
    animation: marquee 30000ms linear infinite;
    /*animation: marquee var(--duration, 10s) linear infinite;*/
    --start-x: 100%;
    --end-x: -100%;
}

@keyframes marquee {
 0% {
  /* left: 100%; */
  transform: translateX(var(--start-x));
 }

 100% {
  /* left: 0; */
  transform: translateX(var(--end-x));
 }
}

.banner-area{
    overflow: hidden;
    border-radius: 0.1rem;
    height: 3rem;
    padding: 0 0.35rem;
}

.banner-area .my-focus{
	border-radius: 5px;
    /**以下是為了讓下雪效果不要蓋到banner 造成無法點擊**/
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.banner-area .my-focus,
.banner-area .my-focus .pic{
	height: 100%;
	width: 100%;
}

.banner-area .my-focus .pic li{
	width: 100%;
	position: absolute;
    top: 0;
    left: 0;
	right: 0;
    display: none;
}

.banner-area .my-focus .banner-img {
    width: 100%;
}

.banner-area .my-focus .num{
	bottom: 0.02rem;
	height: auto;
}

.banner-area .my-focus .num li{
	margin: 0 0.08rem;
	width: 0.2rem;
	height: 0.2rem;
}

.banner-area .my-focus .num li a{
	width: 0.2rem;
	height: 0.2rem;
	background: #999;
	z-index: 800;
}

.banner-area .my-focus li.current a, 
.banner-area .my-focusli.hover a{
	background-color: #54c6a1;
}

.banner-area .mF_YSlider .pic li, 
.banner-area .mF_YSlider .rePic li{ 
 	width: 100%; 
} 

/*content game-list*/
/*
.game-list{
	padding: 0.2rem 0.35rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
*/

.game-list .item{
	margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    cursor: pointer;
	position: relative;
    /**以下是為了讓下雪效果不要蓋到banner 造成無法點擊**/
    z-index: 2;
}

.game-list .item:nth-child(2n){
	margin-right: 0px;
}

.game-list .item .mask-txt {
    font-size: .2rem;
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0%;
    background-color: rgba(0,0,0,.6);
    padding: 0.05rem 0;
	text-align: center;
}

.game-list .item .mask-txt.gs-close, .game-list .item .mask-txt.gs-maintain{
	color:#fff;
}

.game-list .item .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(51,51,51,.6);
}

.game-list .item_v1 .img{
	height: 2.2rem;
    width: 3.3rem;
	display: block;
}

.game-list .item_v2 .img{
	height: 1.1rem;
    width: 3.3rem;
	display: block;
}

/* 登入區 start */

.extra-container {
    /*background: linear-gradient(to top, #d7ecfe, #ecf6ff, #d7ecfe);
    box-shadow: inset 0.02rem 0.02rem 0.02rem #ffffff, inset -0.02rem -0.02rem 0.02rem #ffffff, 0.01rem 0.01rem 0.05rem #6b6a6a, -0.03rem -0.03rem 0.05rem #cdcecf;*/
    padding: 0.1rem 0.25rem;
    margin: 0.1rem 0.2rem;
    /*border-radius: 0.2rem;*/
	/* height: 2rem; */
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url(../sty4_images/extra-container-bg.webp?c=2);
    position: relative;
}

.mid-area {
	display: flex;
    align-items: center;
    padding: 0.04rem 0 0.05rem 0.15rem;
    border: 0 solid transparent;
    border-radius: 0.4rem;
    /*background: linear-gradient(#db2b30, #db2b30) padding-box, linear-gradient(to top, #470206, #b1666b) border-box;*/
	/* background: #0d182d; */
	background: #1a1917;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.mid-area .home-marquee img{
    width: 0.3rem;

    -webkit-user-drag: none;   /* Safari / Chrome */
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
}

.quota-area {
    color: #000000;
    display: flex;
    margin-top: 0.1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.quota-area .left {
    padding-right: 0.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}



.quota-area .login-register {
    display: flex;
}


.quota-area .login-register .login-btn {
	border: 0.03rem solid #bfb58a;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    margin-left: 0.3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ddcc7f;
    user-select: none;
    /* background: linear-gradient(to top, #80c3f2, #458ee2); */
    background: #554a1f;
	/* box-shadow: 0 0.015rem #7cc1f1; */
}

.quota-area .login-register .register-btn{
    border: 0rem solid transparent;
    /* position: relative; */
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    background-image: url(../sty4_images/register_btn_bg1.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}



.quota-area .right {
    padding-left: 0.1rem;
    width: 50%;
	display: flex;
	justify-content: flex-end; 
    align-items: flex-start;
	gap: 0.2rem;
    flex: 1;
}

.quota-area .right .featurn-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff2b9;
    gap: 0.02rem;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.quota-area .right .featurn-btn .txt{
    font-size: .2rem;
}

.quota-area .right .featurn-btn img{
    width: 0.65rem;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.quota-area .right .daily img{
}

.quota-area .right .app img{
}

.quota-area .right .lucky img{
}

.quota-area .right .invite img{
    width: 0.5rem;
}

.member-info{
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
    -webkit-user-drag: none;   /* Safari / Chrome */
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
    color: #ffffff;
}

.member-info .user{
	display: flex;
	align-items: end;
	gap: 0.1rem;
}

.quada{
	display: flex;
	align-items: center;
	gap: 0.1rem;
}

.quada img{
	width: 0.35rem;
	height: auto;
    -webkit-user-drag: none;   /* Safari / Chrome */
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
}


.quada .quada-txt{
	display: inline-flex;
	align-items: end;
	gap: 0.1rem;
	font-weight: 600;
    cursor: pointer;
}

.grade{
	position: relative;
	display: flex;
	align-items: center;
}

.grade img{
	width: 0.5rem;
    -webkit-user-drag: none;   /* Safari / Chrome */
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
}

.grade .grade-txt{
    /* background: #a0947f; */
    background-size: cover;
    background-size: 100% 100%;
    padding: 0.01rem 0.1rem;
    /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); */
    box-shadow: rgba(0, 0, 0,) 2.4px 2.4px 3.2px;
	color: white;
	font-size: 0.2rem;
	/* font-style: italic; */
    margin-left: 0.05rem;
}


.logout-btn{
	margin-left: 0.1rem;
/*    margin-right: 0.1rem;*/
	cursor: pointer;
    width: 1.1rem;
	/* font-size: .26rem; */
	font-weight:bold;
	display: flex;
	justify-content: center;
    align-items: center;
	padding: 0.05rem 0;
	border-radius: 999px;
	/* color: #5d473c; */
	/* background: linear-gradient(to bottom, #f0d1bb, #d9a569, #d9a569, #e5bc95); */
    color: #bfb58a;
    background: #554a1f;
    border: 0.03rem solid #bfb58a;
    position: absolute;
    left: 40%;
    bottom: 20%;
}

/*points-list*/
.btn-points{
/*	position: relative;*/
	cursor: pointer;
	user-select: none;
	/* margin-left: .25rem; */
    display: flex;
    align-items: center;
}

.btn-points .points{
	color: #fdec9f;
	position: relative;
    padding: 0 0.2rem 0 0.1rem;
}

.btn-points .points::after{
	content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-style: solid;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
	border-width: 0.1rem .08rem 0 .08rem;
    border-color: #fdec9f transparent transparent transparent;
}

.btn-points .points.on::after{
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
}

.btn-points img.wallet-img {
	width: 0.35rem;
	height: auto;
    -webkit-user-drag: none;   /* Safari / Chrome */
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
}

.btn-points .points-list{
	position: absolute;
    top: 50%;
    right: 50%;
    width: 5.5rem;
    height: 8.5rem;
    background: #1b1a17;
    font-size: 0.22rem;
    text-align: left;
    flex-direction: column;
    display: none;
    z-index: 999;
    transform: translate(50%, -50%);
}

body.lang-vn #header .panel-v1 .btn-points .points-list{
	width: 5rem;
}

.points-list .total .list-txt{
    color: #ffe873;
    font-weight: 600;
}

.points-list .content{
	overflow-y: auto;
}

.points-list .content::-webkit-scrollbar-thumb{
	background-color: #d6bd59;
	border-radius: 0;
}

.points-list .content::-webkit-scrollbar-track{
	background-color: #1b1a17;
}

.points-list .bottom{
    background: linear-gradient(180deg, #a88d2b 0%, #725f18 100%);
    border-top: 0.02rem solid #d8c46a;
    width: 100%;
}

.points-list .content,
.points-list .bottom{
	padding: .1rem .3rem;
}

.points-list .content .div-v1,
.points-list .bottom .div-v2{
	display: flex;
	align-items: center;
	border-bottom: .02rem solid #8f7928;
	white-space: nowrap;
}

.points-list .content .div-v1:last-child,
.points-list .bottom .div-v2:last-child,
.points-list .bottom .div-v2:nth-last-child(2n){
 	border-bottom: 0px;
}

.points-list .item{
	padding: .18rem 0;
	margin-right: 10px;
}

.points-list .item:last-child{
	margin-right: 0;
}

.points-list .list-txt{
	width: 30%;
    font-weight: 900;
}

body.lang-vn .points-list .list-txt{
	width: 45%;
}

.points-list .list-line{
    border-right: 0.02rem solid #6f5a18;
}

.points-list .list-line.line-v2{
    border-right: 0.02rem solid #6f5a18;
}

.points-list .bottom .btn-turn-back{
    background: #fff0a3;
    color: #000;
    border-radius: 2.5em;
    margin: .1rem 0;
    cursor: pointer;
    text-align: center;
    display: block;
    padding: .1rem 0;
	font-weight: 600;
    box-shadow: inset 0 -0.03rem 0 rgba(0, 0, 0, 0.18);
}

/*color*/
.points-list .content .list-txt{
	color: #ffe873;
	font-weight: 500;
}

.points-list .content .list-ponits{
	color: #fff;
	font-weight: 500;
}

.points-list .content .list-ponits .warning-txt{
    color: #ff3b30;
    font-weight: 500;
}

.points-list .bottom .total #total-quota{
	color: #FFF;
    text-shadow: none;
}

/* 登入區 end */

/**********中間 start**************/
.game-area{
	padding: 0.1rem 0.25rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.game-area .game-menu{
    overflow-y: auto;
}
.game-area .game-menu::-webkit-scrollbar{
    display: none;
}
.game-area .game-menu .item.active{
	background: #fcd535;
	border: .07rem solid #ffffff;
}
.game-area .game-menu .item,
.game-area .game-menu .extra-item{
	background: #ddcc7f;
	border: .07rem solid #afa164;
    cursor: pointer;
    width: 1.5rem;
	height: 0.75rem;
    margin-bottom: .25rem;
    border-radius: 999px;
	position: relative;
}

/*選取選單後要改變的樣式 start*/

.game-area .game-menu .item.active .menu-txt{
	/* color: #ffffff; */
	color: #4f5150;
	right: 0.7rem;
}
.game-area .game-menu .item .menu-txt,
.game-area .game-menu .extra-item .menu-txt{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.25rem;
	color: #4f5150;
	font-weight: 900;
	transition: color .2s linear, right .2s linear;
}
.game-area .game-menu .extra-item .menu-txt{
	right: 0.25rem;
    font-size: 0.3rem;
    font-weight: 600;
	letter-spacing: 0.02rem;
}

.game-area .game-menu .item.active img{
	left: 0.9rem;
    opacity: 0;
}
.game-area .game-menu .item.active .img-active{
	left: 0.8rem;
	opacity: 1;
}
.game-area .game-menu .item .img-active{
    opacity: 0;
}
.game-area .game-menu .item img,
.game-area .game-menu .extra-item img{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0.1rem;
    opacity: 1;
    width: 0.5rem;
    vertical-align: middle;
	transition: left .2s linear, opacity .2s linear;
	z-index: 1;
}

/*選取選單後要改變的樣式 end*/

.game-area .game-menu .item .text,
.game-area .game-menu .extra-item .text{
	display: inline-block;
    width: .52rem;
    text-align: center;
    font-size: .2rem;
    color: #9aa4c2;
    position: absolute;
    right: .04rem;
    top: .3rem;
}

.game-area .game-menu .item.active .text{
	color:#FFF;
}

.game-area .game-list{
	padding: 0 0 0.25rem 0.22rem;
	flex: 1;
    overflow-y: auto;
	position: relative;
}

.game-area .game-list::-webkit-scrollbar-thumb{
    background-color: #e9e7e8;
}

.game-area .game-list::-webkit-scrollbar-track{
   background-color: transparent;
}

.game-area .game-list .tab{
	position:relative;
}

.game-area .game-list .item{
	width:100%;
	border-radius: .12rem;
    margin-bottom: .2rem;
/*	box-shadow: 0 0.04rem 0.28rem 0 rgba(65,70,92,.3);*/
	cursor:pointer;
	/**extra**/
    position: relative;
    text-align: center;
}


.game-area .game-list .item.v2{
	width: 50%;
    height: 1.8rem;
   	float:left;
    margin-right: 0
}


.game-area .game-list .item.v4{
    height: 1.75rem;
   	float:left;
}

.game-area .game-list .item img{
	max-height:100%;
	/* background: linear-gradient(to right, #faefe7, #e6e1e1); */
	/* background: linear-gradient(to bottom, #927e2d, #ddcc7f); */
    border-radius: 6px;
    /* border: 0.05rem solid #ccb23e; */
}

.game-area .game-list .item .gstore-name.v2-offset{
    position: absolute;
    top: 0.15rem;
    left: 0.35rem;
    z-index: 2;
    color: #ffffff;
    word-break: keep-all;
    font-weight: 700;
    pointer-events: none;
}

.game-area .game-list .item .gstore-name.v4-offset{
    position: absolute;
    /* bottom: 0.2rem; */
    /* right: 0.7rem; */
    left: 0.35rem;
    top: 0.15rem;
    z-index: 2;
    color: #ffffff;
    word-break: keep-all;
    letter-spacing: 0.02rem;
    font-weight: 700;
    font-size: 0.26rem;
    pointer-events: none;
}
.game-area .game-list .item[game_store="61"] .gstore-name.v4-offset{
	bottom: 0.1rem;
}
.game-extra{
    display:flex;
    padding: 0 0.35rem;
    margin-bottom:0.15rem;
    justify-content: center;
	align-items: center;
}
.game-extra .item{
    width: 2.6rem;
    margin:0 0.4rem;
	border-radius: 0.1rem;
	padding: 0.01rem;
	cursor: pointer;
}
.game-extra .task{
	width: 2.2rem;
}
.game-extra .bonus{
	display: flex;
    align-items: center;
    border-image-source: url(../sty4_images/bonus_menu.png?c=1);
    border-image-slice: 15 fill;
    border-image-width: 0.08rem;
    height: 0.9rem;
    width: auto;
    color: white;
    flex-wrap: nowrap;
}
.game-extra .bonus .text{
	margin-left: 0.3rem;
    font-weight: bold;
    font-size: .30rem;
    white-space: nowrap;
}
.game-extra .bonus .quota{
	font-weight: 600;
    font-size: .30rem;
    margin-left: .1rem;
}
.game-extra .bonus .bonus-icon{
	color: #ffd800;
    border-radius: 999px;
    width: 0.4rem;
    height: 0.4rem;
    background: #ffffff;
    box-shadow: inset 0 -0.02rem 0.05rem rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 0.4rem;
    font-size: 0.24rem;
    margin: 0 0.3rem 0 0.05rem;
}
.game-extra .item img{
	width: 100%;
	vertical-align: middle
}
.lucky-wheel-entry{
	width: 0.7rem;
	position: absolute;
	z-index:800;
	color: white;
	top: 8.3rem;
	right: 0;
	cursor: pointer;
}
.lucky-wheel-entry .red-circle{
	width: 0.2rem;
	height: 0.2rem;
	background: red;
	border-radius: 9999px;
	position: absolute;
	right: 0.05rem;
	top: -0.05rem;
}
.lucky-wheel-entry img{
	width: 100%;
	vertical-align: middle;
}

/**********中間 end**************/

#red-packet-rain-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	overflow: hidden;
	z-index: 1000;
}

@keyframes discountAnimate {
    0% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    10% {
        transform: rotate(-10deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    20% {
        transform: rotate(10deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    28% {
        transform: rotate(-8deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    36% {
        transform: rotate(8deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    42% {
        transform: rotate(-4deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    48% {
        transform: rotate(4deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    52% {
        transform: rotate(-0deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    56% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    100% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }
}

/* 上方app下載 */

.app-download{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.15rem 0.15rem;
}
.app-download .left{
	display: flex;
	align-items: center;
	color: white
}
.app-download .left .fa-times{
	font-size: 0.4rem;
	margin-right: 0.2rem;
	cursor: pointer;
}
.app-download .left img{
	width: 0.6rem
}
.app-download .left .text-block{
	margin-left: 0.1rem
}
.app-download .left .text-2{
	font-size: 0.2rem;
}
.app-download .download-btn{
	color: white;
	width: 1.8rem;
    border-radius: 999px;
	position: relative;
}
.app-download .download-btn img{
	width: 100%;
	vertical-align: middle;
}
.app-download .download-btn .txt{
	position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
