/* 现代科技风格 - 高逼格设计 */
:root {
    /* 科技感主色调 */
    --primary-blue: #e6f7ff;
    --primary-pink: #fff0f6;
    --primary-yellow: #fffbe6;
    
    /* 淡色调主色 */
    --accent-blue: #5cdbd3;
    --accent-pink: #ffadd2;
    --accent-yellow: #ffd666;
    
    /* 文字颜色 */
    --text-dark: #262626;
    --text-light: #8c8c8c;
    --text-muted: #bfbfbf;
    
    /* 背景色 */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    
    /* 边框和阴影 */
    --border-light: #f0f0f0;
    --border-medium: #d9d9d9;
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 6px 16px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 32px rgba(0, 0, 0, 0.12);
    
    /* 动画缓动 */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.68, 0, 0.2, 1);
    
    /* 渐变背景 */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    --gradient-accent: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    --gradient-footer: linear-gradient(90deg, var(--accent-blue), var(--accent-pink), var(--accent-yellow), var(--accent-blue));
}

/* 全局样式 - 精细排版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 添加缺失的text-center类 */
.text-center {
    text-align: center;
}

/* 高级排版系统 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2rem !important; /* 统一所有h2标题大小 */
}

p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1em;
    font-size: 1rem !important; /* 统一所有p段落大小 */
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

a:hover {
    color: var(--accent-pink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 通用组件 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* 底部询价表单样式 */
.inquiry-form-container {
    max-width: 600px;
    margin: 30px auto 0;
}

.footer-inquiry-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-inquiry-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s var(--ease-smooth);
}

.footer-inquiry-form select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s var(--ease-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    background-color: white;
}

.footer-inquiry-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(92, 219, 211, 0.2);
}

.footer-inquiry-form select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(92, 219, 211, 0.2);
}

/* 验证码样式 */
.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s var(--ease-smooth);
    text-transform: uppercase;
}

.captcha-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(92, 219, 211, 0.2);
}

.captcha-image {
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--border-medium);
    transition: all 0.3s var(--ease-smooth);
}

.captcha-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-subtle);
}

.footer-inquiry-form button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.footer-inquiry-form button i {
    margin-right: 5px;
}

/* 联系方式板块样式 */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25), rgba(245, 90, 155, 0.25)); /* Changed to more transparent blue-pink gradient (25% opacity) */
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info-section .section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* 合作伙伴样式 - 增大图片 */
.partners-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s var(--ease-smooth);
    padding: 20px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s var(--ease-smooth);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* 网站头部 - 现代科技风格 */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s var(--ease-smooth);
    border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo i {
    margin-right: 10px;
    font-size: 24px;
    color: var(--accent-blue);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

/* 主导航 - 现代简约 */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 20px;
}

.nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-item > a:hover::after {
    width: 100%;
}

.nav-item > a:hover {
    color: var(--accent-blue);
}

.nav-item.active > a {
    color: var(--accent-blue);
}

.nav-item.active > a::after {
    width: 100%;
}

/* 子导航 */
.sub-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    padding: 10px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
    z-index: 1001;
}

.nav-item:hover .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.sub-nav li {
    list-style: none;
}

.sub-nav a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s var(--ease-smooth);
}

.sub-nav a:hover {
    background: var(--bg-secondary);
    color: var(--accent-blue);
}

/* 头部操作按钮 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-subtle);
}

.btn-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-inquiry i {
    margin-right: 8px;
    font-size: 16px;
}

/* 移动端菜单切换 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 24px;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 移动端导航 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-strong);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-spring);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-header .logo {
    font-size: 20px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-item > a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-sub-nav {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-sub-nav li {
    margin-bottom: 10px;
}

.mobile-sub-nav a {
    color: var(--text-light);
    font-size: 14px;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.btn-inquiry-mobile {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.btn-inquiry-mobile i {
    margin-right: 8px;
}

/* 英雄区域 - 现代科技风格 */
.hero-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
}

/* 占位区域样式 */
.hero-section.hero-placeholder {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section.hero-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    border-radius: 50%;
    opacity: 0.1;
}

