.NOT-task-list {
    position: relative
}

.NOT-task-list-title {
    font-weight: 700;
    font-size: .48rem;
    color: #ebd6fd;
    line-height: .48rem
}

.loading-spinner {
    width: .5rem;
    height: .5rem;
    border: .06rem solid #219cdb;
    border-top: .06rem solid #a126fa;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.NOT-task-list-container {
    box-sizing: border-box;
    min-width: 6.4rem;
    background: #00000080;
    border-radius: .2rem;
    padding: .27rem .21rem .26rem .29rem;
    margin-top: .2rem
}

.NOT-task-list-container:where([dir=rtl],[dir=rtl] *) {
    padding: .27rem .29rem .26rem .21rem
}

.NOT-task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: .16rem;
    border-bottom: 1px solid #ebd6fd33;
    margin-bottom: .16rem
}

.NOT-task-item.NOT-task-item-last {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0
}

.NOT-task-item-content {
    display: flex;
    align-items: center
}

.NOT-task-icon {
    width: .56rem;
    height: .58rem
}

.NOT-task-item-title {
    font-weight: 400;
    font-size: .3rem;
    color: #ebd6fd;
    line-height: .3rem
}

.NOT-task-item-reward {
    display: flex;
    align-items: center
}

.NOT-task-item-reward-text {
    font-weight: 700;
    font-size: .36rem;
    color: #fbd815
}

.NOT-task-item-reward-icon {
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: .08rem
}

.NOT-task-item-reward-icon:where([dir=rtl],[dir=rtl] *) {
    margin-left: 0;
    margin-right: .08rem
}

.NOT-task-item-reward-icon-diamond {
    width: .37rem;
    height: .28rem;
    background-image: url(/imgs/diamond.png)
}

.NOT-task-item-reward-icon-spin {
    width: .48rem;
    height: .33rem;
    background-image: url(/imgs/spin.png)
}

.NOT-task-item-finish-icon {
    width: .41rem;
    height: .355rem;
    background-image: url(/imgs/seleced.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-redeem-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: #000c;
    display: flex;
    justify-content: center;
    align-items: center
}

.NOT-redeem-modal-content {
    position: relative
}

.NOT-redeem-modal-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.NOT-redeem-modal-diamond {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.NOT-redeem-modal-diamond-icon {
    width: 1.63rem;
    height: 1.2rem;
    background-image: url(/imgs/diamond.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-redeem-modal-diamond-num {
    font-weight: 700;
    font-size: .48rem;
    color: #fbd815
}

.NOT-redeem-modal-arrow-icon {
    width: .83rem;
    height: .63rem;
    transform: translateY(-.45rem)
}

.NOT-redeem-modal-spin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.NOT-redeem-modal-spin-icon {
    width: 1.3rem;
    height: 1.39rem;
    background-image: url(/imgs/ticket.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-redeem-modal-spin-num {
    font-weight: 700;
    font-size: .48rem;
    color: #fbd815
}

.NOT-redeem-modal-text {
    font-weight: 700;
    font-size: .36rem;
    color: #dbc4ed;
    text-align: center;
    margin-bottom: .48rem
}

.NOT-redeem-modal-close-btn {
    position: absolute;
    top: -.6rem;
    right: -.6rem
}

.NOT-redeem-modal-close-icon {
    display: block;
    width: .6rem;
    height: .6rem;
    background-image: url(/imgs/btn_off.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-earn-page {
    min-height: 100vh;
    background-color: #00000080;
    padding-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

.NOT-earn-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .26rem .5rem .4rem .36rem;
    width: 100%
}

.NOT-earn-page-header .NOT-earn-page-header-rewards {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: .01rem solid #ffffff1a
}

.NOT-earn-page-header .NOT-earn-page-header-rewards .NOT-earn-page-header-diamond {
    flex: 1;
    height: 2.22rem;
    background: #0000004d;
    border-top-left-radius: .32rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: .01rem solid #ffffff1a;
    padding: 0 .24rem;
    gap: .16rem
}

.NOT-earn-page-header .NOT-earn-page-header-rewards .NOT-earn-page-header-ticket {
    flex: 1;
    height: 2.22rem;
    background: #0000004d;
    border-top-right-radius: .32rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 .24rem;
    gap: .16rem
}

.NOT-earn-page-header .NOT-earn-page-header-btn {
    padding: .24rem;
    background: #0000004d;
    width: 100%;
    border-bottom-left-radius: .32rem;
    border-bottom-right-radius: .32rem
}

.NOT-earn-page-header:where([dir=rtl],[dir=rtl] *) {
    padding: .26rem .36rem .4rem .5rem
}

.NOT-earn-page-header-diamond-icon {
    width: 1.28rem;
    height: .96rem;
    background-image: url(/imgs/redeem_diamon.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-earn-page-header-ticket-icon {
    width: .92rem;
    height: .98rem;
    background-image: url(/imgs/redeem_spin.png);
    background-size: contain;
    background-repeat: no-repeat
}

.NOT-earn-page-header-diamond-num {
    font-weight: 700;
    font-size: .4rem;
    line-height: .4rem;
    background: #ffffff17;
    color: #fff;
    border-radius: .16rem;
    width: 100%;
    padding: .12rem 0;
    text-align: center
}

.NOT-earn-page-header-ticket-num {
    font-weight: 700;
    font-size: .4rem;
    line-height: .4rem;
    background: #ffffff17;
    color: #fbd815;
    border-radius: .16rem;
    width: 100%;
    padding: .12rem 0;
    text-align: center
}

.NOT-earn-page-header-redeem-formula {
    font-weight: 400;
    font-size: .3rem;
    color: #ebd6fd
}

.NOT-earn-page-header-redeem {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(.15rem)
}

.NOT-earn-page-header-redeem-formula-icon {
    display: inline-block;
    width: .31rem;
    height: .23rem;
    background-image: url(/imgs/diamond.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 .04rem
}

.NOT-earn-page-header-redeem-ticket-icon {
    display: inline-block;
    width: .4rem;
    height: .26rem;
    background-image: url(/imgs/spin.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 .04rem
}
