/* 全局變量 */
:root {
    --primary-color: #1a1a1a;
    /* 绿色主题 */
    --secondary-color: #ffffff;
    /* 纯白色背景 */
    --accent-color: #1a1a1a;
    /* 中等绿色 - 用于悬停和强调 */
    --text-color: #333333;
    /* 主要文字颜色 */
    --light-text: #757a80;
    /* 浅灰色 - 次要文字 */
    --border-color: #ecf0f1;
    /* 浅灰色边框 */
    --transition: all 0.3s ease-in-out;
    --shadow: 0 2px 4px rgba(45, 90, 61, 0.1);
    --gray-dark: #e3e5ea;

    --family-font: 'DengXian', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', Helvetica, Arial, sans-serif;

    /* 金色主题变量 */
    --primary-gold: #FFCF70;
    --gold-dark: #FFB845;
    --primary-black: #000000;
}


.layui-form-checked[lay-skin=primary]>i {
    border-color: var(--primary-gold) !important;
    background-color: var(--primary-gold);
}

.layui-form-checkbox[lay-skin=primary]:hover>i {
    border-color: var(--primary-gold);
}

/* 社交按钮组样式 */
.social-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-button,
.wechat-button {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover,
.wechat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #333;
}

.whatsapp-button a,
.wechat-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
}

.whatsapp-button svg,
.wechat-button svg {
    transition: all 0.3s ease;
}

.whatsapp-button:hover svg,
.wechat-button:hover svg {
    transform: scale(1.1);
}

/* WeChat二维码样式 */
.wechat-qrcode {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 2px solid #ffcf70;
}

.wechat-qrcode::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ffcf70;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.wechat-qrcode.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.wechat-qrcode img {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 4px;
    margin-bottom: 8px;
}

.qr-tip {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.wechat-qrcode-layerPage {
    width: fit-content !important;
    height: fit-content !important;
    border-radius: 8px !important;
    border: 2px solid #ffcf70 !important;
    top: auto !important;
    left: auto !important;
    bottom: 18px !important;
    right: 88px !important;
}

.wechat-qrcode-layerPage::after {
    /* 三角形样式指向右边 */
    content: '';
    position: absolute;
    top: 50%;
    right: -21px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #ffcf70;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid transparent;
}

.layui-layer-shade {
    opacity: 0 !important;
}

/* 回到顶部按钮样式 */
.back-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #ffcf70;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 207, 112, 0.4);
    background: #ffd700;
}

.back-to-top-btn svg {
    transition: all 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: scale(1.1);
}

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

.back-to-top-btn.scrolling {
    pointer-events: none;
}

.back-to-top-btn.clicked {
    transform: translateY(-1px);
}

/* 社交按钮响应式设计 */
@media (max-width: 768px) {
    .social-buttons {
        right: 15px;
        bottom: 70px;
        gap: 10px;
    }
    
    .whatsapp-button,
    .wechat-button {
        width: 45px;
        height: 45px;
    }
    
    .wechat-qrcode {
        right: 55px;
        padding: 12px;
    }
    
    .wechat-qrcode img {
        width: 100px;
        height: 100px;
    }
    
    .qr-tip {
        font-size: 11px;
    }
    
    .back-to-top-btn {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        right: 10px;
        bottom: 60px;
        gap: 8px;
    }
    
    .whatsapp-button,
    .wechat-button {
        width: 40px;
        height: 40px;
    }
    
    .wechat-qrcode {
        right: 50px;
        padding: 10px;
    }
    
    .wechat-qrcode img {
        width: 80px;
        height: 80px;
    }
    
    .qr-tip {
        font-size: 10px;
    }
    
    .back-to-top-btn {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }
}

/* 字體 */
/* @font-face {
    font-family: 'DengXian';
    src: url('../fonts/dengxian/Deng.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'DengXian';
    src: url('../fonts/dengxian/Dengb.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
} */


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

/* 基礎樣式 */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--family-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* 字體加載狀態樣式 */
body.fonts-loading {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', Helvetica, Arial, sans-serif;
}

body.fonts-loaded {
    font-family: var(--family-font);
    transition: font-family 0.3s ease;
}

body.fonts-fallback {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', Helvetica, Arial, sans-serif;
}

