.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 垂直居中 */
    height: 100%;
    /* 容器高度 */
}

.title-container {
    position: absolute;
    top: 36%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.title-container img {
    max-width: 56%;
    height: auto;
}

.text-per {
    position: absolute;
    top: 43.5%;
    text-align: left;
    left: 62.5%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    white-space: nowrap;
    color: white;
}


.progress-container {
    position: absolute;
    height: 20px;
    /* 设置进度条的高度 */
    width: 100%;
    /* 设置进度条容器的宽度 */
    top: 43.5%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 91px;
    height: 12px;
}

.progress-background {
    position: absolute;
    background-image: url('pic/jzy-b@2x.png');
    height: 100%;
    width: 100%;
    background-size: cover;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0%;
    /* 假设进度为50%，可以根据需要调整 */
    background-image: url('pic/jzy-l@2x.png');
    background-size: cover;
}

.text-loading {
    position: absolute;
    top: 47%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    white-space: nowrap;
    color: #858288;
}

.text-container {
    position: absolute;
    top: 52.5%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 13px;
    color: white;
}

.text-container .green-text {
    color: #FED700;
    /* 将"600"设置为绿色 */
}