/* 多彩模糊背景 - 精确还原图片效果 */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 154, 61, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(87, 199, 133, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 40% 70%, rgba(58, 140, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 222, 89, 0.8) 0%, transparent 40%);
    filter: blur(8px);
    z-index: 1;
}

/* 弹窗遮罩层 */
.Login-modal-overlay {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 152;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}
.Login-modal-butClose{
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    width: 0.55rem;
    height: 0.55rem;
    cursor:pointer;
}
.Login-modal-butClose img{
    width:100%;
}
.Login-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* 弹窗主体 - 精确匹配图片设计 */
.login-modal {
    width: 8.5rem;
    height: 12rem;
    border-radius: 0.4rem;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(180deg, #00FFB6 0%, #007150 36%);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.Login-modal-overlay.hidden .login-modal {
    transform: translateY(-30px);
}

/* 标签栏 - 精确匹配图片 */
.tab-header {
    display: flex;
    padding: 0 0.8rem;
}


.Login-modal-overlay .login-main{
    position: relative;
    width: 100%;
    height: 12rem;
    padding: 0.8rem 0.6rem 0;
    margin-top: 0;
    background: #104639;
    border-radius: 0.44rem;
    overflow-x: hidden;
    overflow-y: scroll;
    /* 隐藏滚动条 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.Login-modal-overlay .tab {
    flex: 1;
    text-align: center;
    padding: 1.2rem 0 0.62rem;
    font-size: .426rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.Login-modal-overlay .tab.active {
    color: #ffde59; /* 黄色高亮 */
}


.Login-modal-overlay .tab.active .left-item-arrow {
    position: absolute;
    left: 0.45rem;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 0.88rem solid transparent;
    border-right: 0.88rem solid transparent;
    border-bottom: 0.44rem solid #104639;
}

.Login-modal-overlay .tab.active .right-item-arrow {
    position: absolute;
    left:0.45rem;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 0.88rem solid transparent;
    border-right: 0.88rem solid transparent;
    border-bottom: 0.44rem solid #104639;
}

.Login-modal-overlay .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    
     /* 黄色下划线 */
}

/* 输入框样式 - 精确匹配图片 */
.Login-modal-overlay .input-group {
    margin-bottom: 0.45rem;
    line-height: 0.4rem;
}

