﻿/* #region -----CSS Variables & Color Palette----- */
:root {
    /* Primary Colors */
    --Primary-Blue: #0042FF;
    --Secondary-Blue: #0068B7;
    --White: #FFFFFF;
    --Black: #000000;
    
    /* Additional Colors */
    --Grey: #9B9B9B;
    --Light-Blue: #D6F5FB;
    --Purple-Blue: #B1C5FF;
    --Shadow: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%);
    
    /* Gradients */
    --Blue-Black-Gradient: linear-gradient(180deg, #0042FF 0%, #000000 100%);
    --White-Blue-Gradient: linear-gradient(180deg, #FFFFFF 0%, #0042FF 100%);
    --Text-Gradient: linear-gradient(91.05deg, #0042FF -143.58%, #FFFFFF 153.58%);
    --Application-BG: linear-gradient(165.22deg, #E5EDFA 20.61%, #CCDCF6 81.91%);
    --App-Mobile: linear-gradient(165.22deg, #EEF3F8 20.61%, #DDE8F4 81.91%);
    --Map-Glow: radial-gradient(50.75% 50.75% at 50% 50.75%, rgba(177, 197, 255, 0.8) 0%, rgba(177, 197, 255, 0) 100%);
    
    /* Shadows & Effects */
    --Box-Shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    --Glow: 0px 0px 30px rgba(255, 255, 255, 0.5);
}
/* #endregion */

/* #region -----Typography Classes----- */
.text-header {
    font-family: 'Funnel Display';
    font-size: 2.53vmax;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text-subheader-display{
    font-family: "Funnel Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text-subheader {
    font-family: "Funnel Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.text-subtitle {
    font-family: "Funnel Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.text-caption {
    font-family: "Funnel Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.text-menu {
    font-family: "Funnel Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.text-gradient {
    background: var(--Text-Gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word-wrap-break{
    word-wrap: break-word;
}

/* Mobile Typography */
@media (max-width: 992px) {
    .text-header {
        font-size: 28px;
        font-weight: 700;
    }

    .text-subheader-display{
        font-size: 28px;
    }

    .text-subheader {
        font-family: "Funnel Display";
        font-size: 21px;
        font-weight: 700;
    }

    .text-subtitle {
        font-size: 21px;
        font-weight: 400;
    }
}
/* #endregion */

/* Text Colors */
.text-primary-blue {
    color: var(--Primary-Blue);
}

.text-secondary-blue {
    color: var(--Secondary-Blue);
}

.text-white {
    color: var(--White);
}

.text-black {
    color: var(--Black);
}

.text-grey {
    color: var(--Grey);
}
/* #endregion */

/* #region -----Background & Color Classes----- */
.bg-primary-blue {
    background-color: var(--Primary-Blue);
}

.bg-secondary-blue {
    background-color: var(--Secondary-Blue);
}

.bg-white {
    background-color: var(--White);
}

.bg-black {
    background-color: var(--Black);
}

.bg-grey {
    background-color: var(--Grey);
}

.bg-light-blue {
    background-color: var(--Light-Blue);
}

.bg-purple-blue {
    background-color: var(--Purple-Blue);
}

.bg-blue-black-gradient {
    background: var(--Blue-Black-Gradient);
}

.bg-white-blue-gradient {
    background: var(--White-Blue-Gradient);
}

.bg-application {
    background: var(--Application-BG);
}

.bg-app-mobile {
    background: var(--App-Mobile);
}

.bg-shadow {
    background: var(--Shadow);
}

/* #region -----Effect Classes----- */
.box-shadow {
    box-shadow: var(--Box-Shadow);
}

.glow {
    box-shadow: var(--Glow);
}

.map-glow {
    background: var(--Map-Glow);
    mix-blend-mode: screen;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-radius-3 {
    border-radius: 3px;
}
/* #endregion */

/* #region -----全站元素通用佈局----- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
}

#container_main{
    padding-bottom: 0 !important;  /* 為了蓋掉 botstrap 的 important */
}

.master-container{
    max-width: 100%;
}

.container{
    max-width: 88%;
    padding-left: 0;
    padding-right: 0;
}

.custom-container {
    max-width: 93%;
    margin: 0 auto;
    padding: 0 50px;
}

/* #region 通用按鈕樣式 */
/* 藍色按鈕 */
.btn_blue{
    background: var(--Primary-Blue);
    color: var(--White);
    font-family: "Funnel Sans";
}
.btn_blue:hover{
    background: transparent;
    border: 1.5px solid var(--Primary-Blue);
    color: var(--Primary-Blue);
}

/* 白色按鈕 */
.btn_white{
    background: var(--White);
}
.btn_white:hover{
    background: transparent;
    border: 1.5px solid var(--White);
    color: var(--White);
}

/* 箭頭按鈕 */
.btn_arrow {
    position: absolute;
    padding-left: 7.5px;
    padding-top: 2px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
}

/* 箭頭按鈕內的圖示 */
.btn_arrow .bi{
    font-size: 1.125rem;
}
.btn_arrow.btn_blue .bi {
    color: var(--White);
}
.btn_arrow.btn_white .bi {
    color: var(--Primary-Blue);
}
.btn_arrow.btn_blue .bi:hover {
    color: var(--Primary-Blue);
}
.btn_arrow.btn_white .bi:hover {
    color: var(--White);
}
.btn_white .btn_arrow .bi{
    text-shadow:
        0 0 0.5px currentColor,
        0 0.5px 0 currentColor,
        0.5px 0 0 currentColor,
        0 -0.5px 0 currentColor,
        -0.5px 0 0 currentColor;
}

/* 切換按鈕hover不要變色 */
.btn_splide.btn_blue:hover{
    background: var(--Primary-Blue);
}
.btn_splide.btn_white:hover{
    background: var(--White);
}
.btn_splide.btn_blue .bi:hover{
    color: var(--White);
}
.btn_splide.btn_white .bi:hover{
    color: var(--Primary-Blue);
}

/* 平板（<=992px） */
@media (max-width: 992px) {
    .btn_arrow {
        width: 2rem;
        height: 2rem;
    }

    .btn_arrow .bi {
        /* font-size: 1rem; */
        margin-left: 1.5px;
    }
}

/* 小平板或大手機（<=768px） */
@media only screen and (max-width: 768px) {
    .btn_arrow {
        width: 30px; 
        height: 30px;
    }
    
    .btn_arrow .bi {
        text-shadow: none;
        margin-left: 0;
        /* font-size: 1rem;  */
    }
}

/* 小型手機（<=576px） */
@media (max-width: 576px) {
    .btn_arrow {
        width: 30px; 
        height: 30px;
    }

    .btn_arrow .bi {
        /* font-size: 1rem;  */
    }
}

.btn_more_white {
    display: inline-flex;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    font-family: "Funnel Sans";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--White);
    color: var(--Primary-Blue);
    font-size: 16px;
    border: none !important;
    /* z-index: 999 !important; */
}

.btn_more_blue {
    display: inline-flex;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    font-family: "Funnel Sans";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--Primary-Blue);
    color: var(--White);
    border: none;
}

.btn_more_white:hover {
    background: transparent !important;
    border: 1.5px solid var(--White) !important;
    color: var(--White) !important;
}

.btn_more_blue:hover {
    background: transparent !important;
    border: 1.5px solid var(--Primary-Blue);
    color: var(--Primary-Blue);
}
/* #endregion */

@media (max-width: 576px) {
    .custom-container{
        padding: 0 !important;
    }
}
/* #endregion */

/* #region  -----Nav Bar 區塊樣式 ----- */
.navbar {
    padding: 0px 5%;
    background-color: #FFF !important; /* 白色背景 */
    border-bottom: none;
    height: auto;
}

.band-container {
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000 !important; /* 黑色標誌 */
    margin-right: 3vw; /* 調整與選單項的間距 */
}

.navbar-nav {
    margin-left: 0;
    margin-right: -10px !important;
}

#navbarNavSearch{
    background: #F5F5F5;
    padding: 1rem 0px;
    width: 60%;
    height: 5.3rem;
}

#navbarNavSearch .container{
    max-width: 90% !important;
}

.navbar-menu-btn {
    display: inline-block;
    cursor: pointer;
}

.navbar-menu-btn .bar1, .bar2, .bar3 {
    width: 17px;
    height: 1.7px;
    background-color: #333;
    margin: 4.25px 0;
    transition: 0.4s ease;
}

.active .bar1, .active .bar2, .active .bar3{
    width: 20px;
    height: 1px;
}
  
.active .bar1 {
    transform: translate(0, 5px) rotate(-45deg);
}

.active .bar2 {
    opacity: 0;
}

.active .bar3 {
    transform: translate(0, -5px) rotate(45deg);
}

.nav-item {
    margin-right: 2vw; /* 選單項之間的間距 */
}

.nav-link {
    color: #000 !important; /* 黑色文字 */
    font-size: 1rem;
    font-weight: 400;
}

.nav-link:hover {
    color: #000 !important; /* 懸停時保持黑色 */
    text-decoration: underline; /* 設計圖中懸停可能有下劃線效果 */
}

/* 下拉選單相關樣式 */
.dropdown-menu {
    background-color: #fff; /* 白色背景 */
    border: none; /* 移除邊框 */
    box-shadow: none; /* 移除陰影 */
    width: 100%; /* 固定寬度 */
    padding: 15px; /* 內部間距 */
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 0 !important;
}

/* 當下拉選單顯示時的樣式 */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

/* 當下拉選單展開時，箭頭向上並變為藍色箭頭 */
.dropdown.show .dropdown-toggle::after,
.nav-item.dropdown:hover .dropdown-toggle::after {
    border-top-color: #007BFF; /* 藍色箭頭 */
    transition: transform 0.3s ease; /* 箭頭向上 */
}

/* 當下拉選單展開時，主選單項變為藍色 */
.dropdown.show .nav-link,
.nav-item.dropdown:hover .nav-link {
    color: #007BFF !important; /* 藍色 */
}

/* 箭頭動畫 */
.dropdown-toggle::after {
    border-top-color: #000; /* 黑色箭頭 */
    margin-left: 5px;
    transition: transform 0.3s ease, border-top-color 0.3s ease; /* 箭頭旋轉與顏色變化動畫 */
}

/* 下拉選單標題 */
.dropdown-header {
    color: #007BFF; /* 藍色 */
    font-size: 1rem;
    font-weight: 700; /* 粗體 */
    padding: 8px 15px 0px 0;
    margin-bottom: 5px; /* 與下方項目的間距 */
}

.dropdown-item {
    color: #000; /* 黑色文字 */
    font-size: 0.875rem;
    font-weight: 700; /* 粗體 */
    padding: 8px 15px; /* 內部間距 */
    display: block; /* 確保垂直排列 */
}

.dropdown-item:hover {
    background-color: transparent; /* 移除懸停背景 */
    color: #000; /* 保持黑色 */
    opacity: 0.8;
}

.dropdown-item-title {
    display: block; /* 主項目獨立一行 */
    font-weight: 700; /* 粗體 */
    font-size: 0.875rem;
    color: #000;
}

.dropdown-item-description {
    display: block; /* 描述獨立一行 */
    font-weight: 400; /* 細體 */
    font-size: 0.75rem;
    color: #666; /* 灰色 */
    margin-top: 5px; /* 主項目與描述的間距 */
}

.navbar-nav:last-child {
    margin-left: 5vw !important;
}

.nav-link .bi-search {
    font-size: 1rem;
    color: #000; /* 黑色搜索圖標 */
}

.navbar-nav .dropdown-menu li {
    list-style: none;
    position: relative;
}

.navbar-collapse {
    justify-content: space-between; /* 將導航欄項目分散對齊 */
}

.dropdown-toggle::after {
    display: inline-block;
    margin-top: 0.255em;
    margin-left: 0.255em;
    content: ""; /* 保留 content 為空 */
    border: none; /* 移除預設的邊框箭頭 */
    width: 15px; /* 圖片寬度，根據實際圖片調整 */
    height: 15px; /* 圖片高度，根據實際圖片調整 */
    background-image: url("/images/index/downArrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle; /* 確保圖片與文字對齊 */
}

.dropdown-toggle:hover::after {
    background-image: url("/images/index/upArrow.png");
}

.dropdown-menu li a {
    display: block;
    padding: 5px 15px;
}

.navbar-nav.me-auto .nav-item.dropdown .nav-link.dropdown-toggle:hover {
    color: #0042ff !important;
    font-size: 1.125rem; /* 18px / 16 = 1.125rem */
    font-family: "Funnel Sans", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    overflow-wrap: break-word;
    text-decoration: none;
}

/* 確保下拉選單項目排列整齊 */
.dropdown-menu .dropdown-item {
    display: block; /* 確保項目按塊級排列 */
    color: black;
    font-size: 1.125rem; /* 18px / 16 = 1.125rem */
    font-family: "Funnel Sans", sans-serif;
    font-weight: 600;
    word-wrap: break-word;
    white-space: normal;
    padding: 5px 0;
}

.dropdown-toggle {
    color: black;
    font-size: 1.125rem !important; /* 18px / 16 = 1.125rem */
    font-family: "Funnel Sans", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    word-wrap: break-word;
}

.dropdown-header {
    color: black;
    font-size: 0.875rem; /* 14px / 16 = 0.875rem */
    font-family: "Funnel Sans", sans-serif;
    font-weight: 300;
    word-wrap: break-word;
}

.dropdown-item {
    color: black;
    font-size: 0.875rem; /* 14px / 16 = 0.875rem */
    font-family: "Funnel Sans", sans-serif;
    font-weight: 600;
    word-wrap: break-word;
}

.whats-hot-section {
    vertical-align: top;
    margin-left: 10vw;
}

.whats-hot-header {
    color: #9B9B9B !important;
    font-size: 0.875rem; 
    font-family: Funnel Sans;
    font-weight: 300;
    word-wrap: break-word;
}

.whats-hot-item {
    font-size: 1.125rem !important; /* 18px / 16 = 1.125rem */
    font-weight: 300 !important;
}

.nav-item.dropdown {
    position: relative;
}

/* 涵蓋大多數筆電 */
@media screen and (min-width: 992px) and (max-width: 1535.98px) {
    #navbarNavSearch{
        height: 5.2rem;
    }
}

/* 筆電 */
@media (max-width: 1440px) and (min-width: 991px) {
    #navbarNavSearch{
        height: 5.2rem;
    }
}

/* 大橫式平板(例: iPad Pro/Air) */
@media (max-width: 1200px) and (min-width: 992px) {
    
}

/* 筆電螢幕的NAV下拉展開後都要是橫向填滿 （>=1024px） */
@media screen and (min-width: 1024px) {
    .btn_arrow{
        top:120px;
    }
    .carousel-indicators{
        bottom:100px;
    }
    
    .collapsing {
        -webkit-transition: none;
        transition: none;
        display: none;
    }
    
    .navbar .dropdown-menu {
        position: fixed !important; /* 固定定位，脫離父元素約束 */
        left: 0 !important; /* 從螢幕左邊緣開始 */
        right: 0 !important; /* 延伸到右邊緣 */
        width: 100% !important; /* 全螢幕寬度 */
        top: 86px !important; /* 根據導航欄高度調整 */
        margin: 0 !important; /* 移除外邊距 */
        padding: 20px 0px !important; /* 內邊距 */
        box-sizing: border-box !important; /* 確保內邊距不影響寬度 */
        background: white !important; /* 白色背景 */
        z-index: 1000 !important; /* 確保在其他元素之上 */
        outline-offset: -0.5px; /* 控制 outline 与目标的偏移量 */
        border-radius: unset !important; /* 移除圓角邊框 */
        border-top: #000 solid 1px !important; /* 上邊框 */
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu .container{
        padding-left: 0.75rem;
    }
}

/* 平板（<=992px） */
@media (max-width: 992px) {
    .navbar{
        padding: 0 !important; /* 調整 navbar 的 padding */
    }

    .searchType{
        height: 5rem;
    }

    #navbarNavSearch{
        border-top: black solid 1px;
        width: 100%;
        height: 5rem;
    }
    
    #navbarNav{
        border-top: black solid 1px;
    }
    
    .navbar .dropdown-menu {
        border-bottom: #ececee solid 1px;
        border-radius: unset !important; /* 移除圓角邊框 */
    }

    .dropdown-menu:not(.show) {
        display: none; /* 隱藏下拉選單 */
    }

    .me-auto{
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .band-container {
        width: 100%;
    }

    .navbar-brand img{
        height: 34px !important;
    }

    .navbar .container{
        padding: 0; /* 調整 navbar 的 padding */
        max-width: none !important;
    }

    .nav-item .nav-link:not(.show){
        color: #000 !important; /* 黑色文字 */
    }
    
    .nav-item .nav-link{
        color: #000 !important; /* 黑色文字 */
        text-decoration: none !important; /* 移除下劃線 */
    }
    
    .nav-item .dropdown-header i{
        transition: transform 0.3s ease;
    }
    
    .nav-item .dropdown-header:not(.show) i{
        transform: rotateX(180deg);
    }

    .navbar {
        padding: 15px 30px;
    }

    .navbar-brand {
        font-size: 1.25rem;
        margin-right: 20px;
    }

    .band-container{
        padding: 1rem 1.5rem 1rem 2rem;
    }

    .navbar-nav:last-child{
        margin-top: 1vw;
        margin-left: 6vw !important;
    }

    .nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .dropdown-menu {
        width: 100%;
        padding: 10px 10px 10px 0;
    }

    .dropdown-header {
        font-size: 2rem;
        padding-right: 2rem;
    }

    .dropdown-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .dropdown-item-description {
        font-size: 0.625rem;
    }

    .dropdown-menu .dropdown-item{
        font-size: 21px;
    }
    
    .whats-hot-section{
        margin-left: 3rem;
    }

    .whats-hot-section .dropdown-header{
        padding-top: 0 !important;
    }
}

/* 小平板或大手機（<=768px） */
@media only screen and (max-width: 768px) {
    .band-container{
        padding: 13px 10px 13px 30px;
    }

    .dropdown-header{
        font-size: 1rem;
        padding-right: 1.5rem;
    }

    .whats-hot-section{
        margin-left: 0;
        margin-top: 1rem;
    }

    .navbar-nav:last-child{
        margin-left: 4vw !important;
    }
}

/* 小型手機（<=576px） */
@media (max-width: 576px) {
    .band-container{
        padding-left: 20px;
    }

    .navbar {
        padding: 10px 0px 0px 0px;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
        margin-right: 3vw;
    }
    
    .dropdown-header{
        padding-right: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .device-placeholder {
        width: 200px;
        height: 260px;
        margin-top: 20px;
    }
}

/* #region -----搜尋區塊樣式----- */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 22.5vw;
    width: 75%;
    height: auto;
    background-color: #F5F5F5;
    z-index: 1050;
    padding: 30px;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px;
    font-size: 1.125rem; /* 18px / 16 = 1.125rem */
    border: none;
    border-radius: 5px;
    background-color: #F5F5F5;
}

.search-input:focus {
    outline: none;
    /* TODO DEBUG */
    /* background-color: #F5F5F5; */
}

.search-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
    margin-right: 20px;
    color: black;
}

.search-buttons i {
    font-size: 1.5rem; /* 24px / 16 = 1.5rem */
    cursor: pointer;
}

.searchType{
    background: #F5F5F5;
    height: 5.3rem !important;
}

.search-buttons .bi {
    font-size: 1.5rem;
    color: #000;
}

@media (max-width: 768px) {
    .search-buttons .bi {
        font-size: 1.2rem;
        color: #000;
    }
    
    /* 沒新增這行，手機板搜尋圖示會不見 */
    .navbar-toggler{
        color: #000;
    }
}
/* #endregion */
/* #endregion */

/* #region -----下方 footer 樣式----- */
.footer {
    flex-shrink: 0;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0 15px 0;
    background-color: #000;
}

.footer-container {
    max-width: 93%;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5vw 0 15px;
    font-size: 18px;
    font-family: "Funnel Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.footer-links a:hover {
    text-decoration: none;
}

.footer-links a:last-child {
    margin-right: 0;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.footer-copyright span {
    color: white;
    font-size: 16px;
    font-family: "Funnel Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* 平板（<=992px） */
@media (max-width: 992px) {
    .footer {
        padding: 40px 0;
    }

    .footer-container {
        padding: 0;
    }
}

/* 小型手機（<=576px） */
@media (max-width: 576px) {
    /* 調整 footer 整體內邊距 */
    .footer {
        padding: 0 0;
    }

    /* 確保容器寬度適應 */
    .footer-container {
        max-width: 100%; /* 確保容器寬度不超出螢幕 */
        margin: 2vh auto; /* 減少外邊距，從 8vh 調整為 4vh */
    }

    /* 調整 footer 連結區域 */
    .footer-links {
        display: flex;
        flex-direction: column; /* 改為垂直排列 */
        align-items: center; /* 確保內容置中 */
        gap: 15px; /* 連結之間的垂直間距，使用固定像素以確保一致性 */
    }

    /* 調整連結樣式 */
    .footer-links a {
        margin: 0;
        font-size: 1.25rem; /* 縮小字體大小，從 1.5rem (24px) 調整為 1rem (16px) */
        line-height: 1.5; /* 增加行高，提升可讀性 */
    }

    /* 調整版權宣告樣式 */
    .footer-copyright {
        margin-top: 20px;
        padding-top: 15px;
    }

    .footer-copyright span {
        font-size: 12px;
        line-height: 1.4;
    }
}
/* #endregion */