
/*自定義字型Start*/
@font-face {
    font-family: 'jf'; /* 自定義的字體名稱，可以自取 */
    src: url('/lib/rwd_front/fonts/webfonts/jf-openhuninn-2.1.ttf') format('truetype'); /* 引入 .ttf 字體文件 */
    font-weight: normal; /* 可設置字體的粗細 */
    font-style: normal; /* 可設置字體的樣式 (正常、斜體等) */
}
/*自定義字型End*/

/*自訂義-通用Start*/
.btn {
    white-space: nowrap;
}

.br-5 {
    border-radius: 5px;
}

.br-15 {
    border-radius: 15px;
}

.border-weight {
    font-weight:700;
}

.display-initial {
    display: initial;
}

.p-t-50 {
    padding-top:50px;
}

.b-0 {
    border:0px;
}
/*自訂義-通用End*/

/*原版型調整Start*/
body {
    font-family: "微軟正黑體";
}

.nav-links__item-link {
    color: black;
    font-weight: 700;
    font-size: 18px;
}

.nav-panel {
    background: #fff;
}

.mobile-header__panel {
    background: #fff;
}

.height-100 {
    height: 100px;
}

.nav-panel__row {
    justify-content: space-between;
}

.owl-nav, .owl-dots {
    display: none !important;
}

.block-slideshow__slide-content {
    bottom: 140px !important;
}

.site-footer {
    background-color: #1b1929;
    color: #ffffff;
}

.block-banner__body {
    height: 300px;
}

.account-nav {
    background-color:white;
}

.bg-white {
    background-color: white;
}

.breadcrumb-header, .card, .table, .account-nav {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* 添加陰影 */
}

.bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/lib/rwd_front/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* 設置透明度 */
    z-index: -1; /* 背景圖層在最底層 */
}

@media (min-width: 767px) {
    .block-text {
        padding-top: 80px;
        text-align: right;
        padding-right: 50px;
    }

    .block-slideshow--layout--full .block-slideshow__body, .block-slideshow--layout--full .block-slideshow__slide {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .block-banner__title {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .account-nav__title {
        font-size: 18px;
    }
}

.breadcrumb {
    line-height: 50px;
}

.breadcrumb-item {
    padding-right:8px !important;
}

.breadcrumb-after::after {
    padding-left: 8px;
    content: '>';
}

.breadcrumb h2 {
    font-size: 28px;
}

#myFrame {
    display: block;
    width: 100%;
    border: none;
}

.frontBannerText {
    font-family: 'jf', sans-serif;
    font-size: 36px; /* 根據需要調整字體大小 */
    font-weight: bold;
    color: #4F4F4F; /* 藍色字體填充 */
    text-shadow: -2px -2px 0 #ffffff, /* 左上角白色描邊 */
    2px -2px 0 #ffffff, /* 右上角白色描邊 */
    -2px 2px 0 #ffffff, /* 左下角白色描邊 */
    2px 2px 0 #ffffff; /* 右下角白色描邊 */
    display: inline-block;
    line-height: 1.2;
}

.nav-links__item-body:hover {
    color: white;
    background-color: #007bff;
}

.mobile-header__menu-button:hover {
    
    background-color: #007bff;
}

.mobile-header__menu-button:hover use {
    fill: white;
}

.page-header {
    font-weight: 700;
}

.page-header__container {
    padding-bottom: 20px;
}
.category-card__name a {
    font-size:16px;
    font-weight:700;
}
/*原版型調整End*/

/*圓角table Start*/
.table-radius td, .table-radius th {
    border: 1px solid #ddd !important;
    padding: 8px;
}
.table-radius th {
    background-color: #106eea !important;
    color: white;
}
/*第一欄第一列：左上*/
.table-radius th:first-child {
    border-top-left-radius: 5px;
}
/*最後欄第一列：右上*/
.table-radius th:last-child {
    border-top-right-radius: 5px;
}
/*第一欄最後列：左下*/
.table-radius tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}
/*最後欄第一列：右下*/
.table-radius tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}
/*圓角table End*/

/*地圖相關Start*/
#map {
    width: 100%;
    height: 450px;
}
#map .leaflet-popup-close-button {
    display: none;
}
#map .pop_up_attr {
    font-family: 微軟正黑體;
}
/*地圖相關End*/