.routeNoticeModal {
    display: none;
    position: fixed;
    top: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 600px;
    height: 100vh;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.routeNoticeModal .main {
    width: 85%;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

.routeNoticeModal .main .title {
    font-size: 18px;
    font-weight: bold;
}

.routeNoticeModal .main .content {
    margin: 10px 0;
}

.routeNoticeModal .main .btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.routeNoticeModal .main .btns .cancel,
.routeNoticeModal .main .btns .href {
    width: 40%;
    padding: 5px 10px;
    color: #007bff;
    background: #e8f3ff;
    border: 1px solid #007bff;
    border-radius: 5px;
}