.tourpop{
    position:fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.tourbg{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--pop-up-bg-layer);
    display: flex;
    justify-content: center;
}

.tour-cont{    
    top: -2%;
    position: relative;
    width: clamp(0px, 90%, 430.6px);
    max-height: 80vh;
    box-sizing: border-box;
    z-index: 10;
    border-radius: 1vw;
    display: flex;
    gap: clamp(0px, 2vw, 8.28px);
    text-align: center;
    border: clamp(0px, 0.25vw, 1.035px) solid var(--sub-color);
    background-image: var(--pop-up-bg-img);
    margin: auto;
    flex-direction: column;
    align-items: center;
}

.close-btn-tour{
    top: -40px;
    right: -13px;
    position:absolute;
    width: 1.2em;
    height: 1.2em;
    padding: 0;
    transition: color .1s ease-out;
    border: none;
    border-radius: 0;
    background: 0 0;
    color: #ccc;
    font-family: serif;
    font-size: 2.5em;
    line-height: 1.2;
    cursor: pointer;
    overflow: hidden;
    z-index: 999;
}

.tour {
    position: fixed;
    bottom: calc(15vw - 55px);
    right: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 2vw;
    z-index: 999;
}

.tour .div-size {
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 450px) {
    .tour {
        position: fixed;
        bottom: calc(15vw + 55px);
        right: 2vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: 2vw;
        z-index: 999;
    }

    .tour .div-size {
        height: 41px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



.tour .btn-img {
    max-width: 100%;
    max-height: 100%;
    height: auto; 
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.tour-title{
    border-bottom: 2px solid var(--sub-color);
    height: 30px;
    width: calc( 90% - 30px );
    padding: 15px;
}

.tour-inner{
    margin-top: 15px;
    height: 70%;
    overflow: auto;
    width: 95%;
    padding: 0% 2.5%;
    overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tour-progress{
    width:95%;
    border:1px solid red;
    text-align: left;
}

.tour-pro-box{
    margin-top: 20px;
    padding-top: 10px;
}

.tour-deposit-box {
          width: 90%;
    margin: auto;
    text-align: left;
    margin-left: 5%;
    }

    .tour-deposit-text {
      margin-bottom: 8px;
    }

    .tour-progress-bar {
        background: #fff;
        border-radius: 10px;
        height: 6px;
        width: 100%;
        margin-bottom: 10px;
        /* overflow: hidden; */
        position: relative;
    }

    .tour-progress-fill {
      background: #f5d76e; /* 金黄色 */
      height: 100%;
      border-radius: 10px;
      text-align: right;
      position: relative;
      transition: width 0.3s ease;
    }

    .tour-progress-label {
      position: absolute;
      right: -10px;
      top: -20px;
      font-size: 12px;
      color: #f5d76e;
    }

    .tour-btn-enter {
      width: 200px;
      height: 40px;
      border-radius: 8px;
      border: none;
      background: #555;
      color: #999;
      cursor: not-allowed;
      font-size: 16px;
      transition: background 0.3s;
    }

    .tour-btn-enter.active {
        background: linear-gradient(180deg, #00C714, #00831A);
        color: #fff;
        cursor: pointer;
        border: none;
        border-radius: 6px; /* 可以根据需要调整 */
        transition: background 0.3s ease;
        }

.tour-btn-box{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.tour-inner p{
    word-wrap: break-word; /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap; /* current browsers */z
}