@charset "utf-8";
/* CSS Document */


  /* 分享独名空间 CSS */
        #custom-header-share-bar {
            width: 100%;
            background-color: #ffffff;
            border-bottom: 1px solid #ffffff;
            font-family: Arial, sans-serif;
            display: block;
        }

        /* 移动端不显示 */
        @media (max-width: 1024px) {
            #custom-header-share-bar { display: none !important; }
        }

        #custom-header-share-bar .ts-wrapper {
            max-width: 1400px; /* 宽度要求 */
            margin: 0 auto;
            height: 55px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
        }

        #custom-header-share-bar .ts-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        #custom-header-share-bar .ts-site-name {
            font-weight: bold;
            font-size: 20px;
            color: #222;
        }

        #custom-header-share-bar .ts-email-link {
            color: #666;
            text-decoration: none;
            font-size: 14px;
        }

        #custom-header-share-bar .ts-email-link:hover { color: #007bff; }

        #custom-header-share-bar .ts-right {
            display: flex;
            gap: 8px;
        }

        /* 分享按钮通用样式 */
        #custom-header-share-bar .share-item {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 4px;
            background: #f1f1f1;
            color: #555;
            transition: all 0.2s ease;
            font-size: 16px;
        }

        /* 悬停变色逻辑 - 使用各平台品牌色 */
        #custom-header-share-bar .icon-facebook:hover { background: #3b5998; color: #fff; }
        #custom-header-share-bar .icon-x:hover { background: #000; color: #fff; }
        #custom-header-share-bar .icon-whatsapp:hover { background: #25d366; color: #fff; }
        #custom-header-share-bar .icon-pinterest:hover { background: #bd081c; color: #fff; }
        #custom-header-share-bar .icon-linkedin:hover { background: #0077b5; color: #fff; }
        #custom-header-share-bar .icon-reddit:hover { background: #ff4500; color: #fff; }
        #custom-header-share-bar .icon-telegram:hover { background: #0088cc; color: #fff; }
        #custom-header-share-bar .icon-line:hover { background: #00c300; color: #fff; }
        #custom-header-share-bar .icon-messenger:hover { background: #0084ff; color: #fff; }
        #custom-header-share-bar .icon-email:hover { background: #777777; color: #fff; }
        #custom-header-share-bar .icon-tumblr:hover { background: #35465c; color: #fff; }
        #custom-header-share-bar .icon-copy:hover { background: #333; color: #fff; }
		
		
		 /* 导航----隔离空间样式 */
        #nav-module-v2 {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #ffffff;
            position: sticky; /* 桌面和移动端跟随移动 */
            top: 0;
            z-index: 9999;
            font-family: "Microsoft YaHei", sans-serif;
        }

        #nav-module-v2 .daohang-container {
            max-width: 1400px; /* 宽度 1400px */
            margin: 0 auto;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            box-sizing: border-box;
        }

        #nav-module-v2 .daohang-logo {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }

        /* 菜单右对齐 */
        #nav-module-v2 .daohang-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
        }

        #nav-module-v2 .daohang-nav-item {
            position: relative;
            display: flex;
            align-items: center;
        }

        #nav-module-v2 .daohang-nav-link {
            padding: 0 20px;
            text-decoration: none;
            color: #444;
            font-size: 16px;
            transition: color 0.3s;
            display: block;
        }

        #nav-module-v2 .daohang-nav-link:hover { color: #b58d3e; }
        #nav-module-v2 .daohang-arrow { font-size: 10px; margin-left: 4px; }

        /* 二级菜单逻辑 */
        #nav-module-v2 .daohang-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 180px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            list-style: none;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border-top: 2px solid #b58d3e;
        }

        #nav-module-v2 .daohang-nav-item:hover > .daohang-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #nav-module-v2 .daohang-submenu-link {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #666;
            font-size: 14px;
            transition: background 0.2s;
        }

        #nav-module-v2 .daohang-submenu-link:hover {
            background: #f8f8f8;
            color: #b58d3e;
        }

        /* 移动端汉堡样式 */
        #nav-module-v2 .daohang-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10001;
        }

        #nav-module-v2 .daohang-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        @media (max-width: 1024px) {
            #nav-module-v2 .daohang-toggle { display: flex; }

            #nav-module-v2 .daohang-menu {
                position: fixed;
                top: 0;
                right: -100%; /* 侧边抽屉 */
                width: 250px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding-top: 80px;
                transition: 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }

            #nav-module-v2 .daohang-menu.is-active { right: 0; }

            #nav-module-v2 .daohang-nav-item { flex-direction: column; align-items: flex-start; }

            #nav-module-v2 .daohang-nav-link {
                width: 100%;
                padding: 15px 25px;
                box-sizing: border-box;
            }

            #nav-module-v2 .daohang-submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none; /* 移动端默认折叠 */
                background: #fafafa;
                width: 100%;
            }
            
            #nav-module-v2 .daohang-nav-item.mobile-open .daohang-submenu { display: block; }

            /* 汉堡按钮变成 X */
            #nav-module-v2 .daohang-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            #nav-module-v2 .daohang-toggle.is-active span:nth-child(2) { opacity: 0; }
            #nav-module-v2 .daohang-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        }
		
		
		
		
		
		
		/* ========== 高端网站尾部模块 ========== */
