.gift-coupon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}
.gift-coupon img {
    display: block;
    margin: auto;
}
.gift-coupon .body {
    cursor: pointer;
    width: 62px;
}
.gift-coupon .head {
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
    transform-origin: bottom left;
    cursor: pointer;
    width: 70px;
}
.gift-coupon.active .head {
    transform: rotate(-100deg) scale(0.9);
}
.gift-coupon .data {
    border-radius: 5px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    border: solid 0.2px #e3e3e3;
    background-color: #ffffff;
    width: 340px;
    padding: 20px 30px;
    position: absolute;
    bottom: 50px;
    left: 10px;
    transform-origin: left bottom;
    transition: 0.5s ease-out;
    transform: scale(0);
    opacity: 0;
}
.gift-coupon.active .data {
    transform: scale(1);
    opacity: 1;
}
.gift-coupon .data::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 15px;
    border: 10px solid transparent;
    border-top-color: #e3e3e3;
    transform: translateY(100%);
}
.gift-coupon .data::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    left: 15px;
    border: 10px solid transparent;
    border-top-color: #fff;
    transform: translateY(100%);
}
.gift-coupon .data .info-content:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 0.5px rgba(112, 112, 112, 0.22);
}
.gift-coupon .data .info-content .title {
    font-size: 14px;
    font-weight: bold;
    color: #ed1b24;
    margin-bottom: 10px;
}
.gift-coupon .data .info-content .desc {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.gift-coupon .data .info-content .desc a {
    color: #000;
}
@media(max-width: 768px) {
    .gift-coupon {
        bottom: -10px;
        left: 22px;
    }
    .gift-coupon .data {
        width: 305px;
    }
}