.custom-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 8rem;
    font-size: .4rem;

    background-image: url("../img/底框.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.modal-content button {
    border-radius: 10rem;
    background-image: linear-gradient(180deg, #fbbb9f, #fd3251);
}

.modal-content button, .modal-content img, .modal-content textarea {
    margin: 10px 0;
    text-align: center
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.modal-content textarea {
    resize: none
}

.modal-content p {
    text-align: center
}

.modal-content img {
    border-radius: 20px;
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}