/* 添加 hero-slide 样式定义 */
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 确保LayUI轮播图容器正确显示 */
.layui-carousel {
    width: 100%;
    height: 100%;
}

.layui-carousel > [carousel-item] {
    height: 100%;
}

.layui-carousel > [carousel-item] > div {
    height: 100%;
}

.layui-carousel > [carousel-item] > div > div {
    height: 100%;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 面包屑section彩条背景 */
.breadcrumb-section {
    background: linear-gradient(90deg, #ff6b6b, #556270, #4ecdc4, #45b7d1);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* 内容区域与面包屑区域的间距 */
.content-list {
    margin-top: 30px;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 自定义面包屑样式 */
.custom-breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 0 15px;
    box-shadow: var(--shadow-subtle);
    height: 40px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-breadcrumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.custom-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumb a:hover {
    color: var(--accent-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--accent-pink);
    font-weight: bold;
    display: inline;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

/* 服务介绍 */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-medium);
    backdrop-filter: blur(10px);
    /* 添加双层描边效果 */
    box-shadow: inset 0 0 0 1px rgba(92, 219, 211, 0.3), var(--shadow-subtle);
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 2px var(--accent-blue), var(--shadow-medium);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: rotate 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.service-link:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.service-link i {
    margin-right: 5px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s var(--ease-smooth);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* 为什么选择我们 - 文字联动图片视差效果 */
.features-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.parallax-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
    height: 500px; /* 设置整体高度与右侧图片一致 */
}

.parallax-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    gap: 30px;
    position: relative;
    padding-left: 15px;
}

/* 美化文字效果 - 去掉背景框，优化文字显示 */
.feature-item {
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: none;
    cursor: pointer;
    position: relative;
    padding-left: 65px; /* 再次增加10px间距 */
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 50px; /* 增加项目之间的间距 */
}

/* 通用图标样式 */
.feature-item::before {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px; /* 图标大小 */
    color: black;
    transition: all 0.3s var(--ease-smooth);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 激活状态下的图标颜色变为指定橙色 */
.feature-item.active::before {
    color: #f07f47;
}

/* 根据标题文字设置不同图标 */
.feature-item[data-index="0"]::before {
    content: "\f0c0"; /* Font Awesome 用户组图标 - 专业团队 */
    color: #f07f47; /* 专业团队图标默认颜色 - 用户要求的橙色 */
}

.feature-item[data-index="1"]::before {
    content: "\f5fc"; /* Font Awesome 相机图标 - 一流设备 */
}

.feature-item[data-index="2"]::before {
    content: "\f017"; /* Font Awesome 时钟图标 - 按时交付 */
}

.feature-item[data-index="3"]::before {
    content: "\f0ed"; /* Font Awesome 文件文本图标 - 贴心服务 */
}

.feature-item:hover::before {
    transform: translateY(-50%) scale(1.1);
    color: #f07f47; /* 用户要求的橙色 */
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 26px; /* 悬停时进一步变大 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 添加连接线 - 为每个项目之间添加单独的连接线 */
.feature-group {
    position: relative;
    padding-left: 15px;
}

/* 为每个feature-item之间添加单独的连接线，而不是贯穿整个区域的长线 */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px; /* 精确对齐图标中心 */
    top: calc(50% + 22px); /* 从图标底部开始 */
    height: calc(100% - 44px); /* 连接到下一个图标的顶部 */
    width: 0;
    border-left: 2px dashed #d0d0d0; /* 使用虚线边框 */
    z-index: 0; /* 设置合适的z-index避免覆盖内容 */
}

/* 确保专业团队图标悬停颜色正确应用 */
.feature-item[data-index="0"]:hover::before {
    color: #f07f47 !important; /* 专业团队图标悬停颜色 */
}

.feature-item.active::before {
    transform: translateY(-50%) scale(1.1);
    color: #f07f47; /* 用户要求的橙色 */
    font-size: 28px; /* 激活状态下图标更大 */
}

/* 确保专业团队图标在active状态下也显示正确颜色 */
.feature-item[data-index="0"].active::before {
    color: #f07f47 !important; /* 专业团队图标active状态颜色 - 覆盖黄金色 */
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: normal; /* 不要加粗 */
    color: black; /* 默认字体黑色 */
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    line-height: 1.3;
    margin-top: 0; /* 确保与图标垂直对齐 */
}

.feature-item.active h3 {
    color: black;
    font-size: 1.8rem;
    font-weight: normal; /* 不要加粗 */
}

/* 确保h3悬停颜色生效 */
.feature-item:hover h3 {
    color: #f07f47 !important; /* 鼠标滑过字体变为指定颜色 */
    font-size: 1.8rem; /* 鼠标滑过时字体加大1号 */
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold; /* 鼠标滑过字体加粗 */
}

.feature-item p {
    font-size: 1rem; /* 字体小一号 */
    line-height: 1.7;
    color: var(--text-light); /* 默认字体灰色 */
    margin-bottom: 0;
    transition: all 0.3s var(--ease-smooth);
    padding-left: 5px;
    opacity: 0; /* 默认状态下隐藏p元素 */
    height: 0;
    overflow: hidden;
}

.feature-item.active p {
    color: black;
    font-size: 1.2rem;
}

.feature-item:hover p {
    color: #666666; /* 鼠标滑过字体变为灰色 */
    font-size: 0.9rem; /* 鼠标滑过字体缩小一号 */
    opacity: 1; /* 鼠标滑过显示p元素 */
    height: auto;
    overflow: visible;
}

/* 确保所有图片没有背景颜色 */
img {
    background-color: transparent !important;
    border: none !important; /* 确保没有边框 */
}

.parallax-images {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.image-item.active {
    opacity: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* 精选案例 */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s var(--ease-smooth);
    break-inside: avoid;
    display: block;
    aspect-ratio: 4/3; /* Maintain consistent aspect ratio */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s var(--ease-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.portfolio-overlay a {
    /* Add any specific styles for the link if needed */
}

/* 服务卡片2行3列布局调整 */
.services-section .layui-row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .layui-col-md4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s var(--ease-smooth);
    margin-bottom: 20px;
    break-inside: avoid;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

/* 客户见证 */
.portfolio-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

/* 客户见证 */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header {
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.testimonials-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* 与新闻资讯模块保持一致 */
}

.testimonials-slider {
    position: relative;
    height: 320px; /* 增加高度以适应3行文字 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: auto;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* 确保padding不会影响尺寸 */
    justify-content: center; /* 垂直居中内容 */
    margin: auto; /* 水平和垂直居中 */
    max-width: 85%; /* 缩短宽度以容纳按钮 */
    width: 100%; /* 确保卡片占满可用宽度 */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    color: rgba(92, 219, 211, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--accent-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* 防止头像被压缩 */
}

.testimonial-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding-left: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示3行文字 */
    -webkit-box-orient: vertical;
    line-clamp: 3; /* Standard property for compatibility */
    overflow: hidden;
    height: auto; /* 允许自动高度以适应3行文字 */
    min-height: 85px; /* 确保至少有3行文字的高度 */
}

.testimonial-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 3px;
    height: calc(100% - 10px);
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none; /* 确保按钮不会阻挡内容交互 */
}

/* 注释掉导航按钮样式 */

.testimonials-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
    position: relative;
    z-index: 10; /* 确保指示器在上层 */
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.indicator.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    transform: scale(1.2);
}

/* 新闻资讯 */
.news-section {
    padding: 100px 0;
    background: white;
}

.news-section .section-header {
    margin-bottom: 50px;
}

.news-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.news-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    margin-bottom: 0;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card .news-meta {
    padding: 20px 20px 0;
}

.news-card .news-date {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

.news-card .news-category {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 10px;
}

.news-card h3 {
    padding: 15px 20px 0;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: var(--text-dark);
    transition: color 0.3s var(--ease-smooth);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card h3 a:hover {
    color: var(--accent-blue);
}

.news-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card .read-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--accent-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.news-card .read-more:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.news-card .read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s var(--ease-smooth);
}

.news-card .read-more:hover i {
    transform: translateX(3px);
}

/* 客户案例模块样式 */
/*
.case-studies-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.case-studies-section .section-header {
    margin-bottom: 50px;
}

.case-studies-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.case-studies-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    margin-bottom: 0;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s var(--ease-smooth);
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-link {
    color: white;
    font-size: 24px;
    transition: transform 0.3s var(--ease-smooth);
}

.case-link:hover {
    transform: scale(1.2);
}

.case-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.case-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.case-category {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.case-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.case-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}
*/

/* 立即询价模块样式 */
.inquiry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    position: relative;
    overflow: hidden;
}

.inquiry-section .section-header {
    margin-bottom: 50px;
}

.inquiry-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.inquiry-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 3px;
}

/* 使询价卡片宽度与上方板块一致，高度缩小到目前的三分之二 */
.inquiry-wrapper {
    max-width: 100%; /* 增大宽度，占满整个容器 */
    margin: 0 auto;
    padding: 0 50px; /* 增大左右padding以保持适当的边距 */
    width: 100%;
}

.inquiry-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px; /* 稍微增大内边距 */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    width: 100%; /* 确保卡片宽度占满容器 */
    box-sizing: border-box;
    max-width: 1400px; /* 增大最大宽度 */
    margin: 0 auto; /* 居中显示 */
}

/* 重新布局卡片内容 */
.inquiry-card .form-row {
    display: flex;
    gap: 10px; /* 减小间距 */
    margin-bottom: 10px; /* 减小间距 */
}

.inquiry-card .form-group {
    flex: 1;
    margin-bottom: 10px; /* 减小间距 */
}

/* 第三行特殊布局 */
.inquiry-card .form-row.third-row {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.inquiry-card .form-row.third-row .left-column {
    flex: 1;
    margin-bottom: 0;
}

.inquiry-card .form-row.third-row .right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 与左列对齐 */
    margin-bottom: 0;
}

.inquiry-card input,
.inquiry-card textarea,
.inquiry-card select {
    width: 100%;
    padding: 10px 12px; /* 减小内边距 */
    border: 2px solid #e9ecef;
    border-radius: 10px; /* 略微减小圆角 */
    background: white;
    font-size: 0.9rem; /* 略微减小字体 */
    transition: all 0.3s var(--ease-smooth);
    box-sizing: border-box;
    color: var(--text-dark);
}

.inquiry-card textarea {
    min-height: 60px; /* 进一步减小文本区域高度到原来的三分之二 */
    resize: vertical;
}

.inquiry-card select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center; /* 调整位置 */
    background-size: 14px; /* 略微减小图标 */
}

.inquiry-card input:focus,
.inquiry-card textarea:focus,
.inquiry-card select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(92, 219, 211, 0.2);
}

.inquiry-card .captcha-group {
    display: flex;
    gap: 10px; /* 减小间距 */
    align-items: center;
    margin-bottom: 10px; /* 添加下边距 */
}

.inquiry-card .captcha-group input {
    flex: 1;
}

.inquiry-card .captcha-image {
    width: 80px; /* 进一步减小验证码图片宽度 */
    height: 35px; /* 进一步减小验证码图片高度 */
    border-radius: 6px; /* 略微减小圆角 */
    cursor: pointer;
    border: 2px solid #e9ecef;
    transition: all 0.3s var(--ease-smooth);
}

.inquiry-card .captcha-image:hover {
    transform: scale(1.05);
    border-color: var(--accent-blue);
}

.inquiry-card .privacy-notice {
    font-size: 0.8rem; /* 略微减小字体 */
    color: var(--text-light);
    margin-top: 15px; /* 略微减小间距 */
    text-align: center;
}

.inquiry-card .privacy-notice a {
    color: var(--accent-blue);
    text-decoration: none;
}

.inquiry-card .privacy-notice a:hover {
    text-decoration: underline;
    color: var(--accent-pink);
}

/* 询价表单提交按钮 - 保持较大尺寸以吸引用户点击 */
.inquiry-card button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 5px 15px rgba(92, 219, 211, 0.3);
    margin-top: 15px;
}

