.table_cell{position: relative;display: table-cell;max-width: 100%;}
.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;}

.image-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;}

.hotspot {
  fill: transparent;
  stroke: transparent; 
  cursor: pointer;}

.hotspot:hover {}
.focus_js{color: #fff;
    width: 90%;
    padding-left: 10px;}
:root {
            --primary: #830100;
            --primary-light: #a80400;
            --primary-dark: #5c0000;
            --primary-bg: #fdf6f6;
            --primary-bg2: #f9eaea;
            --accent: #d4a017;
            --accent-light: #f5d76e;
            --text: #2d2d2d;
            --text-light: #6b6b6b;
            --text-muted: #999;
            --bg: #ffffff;
            --bg-gray: #f8f9fa;
            --bg-card: #ffffff;
            --border: #f0e0e0;
            --shadow: 0 2px 12px rgba(131, 1, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(131, 1, 0, 0.15);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;}

        body {
            font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden;}

        /* ========== 顶部导航 ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(131, 1, 0, 0.1);
            padding: 0 24px;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);}

        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);}

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
            text-decoration: none;}

        .nav-logo i {
            font-size: 24px;}

        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;}

        .nav-links a {
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);}

        .nav-links a:hover {
            background: var(--primary-bg);
            color: var(--primary);}

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
            padding: 4px;}

        /* ========== Hero 区域 ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #3a0000 100%);
            overflow: hidden;
            padding: 100px 24px 60px;}

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 80%, rgba(212,160,23,0.08) 0%, transparent 50%);
            animation: heroFloat 20s ease-in-out infinite;}

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--bg), transparent);}

        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg);}
            50% { transform: translate(-20px, 20px) rotate(2deg);}
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;}

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 8px 20px;
            border-radius: 50px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 28px;
            backdrop-filter: blur(8px);}

        .hero-badge i {
            color: var(--accent-light);}

        .hero-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;}

        .hero-title .highlight {
            color: var(--accent-light);
            position: relative;
            display: inline-block;}

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 8px;
            background: rgba(212,160,23,0.3);
            z-index: -1;
            border-radius: 4px;}

        .hero-subtitle {
            font-size: clamp(15px, 2vw, 18px);
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 40px;}

        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;}

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(212,160,23,0.4);}

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212,160,23,0.5);
            background: #e8b820;}

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(8px);}

        .btn-outline:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);}

        .hero-stats {
            display: flex;
            gap: 48px;
            justify-content: center;
            margin-top: 56px;
            flex-wrap: wrap;}

        .hero-stat {
            text-align: center;}

        .hero-stat-num {
            font-size: 36px;
            font-weight: 900;
            color: var(--accent-light);}

        .hero-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            margin-top: 4px;}

        /* 滚动提示 */
        .scroll-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-align: center;
            animation: bounce 2s infinite;}

        .scroll-hint i {
            display: block;
            font-size: 20px;
            margin-top: 4px;}

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0);}
            40% { transform: translateX(-50%) translateY(-10px);}
            60% { transform: translateX(-50%) translateY(-5px);}
        }

        /* ========== 分类导航 ========== */
        .category-nav {
            position: sticky;
            top: 110px;
            z-index: 999;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            overflow-x: auto;
            scrollbar-width: none;}

        .category-nav::-webkit-scrollbar {
            display: none;}

        .category-nav-inner {
            display: flex;
            gap: 4px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 0;}

        .category-tab {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            background: none;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--transition);}

        .category-tab i {
            font-size: 16px;}

        .category-tab:hover {
            background: var(--primary-bg);
            color: var(--primary);}

        .category-tab.active {
            background: var(--primary);
            color: #fff;}

        /* ========== 主内容区 ========== */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px 80px;}

        /* ========== 分类区块 ========== */
        .section {
            margin-bottom: 64px;
            scroll-margin-top: 140px;}

        .section-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--primary-bg2);}

        .section-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(131,1,0,0.3);}

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);}

        .section-count {
            margin-left: auto;
            background: var(--primary-bg);
            color: var(--primary);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;}

        /* ========== FAQ 卡片 ========== */
        .faq-grid {
            display: grid;
            gap: 16px;}

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);}

        .faq-item:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(131,1,0,0.2);}

        .faq-question {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 22px 24px;
            cursor: pointer;
            user-select: none;
            transition: var(--transition);}

        .faq-question:hover {
            background: var(--primary-bg);}

        .faq-number {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            flex-shrink: 0;}

        .faq-question-text {
            flex: 1;
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            padding-top: 6px;}

        .faq-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-bg);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: var(--transition);
            margin-top: 2px;}

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
            background: var(--primary);
            color: #fff;}

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            padding: 0 24px;}

        .faq-item.open .faq-answer {
            max-height: 2000px;
            padding: 0 24px 24px;}

        .faq-answer-inner {
            padding-top: 4px;
            padding-left: 52px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;}

        .faq-answer-inner p {
            margin-bottom: 12px;}

        .faq-answer-inner p:last-child {
            margin-bottom: 0;}

        .faq-answer-inner strong {
            color: var(--primary);
            font-weight: 600;}

        .faq-answer-inner a {
            color: var(--primary);
            text-decoration: underline;
            text-decoration-color: rgba(131,1,0,0.3);
            text-underline-offset: 3px;}

        .faq-answer-inner a:hover {
            text-decoration-color: var(--primary);}

        /* 提示框 */
        .tip-box {
            display: flex;
            gap: 12px;
            background: linear-gradient(135deg, #fff8e1, #fffde7);
            border-left: 4px solid var(--accent);
            padding: 14px 18px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 14px 0;}

        .tip-box i {
            color: var(--accent);
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 2px;}

        .tip-box .tip-content {
            font-size: 14px;
            color: #6d4c00;
            line-height: 1.7;}

        /* 信息框 */
        .info-box {
            display: flex;
            gap: 12px;
            background: var(--primary-bg);
            border-left: 4px solid var(--primary);
            padding: 14px 18px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 14px 0;}

        .info-box i {
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 2px;}

        .info-box .info-content {
            font-size: 14px;
            color: var(--primary-dark);
            line-height: 1.7;}

        /* 列表样式 */
        .custom-list {
            list-style: none;
            padding: 0;
            margin: 12px 0;}

        .custom-list li {
            position: relative;
            padding: 6px 0 6px 24px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;}

        .custom-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.7;}

        .custom-list li strong {
            color: var(--text);}

        /* 有序列表 */
        .num-list {
            list-style: none;
            padding: 0;
            margin: 12px 0;
            counter-reset: custom-counter;}

        .num-list li {
            position: relative;
            padding: 8px 0 8px 40px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            counter-increment: custom-counter;}

        .num-list li::before {
            content: counter(custom-counter);
            position: absolute;
            left: 0;
            top: 8px;
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: var(--primary-bg2);
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;}

        /* 电话链接 */
        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 4px 12px;
            background: var(--primary-bg);
            border-radius: 6px;
            font-size: 14px;
            transition: var(--transition);}

        .phone-link:hover {
            background: var(--primary);
            color: #fff;}

        /* 标签 */
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            background: var(--primary-bg);
            color: var(--primary);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            margin: 2px 4px 2px 0;}

        .tag.gold {
            background: #fff8e1;
            color: #b8860b;}

        .tag.green {
            background: #e8f5e9;
            color: #2e7d32;}

        .tag.blue {
            background: #e3f2fd;
            color: #1565c0;}

        /* ========== 社团展示 ========== */
        .club-category {
            margin-bottom: 20px;}

        .club-category-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            padding-left: 52px;}

        .club-category-title i {
            font-size: 16px;}

        .club-tags {
            padding-left: 52px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;}

        /* ========== 底部 CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius);
            padding: 48px 32px;
            text-align: center;
            margin-top: 48px;
            position: relative;
            overflow: hidden;}

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);}

        .cta-section .cta-content {
            position: relative;
            z-index: 1;}

        .cta-section h3 {
            font-size: 22px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 12px;}

        .cta-section p {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 24px;}

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 100px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;}

        .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            outline: none;
            background: rgba(255,255,255,0.95);}

        .cta-form button {
            padding: 14px 28px;
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 14px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;}

        .cta-form button:hover {
            background: #e8b820;
            transform: scale(1.05);}

        /* ========== Footer ========== */
        .footer {
            background: #1a1a1a;
            color: rgba(255,255,255,0.6);
            padding: 40px 24px 32px;
            text-align: center;}

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;}

        .footer-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;}

        .footer-logo span {
            color: var(--accent);}

        .footer p {
            font-size: 13px;
            margin-bottom: 8px;}

        .footer-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 16px;
            flex-wrap: wrap;}

        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);}

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

        /* ========== 回到顶部 ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(131,1,0,0.4);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;}

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;}

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(131,1,0,0.5);}

        /* ========== 搜索框 ========== */
        .search-container {
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 98;}

        .search-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 14px 24px;
            transition: var(--transition);
            box-shadow: var(--shadow);}

        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(131,1,0,0.12);}

        .search-box i {
            color: var(--primary);
            font-size: 18px;}

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            color: var(--text);
            background: transparent;}

        .search-box input::placeholder {
            color: var(--text-muted);}

        .search-results {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #fff;
            border-radius: var(--radius-sm);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            max-height: 420px;      /* ← 增大：容纳更多搜索结果 */
            z-index: 2000;          /* ← 大幅提升：确保浮于所有元素之上 */
            border: 1px solid rgba(131,1,0,0.1);  /* ← 新增：视觉边界更清晰 */
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);  /* ← 加深阴影：增强浮起感 */
            overflow-y: auto;
            display: none;}

        .search-results.active {
            display: block;}

        .search-result-item {
            padding: 12px 20px;
            cursor: pointer;
            border-bottom: 1px solid #f5f5f5;
            font-size: 14px;
            color: var(--text);
            transition: var(--transition);}

        .search-result-item:hover {
            background: var(--primary-bg);
            color: var(--primary);}

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

        .no-results {
            padding: 16px 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;}

        /* ========== 高亮动画 ========== */
        .highlight-match {
            background: rgba(212,160,23,0.3);
            padding: 0 2px;
            border-radius: 3px;}

        /* ========== 进度条 ========== */
        .progress-bar {
            position: fixed;
            top: 110px;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 1001;
            transition: width 0.1s;
            border-radius: 0 2px 2px 0;}

        /* ========== 响应式 ========== */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 16px;}

            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 16px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
                gap: 4px;}

            .nav-links.active {
                display: flex;}

            .nav-links a {
                padding: 12px 16px;
                font-size: 15px;}

            .nav-toggle {
                display: block;}

            .hero {
                min-height: 90vh;
                padding: 80px 16px 40px;}

            .hero-stats {
                gap: 24px;
                margin-top: 36px;}

            .hero-stat-num {
                font-size: 28px;}

            .category-nav {
                top: 60px;
                padding: 0 12px;}

            .category-tab {
                padding: 8px 14px;
                font-size: 13px;}

            .category-tab span {}

            .main-content {
                padding: 24px 16px 60px;}

            .section {
                margin-bottom: 40px;}

            .section-header {
                gap: 12px;
                margin-bottom: 20px;}

            .section-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
                border-radius: 12px;}

            .section-title {
                font-size: 19px;}

            .section-count {
                font-size: 12px;
                padding: 3px 10px;}

            .faq-question {
                padding: 18px 16px;
                gap: 12px;}

            .faq-number {
                width: 32px;
                height: 32px;
                font-size: 14px;
                border-radius: 8px;}

            .faq-question-text {
                font-size: 15px;
                padding-top: 4px;}

            .faq-toggle {
                width: 32px;
                height: 32px;}

            .faq-answer-inner {
                padding-left: 44px;
                font-size: 14px;}

            .club-category-title {
                padding-left: 44px;
                font-size: 14px;}

            .club-tags {
                padding-left: 44px;}

            .cta-section {
                padding: 36px 20px;}

            .cta-section h3 {
                font-size: 18px;}

            .cta-form {
                flex-direction: column;}

            .cta-form input,
            .cta-form button {
                width: 100%;}

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 42px;
                height: 42px;}

            .progress-bar {
                top: 60px;}

            .search-container {
                margin-bottom: 28px;}

            .tip-box,
            .info-box {
                padding: 12px 14px;}

            .tip-box .tip-content,
            .info-box .info-content {
                font-size: 13px;}
        }

        @media (max-width: 480px) {
            .hero-stats {
                gap: 16px;}

            .hero-stat-num {
                font-size: 24px;}

            .hero-actions {
                flex-direction: column;
                align-items: center;}

            .btn-primary,
            .btn-outline {
                width: 100%;
                max-width: 280px;
                justify-content: center;}
        }

        /* ========== 入场动画 ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;}

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);}

        /* ========== 复制提示 ========== */
        .copy-toast {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--primary);
            color: #fff;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(131,1,0,0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 2000;}

        .copy-toast.visible {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);}
footer .fl01 .center p {
    margin-top: 0;
    margin-bottom: 0rem;}
.w1320 {
    max-width: 1320px;
    margin: 0 auto;}
