/* Extracted from html/公司地址.html style block 1 */
* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #1A428A;
            --primary-light: #2563EB;
            --primary-dark: #0F2654;
            --accent: #F59E0B;
            --accent-light: #FBBF24;
            --text-dark: #1E293B;
            --text-gray: #64748B;
            --bg-light: #F8FAFC;
            --bg-white: #FFFFFF;
            --border: #E2E8F0;
        }
        body {
            font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-white);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--primary-dark);
            font-size: 1.1rem;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .brand-tagline {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            margin-left: 16px;
            padding-left: 16px;
            border-left: 1px solid rgba(255,255,255,0.3);
        }

        .top-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .top-phone svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        /* Stats Row */
        .stats-row {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 24px 40px;
            background: var(--bg-light);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            padding: 30px 40px;
            gap: 30px;
        }

        /* Left Panel - Map Visual */
        .left-panel {
            width: 280px;
            flex-shrink: 0;
        }

        .map-visual {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            border-radius: 16px;
            padding: 30px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .map-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20V0h20v20H20zm0 20v20H0V20h20z'/%3E%3C/g%3E%3C/svg%3E");
        }

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

        .map-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .map-icon svg {
            width: 40px;
            height: 40px;
            color: var(--accent);
        }

        .map-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .map-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Right Panel - Office Grid */
        .right-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .office-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            flex: 1;
            overflow: hidden;
        }

        .office-item {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 16px;
            border-left: 3px solid var(--primary);
            transition: all 0.2s;
        }

        .office-item:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(26,66,138,0.1);
        }

        .office-item.hq {
            border-left-color: var(--accent);
            background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.02));
        }

        .office-city {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .office-city svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .office-item.hq .office-city svg {
            color: var(--accent);
        }

        .hq-badge {
            font-size: 0.65rem;
            background: var(--accent);
            color: var(--primary-dark);
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .office-addr {
            font-size: 0.8rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Bottom CTA */
        .bottom-cta {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 24px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cta-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .cta-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            font-size: 1.6rem;
            font-weight: 800;
        }

        .cta-phone svg {
            width: 28px;
            height: 28px;
        }

        .cta-text {
            color: white;
        }

        .cta-text-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cta-text-desc {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary-dark);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(245,158,11,0.4);
            transition: all 0.2s;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245,158,11,0.5);
        }

        .cta-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .main-content { padding: 20px; gap: 20px; }
            .left-panel { width: 240px; }
            .office-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .left-panel { display: none; }
            .main-content { padding: 15px; }
            .office-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .office-item { padding: 12px; }
            .bottom-cta { flex-direction: column; gap: 16px; text-align: center; }
            .stats-row { gap: 30px; flex-wrap: wrap; justify-content: center; }
            .stat-divider { display: none; }
        }

/* Extracted from html/公司地址.html style block 2 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.inland-security-footer {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
}

.tooltip-container {
  position: relative;
}

.trigger-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.minimax-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 300;
  color: #adadad;
  text-decoration: none;
}

.minimax-link:visited {
  color: #adadad;
}

.minimax-link:hover {
  color: #666666;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
  padding-bottom: 16px; /* 8px 内容间距 + 8px 用于鼠标移动的透明区域 */
  font-size: 12px;
  line-height: 17px;
  background-color: #fafafa;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #171717;
}

/* 创建透明的连接区域，让鼠标可以平滑移动到 tooltip */
.tooltip-content::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 16px;
}

.tooltip-container:hover .tooltip-content {
  display: flex;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.beian-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #171717;
}

.beian-icon {
  width: 14px;
  height: 14px;
  margin-right: 2px;
}

.underline-text {
  color: #171717;
  text-decoration: underline;
}

.underline-text:hover {
  color: #000000;
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
  .trigger-content {
    background-color: transparent;
  }

  .minimax-link,
  .minimax-link:visited {
    color: #666666;
  }

  .minimax-link:hover {
    color: #adadad;
  }

  .tooltip-content {
    background-color: #262626;
    color: #ededed;
  }

  .beian-link,
  .underline-text {
    color: #ededed;
  }

  .underline-text:hover {
    color: #ffffff;
  }
}
