/* 全局樣式 */
:root {
    /* 主色调系 */
    --main-color: #f08234;
    --primary-color: #f08234;
    --primary-dark: #d6732a;
    --primary-light: #f8a366;

    /* 辅助色调 */
    --secondary-color: #2c5aa0;
    --secondary-light: #4a7bc8;

    /* 中性色调 */
    --text-color: #333;
    --text-light: #6c757d;
    --text-lighter: #9ca3af;

    /* 背景色调 */
    --background-color: #f8f9fa;
    --background-light: #ffffff;
    --background-dark: #f1f3f4;

    /* 统一阴影系统 */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);

    /* 主色阴影 */
    --shadow-primary-sm: 0 2px 8px rgba(240, 130, 52, 0.15);
    --shadow-primary-md: 0 4px 10px rgba(240, 130, 52, 0.2);
    --shadow-primary-lg: 0 2px 8px rgba(240, 130, 52, 0.1);

    --container-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
}

/* 滚动进度条 */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #f08234, #ff9f5a);
    z-index: 1001;
    transition: width 0.1s ease;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-family: 'Noto Sans TC', Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}

.pc {
    display: block !important;
}

.mb {
    display: none !important;
}

.container {
    width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部信息栏 */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
}

.top-bar-content span .layui-icon {
    font-size: 14px;
    padding-top: 2px;
}

/* 导航栏 */
.header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(240, 130, 52, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow-primary-lg);
    border-bottom: 1px solid rgba(240, 130, 52, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* 移除旧的logo样式 */

.navbar>ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.navbar>ul>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 25px;
    margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.dropdown-toggle.nav-link::after {
    left: calc(50% - 6px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 40%;
}

/* 下拉菜单样式 */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333;
}

.dropdown:hover .dropdown-toggle i,
.dropdown-toggle i.rotated {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.dropdown>ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    /* padding: 10px 0; */

}

.long-dropdown>ul {
    min-width: 250px;
}

.short-dropdown>ul {
    min-width: 150px;
}

.header.scrolled .dropdown>ul {
    border: 1px solid rgba(240, 130, 52, 0.2);
    border-top: none;
}

.dropdown:hover>ul,
.dropdown>ul.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.dropdown>ul>li:last-child {
    border-bottom: none;
}

.dropdown>ul>li>a {
    color: #333;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 400;
    position: relative;
    width: 100%;
}

.dropdown>ul>li:last-child,
.dropdown>ul>li:last-child a {
    border-radius: 0 0 5px 5px;
}


.dropdown>ul>li>a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 下载APP按钮样式 */
.download-app-dropdown {
    position: relative;
}

.download-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f08234 0%, #e67e22 100%) !important;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(240, 130, 52, 0.3);
}

.download-app-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 130, 52, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.download-app-btn i {
    font-size: 16px;
    padding-top: 2px;
}

/* 下载APP下拉菜单 */
.download-app-menu {
    position: absolute;
    top: 100%;
    left: -35px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid rgba(240, 130, 52, 0.1); */
    margin-top: 10px;
    overflow: hidden;
}

.download-app-dropdown:hover .download-app-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下载选项样式 */
.download-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 50px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 130, 52, 0.1);
}

.download-option:last-child {
    border-bottom: none;
}

.download-option:hover {
    background: linear-gradient(135deg, #f08234 0%, #e67e22 100%);
    color: white;
}

.download-option i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.download-option span {
    font-weight: 600;
    font-size: 14px;
}

.download-option small {
    font-size: 11px;
    opacity: 0.8;
    margin-left: auto;
}

/* 添加小箭头指示器 */
.download-app-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}

/* 下载提示消息样式 */
.download-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f08234 0%, #e67e22 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(240, 130, 52, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.download-message.show {
    transform: translateX(0);
}

.download-message i {
    font-size: 16px;
}

/* 点击状态样式 */
.download-option.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    background: var(--primary-color);
    color: white;
}

.user-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.my-section {
    padding: 100px 0;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .navbar>ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }

    .navbar>ul.active {
        display: flex;
    }

    .navbar>ul li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .dropdown>ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        margin-left: 20px;
    }

    .dropdown>ul>li>a {
        color: #333;
        padding: 10px 20px;
    }

    .dropdown>ul>li>a:hover {
        background: #f08234;
        color: white;
        padding-left: 25px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .download-app-dropdown {
        display: none;
    }
}

