#couponModal{

}
#couponModal .modalContent{
    position: relative;
    width: 40%;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 20px #000;
    border-radius: 0;
    border: 10px solid #1fad7d;
}
#couponModal .modal-close{
    position: absolute;
    top: 0;
    right: 0;
    background-color: unset;
    border: unset;
    outline: none;
    font-size: 1.5vw;
    cursor: pointer;
}
#couponModal .couponTitle{
    background-image: url(/skin/images/coupon-title.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 98%;
    margin: 5% 1% 0 1%;
    height: 0;
    padding-bottom: 6%;
}
#couponModal .couponContentBox{
    width: 70%;
    margin: 3% auto 0 auto;
}
#couponModal .couponContentBoxRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
#couponModal .couponContentBoxRowTitle{
    border-left: 5px solid #1fad7d;
    padding-left: 1%;
    font-size: 1.05vw;
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}
#couponModal .couponNoticeRed{
    background-color: #ff0000;
    border-radius: 20px;
    display: inline-block;
    padding: 0 3%;
    color: #fff;
    margin-left: 5%;
    font-size: .7em;
}
#couponModal .couponContentBoxRowInput{
    width: 58%;
    margin-left: 2%;
}
#couponModal .couponContentBoxRowInput input{
    width: 96%;
    font-size: 1.05vw;
    padding: 2% 2%;
}
#couponModal .couponHr{
    width: 100%;
    margin: 5% auto;
}
#couponModal .couponNotice{
    font-size: .85vw;
    font-weight: bold;
}
#couponModal .couponNotice.couponNotice1,
#couponModal .couponNotice.couponNotice2{
    width: 60%;
    margin-left: 39%;
}
#couponModal .couponContentSubmit{
    width: 100%;
    text-align: center;
}
#couponModal .couponSubmit{
    background-image: url(/skin/images/coupon-submit-press.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35%;
    margin: 5% auto 0 auto;
    height: 0;
    padding-bottom: 10%;
    background-color: unset;
    border: unset;
    outline: none;
    cursor: pointer;
}
#couponModal .couponSubmit:hover,
#couponModal .couponSubmit:active{
    background-image: url(/skin/images/coupon-submit.png);
}

#couponMsgModal .modalContent{
    position: relative;
    width: 40%;
    margin: 0 auto;
    aspect-ratio: 16 / 6;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 20px #000;
    border-radius: 0;
    border: 10px solid #1fad7d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#couponMsgModal .modal-close{
    position: absolute;
    top: 0;
    right: 0;
    background-color: unset;
    border: unset;
    outline: none;
    font-size: 1.5em;
    cursor: pointer;
}
#couponMsgModal .couponMsg{
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    white-space: pre-line;
}
#couponMsgModal .couponSubmit{
    background-image: url(/skin/images/coupon-submit-press.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35%;
    margin: 5% 32.5% 0 32.5%;
    height: 0;
    padding-bottom: 10%;
    background-color: unset;
    border: unset;
    outline: none;
    cursor: pointer;
}
#couponMsgModal .couponSubmit:hover,
#couponMsgModal .couponSubmit:active{
    background-image: url(/skin/images/coupon-submit.png);
}

/* 淡入動畫 */
.fade-enter-active {
    animation: fadeIn 0.3s ease forwards;
}
.fade-leave-active {
    animation: fadeOut 0.3s ease forwards;
}

/* 對應 keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}