.footer-module {
    width: 100%;
    margin: 60px 0 0 0;
    padding: 0;
    background-color: #1a1f2b;
    border-top: 1px solid #2d3340;
    clear: both;
}

/* 内容容器：强制居中 */
.footer-container {
    width: 85%;
    max-width: 1300px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 100px 0 80px;
}

/* 顶部品牌区 */
.footer-brand-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #2d3340;
    text-align: center;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #8a93a8;
    letter-spacing: 3px;
}

/* 多列链接区 */
.footer-links-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 70px;
    text-align: left;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 16px;
}

.footer-link-list a {
    color: #8a93a8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-link-list a:hover {
    color: #c8cedb;
}

/* 社交媒体 */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-social-link {
    color: #8a93a8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-social-link:hover {
    color: #c8cedb;
}

/* 底部版权区 */
.footer-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 45px;
    border-top: 1px solid #2d3340;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #6a7385;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #6a7385;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #8a93a8;
}

.footer-legal span {
    color: #3d4350;
    font-size: 0.85rem;
}

/* 返回顶部按钮 */
.footer-backtop {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: #2d3340;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    color: #c8cedb;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-backtop.show {
    opacity: 1;
    visibility: visible;
}

.footer-backtop:hover {
    background: #3d6b8c;
    color: #ffffff;
    transform: translateY(-3px);
}

/* 响应式 */
@media (max-width: 900px) {
    .footer-container {
        width: 90%;
        padding: 70px 0 50px;
    }
    .footer-links-area {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
    .footer-brand-area {
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom-area {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .footer-container {
        width: 88%;
        padding: 60px 0 40px;
    }
    .footer-links-area {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-logo {
        font-size: 1.8rem;
    }
    .footer-backtop {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

.footer-module * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


 /* 使用高度唯一的 ID 前缀 */
        #unique-scroll-top-module #js-back-to-top {
            display: none; /* 初始隐藏 */
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 10000; /* 确保在所有模块之上 */
            border: none;
            outline: none;
            background-color: #b58d3e; /* 建议使用你导航栏的金色系 */
            color: white;
            cursor: pointer;
            padding: 0;
            width: 45px;
            height: 45px;
            border-radius: 4px;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            line-height: 45px;
            text-align: center;
        }

        #unique-scroll-top-module #js-back-to-top:hover {
            background-color: #333; /* 悬停颜色 */
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }

        /* 简单的淡入动画 */
        @keyframes btt-fade-in {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #unique-scroll-top-module .btt-visible {
            display: block !important;
            animation: btt-fade-in 0.4s ease forwards;
        }