.page {
    height: 100vh;
    padding: 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header {
    width: 100%;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .5rem;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.header .left {
    width: 70%;
    display: flex;
    align-items: center;
}

.header .right {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: end;
}

.header .back img {
    width: 1.75rem;
    height: 1.75rem;
}

.header .btn-select img {
    width: 1.75rem;
    height: 1.75rem;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 4rem;
    right: 0.5rem;
    gap: 1rem;
    z-index: 99999;
}

.tool a {
    width: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool a span {
    font-size: 0.75rem;
    margin-top: .5rem;
}

.tool a img {
    width: 2rem;
    height: 2rem;
}

.select-modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.select-modal .select-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 24.1875rem;
    background-color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 2.5rem 1.25rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.select-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2rem;
    height: 2rem;
}

.select-modal .select-box .pic {
    width: 2.25rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: .5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.select-modal .select-box ul {
    width: 100%;
    margin-top: 2.5rem;
    height: calc(100% - 5rem);
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9375rem;
}

.select-modal .select-box ul a {
    display: block;
    height: 2.6875rem;
    border-radius: .5rem;
    background-color: #e8e8e8;
    color: #333333;
    text-align: center;
    line-height: 2.6875rem;
    font-weight: 700;
}

.select-modal .select-box ul a.current {
    background-color: #fff5cc;
}

.select-modal.show {
    opacity: 1;
    visibility: visible;
}

.select-modal.show .select-box {
    transform: translateY(0);
}