.Login-modal-overlay .input-label {
    display: block;
    color: #b8e6cc; /* 浅青色 */
    font-size: 0.28rem;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Login-modal-overlay .input-field {
    padding:0.16rem 0.16rem 0.16rem 0.7rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius:12px;
    color: white;
    font-size:0.28rem;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    height:1.13rem;
}

.Login-modal-overlay .input-field:focus {
    border-color: #57c785; /* 亮绿色 */
}
.Login-modal-overlay .User-icon-error .input-field:focus,.Login-modal-overlay .User-icon-error .password-input:focus {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #E00000;
}
.Login-modal-overlay .input-field::placeholder,.Login-modal-overlay .password-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.signup-item-error{
    position: relative;
    line-height: 0.45rem;
    font-size: 0.373rem;
    border-radius: 0.22rem;
    width: 6.8rem;
    padding: 0.1rem 0.1rem;
    color: #E00000;
    text-align: center;
}

.msg-redpoint {
    position: absolute;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 0.3rem;
    background: #FF0000;
    top: 0.1rem;
    right: 0.1rem;
    border: 0.5px solid rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .24rem;
    color: #FFFFFF;
    transition: transform 0.1s ease-in-out;
}
/* 用户输入框 */
.Login-modal-overlay .User-container {
    position: relative;
}
.Login-modal-overlay .User-icon {
    position: absolute;
    left:0.16rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b8e6cc;
    font-size: 0.32rem;
}
.Login-modal-overlay .User-icon-reg .input-field{
    padding:0.16rem 0.16rem 0.16rem 1.7rem;
}
.Login-modal-overlay .User-icon-reg .User-icon{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem;
}
.Login-modal-overlay .User-icon-reg span{
    font-size: 0.3rem;
    font-style: normal;
    margin-top: 0.12rem;
    line-height: 0.3rem;
}
.Login-modal-overlay .User-icon img {
    height: 0.5rem;
    margin-top:0.05rem;
}
/* 密码输入框 */
.Login-modal-overlay .password-container {
    position: relative;
}

.Login-modal-overlay .password-icon,.Login-modal-overlay .fa-vcard {
    position: absolute;
    left: 0.16rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b8e6cc;
    font-size: 0.32rem;
}

.Login-modal-overlay .password-toggle {
    position: absolute;
    right:0.28rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8cd4a6;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 0.32rem;
}

.Login-modal-overlay .password-toggle:hover {
    color: #ffde59;
}

.Login-modal-overlay .password-input {
    width:100%;
    padding:0.16rem 0.16rem 0.16rem 0.7rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius:12px;
    color: white;
    font-size:0.28rem;
    outline: none;
    transition: border-color 0.2s ease;
    height: 1.13rem;
}

.Login-modal-overlay .password-input:focus {
    border-color: #57c785;
}

/* 登录按钮 - 精确匹配图片 */
.Login-modal-overlay .login-button {
    width: 100%;
    /*padding: 18px;*/
     /* 亮绿色按钮 */
    color: #e7e7e7;
    border: none;
    border-radius: 0.3rem;
    font-size: 0.28rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    letter-spacing: 0.5px;
    background-image: linear-gradient(180deg, #007855 0%, #108261 100%);
    height: 0.9rem;
}

.Login-modal-overlay .login-button:hover {
    background-color: #45b074;
}

.Login-modal-overlay .login-button:disabled {
    background-color: #8cd4a6;
    cursor: not-allowed;
}


.loading-container{
    display: flex;           /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    min-height: 100vh;      /* 至少占满整个视口高度 */
    background: #ffffff;
    margin: 0;
    flex-direction: column;
    position:relative;
    z-index:10000
}
.loading-container .loader {
    width: 50px;
    height: 50px;
    border: 4px solid #ddd;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loading-container .loadingText{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: #a3a2a2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.showAdMain{
    position: relative; 
    margin-top: 0px; 
    left: 0px; 
    width: 8.4rem; 
    height: 11.2rem; 
    overflow: hidden;
}
.showAdMainImg{
    position: absolute; 
    object-fit: contain; 
    width: 8.4rem; 
    height: 10rem;
    border-radius:0.2rem;
    border:none;
    outline: none;
}
.showAdItemCon{
    position: absolute; 
    top: 50%; 
    margin-top: -0.44rem; 
    left: 50%; 
    margin-left: -0.44rem;
    width: 0.88rem; 
    height: 0.88rem;
    background: rgba(0, 0, 0, 0.65); 
    border-radius: 0.5rem;
}
.showAdItemImg{
    position: absolute; 
    top: 50%; 
    margin-top: -0.275rem; 
    left: 50%;
    margin-left: -0.275rem; 
    width: 0.55rem; 
    height: 0.55rem;
}

/***   登录后的样式 开始   ****/
.checkLoginYes .right-coinframe {
    position: relative;
    margin-left: 0.22rem;
    height: 0.8rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.22rem;
    background: linear-gradient(to right, rgb(6, 63, 48), rgb(6, 63, 48)) padding-box padding-box, linear-gradient(317deg, rgb(5, 83, 62) 2.45%, rgb(98, 210, 141) 105.89%) border-box border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
}
.checkLoginYes .right-coinframe .coin-unit {
    margin-right: 0.1rem;
    color: rgb(70, 163, 106);
    font-size: 0.3rem;
}
.checkLoginYes .right-coinframe .coin-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.426rem;
    font-weight: 400;
    margin-right: 0.15rem;
}
.checkLoginYes .right-coinframe .coin-arrow {
    width: 0.4rem;
    height: 0.4rem;
}
.site-MainMenu-icon .app-name-leftbg-unread {
    position: absolute;
    top: 0.3rem;
    margin-left: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    line-height: 0.37rem;
    background: #FF0102;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    color: #FFFFFF;
    font-size: 0.26rem;
    border-radius: 0.4rem;
}

.top-noty-bar-frame {
    position: relative;
    margin-top: -1.3rem;
    left: 0;
    width: 10rem;
    height:3rem;
}
.top-noty-bar-frame .noty-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 10rem;
    height:3rem;
    object-fit:cover;
}
.top-noty-bar-frame .sys-login {
    position: absolute;
    bottom: 1.15rem;
    left: 0.44rem;
    width: 4.4444rem;
    height: 0.88888rem;
    line-height: 0.88888rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-in-out;
}
.top-noty-bar-frame .sys-reg {
    position: absolute;
    bottom: 1.15rem;
    right: 0.44rem;
    width: 4.4444rem;
    height: 0.88888rem;
    line-height: 0.88888rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-in-out;
}
.top-noty-bar-frame .sys-reglogin-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-noty-bar-frame .sys-reg-icon {
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.2rem;
    z-index: 1;
}
.top-noty-bar-frame .sys-reg-title {
    color: #FFFFFF;
    font-size: .373rem;
    font-weight: 700;
    z-index: 1;
}

