﻿@charset "utf-8";


/* ==================== 版權資訊 ==================== */
.footer_foot_design {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 6px 0;
    margin-top: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.footer_foot_design ul.copyright {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
}

.footer_foot_design ul.copyright li {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer_foot_design ul.copyright li.tel,
.footer_foot_design ul.copyright li:nth-child(2) {
    order: 1;
    text-align: left;
    flex: 1;
}

.footer_foot_design ul.copyright li.webdesign {
    order: 2;
    text-align: right;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer_foot_design a {
    color: #ffd700;
    text-decoration: none;
    transition: all .3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.footer_foot_design a:hover {
    color: white;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* ==================== 手機底部導航 ==================== */

.touch-navigation {
    display: none;
}

.body_footer {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    padding: 8px 0;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.body_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6b35);
    box-shadow: 0 1px 3px rgba(255, 140, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.body_footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
}

.body_footer ul li {
    flex: 1;
    max-width: 25%;
    text-align: center;
    padding: 4px 2px;
}

.body_footer ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.75rem;
    min-height: 50px;
    transition: all 0.3s ease;
}

.body_footer ul li a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.body_footer dl,
.body_footer dt,
.body_footer dd {
    margin: 0;
    padding: 0;
}

.body_footer dt img {
    width: 26px !important;
    height: 26px !important;
    margin-bottom: 4px !important;
    filter: brightness(1.0) contrast(1.3) !important;
    transition: all 0.3s ease !important;
    image-rendering: -webkit-optimize-contrast;
}

.body_footer a:hover dt img {
    filter: brightness(1.6) contrast(1.3) drop-shadow(0 0 4px rgba(255,215,0,0.3)) !important;
    transform: scale(1.12) !important;
}

.body_footer dd {
    font-size: 0.7rem;
    color: #bdc3c7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ==================== 響應式設計 - 頁尾區域 ==================== */

/* 手機版 */
@media (max-width: 768px) {
    /* 隱藏 footer_foot_design */
    .footer_foot_design { display: none !important; }
    

    /* 行動裝置顯示 Mobile Toolbar */
    .touch-navigation { display: block !important; }
    body { padding-bottom: 70px !important; }

}

/* 小螢幕手機優化 */


/* 大螢幕 - 隱藏 Mobile Toolbar */
@media (min-width: 769px) {
    .touch-navigation { display: none !important; }
    body { padding-bottom: 0 !important; }
}

/* 高對比模式支持 */
@media (prefers-contrast: high) {
    .footer_foot_design { background: #000; }
}

/* 可訪問性優化 */

.footer_foot_design a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* 列印樣式 */
@media print {
    .touch-navigation {
        display: none !important;
    }
}

        /* 重置链接默认样式并设置白色 */
        .webdesign a {
            color: white !important;
            text-decoration: none; /* 可选：移除下划线 */
        }
        
        .webdesign a:hover {
            text-decoration: underline; /* 可选：添加悬停效果 */
        }
 