body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
}

input {
    background-color: transparent;
    border: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.group_foot {
    position: fixed;
    bottom: 0;
    width: 10rem;
    height: 1.32rem;
    background: rgba(28, 34, 48, 1);
    z-index: 999;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.image-text_foot {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label_foot {
    width: 0.64rem;
    height: 0.64rem;
    text-align: center;
}

.text-group_foot {
    width: 2.5rem;
    height: 0.32rem;
    overflow-wrap: break-word;
    color: rgba(163, 163, 163, 1);
    font-size: 0.32rem;
    font-family: PingFang SC-Medium;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 0.32rem;
    margin-top: 0.16rem;
}

.text-group_foot_active {
    color: rgba(0, 253, 252, 1);
}

#temp_msg_tips {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.6);
    font-size: 0.426rem;
    font-family: 'PingFang SC', sans-serif;
    z-index: 2000;
    box-sizing: border-box;
    transition: opacity 0.5s ease-in-out;
    width: 9rem;
}

#temp_msg {
    margin: 0;
    text-align: center;
    overflow-wrap: break-word;
}

#loading {
    border: 0.4rem solid rgba(255, 255, 255, 0.1);
    border-top: 0.4rem solid rgba(0, 255, 255, 0.9);
    border-left: 0.4rem solid rgba(0, 191, 255, 0.9);
    border-right: 0.4rem solid rgba(238, 130, 238, 0.9);
    border-bottom: 0.4rem solid rgba(144, 238, 144, 0.9);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    animation: spin 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite, glow 2.2s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
    box-shadow: 0 0 1rem rgba(0, 191, 255, 0.4), 0 0 1rem rgba(144, 238, 144, 0.3);
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.15) 25%, rgba(0, 191, 255, 0.15) 50%, rgba(238, 130, 238, 0.15) 75%);
}

@keyframes spin {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
        opacity: 1;
        border-color: rgba(0, 191, 255, 0.9) rgba(144, 238, 144, 0.9) rgba(238, 130, 238, 0.9) rgba(0, 255, 255, 0.9);
    }
}

@keyframes glow {
    0%,
    100% {
        filter: drop-shadow(0 0 1rem rgba(0, 191, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 2rem rgba(144, 238, 144, 0.8)) drop-shadow(0 0 1rem rgba(238, 130, 238, 0.6));
    }
}

.box_image_success {
    background-color: rgba(0, 0, 0, 0.62);
    height: 100%;
    width: 10rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.block_image_success {
    background-color: rgba(28, 34, 48, 1);
    border-radius: 0.5rem;
    width: 8.934rem;
    height: 8.107rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.text-wrapper_1_image_success {
    height: 5.227rem;
    background: url(../images/success.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 7.814rem;
    margin: 0.56rem auto 0 auto;
}

.text_1_image_success {
    overflow-wrap: break-word;
    color: #ffffff;
    font-size: 0.426rem;
    font-family: 'PingFang SC-Semibold';
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    line-height: 0.427rem;
    margin: 3.92rem auto 0 auto;
    width: 4.614rem;
    height: 0.427rem;
}

.text-wrapper_2_image_success {
    background-color: rgba(0, 253, 252, 1);
    border-radius: 3rem;
    height: 1.227rem;
    width: 3.84rem;
    margin: 0.24rem auto 0.854rem auto;
}

.text_2_image_success {
    overflow-wrap: break-word;
    color: rgba(28, 34, 48, 1);
    font-size: 0.373rem;
    font-family: 'PingFang SC-Medium';
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 0.374rem;
    margin: 0.427rem auto 0 auto;
    width: 1.174rem;
    height: 0.374rem;
}

.image-service {
    display: none;
    position: fixed;
    right: 0;
    top: 50vh;
    background-color: rgba(0, 253, 252, 0.6);
    border-radius: 50%;
    height: 1.44rem;
    width: 1.44rem;
}

.label_image_service {
    width: 0.854rem;
    height: 0.854rem;
    margin: 0.294rem 0 0 0.294rem;
}

.block_msg_tips {
    background-color: rgba(0, 0, 0, 0.62);
    height: 100%;
    width: 10rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.box_msg_tips {
    background-color: rgba(28, 34, 48, 1);
    border-radius: 0.5rem;
    height: 5.734rem;
    width: 8.934rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    margin: 0;
}

.group_1_msg_tips {
    width: auto;
    height: 0.587rem;
    margin: 0;
    margin-top: 0.427rem;
    display: flex;
    justify-content: space-between;
}

.text_1_msg_tips {
    overflow-wrap: break-word;
    color: #ffffff;
    font-size: 0.426rem;
    font-family: 'PingFang SC-Medium';
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 0.427rem;
    margin-top: 0.08rem;
    width: 8.934rem;
    height: 0.427rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label_1_msg_tips {
    width: 0.587rem;
    height: 0.587rem;
    margin-left: 8rem;
    position: absolute;
}

.text-wrapper_1_msg_tips {
    height: 0.374rem;
    width: 8.934rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-top: 1.2rem;
}

.text_2_msg_tips {
    color: #ffffff;
    font-size: 0.373rem;
    font-family: 'PingFang SC-Medium';
    font-weight: 500;
    text-align: center;
    white-space: normal;
    word-break: break-all;
    line-height: 0.374rem;
    width: 100%;
    height: 0.374rem;
    margin: 0;
}

.group_2_msg_tips {
    width: 3.84rem;
    height: 1.227rem;
    margin: 1.28rem auto 0.854rem auto;
    display: flex;
    justify-content: center;
}

.text-wrapper_2_msg_tips {
    background-color: rgba(0, 253, 252, 1);
    border-radius: 3rem;
    height: 1.227rem;
    width: 3.84rem;
    margin: 0;
}

.text_3_msg_tips {
    overflow-wrap: break-word;
    color: rgba(28, 34, 48, 1);
    font-size: 0.373rem;
    font-family: 'PingFang SC-Medium';
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 0.374rem;
    margin: 0.427rem auto 0 auto;
    width: auto;
    height: 0.374rem;
}

.input_style {
    width: 8.72rem;
    max-width: 5.72rem;
    height: auto;
    box-sizing: border-box;
    padding: 0 0.134rem;
    color: #ffffff;
    font-size: 0.373rem;
    font-weight: 500;
    text-align: left;
    border: none;
    outline: none;
    line-height: 0.374rem;
    overflow: hidden;
    transition: padding 0.3s ease;
    background-color: transparent;
}

.input_style::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.input_style:-webkit-autofill,
.input_style:-webkit-autofill:hover,
.input_style:-webkit-autofill:focus,
.input_style:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1rem transparent inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s, -webkit-text-fill-color 5000s ease-in-out 0s !important;
}

.input_style:-moz-autofill,
.input_style:-moz-autofill:hover,
.input_style:-moz-autofill:focus,
.input_style:-moz-autofill:active,
.input_style:-ms-input-autofill,
.input_style:-ms-input-autofill:hover,
.input_style:-ms-input-autofill:focus,
.input_style:-ms-input-autofill:active,
.input_style:-o-autofill,
.input_style:-o-autofill:hover,
.input_style:-o-autofill:focus,
.input_style:-o-autofill:active {
    background-color: transparent !important;
    color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
}

#service_shake_num {
    display: none;
}