.top-noty-bar-frame .sys-login-icon {
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.2rem;
    z-index: 1;
}
.top-noty-bar-frame .sys-login-title {
    color: #000000;
    font-size: .373rem;
    font-weight: 700;
    z-index: 1;
}
.ltMain-panel-content .topwith-frame-login {
    position: relative;
    margin-top: 1.22rem;
    width: 6.24rem;
    height: 3.3334rem;
    display: flex;
    background: #00563E;
    border-radius: 0.33rem;
}
.ltMain-panel-content .topwith-frame-login-avatar {
    position: absolute;
    top: 0.22rem;
    left: 0.22rem;
    width: 1.11rem;
    height: 1.11rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.22rem;
}
.ltMain-panel-content .topwith-frame-login-nickname {
    position: absolute;
    top: 0.278rem;
    left: 1.55rem;
    width: 4.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
    color: #FFFFFF;
    font-size: .373rem;
}
.ltMain-panel-content .topwith-frame-login-usercode {
    position: absolute;
    top: 0.88rem;
    left: 1.55rem;
    width: 4.5rem;
    height: 0.44rem;
    line-height: 0.44rem;
    display: flex;
    align-items: center;
}
.ltMain-panel-content .topwith-frame-login-usercode .usercode-value {
    color: rgba(255, 255, 255, 0.65);
    font-size: .32rem;
}
.ltMain-panel-content .topwith-frame-login-usercode .usercode-copy {
    width: 0.3333rem;
    height: 0.3333rem;
    margin-left: 0.1rem;
}
.ltMain-panel-content .ggame-leftmenu-content-redpoint {
    position: absolute;
    top: -0.1rem;
    right: 0.3rem;
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF0102;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    font-size: .285rem;
    border-radius: 0.4rem;
}
.games-grid .game-item .act-unread{
    position: absolute;
    top: 0.26rem;
    left: 1.1rem;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 0.3rem;
    background: #FE7919;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .24rem;
    color: #FFFFFF;
}
.checkLoginNo{
    display: flex;
    gap: 0.15rem;
}
.checkLoginNoLine{
    margin-top: 1.5rem;
}
.bottom-nav .red-point {
    position: absolute;
    top: 0.6rem;
    right: 0.5rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 0.4rem;
    background: #FF0000;
    border: 0.5px solid rgba(255, 255, 255, 0.75);
    color: #FFFFFF;
    font-size: .22rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
/**  这是登录后用户界面的样式  **/
.BottomLinePage5 .hdialog-person-content {
    position: relative;
    margin-top: 0;
    left: 0;
    width: 10rem;
    overflow-x: hidden;
    overflow-y: scroll;
    background-image:url('../image/user/personal_bg.png');
    background-repeat: no-repeat;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.BottomLinePage5 .hdialog-person-content .person-profile {
    position: relative;
    height: 0.3rem;
    width: 10rem;
    height: 3.78rem;
}
.BottomLinePage5 .hdialog-person-content .person-profile-avatar {
    position: absolute;
    top: 0.44rem;
    left: 1.22rem;
    width: 1.77rem;
    height: 1.77rem;
    border-radius: 0.44rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.BottomLinePage5 .hdialog-person-content .person-profile-name {
    position: absolute;
    top: 2.3rem;
    left: 0.66rem;
    width: 2.88rem;
    height: 0.67rem;
    color: #FFFFFF;
    font-size: .373rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-profile-code {
    position: absolute;
    top: 2.8rem;
    left: 0.66rem;
    height: 0.67rem;
    width: 2.88rem;
    border-radius: 0.22rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: .26rem;
}
.BottomLinePage5 .hdialog-person-content .person-profile-code .copy-icon {
    width: 0.33rem;
    height: 0.33rem;
    margin-left: 0.1rem;
}
.BottomLinePage5 .hdialog-person-content .person-profile-coin {
    position: absolute;
    top: 0.44rem;
    right: 0.66rem;
    width: 6.67rem;
    height: 0.88rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-profile-coin-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: .32rem;
    font-weight: 400;
}
.BottomLinePage5 .hdialog-person-content .person-profile-coin-value {
    color: #FFAF00;
    font-size: .373rem;
    font-weight: 700;
}
.BottomLinePage5 .hdialog-person-content .person-profile-coin2 {
    position: absolute;
    top: 1.2rem;
    right: 0.66rem;
    width: 6.67rem;
    height: 0.88rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-profile-topup {
    position: absolute;
    top: 2.3rem;
    right: 3.45rem;
    width: 2.55rem;
    height: 1.11rem;
    border-radius: 0.22rem;
    background-image: linear-gradient(113deg, #FCD7A1 0%, #D17836 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.85);
    font-size: .346rem;
    font-weight: 400;
    transition: transform 0.1s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .person-profile-tricon {
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.15rem;
}
.BottomLinePage5 .hdialog-person-content .person-profile-withdraw {
    position: absolute;
    top: 2.3rem;
    right: 0.66rem;
    width: 2.55rem;
    height: 1.11rem;
    border-radius: 0.22rem;
    background-image: linear-gradient(180deg, #00FFB6 0%, #007150 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: .346rem;
    font-weight: 400;
    transition: transform 0.1s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .person-profile-tricon {
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.15rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe {
    position: relative;
    left: 0.66rem;
    width: 8.68rem;
    height: 4.84rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 3.11rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 .vip-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.11rem;
    z-index: 2;
    display: flex;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 .vip-frame-icon {
    position: absolute;
    top: 0.11rem;
    left: 0.44rem;
    width: 100%;
    height: 1.33rem;
    width: 1.33rem;
    display: none;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 .vip-frame-text {
    position: absolute;
    top: 0.05rem;
    left: 1.9rem;
    width: 4rem;
    height: 98%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 .vip-frame-text-title {
    color: #F2AE87;
    font-size: .533rem;
    font-weight: 700;
    margin-right: 0.1rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg1 .vip-frame-text-value {
    color: #F2AE87;
    font-size: .853rem;
    font-weight: 700;
}
.BottomLinePage5 .hdialog-person-content .view-more-vip {
    position: absolute;
    right: 0rem;
    width: 4.73rem;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: .32rem;
    transition: transform 0.1s ease-in-out;
    z-index: 2;
}
.BottomLinePage5 .hdialog-person-content .view-more-vip-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.BottomLinePage5 .hdialog-person-content .view-more-vip-text {
    position: absolute;
    top: 0;
    right: 1.1rem;
    height: 0.88rem;
    line-height: 0.88rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.65);
    font-size: .32rem;
}
.BottomLinePage5 .hdialog-person-content .item-arrow-vip {
    position: absolute;
    top: 0.22rem;
    right: 0.5rem;
    width: 0.44rem;
    height: 0.44rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bg2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.72rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-curvip {
    position: relative;
    margin-top: 0.16rem;
    left: 0.22rem;
    width: 8.24rem;
    height: 1.55rem;
    overflow: hidden;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe {
    position: absolute;
    top: 0;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.66rem;
    display: flex;
    align-items: flex-end;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .left-title {
    position: absolute;
    left: 0;
    width: 100%;
    color: #063F30;
    font-size: .3rem;
    text-align: left;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .right-value {
    position: absolute;
    right: 0;
    width: 100%;
    color: #063F30;
    font-size: .32rem;
    text-align: right;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe {
    position: absolute;
    top: 0.78rem;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.22rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .total-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.16rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.14rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.16rem;
    background: #00563E;
    border-radius: 0.14rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame-point {
    width: 0.16rem;
    height: 0.16rem;
    background: #FFFFFF;
    border-radius: 0.14rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe {
    position: absolute;
    top: 1.05rem;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.44rem;
    display: flex;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe .left-title {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    color: #063F30;
    font-size: .3rem;
    text-align: left;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe .right-value {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    color: #00563E;
    font-size: .3rem;
    text-align: right;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe .right-value2 {
    color:#f1cb01;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-remainvip {
    position: relative;
    left: 0.22rem;
    width: 8.24rem;
    height: 1.55rem;
    border-radius: 0.22rem;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe {
    position: absolute;
    top: 0;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.66rem;
    display: flex;
    align-items: flex-end;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .left-title2 {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: .32rem !important;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .left-title {
    position: absolute;
    left: 0;
    width: 100%;
    color: #063F30;
    font-size: .3rem;
    text-align: left;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe {
    position: absolute;
    top: 0.78rem;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.22rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .total-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.16rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.14rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.16rem;
    background: #00563E;
    border-radius: 0.14rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame-point {
    width: 0.16rem;
    height: 0.16rem;
    background: #FFFFFF;
    border-radius: 0.14rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe {
    position: absolute;
    top: 1.05rem;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.44rem;
    display: flex;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe .left-title {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    color: #063F30;
    font-size: .3rem;
    text-align: left;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-bottomframe .right-value {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    color: #00563E;
    font-size: .3rem;
    text-align: right;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-remainvip {
    position: relative;
    left: 0.22rem;
    width: 8.24rem;
    height: 1.55rem;
    border-radius: 0.22rem;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe {
    position: absolute;
    top: 0;
    left: 0.22rem;
    width: 7.8rem;
    height: 0.66rem;
    display: flex;
    align-items: flex-end;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .left-title2 {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: .32rem !important;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .right-value2 {
    color: #FFFFFF !important;
    font-size: .346rem !important;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-topframe .right-value {
    position: absolute;
    right: 0;
    width: 100%;
    color: #063F30;
    font-size: .32rem;
    text-align: right;
}
.BottomLinePage5 .hdialog-person-content .person-rebateframe2 {
    background-image: linear-gradient(90deg, #007150 0%, #00563E 100%) !important;
}
.BottomLinePage5 .hdialog-person-content .person-rebateframe {
    position: relative;
    left: 0.66rem;
    width: 8.68rem;
    height: 1.34rem;
    background: #104639;
    border-radius: 0.22rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .rebate-left {
    position: absolute;
    left: 0.44rem;
    width: 6rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.BottomLinePage5 .hdialog-person-content .rebate-left-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: .373rem;
    font-weight: 700;
    margin-right: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .rebate-left-unit {
    color: rgba(255, 255, 255, 0.65);
    font-size: .32rem;
    font-weight: 400;
    margin-right: 0.11rem;
}
.BottomLinePage5 .hdialog-person-content .rebate-left-value {
    color: #FFEE00;
    font-size: .426rem;
    font-weight: 700;
}
.BottomLinePage5 .hdialog-person-content .view-more {
    position: absolute;
    right: 1.1rem;
    width: 2rem;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: .32rem;
}
.BottomLinePage5 .hdialog-person-content .item-arrow {
    position: absolute;
    right: 0.5rem;
    width: 0.44rem;
    height: 0.44rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe {
    position: relative;
    left: 0.66rem;
    width: 8.68rem;
    padding-bottom: 0.22rem;
    background: #104639;
    border-radius: 0.22rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-title {
    position: relative;
    left: 0;
    width: 8.68rem;
    height: 1.11rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .rebate-left {
    position: absolute;
    left: 0.44rem;
    width: 6rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.BottomLinePage5 .hdialog-person-content .rebate-left-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: .373rem;
    font-weight: 700;
    margin-right: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .view-more {
    position: absolute;
    right: 1.1rem;
    width: 2rem;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: .32rem;
}
.BottomLinePage5 .hdialog-person-content .item-arrow {
    position: absolute;
    right: 0.5rem;
    width: 0.44rem;
    height: 0.44rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-item {
    position: relative;
    left: 0.44rem;
    width: 7.8rem;
    height: 0.88rem;
    overflow: hidden;
    margin-bottom: 0.11rem;
    background: #1A3830;
    border-radius: 0.22rem;
    display: flex;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-item-left {
    position: absolute;
    left: 0.22rem;
    width: 6rem;
    height: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: .32rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-item-right {
    position: absolute;
    right: 0.44rem;
    width: 6rem;
    height: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.45);
    font-size: .32rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-item-right .reward-unit {
    color: rgba(255, 255, 255, 0.45);
    font-size: .32rem;
    margin-right: 0.1rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-item-right .reward-value {
    color: #FFEE00;
    font-size: .373rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-title {
    position: relative;
    left: 0.44rem;
    width: 7.8rem;
    height: 0.88rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: .32rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-content {
    position: relative;
    left: 0.44rem;
    width: 7.8rem;
    height: 1.34rem;
    display: flex;
    align-items: center;
    overflow: scroll hidden;
    background: #1A3830;
    border-radius: 0.22rem;
    padding: 0.3rem 0.1rem;
    /* 隐藏滚动条 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-container {
    white-space: nowrap;
    display: inline-block;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-item {
    position: relative;
    display: inline-block;
    height: 1.1rem;
    width: 1.1rem;
    top: 0.08rem;
    margin-right: 0.01rem;
    overflow: hidden;
    transition: transform 0.1s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-item-icon {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.33rem;
    height: 0.66rem;
    width: 0.66rem;
}
.BottomLinePage5 .hdialog-person-content .person-agentframe .agent-share-item-title {
    position: absolute;
    top: 0.8rem;
    left: -0.1rem;
    width: 1.3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: .22rem;
}
.BottomLinePage5 .hdialog-person-content .person-otherframe {
    position: relative;
    left: 0.66rem;
    width: 8.68rem;
    padding-top: 0.44rem;
    padding-bottom: 0.44rem;
    background: #104639;
    border-radius: 0.22rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .other-item {
    position: relative;
    left: 0;
    width: 8.68rem;
    height: 1.33rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .other-item-left {
    position: absolute;
    left: 0.44rem;
    width: 6rem;
    height: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: .373rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .other-item-left .left-icon {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .other-item-left .left-title {
    color: rgba(255, 255, 255, 0.65);
    font-size: .373rem;
}
.BottomLinePage5 .hdialog-person-content .item-arrow {
    position: absolute;
    right: 0.5rem;
    width: 0.44rem;
    height: 0.44rem;
}
.BottomLinePage5 .hdialog-person-content .person-exitframe {
    position: relative;
    left: 0.66rem;
    width: 8.68rem;
    height: 1.33rem;
    background: #104639;
    border-radius: 0.22rem;
    overflow: hidden;
    margin-bottom: 0.22rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}
.BottomLinePage5 .hdialog-person-content .other-item-left {
    position: absolute;
    left: 0.44rem;
    width: 6rem;
    height: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: .373rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}
.BottomLinePage5 .hdialog-person-content .other-item-left .left-icon {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.22rem;
}
.BottomLinePage5 .hdialog-person-content .other-item-left .left-title {
    color: rgba(255, 255, 255, 0.65);
    font-size: .373rem;
}
.BottomLinePage5 .hdialog-person-content .item-arrow {
    position: absolute;
    right: 0.5rem;
    width: 0.44rem;
    height: 0.44rem;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.16rem;
    background: #00563E;
    border-radius: 0.14rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.BottomLinePage5 .hdialog-person-content .person-vipframe-middleframe .cur-frame2 {
    background: #FFEE00;
}

.bottom-slide-backLogin-panel.active {
    transform: translateY(0);
}
.bottom-slide-backLogin-panel{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    z-index: 164;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    /* border-radius: 1rem 1rem 0 0; */
    overflow: hidden;
}
.bottom-slide-backLogin-panel .overlayLeft {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    z-index: 97;
    pointer-events: all; /* 关键：捕获所有点击事件 */
}
.hdialog-exit-frame {
    position: absolute;
    bottom: 0rem;
    height: 9rem;
    width: 10rem;
    border-top-left-radius: 0.88rem;
    border-top-right-radius: 0.88rem;
    background: #104639;
    z-index: 98;
}
.hdialog-exit-frame .top-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 10rem;
    height: 4.64rem;
    border-top-left-radius: 0.88rem;
    border-top-right-radius: 0.88rem;
}
.hdialog-exit-frame .top-content-title {
    position: absolute;
    top: 0.64rem;
    left: 0;
    width: 10rem;
    height: 0.43rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .426rem;
    color: #FFFFFF;
}
.hdialog-exit-frame .top-content-tips {
    position: absolute;
    top: 1.7rem;
    left: 0.5rem;
    width: 9rem;
    height: 1.07rem;
    line-height: 0.52rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .346rem;
    color: rgba(255, 255, 255, 0.65);
}
.hdialog-exit-frame .top-content-exit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10rem;
    height: 1.333rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .426rem;
    background: #00FFB6;
    color: rgba(0, 0, 0, 0.85);
    cursor:pointer;
}
.hdialog-exit-frame .bottom-content {
    position: absolute;
    top: 4.853rem;
    left: 0;
    width: 10rem;
    height: 2.24rem;
}
.hdialog-exit-frame .bottom-content-cancel {
    position: absolute;
    top: 0;
    left: 0;
    width: 10rem;
    height: 1.333rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .426rem;
    color: rgba(255, 255, 255, 0.85); cursor:pointer;
}

/***  充值页面的样式  ***/
.wallet-page-topup {
    position: relative;
    margin-top:1.6rem;
    left: 0;
    width: 10rem;
    overflow-x: hidden;
    overflow-y: scroll;
    background: #104639;
    border-radius: 0.88rem 0.88rem 0 0;
    /* 隐藏滚动条 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.topup-top-title-banner {
    border-radius: 0.22rem;
    margin-top: 1.5rem;
    left: 0.1rem;
    width: 10rem;
    height: 2.22rem;
}
.topup-pay-title {
    position: absolute;
    top: -0.7rem;
    left: 0.5rem;
    font-size: .373rem;
    color: rgba(255, 255, 255, 0.85);
}
.tpay-frame{
    position: absolute;
    top: 0.3rem;
    left: .5rem;
    width: 10rem;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.topup-pay-item {
    position: relative;
    display: inline-block;
    top: 0;
    margin-right: 0.26rem;
    height: 1rem;
    line-height: 0.88rem;
    width: 2.22rem;
    border-radius: 0.22rem;
    /* overflow: hidden; */
}
.topup-pay-item .pitem1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.88rem;
    line-height: 0.88rem;
    text-align: center;
    background-image: linear-gradient(180deg, #00FFB6 0%, #007150 100%);
    color: #FFFFFF;
    font-size: .346rem;
    border-radius: 0.22rem;
}
.topup-pay-item .pitem2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.88rem;
    line-height: 0.88rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: .346rem;
    border-radius: 0.22rem;
}
.topup-top-title-banner-line {
    position: relative;
    left: 0;
    width: 10rem;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.25);
}
.withdr-top-title {
    position: relative;
    margin-top: 0.6rem;
    height: 2.2rem;
}
.withdr-top-title .tips {
    position: absolute;
    left: 1rem;
    width: 8rem;
    line-height: 0.6rem;
    top: 0;
    font-size: .373rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}
.withdr-top-title .amount {
    position: absolute;
    left: 1rem;
    width: 8rem;
    height: 1rem;
    font-size: .533rem;
    top: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}
.withdr-top-title .amount .value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
}
.withdr-item-tips {
    position: relative;
    margin-top: 0.2rem;
    font-size: .373rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    border-radius: 0.22rem;
    width: 9rem;
    left: 50%;
    margin-left: -4.5rem;
}
.withdr-item-tips .icon {
    position: absolute;
    left: 0.3rem;
    width: 0.5rem;
    height: 0.5rem;
    top: 0.2rem;
    opacity: 0.45;
}
.withdr-item-tips .text {
    position: relative;
    left: 1rem;
    text-align: left;
    line-height: 0.5rem;
    font-size: .373rem;
    color: rgba(255, 255, 255, 0.45);
    width: 7.5rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}
.topup-top-title {
    position: relative;
    height: 1.6rem;
}
.topup-top-normaltips {
    position: absolute;
    top: 0;
    left: 0.33rem;
    font-size: .343rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 0.22rem;
    width: 10rem;
    padding-left: 0.3rem;
    height: 0.88rem;
    line-height: 0.44rem;
    justify-content: flex-start;
}
.topup-float-tips {
    z-index: 10;
    position: absolute;
    top: 2.9rem;
    width: 4rem;
    height: 1.5rem;
    right: 0.1rem;
    font-size: 0.3rem;
    line-height: .426rem;
    color: rgba(255, 255, 255, 0.85);
}
.topup-float-tips .span2 {
    z-index: 10;
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 3.65rem;
    height: 100%;
}
.signup-item-normal-topup {
    background: #1A3830;
    border: 1px solid rgba(0, 255, 182, 1);
    border-radius: 0.22rem;
}
.topup-signup-item {
    position: relative;
    width: 8.9rem;
    margin: 0 auto;
    border-radius: 0.22rem;
    padding: 0 0.3rem;
    height: 1.3rem;
}
.topup-signup-item .input-normal {
    position: absolute;
    border: none;
    top: 0.15rem;
    /* height: 1rem; */
    /* line-height: 1rem; */
    left: 1.2rem;
    width: 3.3rem;
    padding: 0;
    font-size: .373rem;
    background-color: transparent;
    color: #FFFFFF;
    font-size: .426rem;
}
.topup-signup-item .input {
    position: absolute;
    border: none;
    left: 1.2rem;
    width: 6.6rem;
    padding: 0;
    background-color: transparent;
    color: #e1e1e1;
    font-size: 0.426rem;
    outline: none;
    top: 0.4rem;
}
.topup-signup-item .title-unit {
    left: 0.35rem;
    font-size: .427rem;
    font-weight: bold;
    position: absolute;
    top: 0.4rem;
}
.topup-signup-item .clear {
    position: absolute;
    right: 0.4rem;
    height: 1.3rem;
    width: 1rem;
}
.topup-signup-item .clear img {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    top: 50%;
    margin-top: -0.3rem;
    left: 50%;
    margin-left: -0.3rem;
    opacity: 0.65;
}
.topup-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    width: 9.4rem;
    height: 3.5rem;
    line-height: 1rem;
    left: 50%;
    margin-left: -4.5rem;
}
.topup-item .item {
    margin-right: 0.2rem;
    margin-bottom: 0.1rem;
    width: 2.86rem;
    height: 1rem;
    border-radius: 0.22rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: #FFFFFF;
    font-size: .373rem;
    overflow: hidden;
    position: relative;
}
.topup-item .item.active{
    background-image: linear-gradient(180deg, #00FFB6 0%, #007150 100%);
}
.signup-item-topup {
    left: 50% !important;
    margin-left: -3.85rem !important;
}
.signup-item-signup-disable {
    position: relative;
    margin-top: 0.53rem;
    width: 7.7rem;
    left: 0.22rem;
    margin-bottom: 0.6rem;
    height: 1.33rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #7FFFDB 0%, #00FFB6 100%);
    /*opacity: 0.5;*/
    border-radius: 0.22rem;
}
.sdcommon-text-disable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.33rem;
    text-align: center;
    font-size: .346rem;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
}
/*** 红包掉落的效果样式 ***/
.red-envelope {
    position: absolute;
    width:1.4rem;
    height:2.2rem;
    background: linear-gradient(135deg, #d62828, #a4161a);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
    z-index:0;
}

.red-envelope:hover {
    transform: scale(1.1);
}

.red-envelope:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #ffd700, #ffcc00);
    border-radius: 5px 5px 0 0;
}

.red-envelope:after {
    content: 'f';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
}


/* 红包点击效果 */
.envelope-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #d62828, #a4161a);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 5px solid #ffcc00;
    z-index: 1000;
    transition: transform 0.3s ease-out;
    text-align: center;
}

.envelope-popup.open {
    transform: translate(-50%, -50%) scale(1);
}

.envelopeMain .rain-result1 {
    position: absolute;
    top: 50%;
    margin-top: -4.44rem;
    left: 50%;
    width: 6.66rem;
    height: 8.88rem;
    margin-left: -3.33rem;
}
.envelopeMain .rain-close {
    position: absolute;
    top: 9rem;
    left: 50%;
    margin-left: -0.7rem;
    width: 1.4rem;
    height: 1.4rem;
}
.envelopeMain .rain-close img {
    position: absolute;
    top: 0.2rem;
    left: 50%;
    margin-left: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
}
.envelopeMain .rain-result1 .tips1 {
    position: absolute;
    top: 3.85rem;
    left: 0.5rem;
    width: 4.6rem;
    height: auto;
}
.envelopeMain .rain-result1 .tips1-img {
    opacity: 0.65;
    position: absolute;
    top: 0.09rem;
    left: 0;
    width: 0.28rem;
    height: auto;
}
.envelopeMain .rain-result1 .tips1-span {
    position: absolute;
    top: 0;
    left: 0.45rem;
    width: 5.5rem;
    font-size: .346rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 0.48rem;
}
.envelopeMain .rain-result1 .tips2 {
    position: absolute;
    top: 5rem;
    left: 0.5rem;
    width: 4.6rem;
    height: auto;
}
.envelopeMain .rain-result1 .tips2-img {
    opacity: 0.65;
    position: absolute;
    top: 0.09rem;
    left: 0;
    width: 0.28rem;
    height: auto;
}
.envelopeMain .rain-result1 .tips2-span {
    position: absolute;
    top: 0;
    left: 0.45rem;
    width: 5.5rem;
    font-size: .346rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 0.5rem;
}
.envelopeMain .rain-result1 .receive-btn {
    position: absolute;
    left: 0;
    bottom: 0.7rem;
    width: 6.66rem;
    height: 2.22rem;
}
.envelopeMain .rain-result1 .receive-btn.receive-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.envelopeMain .rain-result1 .rain-claim-block-msg {
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    bottom: 3.1rem;
    max-height: 2.4rem;
    overflow: auto;
    font-size: .32rem;
    line-height: 0.44rem;
    color: rgba(255, 220, 180, 0.95);
    text-align: center;
    z-index: 2;
}
/* 钞票样式 */
.envelopeMain .money {
    position: absolute;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    top: -100px;
}

.envelopeMain .money-bill {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.envelopeMain .money-img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* 钞票飘落动画 */
@keyframes floatDown {
    0% {
        top: -100px;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0.5;
        transform: rotate(360deg);
    }
}

/* 摆动动画 */
@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}


/***** 中奖页面 *****/
.showAdMainLine{
    position: absolute;
    top: 4rem;
    background: #05523E;
    width: 8.4rem;
    z-index: 9;
    height: 5.4rem;
    padding: 1.6rem 1rem 0;
    border-radius: 0 0 0.5rem 0.5rem;
}
.showAdMainLineMoney{
    background: #05392b;
    padding: 0.3rem 0;
    font-size: 0.5rem;
    color: #ffd602;
    text-align: center;
}
.showAdMainLineMoney .ResultMoneyItem{
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 0.07rem;
}
.showAdMainLineButton{
    width: 100%;
}
.showAdMainLineButton img{
    width: 100%;
    margin: 0.6rem auto 0;
    display: block;
}

/**   egg中奖  **/
.EGGpopLoginMain .showAdMain{
    position: relative;
    margin-top: 0px;
    left: 0px;
    width: 8.4rem;
    height: 11.2rem;
    overflow: hidden;
}
.EGGpopLoginMain .showAdMainLightImg{
    z-index: 124;
    height: auto;
    width: 100%;
    position: absolute;
    animation: daily-egg-bg 7.5s linear infinite;
}
.EGGpopLoginMain .showAdMainLine{
    position: absolute;
    top: 4rem;
    background:none;
    width: 8.4rem;
    z-index: 152;
    height: 5.4rem;
    padding: 1.6rem 1rem 0;
    border-radius: 0 0 0.5rem 0.5rem;
}
.EGGpopLoginMain .showAdMainLineMoney{
    background: none;
    padding: 0.3rem 0;
    font-size: 0.5rem;
    color: #ffd602;
    position: absolute;
    z-index: 161;
    top: -1.7rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    left: 50%;
    transform: translate(-50%, -50%);
}
.EGGpopLoginMain .showAdMainLineMoney .ResultMoneyItem{
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 0.07rem;
}
.EGGpopLoginMain .showAdMainLineButton{
    width: 100%;
}
.EGGpopLoginMain .showAdMainLineButton img{
    width: 100%;
    margin:1.6rem auto 0;
    display: block;
}



/** 倒计时的样式 **/
.Contagem.countdown-container {
    background-color:#244d42; /* Verde principal do card */
    border-radius: 12px;
    padding: 0.2rem 0.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 8rem;
    margin:1rem auto 1rem;
}

.Contagem .title {
    color: #d1ffd6; /* Verde claro para o título */
    font-size: 0.4rem;
    /* margin-bottom: 25px; */
    letter-spacing: 0.5px;
}

.Contagem .title span {
    color: #ffffff; /* Branco para "começa em:" */
    font-weight: 600;
}

.Contagem .countdown {
    display: flex;
    justify-content: center;
    gap:15px;
    margin-top:5px;
}

.Contagem .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Contagem .number {
    color: #c9ffdd;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 0.2rem;
}

.Contagem .unit-label {
    background-color: #22493e;
    color: #a9a9a9;
    font-size: 0.3rem;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Contagem .separator {
    color: #c1c1c1;
    background-color: #2b5b4e;
    font-size: 0.3rem;
    align-self: center;
    padding: 2px 7px;
    border-radius: 6px;
}
/**  游戏支付接口的弹窗  **/
.playCoinpopLoginMain .showAdMain{
    position:relative;
    margin-top:0px;
    left:0px;
    width:10rem;
    height:100vh;
    overflow: hidden;
}
/********   其他编辑页面的样式   ********/
.avatar-setting-preview {
    position: relative;
    margin-top: 1.2rem;
    height: 8rem;
    width: 8rem;
    margin-left: 1rem;
}
.avatar-setting-preview img {
    width: 100%;
    height: 100%;
    border-radius: 0.66rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.choose-new-photo {
    position: relative;
    margin-top: 1.2rem;
    margin-left: -2.22rem;
    left: 50%;
    width: 4.44rem;
    height: 1.33rem;
    background-image: linear-gradient(180deg, #7FFFDB 0%, #00FFB6 100%);
    border-radius: 0.22rem;
}

.sdcommon-text-enable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.33rem;
    text-align: center;
    font-size: .346rem;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
}
.avatar-setting-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}
.profile-item-line {
    position: relative;
    height: 0.6rem;
}
/**** 昵称的提价 *****/
.nickname-dialog-value {
    position: relative;
    margin-top: 0.2rem;
    margin-left: 0.5rem;
    width: 9rem;
    height: 1.384rem;
    line-height: 1.384rem;
    border-radius: 0.22rem;
}
.coin-input {
    position: absolute;
    border: none;
    margin-top: 0.1rem;
    height: 1.2rem;
    line-height: 1.2rem;
    margin-left: 0.5rem;
    width: 8rem;
    padding: 0;
    font-size: .373rem;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.85);
    outline: none;
}
.rcoin-item-normal {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}
.profile-btn-disable {
    position: relative;
    left: 50%;
    margin-left: -1.72rem;
    width: 3.44rem;
    height: 1.33rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #7FFFDB 0%, #00FFB6 100%);
    border-radius: 0.22rem;
    opacity: 0.45;
}
.rcoin-item-edit-normal {
  background: #1A3830;
  border: 1px solid rgba(0,255,182,1);
}
.sdcommon-text-disable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.33rem;
    text-align: center;
    font-size: .346rem;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
}
/*************/
.nickname-dialog-value {
    position: relative;
    margin-top: 0.2rem;
    margin-left: 0.5rem;
    width: 9rem;
    height: 1.384rem;
    line-height: 1.384rem;
    border-radius: 0.22rem;
}
.pwd-dialog-input {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.85);
}
.pwdpreicon {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    left: 0.4rem;
    top: 50%;
    margin-top: -0.25rem;
}
.pwdicon {
    position: absolute;
    width: 0.9rem;
    height: 0.9rem;
    right: 0.5rem;
    top: 50%;
    margin-top: -0.4rem;
    padding: 0.15rem;
    border-radius: 0.6rem;
    /* background: rgba(0, 0, 0, 0.35); */
}
/***************/
.profile-item {
    position: relative;
    width: 9rem;
    height: 1.384rem;
    line-height: 1.384rem;
    left: 50%;
    margin-left: -4.5rem;
    margin-bottom: 0.22rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.22rem;
}
.profile-item-arrow-2 {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    top: 50%;
    margin-top: -0.25rem !important;
    right: unset !important;
    left: 0.4rem !important;
    opacity: 1 !important;
    background: transparent !important;
    padding: 0 !important;
}
.profile-item-title {
    position: absolute;
    left: 0.5rem;
    top: 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: .346rem;
}
.profile-value-normal {
    position: absolute;
    right: 1.1rem;
    width: 5.5rem;
    overflow: hidden;
    font-size: .373rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}
