
  /* 頁籤導航樣式 */
  .tab-nav-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    position: relative;
}

.tab-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #eee;
    /* min-width: max-content; */
}

.tab-nav li {
    margin-right: 2px;
    white-space: nowrap;
    display: inline-block
}

.tab-nav a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-nav a:hover {
    background: #f5f5f5;
}

.tab-nav a.active {
    color: #000;
    background: #eee;
    border-bottom: 2px solid #007bff;
    margin-bottom: -2px;
}

/* RWD 調整 */
@media (max-width: 768px) {
    .tab-nav a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .card-title-shenls {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
        justify-content: flex-start !important;
        margin-top: 10px !important;
    }

    h1.font-weight-bold {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .tab-nav a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .breadcrumb-nav {
        margin-top: 5px !important;
    }

    h1.font-weight-bold {
        font-size: 2rem;
    }
}

/* 滾動條美化 */
/* 刪除所有滾動條樣式 */
.tab-nav-container::-webkit-scrollbar {
display: none;  /* 隱藏滾動條 */
}

.tab-nav-container {
-ms-overflow-style: none;  /* IE/Edge */
scrollbar-width: none;  /* Firefox */
}
.recruit-albums {
    aspect-ratio: 16/9;  /* 設定固定寬高比，可依需求調整 */
    overflow: hidden;    /* 超出部分隱藏 */
}

.recruit-albums img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 圖片填滿容器但不變形 */
}
.fade-in-up a,
.fade-in-up span,
.fade-in-up p {
   font-size: 16px;
   line-height: 1.5;
}

@media (max-width: 768px) {
   .fade-in-up a,
   .fade-in-up span,
   .fade-in-up p {
       font-size: 14px;
   }
}

@media (max-width: 576px) {
    .fade-in-up{
        margin-bottom: 15px;
    }
    .content-text{
        padding: 0px !important;
    }
    .content-text h3{
        font-size: 20px  !important;
    }
    .card-title-shenls:not(h1){
        font-size: 13px !important;
    }
   .fade-in-up a,
   .fade-in-up span,
   .fade-in-up p {
       font-size: 15px;
   }
   .fade-in-up{
    justify-content: start !important;
   }
}