﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h3,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 0;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	text-decoration: none;
}

img {
	width: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

.hide {
	display: none;
}

/* 页面css */
body {
	max-width: 500px;
	margin: 0 auto;
	font-family: "PingFang SC";
	background: #F5F5F5;
}

header {
	padding: 0 10px;
	max-width: 500px;
	margin: 0 auto;
	height: 50px;
	display: flex;
    align-items: center;
    justify-content: space-between;
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0px 2px 6px 0px #A5AAC133;

}
header .left{
    display: flex;
    align-items: center;
}
header .left .logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .left .logo .left_logo{
	margin-right: 8px;
	border-radius: 8px;
	width: 40px;
	box-shadow: 0px 0px 6px 0px #00000026;
}
header .left .logo .right_name{
	display: flex;
	flex-direction: column;
}
header .left .logo .right_name .name{
	font-size: 15px;
	font-weight: 500;
	line-height: 21px;
	color: #282A29;

}
header .left .logo .right_name .tag{
	font-size: 11px;
	font-weight: 400;
	line-height: 16.8px;
	color: #545C78;

}
header .left .closetopbtn {
	width: 20px;
	height: 20px;
	margin-bottom: -2px;
	margin-right: 6px;
}
header .right{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .right .btnbo{
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 60px;
	height: 25px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 500;
	padding: 0 5px;
}
header .right .download_link {
	background: linear-gradient(270deg, #0D186A 0%, #0D20B0 100%);
	color: #fff;
	width: 50%;
	margin-left: 10px;
}
header .right .goGW{
	border: 1px solid #0C176B;
	background-color: #F7F8FA;
	color: #0C176B;
}

main .box1 {
	max-width: 500px;
    margin: -30% auto 0;
	padding: 0 0 10px;
}
main .download_box{
	margin-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
	display: none;
	align-items: center;
	justify-content: center;
}
main .download_box .btn{
	width: 40%;
    height: .7rem;
    border-radius: .4rem;
	border: 1px solid #fff;
    line-height:.7rem;
    background: #F7F8FA;
    color: #0C176B;
    text-align: center;
    font-family: PingFang SC;
    font-size: .32rem;
    font-weight: 500;
    cursor: pointer;
	position: relative;
	overflow: hidden;
	animation: grow-shrink 0.5s infinite alternate;
}
main .download_box .btn.ios_gf{
	margin-left: .24rem;
	animation-delay: 0.2s;
}
@keyframes grow-shrink {
	0% {
		transform: scale(0.98);
	}
	100% {
		transform: scale(1);
	}
}

main .banner {
	position: relative;
}
main .registerBox {
	position: relative;
	z-index: 2;
	width: 95%;
	min-height: 240px;
	border-radius: 15px;
    background-image: url(../image/account-rest.png);
    background-size: 100% 100%;
	margin: 0 auto;
}
main .registerBox.phoneRest{
    background-image: url(../image/phone_rest.png);
}
main .registerBox .tab_list ul {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 42px;
	margin-bottom:  15px;
	border-radius: 60px;
	padding: 2px;
}
main .registerBox .tab_list ul li {
	width: 50%;
	height: .7rem;
	text-align: center;
    line-height: 49px;
	color: #fff;
	font-size: 12px;
    font-weight: 500;
	position: relative;
	height: 42px;
}
main .registerBox .tab_list ul li.current {
	color: #282A29;
    font-size: 15px;
}
main .registerBox .tab_list ul li span{
	display: inline-block;
	position: relative;
}
main .registerBox .tab_list ul li span >i {
	width: 82px;
	height: 20px;
	position: absolute;
	top: -8px;
	right: -1rem;
	background-image: linear-gradient(to right, #F03347 50%, #F03347 50.1%, #F77F10 100%);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 8px 8px 0;
    font-weight: 400;
	color: #fff;
	line-height: 20px;
    animation: scale 1.2s infinite;
}
main .registerBox .tab_list ul li > span > i {
	margin-left: 2px;
}

main .registerBox .tab_list ul li:nth-child(2) > i {
    animation: scale 1.5s infinite 1s; /* 延迟启动第二个盒子的动画 */
}
@keyframes scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
}
@keyframes bounceAndScale {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	8.33%, 25%, 41.67% {
		transform: translateY(-2px) scale(1);
	}
	16.67%, 33.33%, 50% {
		transform: translateY(0) scale(1);
	}
	75% {
		transform: translateY(0) scale(1.06);
	}
	87.5% {
		transform: translateY(0) scale(1);
	}
}
main .tab_con .item {
	width: 305px;
	margin: 0 auto;
	display: none;
}

main .tab_con .item .input_box {
	width: 100%;
	height: 40px;
	border-radius: 10px;
	background: #fff;
	border: none;
	padding-left: 10px;
    border: 1px solid #E2E3E7;
	color: #282A29;
	display: flex;
	align-items: center;
	justify-content: start;
	overflow: hidden;
}
main .tab_con .item .input_box input {
	flex: 1 1 auto;
	margin-left: 4px;
	font-size: 14px;background: transparent;
}
main .tab_con .item .input_box > img.pwd,main .tab_con .item .input_box > img.user, main .tab_con .item .input_box > img.phone,main .tab_con .item .input_box > img.veryfiy{
	width: 28px;height: 28px;
}
main .tab_con .item .input_box > img.line {
	width: 1px;height: 25px;margin: 0 4px;
}
main .tab_con .item input {
	border: none;
	height: 34px;
}
main .tab_con .item input::placeholder {
	color: #bbb;
	font-size: 12px;
}
main .tab_con .item input:focus {
	outline: none;
}
main .input-tips {
	color: #DF233D;
	font-size: 11px;
	line-height: 20px;
	height: 20px;
	padding-left: 16px;
}
main .warp-btn {
	height: 40px;
	width: 310px;
	margin: 0px auto 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
    background: linear-gradient(90deg, #2738B2 40%, #0C176B 100%);
    /* background-image: url(../../img/adlanding/btnbg.gif); */
    background-size: contain;
	position: relative;
	overflow: hidden;
}

main .warp-btn > p {
	font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.8px;
}
@keyframes grow-shrink {
	0% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}
main .warp-btn.cant-click {
    background: #ccc;
	pointer-events:none;
}

main .boxx {
	max-width: 500px;
    margin: 10px auto 0;
	padding-bottom: 6px;
}

main .boxx .tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
    background-color:#fff;
    border-radius: 10px;
	background-position: center;
	width: 92%;
	height: 50px;
	margin: 0 auto 6px;    
}

main .boxx .tabs .tab-button {
  flex: 1 0 100px;
  border: none;
  /* background-color: transparent; */
  transition: background-image 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .boxx .tabs .tab-button img{
    width: auto;
    height: 32px;
}

main .boxx .tab-content {
  	display: none;
	/* box-shadow: 0px -3px 8px 0px rgba(108, 123, 168, 0.15); */
	margin: 0 auto;
	overflow: hidden;
	padding: 5px 15px;
	position: relative;z-index: 9;
}

main .boxx .tab-content.active {
  display: block;
}
main .boxx .tab-content .row {
	display: flex;
	justify-content: space-between;
}
main .boxx .tab-content .row:nth-child(1) , .row:nth-child(2){
	margin-bottom: 10px;
}
main .boxx .tab-content a {
	display: block;
	position: relative;
    border-radius: 12px;
    box-shadow: 0px 2px 6px 0px #A5AAC133;
    overflow: hidden;
}

main .box2 .tab-content#tab-2 a{
    width: 49%;
    position: relative;
    overflow: hidden;
}
main .boxx .tab-content a .footname{
    width: 100%;
    height: 22%;
    padding-left: 8px;
    font-family: PingFang SC;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #282A29;
    backdrop-filter: blur(4px);
    background: #FFFFFF99;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
main .boxx .tab-content a img {
	height: 100%;
	background-size: 100%;
}
main .box2 {
	position: relative;
}

main .box2 .tabs .tab-button:nth-child(1){
	background-image: url(../image/tab_sport.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box2 .tabs .tab-button:nth-child(2){
	background-image: url(../image/tab_fish.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box2 .tabs .tab-button:nth-child(3){
	background-image: url(../image/tab_lottery.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box2 .tabs .tab-button.active:nth-child(1){
    background-image: url(../image/tab_sport_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}
main .box2 .tabs .tab-button.active:nth-child(2){
    background-image: url(../image/tab_fish_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}
main .box2 .tabs .tab-button.active:nth-child(3){
    background-image: url(../image/tab_lottery_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}

main .box2 .tab-content#tab-1 a{width: 100%; border-radius: 10px;}

main .box2 .tab-content a .enter{
    position: absolute;left: 12%;bottom: 10%; width: 20%; height: 20%;
}

main .box2 .tab-content a  .arrow {
	position: absolute;right: 7px;bottom: 5px;width: 16px;height: 16px; z-index: 2;
}

main .box2 .balls{
	margin-top: 12px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
main .box2 .balls li{
	padding: 6px;
	width: 23%;
	height: 45px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 6px 0px #A5AAC133;
	background-color: #fff;
}
main .box2 .balls li img{
	width: 30px;
	margin-right: 5px;
}
main .box2 .balls li span{
	font-size: 15px;
	font-weight: 400;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #545C78;
}


main .box3 .tabs .tab-button:nth-child(1){
	background-image: url(../image/tab_live.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box3 .tabs .tab-button:nth-child(2){
	background-image: url(../image/tab_slot.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box3 .tabs .tab-button:nth-child(3){
	background-image: url(../image/tab_chess.png);background-repeat: no-repeat;background-size: auto 32px;background-position: center;
}
main .box3 .tabs .tab-button.active:nth-child(1){
	background-image: url(../image/tab_live_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}
main .box3 .tabs .tab-button.active:nth-child(2){
	background-image: url(../image/tab_slot_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}
main .box3 .tabs .tab-button.active:nth-child(3){
	background-image: url(../image/tab_chess_active.png);background-repeat: no-repeat;background-size: 99% 48px;
}

main .box3 .tab-content a{width: 32.2%; border-radius: 12px;border: 1px solid #FFFFFF;
}
main .box3 .tab-content a  .arrow {
	position: absolute;right: 7px;bottom: 5px;width: 16px;height: 16px; z-index: 2;
}
main .tit {padding: 0 15px; width: 100%; display: flex;align-items: center; color: #282A29; }
main .tit >img {width:20px;}
main .tit >p{
    margin-left: 5px;
    font-size: 16px;
    font-weight: 500;
}
main .bt{
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}
main .bt img{
	width: 76%; 
}

.promo_warp{
	display: flex;
	align-items: center;
	padding: 0 .3rem;
}
.promo_warp .tab_item{
	margin-bottom: .1rem;
}
.promo_warp .tab_item .item_h{
	display: none;
}
.promo_warp .tab_item img{
	pointer-events: none;
}
.promo_warp .ban_box a{
	display: inline-block;
}
.promo_warp .ban02,.promo_warp .ban03,.promo_warp .ban04,.promo_warp .ban05,.promo_warp .ban06{
	display: none;
}
.promo_warp .promo_r{
	position: relative;
    z-index:1;
	margin-left: -.6rem;
}
.promo_warp .promo_l{
	position: relative;
    z-index:1;
	margin-right: -.6rem;
}
.footer_desc{
	color:  #282A29;
	text-align: center;
	font-family: "PingFang SC";
	font-size: .24rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.48px;
	padding: .2rem 0 .3rem 0;
}
.footer_desc span{
	color: #DF233D;
}
.kf_link {
    width: 60px;
    position: fixed;
	right: 0;
	top: 60%;
	z-index: 999;}
.warp-footer {
	position: sticky;
	bottom: 0;
	width: 100%;
	max-width: 500px;
	z-index: 999;
	max-width: 500px;
	margin: 0 auto;
}
.warp-footer > .con {
	max-width: 500px;
	display: block;
	margin: 0 auto;
	position: relative;
}
.warp-footer .con > img {
	width: 100%;
	background: #fff;
	box-shadow: 0px -4px 10px 0px #ccd7e3;
}
.warp-footer  .warp_logo{
    width: 15%;
    height: 80%;
    position: absolute;
    left: 3.1%;
    top: 49.5%;
    transform: translateY(-50%);
	box-shadow: 0px 0px 4.44px 0px #00000026;
	border-radius: 10px;

}
.warp-footer .con .num888gif {
	width: 16%;
    position: absolute;
    left: 37.1%;
    bottom:25%;
    transform: translateY(-50%);
}

.warp-footer .con .btngif {
	width: 28%;
    position: absolute;
    right: 9px;
    top: 52%;
    transform: translateY(-50%);
    font-size: 16px;
}
.sendCode {
	width: 80px;
	height: 34px;
    border-radius: 10px;
    background: #0D186A;
	color: #fff;
	text-align: center;
	font-family: "PingFang SC";
	font-size: 12px;
	line-height: 34px;
	position: absolute;
	right: 3px;
	top: 63px;
}
.sendCodeTime {
	background: #A5AAC1 !important;
	color: #fff !important;
}
/* 后面两个 */
/* ios下载弹出层 start */
.mask_warp{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 999;
    display: flex;
    flex-direction: column;
    display: none;
}

.mask_warp .blank_box{
    flex: 1;
}
.mask_warp  .pop_box{
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: fixed;
    left: 0;
    width: 100%;
    bottom:-100%;
    padding: 15px;
    box-sizing: border-box;
}
.mask_warp  .pop_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mask_warp .pop_close{
    display: block;
    width: 24px;
}
.mask_warp .tit_box{
    display: flex;
    align-items: center;
}
.mask_warp .tit{
    font-family: PingFang SC;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    color: #0E176C;
}
.mask_warp .titlogo{
    display: block;
    width: 24px;
    margin-right: 5px;
}
.mask_warp  .pop_up{
    animation: popup .75s .2s ease; 
}
.mask_warp  .pop_down{
    animation: popdown .75s .2s ease; 
}
@keyframes popup{
    from {bottom:-100%}
    to {bottom:0;}
}
@keyframes popdown{
    from {bottom:0}
    to {bottom:-100%;}
}

.mask_warp .pop_conent{
    margin-top: 15px;
    width: 345px;
    border-radius: 12px;
    background: #F7F8FA;
    padding: 10px;
    box-sizing: border-box;

}
.mask_warp .step{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #282A29;
}
.mask_warp .step1{
    font-size: 20px;
    font-weight: 600;
    color: #0E176C;
    margin-right: 5px;
}
.mask_warp .step div{
    overflow:hidden; 
    text-overflow:ellipsis;
    display:-webkit-box; 
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2; 
    word-break: break-all;
    font-weight: 500;
    line-height: 19.6px;
    color: #0E176C;
	display: flex;
}
.mask_warp .step .iosstore_name{
    white-space: nowrap;
    text-overflow:ellipsis;
    max-width: 110px;
    display: inline-block;
    overflow:hidden; 
}

.mask_warp .app_info{
    width:80%;
    margin:10px auto;
}
.mask_warp .app_info_t{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mask_warp .logo_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mask_warp .app_info_t .sm_logo{
    width: 50px;
    box-shadow: 0px 0px 5px 0px #00000040;
    border-radius: 10px;
}
.mask_warp .store_logo{
    border-radius: 10px;
}
.mask_warp .app_info_t .equal{
    color: #5A5B60;
    font-family: "HarmonyOS Sans SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 0 10px;
}
.mask_warp .app_info_t .download_store_btn{
	height: 22px;
	text-align: center;
	line-height: 22px;
    border-radius:4px;
    background: #0E176C;
    padding: 0 8px;
    color: #FFF;
    font-family: "HarmonyOS Sans SC";
    font-size: 14px;
    font-weight: 400;
}
.mask_warp .download_store_tri{
    color: #545C78;
    font-family: "HarmonyOS Sans SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
} 
.mask_warp .download_store_tri img{
    width: 14px;
    margin-right: 10px;
}

.mask_warp .ios_download{
    border-radius: 10px;
    background: linear-gradient(270.12deg, #2738B2 -7.95%, #0C176B 119.83%);
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: PingFang SC;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* 弹出层 end */
/* 轻提示 start */
.mask_msg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	visibility: visible;
	opacity: 1;
	transition: 0.1s opacity linear;
	display: none;
	background: rgba(74, 74, 74, 0.5);
	z-index: 9999;
}
.mask_msg-content {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 13;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s opacity linear;
}
.mask_msg_text {
	padding: 30px 15px;
	border-radius: 6px;
	background-color: rgba(0, 0, 0, 0.9);
	text-align: center;
	text-overflow: ellipsis;
	max-width: 84%;
	word-break: break-all;
	word-wrap: break-word;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	line-height: normal;
}
/* 轻提示 end */
