

a:hover {
    color: var(--color-3);
}
input::placeholder {
    color: #ccc !important;
}

/* top bar ----------------------------------------------------- */
.top-header .top-right .review-dropdown .dropdown-menu {
    background-color: rgba(50, 50, 50, 0.95);
}
.top-header .top-right .review-dropdown .dropdown-menu a {
    color: var(--color-3);
    padding: 8px 10px;
    font-size: 16px;
    margin-right: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.top-header .top-right .review-dropdown .dropdown-menu a:hover {
    background-color: #000;
}


.top-header .top-left ul li a i {
    color: #b48a1c;
}
#user_menu div a {
    color: var(--color-3);
}
/* top-header ----------------------------------------------------- */
.top-header .top-right ul li a {
    text-transform: capitalize;
}
@media (max-width: 991px) {
    .top-header .top-left,
    .top-header .top-right {
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .top-header {
        padding: 5px 15px 2px;
    }
    .top-header .top-right {
        display: block; 
    }
}
@media screen and (max-width: 425px) {
    .top-header .top-right .review-dropdown .dropdown-menu {
        max-width: 340px;
    }
}


/* header ----------------------------------------------------- */
.main-header-bg {
    background-image: linear-gradient(180deg, var(--color-1) 1%, var(--color-2));
}

/* section ----------------------------------------------------- */
.section-1 {
    padding: 50px 0;
}

/* Loading --------------------------------------------------------- */
.loading_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: 1s;
}
.loader {
    --loading_w: 200px;
    width: var(--loading_w);
    height: var(--loading_w);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: loading_a 1.5s infinite linear;
}
/* Loading 完畢 ----------------------- */
.loading_area.loading_complete {
    animation: loading_complete 1s forwards linear;
}
@keyframes loading_a {
    0%   {opacity: 0.5;}
    50% {opacity: 1;}
    100% {opacity: 0.5;}
}
@keyframes loading_complete {
    0%   {opacity: 1;}
    100% {opacity: 0;display: none;z-index: -1;}
}


/* 最上方 banner ----------------------------------------------------- */
@media (min-width: 992px) {
    /*.hero-1.section-home .hero-content {
        top: 70%;
    }*/
}
.main-header {
    padding: 5px 0;
}
.hero-1 {
    height: 270px;
    height: 260px;
    background-position: center 90%;
}
.hero-1 .hero-content {
    top: 50%;
    transform: translateY(-50%);
}
.hero-1.section-home .hero-content {
    top: 80%;
    top: 74%;
}
.hero-1.section-home .hero-content.hero-txt {
    width: 90%;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 14px;
    color: #fff;
    top: unset;
    bottom: 8px;
    transform: translateY(0%);
}
.hero-1 .hero-content .hero-search {
    margin: 0;
}
.hero-1 .hero-content .hero-search input[type="text"] {
    padding: 15px 80px 15px 45px;
    padding: 8px 80px 8px 45px;
}
@media (max-width: 1199px) {
    .hero-1.section-home .hero-content.hero-txt {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .hero-1 {
        height: 270px;
        height: 260px;
    }
    .hero-1 .hero-content * {
        font-size: 24px;
    }
    .hero-1.section-home .hero-content {
        top: 80%;
        top: 72%;
    }
    .hero-1.section-home .hero-content.hero-txt {
        top: unset;
        display: none;
    }
}


/* 首頁最上方 ----------------------------------------------------- */
.section-home h1.title-1 {
    color: #fff;
    margin-bottom: 0px;
    margin-bottom: 5px;
}
.section-home .txt-1 {
    color: #fff;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    h1.title-1 {
        font-size: 14px !important;
    }
    .section-home .txt-1 {
        font-size: 12px;
        line-height: 1.3;
        zoom: 0.9;
    }
}


