* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%,
            rgba(120, 119, 198, 0.3) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(255, 119, 198, 0.3) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 40%,
            rgba(120, 219, 255, 0.3) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header 简约样式 */
header {
    background: white;
    color: #333;

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f5f5f5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #005299;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #005299;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: #003d73;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #005299;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 語言切換樣式 */
.language-toggle {
    display: flex;
    align-items: center;
}

.language-select {
    background: white;
    border: 2px solid #005299;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #005299;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.language-select:hover {
    background: #f8f9fa;
    border-color: #003d73;
}

.language-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 82, 153, 0.1);
}

/* 移动端菜单按钮 - 默认隐藏 */
.mobile-menu-btn {
    display: none;
}

/* 主要内容区域 */
main {
    margin-top: 70px;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #005299;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

/* 英雄区域样式 */

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 153, 0.4);
}

/* 几何背景装饰 */
.section {
    position: relative;
}

.section .container {
    position: relative;
    z-index: 1;
}

/* 添加粒子效果背景 */
.hero::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

/* Hero背景优化 */
.hero {
    padding-top: 100px;
    background: #005299;
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* 卡片样式 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card h3 {
    color: #005299;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* 案例展示画廊样式 */
.cases-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.case-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: #005299;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 3px solid #005299;
    position: relative;
}

.category-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
}

.category-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: -1rem 0 2rem 0;
    font-style: italic;
    font-weight: 500;
}

.case-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.case-image-card {
    text-align: center;
    width: 100%;
}

.case-image {
    width: 100%;
    height: 650px;
    /* 按照591:1280比例調整 */
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}

