* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 默认主题色 */
    --theme-primary: rgb(30, 60, 114);
    --theme-light: rgba(30, 60, 114, 0.1);
    --theme-dark: rgb(24, 48, 91);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==================== 顶部企业信息 ==================== */
.company-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.company-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3c72" width="1200" height="600"/><g fill-opacity="0.1"><polygon fill="%23fff" points="1200 0 0 0 0 600"/><polygon fill="%23fff" points="1200 600 900 300 600 600"/></g></svg>');
    background-size: cover;
    background-position: center;
}


.company-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.company-info {
    position: relative;
    z-index: 1;
    padding: 60px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.company-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ==================== 标签栏 ==================== */
.tab-bar {
    display: flex;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tab-item {
    flex: 1;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-item.active {
    color: var(--theme-primary);
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 3px 3px 0 0;
}

/* ==================== 标签内容 ==================== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.business-card {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: none;
    flex: 1;
    padding-bottom: 20px;
}

.business-card:hover {
    transform: none;
    box-shadow: none;
}

.card-header {
    background: white;
    padding: 30px 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container {
    width: 110px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px 20px 30px;
    text-align: center;
}

.name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.title {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
}

.company {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    background: #e5e5e5;
    margin: 20px 0;
}

.contact-info {
    text-align: left;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    transition: background 0.2s ease;
    border-radius: 4px;
    gap: 12px;
}

.contact-item:hover {
    background: #f9f9f9;
}

.contact-item-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.icon {
    width: 18px;
    height: 18px;
    fill: #999;
    flex-shrink: 0;
}

.contact-text {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-action-btn {
    padding: 6px 16px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-action-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.contact-action-btn:active {
    transform: scale(0.96);
    background: #ebebeb;
}

.contact-action-btn-text {
    color: #666;
}

.bio-section, .skills-section {
    margin-top: 20px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.bio-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.skill-tag {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    transition: background 0.2s ease;
}

.skill-tag:hover {
    background: #e5e5e5;
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #999;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: #666;
    font-size: 13px;
}

.error {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    color: #ff4444;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .card-header {
        padding: 30px 20px 0;
    }
    
    .avatar-container {
        width: 100px;
        height: 128px;
    }
    
    .name {
        font-size: 19px;
    }
}

@media (min-width: 601px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .container {
        max-width: 420px;
        min-height: auto;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .business-card {
        border-radius: 8px;
        padding-bottom: 20px;
    }
    
    .company-header {
        border-radius: 8px 8px 0 0;
    }
    
    .chat-bubble {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
}

/* 隐藏类 */
.hidden {
    display: none !important;
}

/* ==================== 快捷操作按钮 ==================== */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.action-btn {
    width: 56px;
    height: 56px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:active {
    transform: scale(0.9);
    background: #e5e5e5;
}

.action-icon {
    width: 28px;
    height: 28px;
    fill: #666;
}

/* 打电话按钮 - 使用主题色 */
.action-btn:nth-child(1) {
    background: var(--theme-light);
}

.action-btn:nth-child(1) .action-icon {
    fill: var(--theme-primary);
}

.action-btn:nth-child(1):active {
    background: var(--theme-light);
    opacity: 0.8;
}

/* 加微信按钮 - 绿色 */
.action-btn:nth-child(2) {
    background: var(--theme-light);
}

.action-btn:nth-child(2) .action-icon {
    fill: var(--theme-primary);
}

.action-btn:nth-child(2):active {
    background: var(--theme-light);
    opacity: 0.8;
}

/* 保存名片按钮 - 使用主题色 */
.action-btn:nth-child(3) {
    background: var(--theme-light);
}

.action-btn:nth-child(3) .action-icon {
    fill: var(--theme-primary);
}

.action-btn:nth-child(3):active {
    background: var(--theme-light);
    opacity: 0.8;
}

/* ==================== 底部聊天区域 ==================== */
.chat-bottom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* 消息展示面板 */
.chat-messages-panel {
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.chat-bottom-container.active .chat-messages-panel {
    height: auto;
    min-height: 60vh;
    max-height: 70vh;
}

.chat-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.chat-panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.chat-panel-close {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #999;
    padding: 0;
    line-height: 1;
}

.chat-panel-close:hover {
    color: #333;
}

/* 底部输入框 */
.chat-bottom-bar {
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.chat-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-bottom-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.chat-bottom-input:focus {
    background: white;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-light);
}

.chat-bottom-send {
    width: 44px;
    height: 44px;
    border: none;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-bottom-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-bottom-send:active {
    transform: scale(0.95);
}

.chat-bottom-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* 遮罩层 */
.chat-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* 为页面内容添加底部间距 */
.container {
    padding-bottom: 80px;
}

/* 隐藏旧的对话框 */
.chat-modal {
    display: none !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ==================== 底部对话框功能 ==================== */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    transition: background 0.3s ease;
    pointer-events: none;
}

.chat-modal.active {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.chat-modal-content {
    width: 100%;
    height: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-bottom: 68px; /* 为底部输入框留出空间 */
}

.chat-modal.active .chat-modal-content {
    height: 70vh;
    transform: scaleY(1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.chat-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.chat-close {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    scroll-behavior: smooth;
}

/* 引导提示区域 */
.chat-suggestions {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    padding: 10px 0 8px;
    flex-shrink: 0;
    position: relative;
}

.suggestions-header {
    font-size: 11px;
    color: #999;
    padding: 0 16px 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.suggestions-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 美化横向滚动条 - 隐藏滚动条 */
.suggestions-scroll::-webkit-scrollbar {
    display: none;
}

.suggestions-scroll {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.suggestion-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.suggestion-item:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.suggestion-item:hover .suggestion-text {
    color: white;
}

.suggestion-item:active {
    transform: translateY(0) scale(0.97);
}

.suggestion-icon {
    font-size: 15px;
    flex-shrink: 0;
    line-height: 1;
}

.suggestion-text {
    font-size: 12px;
    color: #555;
    font-weight: 500;
    line-height: 1;
}




/* 美化滚动条 */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    flex-shrink: 0;
    overflow: hidden;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    background: #f5f5f5;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-word;
}

/* AI回复内容格式化样式 */
.message-bubble strong {
    font-weight: 600;
    color: #000;
}

.message-bubble em {
    font-style: italic;
    opacity: 0.9;
}

.message-bubble ul {
    margin: 8px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.message-bubble li {
    margin: 4px 0;
    line-height: 1.6;
}

.message-bubble code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: #e83e8c;
}

.message-bubble pre {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 8px 0;
    border-left: 3px solid var(--theme-primary);
}

.message-bubble pre code {
    background: none;
    padding: 0;
    color: #333;
    display: block;
    white-space: pre-wrap;
}

.chat-message.user .message-bubble {
    background: var(--theme-primary);
    color: white;
}

/* 用户消息中的代码样式 */
.chat-message.user .message-bubble code {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.chat-message.user .message-bubble pre {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: white;
}

.chat-message.user .message-bubble pre code {
    color: white;
}

/* 打字光标动画 */
.typing-cursor {
    display: inline-block;
    color: var(--theme-primary);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* 加载动画 */
.chat-message.loading .message-bubble {
    background: #f0f0f0;
    color: #999;
    font-style: italic;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.chat-input-container {
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 10px;
    align-items: center;
    background: white;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.chat-input:focus {
    background: white;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-light);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

.chat-send-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* 保存名片按钮 */
.save-card-btn {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    border-color: var(--theme-primary);
}

.save-card-btn:active {
    background: var(--theme-dark);
}

/* ==================== 企业信息详情样式 ==================== */
.company-detail {
    padding: 20px;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.detail-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    flex: 1;
}

/* 企业描述段落样式 */
.company-paragraph {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-indent: 2em; /* 首行缩进2个字 */
    margin-bottom: 0.8em;
    text-align: justify; /* 两端对齐 */
}

.company-paragraph:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 20px;
    height: 20px;
    fill: #999;
    flex-shrink: 0;
}

/* 产品列表 */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid var(--theme-primary);
}

.product-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--theme-primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* 发展时间线 */
.timeline-list {
    position: relative;
    padding-left: 24px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e5e5;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 4px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--theme-primary);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--theme-primary);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* 联系卡片 */
.contact-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.contact-card-body {
    padding: 16px;
}

.contact-card-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.contact-card-item:last-child {
    border-bottom: none;
}

.contact-card-info {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 官网链接样式 */
#websiteItem {
    transition: background-color 0.2s;
}

#websiteItem:hover {
    background-color: rgba(30, 60, 114, 0.05);
    border-radius: 8px;
    margin: 0 -12px;
    padding: 12px 12px;
}

#companyMainWebsite {
    color: var(--theme-primary);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    display: inline-block;
}

#companyMainWebsite:hover {
    color: var(--theme-dark);
    text-decoration: underline;
}

#companyMainWebsite::after {
    content: "→";
    margin-left: 4px;
    opacity: 0;
    transition: all 0.2s;
}

#companyMainWebsite:hover::after {
    opacity: 1;
    margin-left: 8px;
}

/* ==================== Toast提示样式 ==================== */
.custom-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    min-width: 200px;
    max-width: 400px;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-message {
    color: #333;
    line-height: 1.5;
}

/* Success样式 */
.custom-toast-success .toast-icon {
    background: #52c41a;
    color: #fff;
}

/* Error样式 */
.custom-toast-error .toast-icon {
    background: #ff4d4f;
    color: #fff;
}

/* Warning样式 */
.custom-toast-warning .toast-icon {
    background: #faad14;
    color: #fff;
}

/* Info样式 */
.custom-toast-info .toast-icon {
    background: #1890ff;
    color: #fff;
}

/* ==================== 对话框弹窗 ==================== */