.inquiry-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(92, 219, 211, 0.4);
    letter-spacing: 1px;
}

.inquiry-card button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(92, 219, 211, 0.3);
}

/* 移动端适配 - 优化布局和交互 */
@media (max-width: 1200px) {
    .header-content {
        padding: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .portfolio-container {
        column-count: 3;
    }
    
    .testimonial-card {
        max-width: 95%;
    }
    
    .inquiry-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-section .layui-col-md4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .parallax-container {
        flex-direction: column;
        height: auto;
    }
    
    .parallax-images {
        height: 300px;
    }
    
    .portfolio-container {
        column-count: 2;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inquiry-wrapper {
        padding: 0 20px;
    }
    
    .inquiry-card .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* 响应式精选案例布局 */
@media (max-width: 992px) {
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item {
        aspect-ratio: 16/9; /* Different aspect ratio for mobile */
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .partner-item {
        height: 80px;
        padding: 10px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .portfolio-container {
        column-count: 1;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonials-nav {
        padding: 0 10px;
    }
    
    /* 注释掉导航按钮样式 */
    /*
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    */
    
    .testimonial-content p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: 60px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .logo {
        font-size: 18px;
    }
    
    .btn-inquiry {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .services-section .layui-col-md4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        height: 70px;
        padding: 8px;
    }
    
    .partner-item img {
        max-height: 50px;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 20px 15px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        max-width: 100%;
        padding: 15px;
    }
    
    .testimonials-nav {
        display: none;
    }
    
    .news-section,
    .inquiry-section {
        padding: 60px 0;
    }
    
    .inquiry-wrapper {
        padding: 0 15px;
    }
    
    .inquiry-card {
        padding: 15px;
        border-radius: 15px;
    }
    
    .inquiry-card input,
    .inquiry-card textarea,
    .inquiry-card select {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .inquiry-card textarea {
        min-height: 50px;
    }
    
    .inquiry-card .captcha-group {
        flex-direction: column;
        gap: 5px;
    }
    
    .inquiry-card .captcha-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .inquiry-card button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .inquiry-card .privacy-notice {
        font-size: 0.75rem;
    }
}

/* 动画效果定义 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 应用动画到页面元素 */
.fade-in {
    animation: fadeIn 1s var(--ease-smooth) forwards;
}

.slide-in-left {
    animation: slideInLeft 1s var(--ease-smooth) forwards;
}

.slide-in-right {
    animation: slideInRight 1s var(--ease-smooth) forwards;
}

.pulse {
    animation: pulse 2s var(--ease-smooth) infinite;
}

.float {
    animation: float 3s var(--ease-smooth) infinite;
}

/* 延迟动画应用 */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* 懒加载样式 */
.lazy {
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.lazy.loaded {
    opacity: 1;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    border: none;
    font-size: 20px;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* 在线客服浮动按钮 */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.floating-btn {
    margin-bottom: 15px;
    position: relative;
}

.floating-btn:last-child {
    margin-bottom: 0;
}

.floating-btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-smooth);
}

.floating-btn a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.floating-btn i {
    font-size: 20px;
    margin-bottom: 2px;
}

.floating-btn span {
    font-size: 12px;
    font-weight: 500;
}

.wechat-qr {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
    transform: translateY(10px);
    width: 150px;
    z-index: 1000;
}

.wechat-qr img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.wechat-qr p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.floating-wechat:hover .wechat-qr {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 响应式设计 - 浮动按钮 */
@media (max-width: 576px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        margin-bottom: 10px;
    }
    
    .floating-btn a {
        width: 45px;
        height: 45px;
    }
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(92, 219, 211, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 滚动进度指示器 */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* 无障碍优化 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 打印样式优化 */
@media print {
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        background: transparent !important;
        color: black !important;
    }
    
    .site-header,
    .back-to-top,
    .progress-bar,
    .mobile-menu-toggle,
    .btn-inquiry,
    .header-actions,
    .testimonials-nav,
    .inquiry-section {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    h2, h3 {
        page-break-after: avoid;
    }
    
    p, blockquote {
        orphans: 3;
        widows: 3;
    }
    
    blockquote, pre {
        page-break-inside: avoid;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --text-light: #000000;
    }
    
    .btn-primary,
    .btn-inquiry {
        background: black !important;
        color: white !important;
    }
    
    .btn-secondary {
        border-color: black !important;
        color: black !important;
    }
}

/* 减少动画模式支持 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}