.ml-27 {
    margin-left: 1.69rem;
}
.mt-11 {
    margin-top: 0.69rem;
}
.page {
    padding: 0.94rem 1rem 3.94rem;
    background-color: #d8d6d6;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}
.section {
    padding-bottom: 0.5rem;
    background-color: #ffffff;
    border-radius: 1.25rem;
}
.text-wrapper {
    padding: 0.5rem 0;
    background-color: #ffffff;
    border-radius: 13.19rem;
}
.font {
    font-size: 1.06rem;
    font-family: Roboto;
    line-height: 0.99rem;
    color: #000000;
}
.text {
    line-height: 0.98rem;
}
.section_2 {
    margin-top: 0.38rem;
    padding: 0.5rem 2rem;
    background-color: #ffffff;
    border-top: solid 0.031rem #3c3c435c;
    border-bottom: solid 0.031rem #3c3c435c;
}
.text_2 {
    line-height: 0.99rem;
}
.text_3 {
    margin-right: 8.63rem;
    color: #3c3c434d;
    line-height: 1.38rem;
    width: 8.38rem;
}
.image-wrapper {
    margin-top: 0.69rem;
    padding: 0.75rem 0;
    background-color: #07c160;
    border-radius: 0.25rem;
    width: 11.5rem;
}
.image {
    width: 2rem;
    height: 1rem;
}
.section_3 {
    padding-bottom: 10rem;
    background-color: #f2f2f7;
    border-radius: 1.25rem;
}
.group {
    padding: 0.63rem 0.44rem 0.63rem 1rem;
    border-bottom: solid 0.031rem #3c3c435c;
}
.text_5 {
    margin-top: 0.75rem;
    color: #3c3c4399;
    font-size: 0.81rem;
    font-family: Roboto;
    line-height: 0.76rem;
    text-transform: uppercase;
}
.text-wrapper_2 {
    padding: 0.63rem 0;
    background-color: #fa5151;
    border-radius: 3.13rem;
    width: 3.88rem;
    height: 1.88rem;
}
.text_4 {
    color: #ffffff;
    font-size: 0.63rem;
    font-family: HarmonyOSSansSC;
    line-height: 0.57rem;
}
.list-item {
    padding: 0.75rem 0.88rem 0.75rem 2rem;
    background-color: #ffffff;
    border-bottom: solid 0.031rem #3c3c435c;
}
.text_6 {
    line-height: 0.99rem;
}
.font_2 {
    font-size: 0.94rem;
    font-family: Roboto;
    line-height: 0.85rem;
    color: #3c3c4399;
}

#loading_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999; /* 最高层级 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 加载框 */
.loading_box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* 旋转加载动画 */
.loading_spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading_box p {
    margin: 0;
    font-size: 14px;
    color: #333;
}