

/*複製代碼*/
.copy {
    cursor: pointer;
}


.popup {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup div {
    text-align: center;
    position: absolute;
    width: 70%;
    max-width: 320px;
    height: 30%;
    max-height: 200px;
    background-color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    color: #000
}
.popup.active{
    display: flex;
}
.popup button {
    display: block;
    margin: 15px auto 0;
    padding: 3px 8px;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 0;
    cursor: pointer;
}

.popup p {
    width: 100%;
    line-height: 150%;
}