/* 活動卡 ----------------------------------------------------- */
.event-block {
    --img_h: 135px;/* 170px;*/
    --txt_h: 145px;
    width: 320px;
    width: 250px;
    height: calc(var(--img_h)+var(--txt_h));
    background-color: #fff;
    overflow: hidden;
    margin: 0 auto;
    transition: 0.2s;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 #d8d8d8;
}
.event-block.kuji-block {
    width: 300px;
}
.event-block .area-1 {
    height: var(--img_h);
    max-height: var(--img_h);
    overflow: hidden;
}
.event-block .area-1 .img-1 {
    padding-bottom: var(--img_h);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: .5s;
    background-color: #BCBCBC;
}
.event-block .area-2 {
    height: var(--txt_h);
    max-height: var(--txt_h);
    background-color: #fff;
    font-size: 14px;
    line-height: 1.1;
    padding: 10px 0;
}
/* .event-block .area-2 > div { */
.event-block .area-2 > * {
    padding: 0px 8px 10px;
}
.event-block .area-2 .txt-1 {
    font-size: 18px;
    font-weight: 600;
/*    color: #5f6062;*/
    color: var(--color-1);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-align: left;
    height: calc(22px * 3);
    padding-bottom: 0px;
    margin-bottom: 10px;
}
.event-block .area-2 .txt-2 {
/*    color: #ad4a08;*/
    font-weight: 600;
    color: var(--color-2);
}
.event-block .area-2 .txt-3 {
    color: #757575;
}

.event-block:hover {
/*    transform: scale(1.05);*/
    box-shadow: 0 3px 15px 0px #999999;
    margin-top: -5px;
}
.event-block:hover .area-1 .img-1 {
    transform: scale(1.1);
}
.event-block:hover .area-2 .txt-1 {
/*    color: var(--color-1);*/
    color: var(--color-3);
}
@media (max-width: 767px) {
    .event-block,
    .event-block.kuji-block {
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    .event-block .area-1 {
        /* (2023-01-06) */
        height: auto;
        max-height: unset;
    }
    .event-block .area-1 .img-1 {
        /* (2023-01-06) */
        padding-bottom: 54%;
    }
}

/* 「 購買中 」 & 「 票券比較 」 懸浮連結 ----------------------------------------------------- */
.cart-block,
.ticket_compare-block {
    position: fixed;
    top: 50%;
    right: 0px;
    font-size: 24px;
    font-weight: 600;
    transition: .3s;
    transform: translate(25px, calc(-50% - 20px));
    box-shadow: 0 0 8px 0 #d0d0d080;
    z-index: 2;
}
.cart-block a,
.ticket_compare-block a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    padding: 4px 5px;
    border-radius: 3px;
    color: var(--color-1);
    border: 1px solid var(--color-1);
    background-color: #fff;
}
.cart-block.has-ticket a,
.ticket_compare-block.has-ticket a {
    color: #fff;
    border: 1px solid var(--color-1);
    background-color: var(--color-1);
}

.cart-block a i,
.ticket_compare-block a i {
    margin-right: 10px;
    width: 27px;
    text-align: center;
}
.cart-block a span,
.ticket_compare-block a span {
}
.cart-block:hover,
.cart-block.has-ticket {
    transform: translate(2px, calc(-50% - 20px));
}



.ticket_compare-block {
    transform: translate(25px, calc(-50% + 20px));
}
.ticket_compare-block a {
    color: var(--color-3);
    border: 1px solid var(--color-3);
}
.ticket_compare-block.has-ticket a {
    border: 1px solid var(--color-3);
    background-color: var(--color-3);
}
.ticket_compare-block:hover,
.ticket_compare-block.has-ticket {
    transform: translate(2px, calc(-50% + 20px));
}




/* SweetAlert 2 ----------------------------------------------------- */
.swal2-popup .swal2-styled.swal2-confirm {
    background-color: var(--color-1);
}


/* 顯示/隱藏 密碼 ----------------------------------------------------- */
.password_switch {
    margin: 0;
    width: 100%;
    position: relative;
}
.password_switch input {
    padding-right: 35px;
}
.password_switch i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 18px;
    cursor: pointer;
}
.password_switch.has_show i.eye_hide {
    display: none;
}
.password_switch i.eye_show {
    display: none;
}
.password_switch.has_show i.eye_show {
    display: block;
}
