/* components/customModal/customModal.wxss */ .modal { display: flex; position: fixed; top: 0; bottom: 0; right: 0; left: 0; background-color: rgba(0, 0, 0, 0); justify-content: center; align-items: center; } .modal-content { display: grid; margin-top: 0; background: rgb(236, 243, 243); border-radius: 10px; height: 290px; justify-content: center; align-items: center; border: 0.1px solid black; } .introduce-text { width: 100%; display: flex; justify-content: center; align-items: center; font-size: 23px; margin-top: 5%; font-weight: bold; } .jieshao-text { width: 100%; display: flex; justify-content: center; align-items: center; font-size: 20px; margin-top: 3%; color: gray; } .close-button { width: 100%; display: flex; background-color: rgba(255, 255, 255, 0.829); color: gray; padding: 4px; font-size: 17px; justify-content: center; align-items: center; }