ul {
    padding-left: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    /* border-bottom: 1px solid #e7e7e7; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled .main-navigation>ul>li>a {
    color: #fff;
}

.header.scrolled .logo {
    color: #fff;
}

.header.scrolled .login-btn a {
    color: #fff;
}

.header.scrolled .login-btn a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header.scrolled .login-btn a svg {
    fill: #fff;
}

.header.scrolled .mega-menu {
    background: #1a1a1a;
    border: 1px solid #333;
}

.header.scrolled .mega-menu .menu-text {
    color: #fff;
}

.header.scrolled .mega-menu li:hover .menu-text {
    color: #1a1a1a;
}

.header.scrolled .arrow {
    color: #fff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 65px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    width: 130px;
    height: auto;
    transition: var(--transition);
    font-size: 30px;
    font-weight: 500;
    margin-right: auto;
}

.logo image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0);
}

.header.scrolled .logo img {
    filter: brightness(1);
}

.login-btn {
    margin-left: 20px;
}

.login-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3e5ea;
    padding: 6px 16px;
    border-radius: 5px;
}

.login-btn a:hover {
    background-color: #f0f2f7;
}

.login-btn a svg {
    padding-bottom: 1px;
}

.login-btn a span {
    font-size: 16px;
}

.main-navigation {
    height: 100%;
    margin-right: auto;
}

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

.main-navigation>ul>li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.main-navigation>ul>li>a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.main-navigation>ul>li>a>.layui-icon {
    font-size: 13px;
    padding-top: 3px;
    margin-left: 5px;
}

.main-navigation>ul>li>a:hover {
    color: var(--primary-color);
}

.main-navigation>ul>li>a.active {
    color: var(--primary-color);
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 25px;
}



.mobile-menu-btn {
    display: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--primary-color);
    /* padding: 10px; */
    /* border-radius: 8px; */
    transition: all 0.3s ease;
    /* width: 44px;
    height: 44px; */
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

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



/* 子菜单样式 */
.mega-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-trigger:hover {
    color: var(--primary-color);
}

.arrow {
    margin-left: 8px;
    transition: all 0.3s ease;
}

/* 菜单容器 */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    display: flex;
    gap: 26px;
}

/* 
.mega-menu::after{
    content: '';
    width: 150px;
    height: 150px;
    background: url('/pc_static/images/menu-trangle.webp') left bottom no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 30px;
} */


.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

/* 菜单列样式 */
.menu-column {
    flex: 1;
}

.column-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.column-title .layui-icon {
    display: inline-block;
    transform: rotate(180deg) translateX(5px);
    transition: all 0.3s ease;
    font-size: 13px;
    padding-top: 3px;
    padding-right: 10px;
}

.column-title:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.column-title.active {
    color: var(--primary-color);
    text-decoration: none;
}

.column-title:hover .layui-icon {
    animation: turnIcon 1s ease-in-out infinite;
}

@keyframes turnIcon {

    0%,
    100% {
        transform: rotate(180deg) translateX(5px);
    }

    50% {
        transform: rotate(180deg) translateX(0);
    }
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.column-title:hover::after {
    width: 100%;
}

/* 子菜单项高级效果 */
.menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.menu-column ul li {
    position: relative;
    padding: 5px 15px;
}

.menu-column ul li:last-child {
    border-radius: 0 0 10px 10px;
}

.menu-column ul li:hover {
    background: #ffcf70;
}

.menu-column ul li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
}

.menu-column ul li a:hover {
    transform: translateX(5px);
}

.menu-column ul li a.active {
    text-decoration: none;
}

.menu-icon {
    font-size: 20px;
    margin-right: 12px;
    opacity: 0.7;
}

.menu-text {
    flex-grow: 1;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
}

.hover-line {
    position: absolute;
    left: 0;
    bottom: 50%;
    width: 5px;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    display: none;
}

.menu-column ul li a:hover .hover-line {
    display: block;
}

.menu-trangle {
    width: 100px;
    height: 100px;
    margin-top: 50px;
}

.menu-trangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.language-switch {
    position: relative;
    margin-left: 30px;
    padding: 6px 12px;
    border-radius: 5px;
    background-color: #1a1a1a; 
    color: #fff;
}

.language-trigger {
    text-decoration: none;
   
    transition: all 0.3s ease;
    font-size: 15px;
}


.header.scrolled .language-switch {
    color: #1a1a1a;
    background-color: #fff;
}













/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: var(--primary-color);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 0 10px rgba(31, 153, 104, 0.1); */
}

.footer-logo {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}




.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    text-align: left;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
    font-size: 15px;
}