/* 通用区域样式 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-flex;
    width: auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.section-title i {
    font-size: 40px;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.section-title span {
    position: absolute;
    top: 2px;
    left: -55px;
}

/* Footer 樣式 */
.footer {
    background: #fff;
    color: #ffffff;
    padding: 80px 0 0 0;
    position: relative;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo 樣式 */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 8px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.footer-logo-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.footer-column>p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    /* max-width: 300px; */
}

/* Footer 社交媒體 */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 130, 52, 0.3);
}

.social-icon i {
    font-size: 20px;
}

/* Footer 標題 */
.footer-heading {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer 連結 */
.footer-column>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column>ul li {
    margin-bottom: 15px;
}

.footer-column>ul a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column>ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer 聯絡信息 */
.footer-contact-info {
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.contact-item a {
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    min-width: 20px;
}

.contact-item span {
    line-height: 1.4;
}

/* Footer CTA 按鈕 */
.footer-cta-btn {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    background: var(--primary-color);
    color: #fff;
    width: 55%;
}

.footer-cta-btn i {
    margin-left: 10px;
    font-size: 18px;
}

/* Footer 底部 */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: #666;
    font-size: 14px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* 返回頂部按鈕 */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 130, 52, 0.3);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 130, 52, 0.4);
}

.scroll-top-btn i {
    font-size: 20px;
    color: #fff;
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
    }

    .scroll-top-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-column>p {
        text-align: center;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
    }

    .scroll-top-btn i {
        font-size: 16px;
    }
}

/* 右下角固定下载按钮 */
.fixed-download-buttons {
    position: fixed;
    right: 0px;
    bottom: 120px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.fixed-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f08234 0%, #e67e22 100%);
    color: white;
    text-decoration: none;
    width: 50px;
    height: 50px;
    box-shadow: 0 8px 25px rgba(240, 130, 52, 0.3);
    transition: all 0.3s ease;
    border: none;
    transform: translateX(140px);
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid #fff;
    border-radius: 5px 0 0 0;
}

.fixed-download-btn.show {
    opacity: 1;
    visibility: visible;
    animation: slideInRight 0.6s ease forwards;
}

.fixed-download-btn:last-child {
    border-bottom: none;
    border-radius: 0 0 0 5px;
}

