
/* 全局隐藏所有滚动条边框 */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

    *::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    *::-webkit-scrollbar-track {
        background: transparent;
        border: none;
    }

    *::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        border: none;
    }

        *::-webkit-scrollbar-thumb:hover {
            background-color: rgba(0, 0, 0, 0.4);
        }



.header {
    position: relative;
    height: 160px;
}







/* 从这这里开始 */
.yuyuebar .yuyue_num1 {
    position: absolute;
    top: 0px;
    right: 12px;
    font-size: 11px;
    color: #000;
}

.yuyuebar {
    position: absolute;
    margin-top: 633px; 
    left: 54%;
    width: 864px;
    height: 27px;
    margin-left: -432px;
    background: url(../images/yuyuebar.png) no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding: 6px;
}

.yuyue_bg {
    position: relative;
    width: 100%;
    height: 100%;
}
    .yuyue_bg .current {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: url(../images/yuyuebar_current.png) no-repeat left center;
        background-size: 100% 100%;
        border-radius: 50px;
        /* transition: width 3s ease-in-out; */
    }
 

.yuyuebar2 {
    position: absolute;
    margin-top: 728px;
    left: 54%;
    width: 859px;
    height: 15px;
    margin-left: -432px;
    background: url(../images/yuyuebar2.png) no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding: 2px;
}

.yuyue_bg2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.yuyue_bg2 .yuyue_num2 {
    position: absolute;
    top: -2px;
    right: 12px;
    font-size: 14px;
    color: #000;
}

.yuyue_bg2 .current {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d53730 no-repeat left center;
    background-size: 100% 100%;
    border-radius: 50px;
    /* transition: width 3s ease-in-out; */
}

.yuyue_list {
    position: absolute;
    top: -62px;
    left: 0px;
    width: 859px;
    height: 77px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.yuyue_list_item {
    position: relative;
    width: 52px;
    height: 77px;
    color: #fff;
    text-align: center;
    background: url(../images/progress_reward_red.png) no-repeat;
    margin-left: 34px;
    margin-left: 30px;
    /* 变灰 */
    filter: grayscale(100%);
}

.yuyue_list_item .yuyue_list_item_num {
    position: absolute;
    display: block;
    bottom: 1px;
    left: 0;
    width: 100%;
}

.yuyue_list_item .yuyue_list_item_img {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    cursor:pointer;
}


.wrap02 .marquee_wrap {
    position: absolute;
    top: 1035px;
    left: 318px;
    width: 800px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
}

    .wrap02 .marquee_wrap li {
        margin-right: 35px;
    }



.tooltip-container {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

/* 2. 提示框绝对定位，默认隐藏 */
.tooltip {
    position: absolute;
    background-color: #cb780c;
    color: white;
    padding: 10px;
    border-radius: 4px;
    /* 默认隐藏 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    /* 显示在元素上方 */
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    width: 300px;
}

    /* 3. 小箭头 */
    .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid;
        border-color: #333 transparent transparent transparent;
    }

/* 4. 鼠标悬停时显示 */
.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}



