/*-------------------- 限定推薦行程頁 travel.html --------------------*/

ul {
    padding-inline-start: 0;
    margin-bottom:0}


/*-- 商品區 .pro --*/

.pro {
    --sale: #ff6600;
    --sale-hover: #ff4400;
    --box-border: #0061b3;
}

.pro>div {
    margin-bottom: 1.5rem;
}

.sale_box {
    color: var(--basic-txt);
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    padding:0 0 0.5rem 0;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px var(--main-deep), 0 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: var(--transition-com);
}

.sale_box:hover {
    color: var(--basic-txt);
}

.sale_box>img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.sale_info {
    position: relative;
    padding: 0.5rem 0.6rem 0;
    font-size: 1rem;
}

.sale_info>h5 {
    font-weight: 600;
    color: #004387;
    line-height: 1.3;
    margin-bottom:0.4rem;
}

@media (min-width:768px) and (max-width:991px) {
    .sale_info {
        padding: 0.5rem 0.3rem 60px;
    }
}

@media screen and (max-width:991px) {
    .pro .col-md-3{
        margin-bottom: 1rem;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }

    .sale_info>h5 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .sale_info>p {
        font-size: 0.9375rem;
    }

    .sale_info>.price_txt, .sale_info>.date_txt {
        font-size: 0.9375rem;
    }
}

.sale_info>.date_txt {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.sale_info>.date_txt>svg {
    font-size: 90%;
}

.sale_info>.spec_txt>li {
    display: block;
    font-size: 0.9375rem;
    padding-bottom: 0.15rem;
}

/* .sale_info>.spec_txt>li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f058';
    font-weight: 900;
    margin-right: 0.4rem;
} */

.sale_info>.price_txt {
    position: absolute;
    display: block;
    text-align: right;
    font-weight: 600;
    bottom: 0;
    width: calc(100% - 0.5rem);
    color: var(--sale);
}

.sale_info>.price_txt>span {
    font-size: 1.75rem;
}

@media screen and (max-width:991px) {
    .sale_info>.spec_txt>li {
        font-size: 0.9375rem;
    }
    .sale_info>.price_txt>span {
        font-size: 1.6rem;
    }
}

.sale_info>.price_txt:after {
    /* clearfix */
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.btn_sale {
    white-space: nowrap;
    font-weight: 600;
    color: #fff;
    float: right;
    background-color: var(--sale);
    border-color: var(--sale);
    transition: var(--transition-com);
}

.btn_sale>.material-icons {
    vertical-align: middle;
}

.btn_sale:hover, .sale_box:hover .btn_sale, .btn_sale.soon {
    color: #fff;
    background-color: var(--sale-hover);
    border-color: var(--sale-hover);
}

.sale_box.sold_out::before {
    content: url(https://event.cdn-gunnarworks.com/events/taitung2.0/icon-soldout.png);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 10;
}

/*-- 按鈕區域 --*/

.btn-sec {
    padding:0;
    margin-bottom: -1rem;
}