body {
    background-color: transparent;
}
p {
    margin: 0;
    padding: 0;
}

.debug-log {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: rgb(255 255 255 / 10%);
    overflow-y: auto;
    z-index: 111111111111111111111111111;
    display:none;
    color: red;
}

.tip-menu-container {
    display: none;
    /* background-image: url(../../base/assets/tip-menu-bg.webp);
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: rgb(63 26 192 / 30%);
    border: 2px solid rgb(248 177 255 / 30%);
    width: 350px;
    max-height: 380px;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: absolute;
    top: 20%;
    left: 50%;
    z-index: 100;
}
.tip-menu-title {
    text-align: center;
    /* background: linear-gradient(to bottom, #F8B1FF, #974BEF); */
    background: linear-gradient(90deg, #F8B1FF 0%, #974BEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* 兼容性处理 */
    text-fill-color: transparent; /* 兼容性处理 */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tip-menu-list {
    
}
.tipMenuSwiper {
    overflow: hidden;
}
.tip-menu-item {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 2px 0;
}
.tip-menu-item .activity-name {
    color: #fff;
}
.tip-menu-item .token {
    color: #FFCD0C;
    display: flex;
    align-items: center;
}
.tip-menu-item .token span {
    font-weight: 700;
}
.tip-menu-item .token img {
    margin-left: 5px;
}

.luck-draw-wheel-container {
    position: absolute;
    /* z-index: 1500; */
    z-index: 15000;
    display: none;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
}
.luck-draw-wheel-inner {
    right: -300px;
    top: 20%;
    transition: right 0.5s;
    position: relative;
}
.luck-draw-wheel-inner.slide-in {
    right: 0;
}

.wheel-box {
    position: relative;
}
.luck-draw-wheel-container .wheel-box img {
    width: 600px;
}

.wheel-box #wheel {
    position: absolute;
    top: 18px;
    left: 26px;
    z-index: -1;
}
.whell-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 35%;
    z-index: -2;
}
.whell-button-container .whell-button {
    cursor: pointer;
    border: none;
    background-color: rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 4px;
}
.whell-img {
    transition: transform 1s;
}

.whell-button:hover .whell-img {
    transform: rotate(720deg); /* 旋转3圈（360*3=1080） */
}
.luck-draw-wheel-result {
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0%;
    top: -21%;
    z-index: 1;
    text-align: center;
    display: none;
    transition: right 0.5s;
    right: -150px;
}
.luck-draw-wheel-result.show {
    display: flex;
    right: 300px;
}
.luck-draw-wheel-result-bg img {
    width: 270px;
}
.luck-draw-wheel-result-inner {
    position: absolute;
    color: #fff;
}
.result-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFCD0C;
    margin-bottom: 10px;
}
.result-desc .tip-user {
    color: #FFCD0C;
    font-weight: 500;
    font-size: 20px;
}
.result-desc .luck-draw-result {
    color: #FFCD0C;
}

/* 倒计时 start */
.tip-timer-container {
    background-color: rgb(63 26 192 / 30%);
    border: 2px solid rgb(248 177 255 / 30%);
    border-radius: 20px;
    width: 400px;
    max-height: 310px;
    color: #F8B1FF;
    font-size: 16px;
    padding: 20px;
    position: absolute;
    top: 37%;
    left: 50%;
    z-index: 200;
    display: none;
}

.tip-timer-container .tip-timer-title {
    text-align: center;
    background: linear-gradient(90deg, #F8B1FF 0%, #974BEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.tip-timer-container .tip-timer-rule {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}
.tip-timer-container .tip-timer-rule span {
    min-width: 115px;
}
.tip-timer-container .tip-timer-rule img {
    width: 14px;
    margin-right: 7px;
}
.tip-timer-container .tip-timer-desc {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.tip-timer-container .tip-timer-countdown-container {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    align-items: center;
}
.tip-timer-container .tip-timer-countdown-container img {
    width: 46px;
}
.tip-timer-container .tip-timer-time-desc {
    text-align: center;
}
.tip-timer-container .tip-timer-time-desc .tip-timer-time-desc-item:first-child {
    margin-bottom: 10px;
}
.tip-timer-container .tip-timer-time-desc .tip-timer-time-desc-item .time {
    color: #69EF4B;
}
.tip-timer-container .tip-timer-time-desc .tip-timer-time-desc-item .name {
    color: #FFCD0C;
}
.tip-timer-container .tip-timer-countdown-item {
    background-color: #F8B1FF;
    color: #3F1AC0;
    font-size: 50px;
    padding: 0px 4px;
    border-radius: 10px;
    font-weight: 700;
}
.tip-timer-container .tip-timer-d-time {
    font-size: 24px;
    color: #69EF4B;
    font-weight: 500;
    opacity: 0;
    transform: translateY(40px);
    transition: none;
    pointer-events: none;
    position: relative;
}
.tip-timer-container .tip-timer-d-time.show {
    animation: dtime-pop 4s forwards;
}
@keyframes dtime-pop {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    10% {
      opacity: 1;
      transform: translateY(0);
    }
    80% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-40px);
    }
}
.tip-timer-container .tip-timer-countdown {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.tip-timer-container .tip-timer-countdown span {
    font-size: 50px;
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    line-height: 10px;
}

/* 倒计时 end */

/* 排行榜 start */
.tip-rank-container {
    display: none;
    background-color: rgb(63 26 192 / 30%);
    border: 2px solid rgb(248 177 255 / 30%);
    width: 380px;
    max-height: 212px;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: absolute;
    top: 868px;
    left: 0px;
    z-index: 100;
}

.tip-rank-container .tip-rank-title {
    text-align: center;
    background: linear-gradient(90deg, #F8B1FF 0%, #974BEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;   
}

.tipper-content {}

.rank-item-left {
    display: flex;
    align-items: center;
}
.tipper-content .rank-item {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    line-height: 22px;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    z-index: 10;
}
.rank-item-img.gold {
    background-image: url(../../base/assets/gold.png);
}
.rank-item-img.silver {
    background-image: url(../../base/assets/silver.png);
}
.rank-item-img.bronze {
    background-image: url(../../base/assets/bronze.png);
}
.rank-item-img {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 26px;
    margin-right: 8px;
    width: 26px;
}
.rank-item-token {
    color: #fff;
    font-size: 20px;
    line-height: 18px;
}
.rank-item-token span {
    color:#FFCD0C;
    font-weight:700;
}
.rank-item-name {
    color: #fff;
    font-size: 20px;
    line-height: 18px;
}

/* 排行榜 end */