/* 左侧：公司品牌区域 */
.footer-left {
    flex: 1;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.company-brand {
    padding-bottom: 20px;
}

.brand-logo {
    /* width: 300px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-wrapper {
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
}

.help-wrapper svg{
    margin-bottom: 2px;
}

.help-wrapper span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.help-wrapper:hover span {
    text-decoration: none;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-brand h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.company-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
    font-weight: 400;
}


.footer-section a:hover {
    color: var(--accent-color);
}

/* 中间：快速链接和服务区域 */
.footer-center {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.footer-nav,
.footer-services {
    min-width: 150px;
}

.footer-nav h4,
.footer-services h4 {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    position: relative;
}

/* .footer-nav h4::after,
.footer-services h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
} */

.footer-nav ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-services li {
    margin-bottom: 8px;
    position: relative;
}

.footer-nav a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    padding: 4px 0;
    position: relative;
}


.footer-nav a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 5px;
    height: 1px;
    background: #ffcf70;
    display: none;
}

.footer-nav a:hover,
.footer-services a:hover {
    color: #ffcf70;
    transform: translateX(5px);
}

.footer-nav a:hover::after,
.footer-services a:hover::after {
    display: block;
}

/* 右侧：联系信息区域 */
.footer-right {
    flex: 1;
    max-width: 300px;
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
    position: relative;
}

.contact-info h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.contact-item-location {
    align-items: flex-start;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 15px;
    width: 20px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    color: var(--primary-color);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}


.footer-section ul {
    padding-left: 20px;
}

.footer-section ul li {
    position: relative;
}

.footer-section ul li::before {
    content: '';
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
}

.footer-logo {
    height: auto;
    width: 180px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-section.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact-info i {
    color: rgba(255, 255, 255, 0.8);
    width: 16px;
}


.logo-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-list a {
    width: 70%;
    height: auto;
    object-fit: cover;
}

.logo-list a:hover {
    opacity: 0.7;
}

.logo-list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    /* gap: 20px; */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
}

.footer-links a:first-child {
    padding-left: 0;
}

.footer-links a:last-child::after {
    display: none;
}


.footer-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: #fff;
}

.powered-by {
    color: var(--primary-color);
    font-size: 13px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #ffcf70;
}

.back-to-top {
    background: var(--primary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}


.main-page {
    margin-top: 65px;
    /* min-height: calc(100vh - 80px - 400px); */
}

@media screen and (max-width: 1260px) {
    .main-navigation ul {
        display: none;
    }

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

/* 響應式設計 */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .main-navigation ul {
        gap: 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .slide-text h1 {
        font-size: 60px;
        letter-spacing: 6px;
    }

    .slide-text h2 {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .slide-text p {
        font-size: 20px;
    }
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes footerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes socialIconFloat {

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

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

/* Footer动画效果 */
.footer-left,
.footer-center,
.footer-right {
    animation: footerFadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-left {
    animation-delay: 0.1s;
}

.footer-center {
    animation-delay: 0.2s;
}

.footer-right {
    animation-delay: 0.3s;
}








/* Layui 分頁樣式 */
#pagination {
    padding: 40px 50px;
    /* background: #f8f9fa; */
    border-top: 1px solid #e9ecef;
    text-align: center;
}

/* 自定義layui分頁樣式 */
.layui-laypage a,
.layui-laypage span {
    background-color: white;
    color: var(--text-color);
    border: 1px solid #e9ecef;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.layui-laypage a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 37, 24, 0.3);
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.layui-laypage .layui-laypage-curr em {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.layui-laypage .layui-laypage-limits {
    color: var(--text-color);
}

.layui-laypage .layui-laypage-limits select {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    color: var(--text-color);
}

.layui-laypage .layui-laypage-limits select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.layui-laypage .layui-laypage-skip input {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    color: var(--text-color);
    width: 50px;
}

.layui-laypage .layui-laypage-skip input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.layui-laypage .layui-laypage-skip button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.layui-laypage .layui-laypage-skip button:hover {
    background-color: #1a4a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 37, 24, 0.3);
}


/* 標題 */
.title-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.title-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-header p {
    font-size: 16px;
    color: var(--light-text);
    margin: 20px 0;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 1px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(31, 153, 104, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}









/* 动画效果 */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

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

.contact-hero {
    background: url('/pc_static/images/header-bg-1.jpg') center center / cover no-repeat;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.contact-header h1 {
    font-size: 48px;
    line-height: 46px;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