.case-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.case-title {
    font-size: 1.1rem;
    color: #005299;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}

.case-image-1 {
    background: url("img/case/1.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-2 {
    background: url("img/case/2.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-3 {
    background: url("img/case/3.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-4 {
    background: url("img/case/4.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-5 {
    background: url("img/case/5.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-6 {
    background: url("img/case/6.jpg") center/cover;
    background-size: cover;
    background-position: center;
}

.case-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-image:hover .case-image-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.zoom-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.case-image-overlay p {
    color: white;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* 案例描述样式 */
.cases-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.modal-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff4757;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 团队轮播样式 */
.team-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.team-member {
    min-width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.team-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 不同团队成员的头像 */
.team-avatar.ceo {
    background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80");
}

.team-avatar.director {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
}

.team-avatar.manager {
    background-image: url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80");
}

.team-avatar.creative {
    background-image: url("https://images.unsplash.com/photo-1494790108755-2616b612b142?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80");
}

.team-avatar.customer {
    background-image: url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
}

.team-avatar.tech {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80");
}

/* 头像悬停效果 */
.team-avatar-container:hover .team-avatar {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.team-avatar-container:hover .avatar-frame {
    animation-duration: 3s;
}

/* 加载中状态 */
.team-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 图片加载失败时的备用样式 */
.team-avatar {
    background-color: linear-gradient(135deg, #005299 0%, #003d73 100%);
}

/* 多种头像框样式 */
.avatar-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 170px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    animation: rotateFrame 8s linear infinite;
}

/* 经典装饰框 - 默认 */
.avatar-frame {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="gold" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffd700"/><stop offset="50%" style="stop-color:%23ffb300"/><stop offset="100%" style="stop-color:%23ffd700"/></linearGradient></defs><circle cx="100" cy="100" r="95" fill="none" stroke="url(%23gold)" stroke-width="6"/><g stroke="url(%23gold)" stroke-width="2" fill="url(%23gold)"><path d="M100,15 L105,25 L115,20 L110,30 L120,35 L105,35 L100,45 L95,35 L80,35 L90,30 L85,20 L95,25 Z"/><path d="M100,185 L105,175 L115,180 L110,170 L120,165 L105,165 L100,155 L95,165 L80,165 L90,170 L85,180 L95,175 Z"/><path d="M15,100 L25,95 L20,85 L30,90 L35,80 L35,95 L45,100 L35,105 L35,120 L30,110 L20,115 L25,105 Z"/><path d="M185,100 L175,95 L180,85 L170,90 L165,80 L165,95 L155,100 L165,105 L165,120 L170,110 L180,115 L175,105 Z"/></g><circle cx="100" cy="100" r="78" fill="none" stroke="url(%23gold)" stroke-width="1" opacity="0.6"/></svg>');
}

/* 现代几何框 */
.avatar-frame.modern {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="modern" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a237e"/><stop offset="50%" style="stop-color:%23ffd700"/><stop offset="100%" style="stop-color:%231a237e"/></linearGradient></defs><polygon points="100,10 130,40 170,40 140,70 150,110 100,90 50,110 60,70 30,40 70,40" fill="none" stroke="url(%23modern)" stroke-width="4"/><circle cx="100" cy="100" r="85" fill="none" stroke="url(%23modern)" stroke-width="2" opacity="0.7"/><g stroke="url(%23modern)" stroke-width="2" fill="none"><rect x="85" y="15" width="30" height="8" rx="4"/><rect x="85" y="177" width="30" height="8" rx="4"/><rect x="15" y="85" width="8" height="30" rx="4"/><rect x="177" y="85" width="8" height="30" rx="4"/></g></svg>');
}

/* 复古华丽框 */
.avatar-frame.vintage {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="vintage" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23b8860b"/><stop offset="50%" style="stop-color:%23ffd700"/><stop offset="100%" style="stop-color:%23b8860b"/></linearGradient></defs><circle cx="100" cy="100" r="90" fill="none" stroke="url(%23vintage)" stroke-width="8"/><g stroke="url(%23vintage)" stroke-width="3" fill="url(%23vintage)"><path d="M100,20 Q110,30 100,40 Q90,30 100,20"/><path d="M100,180 Q110,170 100,160 Q90,170 100,180"/><path d="M20,100 Q30,90 40,100 Q30,110 20,100"/><path d="M180,100 Q170,90 160,100 Q170,110 180,100"/><circle cx="65" cy="65" r="4"/><circle cx="135" cy="65" r="4"/><circle cx="65" cy="135" r="4"/><circle cx="135" cy="135" r="4"/></g><circle cx="100" cy="100" r="75" fill="none" stroke="url(%23vintage)" stroke-width="1" stroke-dasharray="5,3" opacity="0.5"/></svg>');
}

/* 科技感框 */
.avatar-frame.tech {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="tech" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300d4ff"/><stop offset="50%" style="stop-color:%23ffd700"/><stop offset="100%" style="stop-color:%2300d4ff"/></linearGradient></defs><circle cx="100" cy="100" r="88" fill="none" stroke="url(%23tech)" stroke-width="2"/><g stroke="url(%23tech)" stroke-width="2" fill="none"><path d="M100,12 L110,30 L128,25 L120,43 L138,48 L115,55 L100,73 L85,55 L62,48 L80,43 L72,25 L90,30 Z"/><path d="M100,188 L110,170 L128,175 L120,157 L138,152 L115,145 L100,127 L85,145 L62,152 L80,157 L72,175 L90,170 Z"/><path d="M12,100 L30,90 L25,72 L43,80 L48,62 L55,85 L73,100 L55,115 L48,138 L43,120 L25,128 L30,110 Z"/><path d="M188,100 L170,90 L175,72 L157,80 L152,62 L145,85 L127,100 L145,115 L152,138 L157,120 L175,128 L170,110 Z"/></g><circle cx="100" cy="100" r="70" fill="none" stroke="url(%23tech)" stroke-width="1" stroke-dasharray="10,5" opacity="0.6"/></svg>');
}

/* 简约线条框 */
.avatar-frame.minimal {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="minimal" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffd700"/><stop offset="100%" style="stop-color:%23ffb300"/></linearGradient></defs><circle cx="100" cy="100" r="90" fill="none" stroke="url(%23minimal)" stroke-width="3"/><circle cx="100" cy="100" r="75" fill="none" stroke="url(%23minimal)" stroke-width="1" opacity="0.5"/><g stroke="url(%23minimal)" stroke-width="2" fill="none"><line x1="100" y1="10" x2="100" y2="25"/><line x1="100" y1="175" x2="100" y2="190"/><line x1="10" y1="100" x2="25" y2="100"/><line x1="175" y1="100" x2="190" y2="100"/><line x1="35.9" y1="35.9" x2="46.5" y2="46.5"/><line x1="153.5" y1="153.5" x2="164.1" y2="164.1"/><line x1="164.1" y1="35.9" x2="153.5" y2="46.5"/><line x1="46.5" y1="153.5" x2="35.9" y2="164.1"/></g></svg>');
}

@keyframes rotateFrame {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 轮播控制按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 82, 153, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 82, 153, 0.5);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* 轮播指示器 */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    transform: scale(1.2);
}

/* 团队成员信息样式增强 */
.team-member h3 {
    color: #005299;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member .experience {
    color: #005299;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-member .description {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 评价轮播样式 */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    background: white;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 2rem;
}

.testimonial-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-tag {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 不同客户的开源头像 */
.author-avatar.avatar-1 {
    background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-2 {
    background-image: url("https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-3 {
    background-image: url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-4 {
    background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-5 {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-6 {
    background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-7 {
    background-image: url("https://images.unsplash.com/photo-1494790108755-2616b612b142?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-8 {
    background-image: url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-9 {
    background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

.author-avatar.avatar-10 {
    background-image: url("https://images.unsplash.com/photo-1566492031773-4f4e44671d66?ixlib=rb-4.0.3&auto=format&fit=crop&w=150&q=80");
}

/* 头像悬停效果 */
.author-avatar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.author-info h4 {
    margin: 0;
    color: #005299;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* 评价轮播控制按钮 */
.testimonials-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 82, 153, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-carousel .carousel-btn:hover {
    background: rgba(0, 82, 153, 1);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-carousel .carousel-btn.prev {
    left: 20px;
}

.testimonials-carousel .carousel-btn.next {
    right: 20px;
}

/* 评价轮播指示器 */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-indicators .indicator.active {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    transform: scale(1.3);
}

/* 流程样式 */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

/* 页脚简约样式 */
footer {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info svg {
    width: 16px;
    height: 16px;
    fill: #6c757d;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #005299;
    text-decoration: underline;
}

.footer-separator {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* 平板设备响应式设计 */
@media (max-width: 1024px) and (min-width: 769px) {
    .case-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .case-image {
        height: 500px;
    }

    .category-title {
        font-size: 1.6rem;
    }
}

/* 手机设备响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .case-images-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-image {
        height: 400px;
    }

    .case-image-card {
        max-width: 100%;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-subtitle {
        font-size: 0.9rem;
        margin: -0.5rem 0 1.5rem 0;
    }

    .cases-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .zoom-icon {
        width: 50px;
        height: 50px;
    }

    .zoom-icon svg {
        width: 25px;
        height: 25px;
    }

    .case-image-overlay p {
        font-size: 0.9rem;
    }

    .modal-content img {
        max-width: 95%;
        max-height: 95%;
    }

    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #005299;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo img {
        height: 35px;
    }

    .footer-info {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }

    /* 客户评价轮播移动端样式 */
    .testimonials-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .testimonials-carousel .carousel-btn.prev {
        left: 10px;
    }

    .testimonials-carousel .carousel-btn.next {
        right: 10px;
    }

    .testimonial {
        padding: 2rem 1.5rem;
    }

    .testimonial-tags {
        gap: 0.5rem;
        justify-content: center;
    }

    .testimonial-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border: 2px solid white;
    }

    .author-avatar.avatar-1,
    .author-avatar.avatar-2,
    .author-avatar.avatar-3,
    .author-avatar.avatar-4,
    .author-avatar.avatar-5,
    .author-avatar.avatar-6,
    .author-avatar.avatar-7,
    .author-avatar.avatar-8,
    .author-avatar.avatar-9,
    .author-avatar.avatar-10 {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* 团队轮播移动端优化 */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 1.8rem;
    }

    .team-avatar.ceo,
    .team-avatar.director,
    .team-avatar.manager,
    .team-avatar.creative,
    .team-avatar.customer,
    .team-avatar.tech {
        width: 120px;
        height: 120px;
        border: 2px solid white;
    }

    .avatar-frame {
        width: 140px;
        height: 140px;
        top: -10px;
        left: -10px;
    }

    .avatar-frame.vintage,
    .avatar-frame.modern,
    .avatar-frame.tech,
    .avatar-frame.minimal {
        width: 140px;
        height: 140px;
        top: -10px;
        left: -10px;
    }

    .team-member {
        padding: 2rem 1rem;
    }

    .team-member h3 {
        font-size: 1.5rem;
    }

    .team-member .experience {
        font-size: 1rem;
    }

    .team-member .description {
        font-size: 0.9rem;
    }
}

/* 行业标签样式 */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-tag {
    background: none;
    color: #005299;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    cursor: pointer;
    border: none;
}

.industry-tag:hover {
    transform: translateY(-2px);
    color: #004d8f;
    box-shadow: none;
}

/* 服务范围样式统一 */
.service-scope-container {
    text-align: center;
    margin-top: 3rem;
}

.no-limits-banner {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-limits-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-category {
    margin-bottom: 2.5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

/* 不同级别的行业标签配色 */
.industry-tag.expert {
    background: none;
    color: #e91e63;
    font-weight: 700;
}

.industry-tag.focus {
    background: none;
    color: #757575;
    font-weight: 700;
}

.industry-tag.professional {
    background: none;
    color: #333;
    font-weight: 700;
}

/* 成功案例板块样式统一 */
.section.white-bg {
    background: white;
}

.case-image-content {
    text-align: center;
}

.case-metrics {
    margin-top: 1rem;
}

.metric-tag {
    background: #e8f5e8;
    color: #2d5f2d;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    display: inline-block;
}

/* 团队板块样式统一 */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.team-qualifications {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.qualifications-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.qualifications-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.qualification-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #005299;
}

/* 客户评价板块样式统一 */
.testimonials-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* 国旗头像样式 */
.flag-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* 各国国旗 - 使用开源国旗图片 */
.flag-germany {
    background-image: url("https://flagcdn.com/w80/de.png");
}

.flag-usa {
    background-image: url("https://flagcdn.com/w80/us.png");
}

.flag-japan {
    background-image: url("https://flagcdn.com/w80/jp.png");
}

.flag-spain {
    background-image: url("https://flagcdn.com/w80/es.png");
}

.flag-uk {
    background-image: url("https://flagcdn.com/w80/gb.png");
}

.flag-korea {
    background-image: url("https://flagcdn.com/w80/kr.png");
}

.flag-india {
    background-image: url("https://flagcdn.com/w80/in.png");
}

.flag-malaysia {
    background-image: url("https://flagcdn.com/w80/my.png");
}

.flag-singapore {
    background-image: url("https://flagcdn.com/w80/sg.png");
}

.flag-global {
    background-image: url("https://flagcdn.com/w80/un.png");
}

.flag-europe {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/80px-Flag_of_Europe.svg.png");
}

.flag-switzerland {
    background-image: url("https://flagcdn.com/w80/ch.png");
}

.flag-canada {
    background-image: url("https://flagcdn.com/w80/ca.png");
}

.flag-australia {
    background-image: url("https://flagcdn.com/w80/au.png");
}

.flag-netherlands {
    background-image: url("https://flagcdn.com/w80/nl.png");
}

.flag-france {
    background-image: url("https://flagcdn.com/w80/fr.png");
}

.flag-sweden {
    background-image: url("https://flagcdn.com/w80/se.png");
}

.flag-israel {
    background-image: url("https://flagcdn.com/w80/il.png");
}

.flag-ireland {
    background-image: url("https://flagcdn.com/w80/ie.png");
}

.flag-dubai {
    background-image: url("https://flagcdn.com/w80/ae.png");
}

.flag-denmark {
    background-image: url("https://flagcdn.com/w80/dk.png");
}

.flag-italy {
    background-image: url("https://flagcdn.com/w80/it.png");
}

.flag-brazil {
    background-image: url("https://flagcdn.com/w80/br.png");
}

.flag-monaco {
    background-image: url("https://flagcdn.com/w80/mc.png");
}

/* 团队规模展示样式 */
.team-scale {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.scale-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scale-item:hover {
    transform: translateY(-5px);
}

.scale-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #005299;
    margin-bottom: 0.5rem;
}

.scale-label {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.scale-desc {
    font-size: 0.9rem;
    color: #666;
}

/* 核心团队展示 */
.core-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #005299;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.leader-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(26, 35, 126, 0.1) 0%,
            rgba(255, 215, 0, 0.1) 100%);
    border-radius: 50%;
}

/* 开源头像样式 */
.avatar-business {
    background-image: url("img/user/4.png");
}

.avatar-marketing {
    background-image: url("img/user/5.png");
}

.avatar-manager {
    background-image: url("img/user/6.png");
}

.hero-markets {
    margin-bottom: 2rem;
}

.hero-markets-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.hero-markets-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #005299 0%, #004d8f 100%);
    border-radius: 2px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hero-tag {
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 1.4rem;
    font-weight: 600;
    border: 2px solid black;
    transition: all 0.3s ease;
}

.screening-section {
    margin-top: 1.5rem;
}

/* 白色背景框樣式 */
.service-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 82, 153, 0.1);
}

/* Google 搜索板塊樣式 */
.google-section {
    margin-top: 1.5rem;
}

.google-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.google-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #005299 0%, #004d8f 100%);
    border-radius: 2px;
}

.google-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.google-item {
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 1.4rem;
    font-weight: 600;
    border: 2px solid black;
    transition: all 0.3s ease;
}

.google-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.screening-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.screening-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #005299 0%, #004d8f 100%);
    border-radius: 2px;
}

.screening-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.screening-item {
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 1.4rem;
    font-weight: 600;
    border: 2px solid black;
    transition: all 0.3s ease;
}

.screening-item:hover {
    transform: translateY(-2px);
    color: #004d8f;
    box-shadow: none;
    background: none;
}

.compliance-section {
    background: linear-gradient(135deg,
            rgba(0, 82, 153, 0.08) 0%,
            rgba(0, 61, 115, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 82, 153, 0.15);
    margin: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 82, 153, 0.05);
}

.compliance-title {
    color: #005299;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.protection-section {
    background: linear-gradient(135deg,
            rgba(0, 82, 153, 0.08) 0%,
            rgba(0, 61, 115, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 82, 153, 0.15);
    margin: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 82, 153, 0.05);
}

.protection-title {
    color: #005299;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.compliance-desc {
    text-align: center;
    color: #005299;
    font-size: 1.1rem;
    line-height: 1.4;
}

.protection-desc {
    text-align: center;
    color: #005299;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* 专业服务保障板块样式 */
.guarantee-section {
    text-align: center;
    padding: 3rem 0;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 35, 126, 0.1);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.15);
    border-color: rgba(26, 35, 126, 0.2);
}

.guarantee-item h3 {
    color: #005299;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Cookie 懸浮提示框 */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem 2rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    margin-right: 2rem;
}

.cookie-text {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #4285f4;
    color: white;
}

.cookie-accept:hover {
    background: #3367d6;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

/* 右下角悬浮联系按钮 */
.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 30%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* 主按鈕容器 */
.floating-main-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 主按鈕 */
.floating-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.floating-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* 主按鈕提示框 */
.floating-main-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-main-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-main-container:hover .floating-main-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* 主按鈕懸停時只顯示"咨詢"提示 */
.floating-contact:not(.expanded) .floating-main-container:hover .floating-main-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}



/* 展開的按鈕容器 */
.floating-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1004;
}

.floating-contact.expanded .floating-contact-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 確保展開狀態下按鈕容器可以響應懸停 */
.floating-contact.expanded .floating-btn-container {
    position: relative;
    z-index: 1004;
}

/* 調試：確保tooltip在所有情況下都能顯示 */
.floating-btn-container {
    overflow: visible;
}

.floating-contact-items {
    overflow: visible;
}

/* 強制tooltip顯示優先級 */
.floating-btn-container:hover .floating-tooltip {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;

    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.floating-btn svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-btn:hover svg {
    transform: scale(1.1);
}

/* Telegram按钮样式 */
.tg-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005588 100%);
    animation: pulseBlue 3s ease-in-out infinite;
}

.tg-btn:hover {
    background: linear-gradient(135deg, #0099dd 0%, #006699 100%);
    color: white;
    animation: none;
}

/* WhatsApp按钮样式 */
.ws-btn {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    animation: pulseGreen 3s ease-in-out infinite 1.5s;
}

.ws-btn:hover {
    background: linear-gradient(135deg, #2be477 0%, #25d366 100%);
    color: white;
    animation: none;
}

/* 脉冲动画 */
@keyframes pulseBlue {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
            0 0 0 0 rgba(0, 136, 204, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
            0 0 0 15px rgba(0, 136, 204, 0);
    }
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* 悬浮按钮容器 */
.floating-btn-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* 悬浮提示样式 */
.floating-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1005;
    pointer-events: none;
}

.floating-tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}





/* 响应式设计 */
@media (max-width: 768px) {
    .floating-contact {
        right: 18px;
        bottom: 18px;
        gap: 12px;
    }

    .floating-main-btn {
        width: 55px;
        height: 55px;
    }

    .floating-main-tooltip {
        font-size: 12px;
        padding: 6px 10px;
        right: 65px;
    }

    .floating-contact::before {
        font-size: 12px;
        padding: 12px 16px;
        right: 70px;
        min-width: 180px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 28px;
        height: 28px;
    }

    .floating-tooltip {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .guarantee-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-services {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .hero-markets-title {
        font-size: 1.2rem;
    }

    .screening-title {
        font-size: 1.1rem;
    }

    .screening-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .google-title {
        font-size: 1.2rem;
    }

    .google-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .service-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-tags {
        gap: 0.4rem;
    }

    .hero-tag {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .screening-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-services {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .hero-markets-title {
        font-size: 1.1rem;
    }

    .screening-title {
        font-size: 1rem;
    }

    .google-title {
        font-size: 1.1rem;
    }

    .google-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .guarantee-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-main-btn {
        width: 50px;
        height: 50px;
    }

    .floating-main-tooltip {
        font-size: 11px;
        padding: 5px 8px;
        right: 60px;
    }

    .floating-contact::before {
        font-size: 11px;
        padding: 10px 14px;
        right: 65px;
        min-width: 160px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }

    .floating-tooltip {
        right: 60px;
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }
}

.leader-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1rem;
    color: #005299;
    margin-bottom: 1rem;
    font-weight: 600;
}

.leader-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* 团队板块响应式设计 */
@media (max-width: 768px) {
    .team-scale {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .scale-item {
        padding: 1rem;
    }

    .scale-number {
        font-size: 2rem;
    }

    .core-team {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leader-card {
        padding: 1.5rem;
    }

    .leader-avatar {
        width: 60px;
        height: 60px;
    }

    .leader-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-scale {
        grid-template-columns: 1fr;
    }

    .scale-number {
        font-size: 1.8rem;
    }

    .leader-card {
        padding: 1rem;
    }

    .leader-avatar {
        width: 50px;
        height: 50px;
    }

    /* Hero装饰元素响应式 */
    .hero-decoration {
        width: 60px;
        height: 60px;
        left: 5%;
    }

    .hero-decoration-2 {
        width: 50px;
        height: 50px;
        right: 8%;
    }

    .hero-decoration-3 {
        width: 40px;
        height: 40px;
        right: 20%;
    }
}

/* 更小屏幕的装饰元素调整 */
@media (max-width: 320px) {

    .hero-decoration,
    .hero-decoration-2,
    .hero-decoration-3 {
        opacity: 0.5;
    }
}

/* 专业代投服务板块样式统一 */
.cooperation-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.cooperation-title {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.cooperation-description {
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    color: white;
}

/* 浮动装饰元素 */
.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 渐变文字效果 */
.section-title {
    background: linear-gradient(135deg, #005299 0%, #003d73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 磨砂玻璃效果增强 */
.testimonial {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.process-step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.compliance-section-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* 卡片hover时的光晕效果 */
.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 25px rgba(255, 215, 0, 0.2);
}

