﻿.nav {
    width: 100%;
    height: 3rem;
    font-size: 1.125rem;
    border-bottom: 1px solid #F2F2F2;
}

.nav img {
    width: 1.5rem;
    height: 1.0625rem;
    position: absolute;
    left: 0.8125rem;
}

.loading {
    margin-top: 100px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.content {
    font-size: 1rem;
    color: #101010
}

.title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #101010;
    line-height: 28px;
    margin-top: 1rem;
}

.user-container {
    display: flex;
    align-items: center;
    margin-top: 1.1875rem;
}

.user-container img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.375rem;
    border: 1px solid #ccc;
}

.name {
    font-size: 0.9375rem;
    color: #181818;
    line-height: 1.5625rem;
}

.time {
    font-size: 0.8125rem;
    color: #A1A1A1;
}

.open-container {
    width: 100%;
    height: 9.25rem;
    background: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    max-width: 529px; /* 限制最大宽度与body一致 */
    margin: 0 auto; /* 居中 */
    transform: translateX(-50%);
    left: 50%; /* 水平居中 */
}

.open-container.no-mask {
    width: 100%;
    height: 9.25rem;
    position: fixed;
    background: transparent;
    bottom: 0;
    left: 0;
    max-width: 529px;
    margin: 0 auto;
    transform: translateX(-50%);
    left: 50%;
}

.open-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    transform: translateY(-20%);
}

.open-container.no-mask::before {
    display: none;
}

.open-container .text {
    display: flex;
    font-size: 0.875rem;
    color: #1B4378;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 1.3125rem;
    position: relative;
    z-index: 1;
}

.btn {
    width: 10.875rem;
    height: 3.125rem;
    background: #5976F9;
    border-radius: 1.5625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    color: #FFFFFF;
    cursor: pointer;
    left: 0;
    transform: none;
}

.btn img {
    width: 2.375rem;
    height: 1.625rem;
    margin-right: 4px;
    display: block;
}

/* 确保所有页面内容容器都居中 */
.content-container {
    width: 100%;
    max-width: 529px;
    margin: 0 auto;
}

/* 在屏幕宽度大于530px时固定按钮尺寸 */
@media screen and (min-width: 530px) {
    .btn {
        margin-top: 1rem;
    }
}