.fixed-download-btn:hover {
    transform: translateX(0);
    box-shadow: 0 12px 35px rgba(240, 130, 52, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.fixed-download-btn i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.fixed-download-btn span {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* 点击状态 */
.fixed-download-btn.clicked {
    transform: translateX(0) scale(0.95);
    transition: transform 0.1s ease;
}

/* 动画效果 */
@keyframes slideInRight {
    from {
        transform: translateX(140px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 固定下载按钮响应式设计 */
@media (max-width: 768px) {
    .fixed-download-buttons {
        right: 15px;
        bottom: 80px;
        gap: 12px;
    }

    .fixed-download-btn {
        padding: 12px 16px;
        min-width: 150px;
        transform: translateX(120px);
        opacity: 0;
        visibility: hidden;
    }

    .fixed-download-btn.show {
        opacity: 1;
        visibility: visible;
    }

    .fixed-download-btn:hover {
        transform: translateX(0);
    }

    .fixed-download-btn i {
        font-size: 18px;
        width: 20px;
    }

    .fixed-download-btn span {
        font-size: 13px;
    }
}

/* Footer应用下载区域样式 */
.footer-app-download {
    margin-top: 20px;
    text-align: left;
}

.footer-app-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-app-platforms {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 20px;
}

.platform-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-app-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-app-buttons>div{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-app-buttons>div>span{
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
    font-size: 15px;
    font-weight: 400;
    justify-content: center;
}

.footer-app-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.footer-app-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-app-btn span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.footer-app-btn.clicked {
    transform: translateY(-2px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Footer应用下载区域响应式设计 */
@media (max-width: 768px) {
    .footer-app-download {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .footer-app-title {
        font-size: 18px;
    }

    .footer-app-platforms {
        flex-direction: column;
        gap: 10px;
    }

    .footer-app-buttons {
        gap: 12px;
    }

    .footer-app-btn {
        padding: 12px 20px;
    }

    .footer-app-btn span {
        font-size: 13px;
    }
}

.play-btn-wrapper {
    position: absolute;
    top: -10px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(240, 130, 52, 0.3);
    
}

.play-btn-wrapper .play-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(240, 130, 52, 0.5);
}

.play-btn:active {
    transform: scale(0.95);
}

/* 镜面按钮公共样式 */
.btn-mirror {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: none;

    /* 镜面效果基础样式 */
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

}

.btn-mirror .layui-icon {
    font-size: 12px;
    margin-top: 1px;
}

.btn-mirror::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-mirror::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-mirror:hover::before {
    left: 100%;
}

.btn-mirror:hover::after {
    opacity: 1;
}

.btn-mirror:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-mirror span,
.btn-mirror i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-mirror i {
    transition: all 0.3s ease;
}

.btn-mirror:hover i {
    transform: translateX(5px);
}

/* 主要按钮样式 */
.hero-cta {
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta:hover {
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* 次要按钮样式 */
.btn-mirror.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-mirror.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff;
}

/* 成功按钮样式 */
.btn-mirror.btn-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(76, 175, 80, 0.7) 100%);
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-mirror.btn-success:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(76, 175, 80, 0.9) 100%);
    color: #ffffff;
}

/* 危险按钮样式 */
.btn-mirror.btn-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9) 0%, rgba(244, 67, 54, 0.7) 100%);
    color: #ffffff;
    color: #ffffff;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-mirror.btn-danger:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 1) 0%, rgba(244, 67, 54, 0.9) 100%);
    color: #ffffff;
}

/* ===== 聯繫我們樣式 ===== */

/* 聯繫我們區塊 */

.contact-wrapper {
    margin: 0 auto;
}

.contact-banner-seciton{
    position: relative;
    overflow: hidden;
}

.contact-banner-seciton.contact-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-banner-seciton.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-seciton.contact-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-seciton .contact-info-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.contact-banner-seciton .contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-banner-seciton .contact-info-content>p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-banner-seciton .contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-banner-seciton .contact-header i {
    font-size: 32px;
    color: #f08234;
}

.contact-banner-seciton .contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.contact-banner-seciton .contact-info-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f08234;
}

.contact-banner-seciton.whatsapp-info {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-banner-seciton.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-banner-seciton.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-banner-seciton.social-icon:hover {
    color: #ffffff;
    background: #f08234;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 130, 52, 0.3);
}

.contact-banner-seciton {
    position: relative;
}

.contact-banner-seciton::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
    position: absolute;
}

.contact-wrapper {
    z-index: 1;
    position: relative;
}

/* 響應式設計 - 聯繫我們 */
@media (max-width: 768px) {
    .contact-style-1 {
        height: 400px;
        margin-bottom: 40px;
    }

    .contact-style-1 .contact-content h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .contact-style-1 .contact-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .contact-banner-seciton.contact-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-banner-seciton .contact-info-content>p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .contact-banner-seciton.contact-header h2 {
        font-size: 28px;
    }

    .contact-banner-seciton .contact-info-content h3 {
        font-size: 24px;
    }

    .contact-banner-seciton.whatsapp-info {
        font-size: 16px;
    }

    .contact-banner-seciton.social-icons {
        gap: 20px;
    }

    .contact-banner-seciton.social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-style-1 {
        height: 350px;
    }

    .contact-style-1 .contact-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-style-1 .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-banner-seciton.contact-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-banner-seciton .contact-info-content>p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-banner-seciton.contact-header h2 {
        font-size: 24px;
    }

    .contact-banner-seciton .contact-info-content h3 {
        font-size: 20px;
    }

    .contact-banner-seciton.whatsapp-info {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-banner-seciton.social-icons {
        gap: 15px;
    }

    .contact-banner-seciton.social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.section-header p {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
    font-style: italic;
}

/* 背景裝飾元素 */
.philosophy-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.08), rgba(240, 130, 52, 0.03));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(240, 130, 52, 0.1), transparent);
    height: 1px;
    animation: slideIn 6s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    top: 25%;
    left: -100px;
    animation-delay: 1s;
}

.line-2 {
    width: 150px;
    bottom: 30%;
    right: -75px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* banner-start */
.hero-section {
    position: relative;
    height: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section.video-banner {
    height: calc(100vh - 104px);
}

.hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .hero-background video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.hero-section .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.hero-section .hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-section .hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-section .hero-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}
/* banner-end */

/* 規格與細節 -start */
.specification-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.specification-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.specification-section .section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 產品圖片展示 */
.product-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.product-item {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-visual {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 130, 52, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.product-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-visual video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-visual:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(240, 130, 52, 0.3);
    z-index: 2;
}

.brand-name {
    text-transform: lowercase;
    letter-spacing: 1px;
}

.product-caption {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-top: 10px;
}

/* 規格信息 */
.specification-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.specification-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.specification-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spec-group {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.spec-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.spec-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(240, 130, 52, 0.2);
}

.spec-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* 過濾器列表 */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: rgba(240, 130, 52, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.filter-item:hover {
    background: rgba(240, 130, 52, 0.1);
    transform: translateX(5px);
}

.filter-number {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.filter-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 規格信息 */
.spec-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item.highlight {
    background: rgba(240, 130, 52, 0.05);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(240, 130, 52, 0.2);
}

.info-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-align: right;
}

.info-value.large {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(240, 130, 52, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 10px;
}

.note-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-note span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 規格圖片 */
.spec-image {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(240, 130, 52, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dimension-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dimension-img:hover {
    transform: scale(1.05);
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .product-gallery {
        gap: 25px;
        margin-bottom: 70px;
    }
    
    .product-visual {
        padding: 25px;
    }
    
    .product-img {
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .specification-section {
        padding: 80px 0;
    }
    
    .specification-section .section-header {
        margin-bottom: 30px;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .product-visual {
        padding: 20px;
    }
    
    .product-img {
        max-height: 150px;
    }
    
    .product-caption {
        font-size: 14px;
    }
    
    .specification-details {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .specification-left,
    .specification-right {
        gap: 25px;
    }
    
    .spec-group {
        padding: 20px;
    }
    
    .spec-title {
        font-size: 18px;
    }
    
    .filter-item {
        padding: 10px 14px;
    }
    
    .filter-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .filter-name {
        font-size: 14px;
    }
    
    .info-label {
        font-size: 14px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .info-value.large {
        font-size: 20px;
    }
    
    .dimension-img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .specification-section {
        padding: 60px 0;
    }
    
    .specification-section .section-header p {
        font-size: 16px;
    }
    
    .product-gallery {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .product-visual {
        padding: 15px;
    }
    
    .product-img {
        max-height: 120px;
    }
    
    .product-badge {
        padding: 4px 8px;
        font-size: 10px;
        top: 10px;
        right: 10px;
    }
    
    .product-caption {
        font-size: 13px;
    }
    
    .specification-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specification-left,
    .specification-right {
        gap: 20px;
    }
    
    .spec-group {
        padding: 16px;
    }
    
    .spec-title {
        font-size: 16px;
        gap: 8px;
    }
    
    .spec-icon {
        width: 20px;
        height: 20px;
    }
    
    .filter-item {
        padding: 8px 12px;
        gap: 12px;
    }
    
    .filter-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .filter-name {
        font-size: 13px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-value {
        text-align: left;
    }
    
    .info-value.large {
        font-size: 18px;
    }
    
    .spec-image {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .dimension-img {
        max-width: 150px;
    }
}
/* 規格與細節 -end */

/* 產品展示視頻 -start */
#productVideo .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#productVideo video{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 130, 52, 0.1);
}
/* 產品展示視頻 -end */

/* 分頁 -start */
#demo-laypage-theme-1 {
    display: flex;
    justify-content: center;
    padding: 20px 0 60px 0;
    margin: 0 auto;
}

.layui-disabled,
.layui-disabled:active {
    background-color: #ffffff !important;
}

.layui-laypage a,
.layui-laypage button,
.layui-laypage input,
.layui-laypage select,
.layui-laypage span {
    border: none;
}

.layui-laypage a,
.layui-laypage span {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 1px;
}

.layui-laypage a:hover {
    color: var(--main-color);
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    border-radius: 7px;
    background-color: var(--main-color);
}
/* 分頁 -end */

/* 固定在屏幕右下角的按钮们 -start */
.base-right-btn {
    background-color: var(--main-color) !important;
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px !important;
    color: white !important;
    position: fixed;
    z-index: 98;
}

#all-whatsapp {
    bottom: 200px;
}

#all-top {
    bottom: 150px;
    display: none;
}

#all-top.cur {
    display: flex !important;
}
/* 固定在屏幕右下角的按钮们 -end */

/* 移動端導航彈出層 -start */
.nav-modal {
    display: none;
}

/* 移动端下拉菜单样式 */
.nav-modal .nav-list li.has-dropdown {
    position: relative;
}

.nav-modal .nav-list li.has-dropdown.active .dropdown-arrow {
    transform: rotate(-180deg);
}

.nav-modal .nav-list li.has-dropdown .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow path {
    fill: #626262;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu {
    display: none;
    padding-left: 16px;
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: #666666;
    font-size: 14px;
    line-height: 32px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
}

@keyframes shake-vertical {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-5px);
    }
}
/* 移動端導航彈出層 -end */

/* 聯繫我們banner -start */
.contact-section {
    padding: 0;
    background-image: url(/assets/image/contact-1.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 聯繫我們banner -end */

/* 聯繫方式樣式 -start */
#contactSection {
    background-image: url('../image/block-bg-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#contactSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../image/video-v1-shape2.png');
    background-size: auto 100%;
    background-position: right;
    background-repeat: no-repeat; */

    /* background-color: transparent;
    background-image: linear-gradient(180deg, #0E0701 0%, #0E0701 100%);
    opacity: 0.6; */

    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* #contactSection:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../image/video-v1-shape1.png');
    background-size: auto 100%;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 3;
} */

#contactSection .my-container {
    padding: 100px 0;
    position: relative;
    z-index: 1;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

/* #contactSection .my-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc((50vw - 50%) * -1);
    width: calc((50vw - 50%) + 50%);
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
} */

#contactSection .section-sub-title,
#contactSection .contact-info {
    position: relative;
    z-index: 2;
}

#contactSection .section-title,
#contactSection .section-description {
    color: #fff;
    position: relative;
    z-index: 2;
}

#contactSection .section-description a {
    color: #fff;
    display: inline-block;
}
 

#contactSection .section-title {
    color: #ffffff;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    -webkit-text-fill-color: #ffffff;
}

#contactSection .section-sub-title {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 8px;
}

#contactSection .my-contact {
    position: relative;
    z-index: 2;
    display: flex; 
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 60px 0;
}

/* Left Wrapper Styling */

.section-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.section-description p {
    margin-bottom: 10px;
    text-align: center;
}

/* Right Wrapper Styling */

#contactSection .contact-info {
    display: flex;
    gap: 15px;
}

#contactSection .contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

#contactSection .contact-item img {
    width: 30px;
    height: 30px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .contact-item-title {
        font-size: 16px;
    }

    #contactSection .contact-item-content {
        font-size: 14px;
    }
}

