.body-css{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    padding: 0;
    margin: 0;
}

.window-box{
    width: 100%;
    max-width: 768px;
    height: 100vh;
    background: #ececec;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.div-box{
    width: 98%;
    height: auto;
    box-sizing: border-box;
    background: white;
}

.title-box{
    min-height: 20px;
    width: 100%;
    max-width: 768px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #009f95;
    color: white;
    font-weight: bolder;
}

.margin-top20{
    margin-top: 20px;
}

.btn-box-line{
    width: 98%;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.btn-css{
    padding: 10px 20px;
    border-radius: 5px;
    background: #009f95;
    color: white;
    font-weight: bolder;
}
/*底部导航栏开始*/
.bottom-nav {
    display: flex;
    max-width: 768px;
    width: 100%;
    height: 50px;
    position: fixed; /* 固定定位 */
    bottom: 0; /* 固定在底部 */
    z-index: 1000; /* 确保在其他元素之上显示 */
    justify-content: space-between; /* 让元素在容器中左右均匀分布 */
    align-items: center; /* 垂直居中对齐 */
    background-color: #d7d7d7;
}

.bottom-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 30%;
}

.user-order-box {
    display: flex;
    width: 100%;
    min-height: 80px;
    background-color: white;
    left: 2.5%;
    border-radius: 12px;
    z-index: 1000;
    font-size: 16px;
    margin-bottom: 10px;
}

.user-tools-box {
    display: flex;
    width: 95%;
    min-height: 80px;
    background-color: white;
    left: 2.5%;
    border-radius: 12px;
    z-index: 1000;
    font-size: 16px;
}

.user-assets-item {
    min-height: 60px;
    width: 33.3%;
}

.user-order-item {
    min-height: 80px;
    width: 25%;
}

.user-assets-data {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 30px;
    width: 100%;
}

.user-order-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
}

.user-assets-text {
    display: flex;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    box-sizing: border-box;
}