/* 聯繫方式樣式 -end     */

/* 分頁樣式 -start */
#pages {
    display: flex;
    justify-content: center;
    padding: 40px 0 60px 0;
    margin: 0 auto;
}

#pages .pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

#pages .pagination li {
    display: inline-block;
}

#pages .pagination li a,
#pages .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #333;
}

#pages .pagination li a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 130, 52, 0.3);
}

#pages .pagination li.active span {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(240, 130, 52, 0.3);
}

#pages .pagination li.disabled span {
    background-color: #f5f5f5;
    color: #999;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

#pages .pagination li.disabled:hover span {
    transform: none;
    box-shadow: none;
}

/* 前一頁/後一頁按鈕樣式 */
#pages .pagination li:first-child a,
#pages .pagination li:first-child span,
#pages .pagination li:last-child a,
#pages .pagination li:last-child span {
    font-size: 16px;
    font-weight: 700;
}

/* 響應式設計 */
@media (max-width: 768px) {
    #pages {
        padding: 30px 15px 50px 15px;
    }

    #pages .pagination {
        gap: 6px;
    }

    #pages .pagination li a,
    #pages .pagination li span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #pages {
        padding: 20px 10px 40px 10px;
    }

    #pages .pagination {
        gap: 4px;
    }

    #pages .pagination li a,
    #pages .pagination li span {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
        border-radius: 6px;
    }

    #pages .pagination li:first-child a,
    #pages .pagination li:first-child span,
    #pages .pagination li:last-child a,
    #pages .pagination li:last-child span {
        font-size: 14px;
    }
}
/* 分頁樣式 -end */