/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    position: relative;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 导航栏样式优化 - 透明度调整 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 76px;
    will-change: background-color, backdrop-filter;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

.navbar-glass {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(8px) saturate(1.8) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: none !important;
}

.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* 平板端左侧区域间距调整 */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-left {
        gap: 32px; /* 减少logo和导航链接之间的距离以节省空间 */
    }
}

/* 调整品牌区域样式 */
.brand {
    display: flex;
    align-items: center;
    gap: 8px; /* 减小logo和文字间距 */
    padding: 10px;
    transform: scale(1.1); /* 稍微缩小整体比例 */
    transform-origin: left center;
}

/* 确保所有logo文字使用系统字体，保持一致性 */
.brand span,
.navbar .brand span,
nav .brand span,
.sidebar .flex.items-center span,
footer h3.text-base,
footer h3.text-xl,
footer h3.text-\[17px\],
span.text-\[17px\] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.logo-img {
    width: 28px; /* 调整logo图片大小 */
    height: 28px;
    display: block;
}

.logo {
    font-size: 1.25rem; /* 调整文字大小 */
    font-weight: 800; /* 增加字重，让文字更粗 */
    font-family: "PingFang SC", "Microsoft YaHei", "思源黑体 CN", sans-serif;
    color: #1a1a1a !important;
    line-height: 28px; /* 与logo图片高度对齐 */
    display: flex;
    align-items: center;
    margin-top: 1px; /* 微调垂直位置 */
    letter-spacing: 0.25px; /* 稍微减小字间距，让加粗的文字看起来更紧凑 */
    -webkit-font-smoothing: antialiased; /* 增强字体渲染 */
    -moz-osx-font-smoothing: grayscale;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    position: relative;
    height: 64px;
    align-items: center;
}

.nav-links a,
.dropdown-toggle {
    text-decoration: none;
    color: #64648E !important;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 下拉菜单样式优化 */
.dropdown {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    line-height: 32px;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-top: -2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 200;
    padding: 8px 0;
    margin-top: 5px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #666;
    transition: all 0.3s;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

/* 动态下划线样式优化 */
.nav-line {
    position: absolute;
    bottom: 20px;
    height: 2px;
    background: #4a90e2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 激活状态样式 */
.nav-links a.active,
.nav-links a:hover,
.dropdown-toggle:hover {
    color: #525278;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #1a1a1a;
}

.start-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4F46E5;
    color: white;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.start-btn:hover {
    background-color: #4338CA;
}

/* 简洁菜单按钮 */
.menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-btn .material-icons {
    color: #374151;
    font-size: 20px;
    transition: color 0.2s ease;
}

.menu-btn:hover .material-icons {
    color: #3b82f6;
}

/* 主页展示区样式优化 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 40px;
}

/* 轮播图区域样式优化 */
.hero-carousel {
    width: 70%;
    max-width: 1200px;
    margin: 40px auto;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px;
}

/* 保持轮播图比例16:9 */
.hero-carousel::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

/* 添加装饰性元素 */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.carousel {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
}

/* 轮播图容器优化 - 适应图片内容 */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1;
  background: white;
}

/* 轮播图片适应调整 */
.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 改为contain模式确保图片完整显示 */
.carousel-slide img.main-visual {
  width: 95%;
  height: 95%;
  object-fit: contain; /* 改为contain确保图片完整显示 */
  max-height: 100%;
  border-radius: 8px;
}

/* 轮播标题位置调整 */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 15px 20px;
  color: white;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  text-align: center;
}

/* 导航按钮调整 */
.carousel-nav {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-prev, .carousel-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.3);
}

/* 轮播图响应式调整 */
@media (max-width: 991px) {
    .hero-image {
        height: auto;
        min-height: 450px;
    }
    
    .carousel-container {
        height: 100%;
        min-height: 450px;
    }
    
    .carousel-slide img.main-visual {
        max-width: 100%;
        max-height: 90%;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .hero-image {
        height: auto;
        min-height: 350px;
    }
    
    .carousel-container {
        min-height: 350px;
    }
    
    .carousel-slide img.main-visual {
        width: 90%;
    }
    
    .carousel-nav {
        bottom: 10px;
    }
    
    .carousel-prev, .carousel-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h3 {
        font-size: 18px;
    }
    
    .carousel-caption p {
        font-size: 12px;
    }
}

/* 文字内容样式 */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    margin-top: auto;
}

/* 当添加 visible 类时显示内容 */
.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4568dc, #784ba0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 数据统计样式 */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 800px;
}

.stat-item {
    padding: 15px 30px;
    min-width: 160px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(45deg, #4568dc, #784ba0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-left: 2px;
    background: linear-gradient(45deg, #4568dc, #784ba0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-carousel {
        width: 80%;
        margin: 30px auto;
    }

    .hero-content {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 20px;
    }

    .hero-carousel {
        width: 90%;
        margin: 20px auto;
    }

    .features {
        padding: 40px 0;
    }

    .feature-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .content-wrapper {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 12px 24px;
        min-width: 140px;
    }

    .stat-number, .stat-plus {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn .material-icons {
        font-size: 20px;
    }

    .nav-links {
        height: 56px;
    }
    
    .nav-line {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        width: 95%;
        margin: 15px auto;
    }

    .hero-content {
        padding: 20px 0;
    }

    .features {
        padding: 30px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .stat-item {
        min-width: 120px;
        padding: 10px 20px;
    }
}

/* 功能介绍样式 */
.features {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #4A90E2;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background: #357ABD;
}

.view-more-btn .material-icons {
    margin-left: 0.5rem;
}

/* 响应式布局调整 */
@media (max-width: 1200px) {
    .feature-grid {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .feature-grid {
        gap: 20px;
        padding: 0 30px;
    }
    
    .feature-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 40px 0;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .features h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 30px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .features h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card img {
        height: 160px;
        margin-bottom: 15px;
    }
}

/* 用户反馈样式 */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(249, 250, 251, 0.8) 100%);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 图片容器样式 */
.testimonial-card .aspect-w-4 {
    position: relative;
    padding-top: 75%;
    background-color: #f8fafc;
}

.testimonial-card .aspect-w-4 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }
}

/* 添加动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

/* 添加动态背景元素 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(245, 247, 250, 0.97) 0%, rgba(195, 207, 226, 0.97) 100%),
        radial-gradient(circle at 0% 0%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(230, 92, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(230, 92, 0, 0.05) 0%, transparent 50%);
    z-index: -15; /* 修改为-15，让canvas在背景之上 */
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background/pattern.svg');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -14; /* 修改为-14，让canvas在网格背景之上 */
    pointer-events: none;
}

/* 调整canvas的z-index，确保它在正确的层级 */
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -13; /* 修改为-13，确保在背景层之上 */
    opacity: 0.75;
    pointer-events: none;
}

/* 其他背景元素保持在更上层 */
.bg-gradient, .bg-circle-1, .bg-circle-2, 
.bg-donut-1, .bg-donut-2, .bg-dot-pattern,
.bg-blur-1, .bg-blur-2 {
    z-index: -5;
}

/* 修改各个区块的背景 */
.hero {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.features, .testimonials, .contact {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* 添加区块分隔线 */
.features::after, .testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(74, 144, 226, 0.2), transparent);
}

/* 修改卡片背景 */
.feature-card, .testimonial-card, .contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 优化轮播图背景 */
.carousel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

/* 更新联系我们样式 */
.contact {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
        radial-gradient(circle at top right, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #1a1a1a;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon .material-icons {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details {
    text-align: left;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

.contact-item .material-icons {
    font-size: 20px;
    color: #4a90e2;
}

.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.shop-link:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.shop-link .material-icons {
    font-size: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon .material-icons {
        font-size: 28px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .shop-link {
        padding: 10px 24px;
    }
}


.contact-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* 平板端导航栏优化 */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar .container {
        padding: 0 16px; /* 减少左右内边距以节省空间 */
    }
    
    /* 移除平板端logo特殊缩放，保持与PC端一致 */
    
    .brand .flex.items-center.space-x-3 {
        gap: 12px;
    }
    
    /* 优化品牌头像尺寸 */
    .brand .w-10.h-10 {
        width: 42px !important;
        height: 42px !important;
    }
    
    /* 优化品牌文字显示 */
    .brand .flex.flex-col {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }
    
    .brand .text-base,
    .brand .text-\[17px\] {
        font-size: 1.15rem !important;
        font-weight: bold !important;
        margin: 0;
        white-space: nowrap;
        line-height: 1.2;
        color: #1a1a1a !important;
        letter-spacing: 0.25px;
    }
    
    .brand .text-xs,
    .brand .text-\[11px\] {
        font-size: 0.6875rem !important;
        margin: 0;
        white-space: nowrap;
        opacity: 0.8;
        line-height: 1.1;
    }
    
    /* 优化右侧按钮区域 */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 12px; /* 减少间距以节省空间 */
        margin-left: 8px; /* 减少左边距 */
    }
    
    .cta-button {
        font-size: 0.85rem !important;
        padding: 10px 16px !important;
        white-space: nowrap;
        border-radius: 24px !important;
        background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%) !important;
        color: white !important;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 3px 12px rgba(79, 70, 229, 0.35);
        transition: all 0.3s ease;
        min-height: 42px;
        display: flex;
        align-items: center;
    }
    
    .cta-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 16px rgba(79, 70, 229, 0.45);
    }
    
    /* 隐藏汉堡菜单按钮 */
    .menu-btn {
        display: none;
    }
    
    /* 导航链接保持显示但调整间距 */
    .nav-links {
        display: flex;
        gap: 20px; /* 减少导航链接之间的间距以节省空间 */
    }
    
    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        padding: 8px 6px; /* 减少左右内边距 */
    }
}

/* 小平板端导航栏优化 */
@media (max-width: 900px) and (min-width: 769px) {
    .navbar .container {
        padding: 0 12px; /* 减少内边距以节省空间 */
    }
    
    .nav-left {
        gap: 24px; /* 减少logo和导航链接间距 */
    }
    
    /* 移除中等屏幕logo特殊缩放，保持与PC端一致 */
    
    .brand .w-10.h-10 {
        width: 40px !important;
        height: 40px !important;
    }
    
    .brand .text-base,
    .brand .text-\[17px\] {
        font-size: 1.1rem !important;
    }
    
    .brand .text-xs,
    .brand .text-\[11px\] {
        font-size: 0.6875rem !important;
    }
    
    .nav-right {
        gap: 8px; /* 减少右侧间距 */
        margin-left: 6px;
    }
    
    .nav-links {
        gap: 16px; /* 减少导航链接间距 */
    }
    
    .nav-links a {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 8px 4px; /* 减少内边距 */
    }
    
    .cta-button {
        font-size: 0.8rem !important;
        padding: 9px 14px !important;
        min-height: 40px;
        border-radius: 22px !important;
    }
}

/* 超小平板端导航栏优化 (适用于较小的平板设备) */
@media (max-width: 850px) and (min-width: 769px) {
    .navbar .container {
        padding: 0 8px; /* 进一步减少内边距 */
    }
    
    .nav-left {
        gap: 16px; /* 进一步减少间距 */
    }
    
    /* 移除小屏幕logo特殊缩放，保持与PC端一致 */
    
    .nav-links {
        gap: 12px; /* 进一步减少导航链接间距 */
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 6px 2px;
    }
    
    .nav-right {
        gap: 6px;
        margin-left: 4px;
    }
    
    .cta-button {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
        min-height: 36px;
        border-radius: 20px !important;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links, .login-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .nav-left {
        gap: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
    }

    .feature-grid,
    .testimonial-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 20px;
    }
}

/* 添加用户作品图片样式 */
.user-work {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* 修改按钮样式 */
.contact-form button {
    background: #4a90e2;
}

.contact-form button:hover {
    background: #357abd;
}

.carousel-slide img {
    animation: fadeIn 0.5s ease-out;
}

/* 页脚样式优化 */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-brand {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a90e2;
}

.divider {
    color: #ddd;
    font-size: 12px;
}

/* 添加渐变分隔线 */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(74, 144, 226, 0.2),
        transparent
    );
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-img {
        width: 20px;
        height: 20px;
    }

    .footer-brand {
        font-size: 14px;
    }
}

/* 添加动画效果 */
.footer-content {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* B站风格弹幕区域 */
.comment-marquee {
    width: 100%;
    height: 280px;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin: 0;
    overflow: hidden;
    padding: 10px 0;
}

.marquee-track {
    position: absolute;
    width: 100%;
    height: 28px;
    left: 0;
    overflow: hidden;
}

.marquee-track-content {
    position: absolute;
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    user-select: none;
}

@keyframes scrollDanmu {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* 循环使用不同颜色 */
.marquee-item:nth-child(5n+1) {
    color: #FF6B6B;
}

.marquee-item:nth-child(5n+2) {
    color: #4ECDC4;
}

.marquee-item:nth-child(5n+3) {
    color: #45B7D1;
}

.marquee-item:nth-child(5n+4) {
    color: #96CEB4;
}

.marquee-item:nth-child(5n+5) {
    color: #D4A5A5;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .comment-marquee {
        height: 240px;
    }

    .marquee-track {
        height: 24px;
    }

    .marquee-item {
        font-size: 13px;
        padding: 3px 10px;
    }
}

/* 添加下拉菜单样式 */
.dropdown {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    line-height: 32px;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-top: -2px;
}

.dropdown:hover .dropdown-toggle {
    color: #1a1a1a;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 200;
    padding: 8px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #666;
    transition: all 0.3s;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* 表单样式 */
.contact-form {
    padding: 60px 0;
    background: #f5f7fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.submit-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #357abd;
}

/* 错误提示样式 */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
}

/* 成功提示样式 */
.success-message {
    color: #28a745;
    text-align: center;
    padding: 20px;
    background: #d4edda;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

/* 数据列表页面样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.search-box {
    margin: 20px 0;
}

.search-box form {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-box button {
    padding: 8px 20px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-box button:hover {
    background: #357ABD;
}

.data-list {
    display: grid;
    gap: 20px;
}

.data-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.data-item h3 {
    margin: 0 0 10px;
    color: #333;
}

.data-item .description {
    color: #666;
    margin-bottom: 15px;
}

.meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.btn:hover {
    background: #357ABD;
}

.no-data {
    text-align: center;
    color: #666;
    padding: 40px;
}

.hero-background {
    background-image: none;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

/* 客户反馈响应式样式 */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

@media (max-width: 1536px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1280px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.25rem;
    }
    
    .testimonial-card .p-6 {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .testimonial-card .w-10 {
        width: 2rem;
        height: 2rem;
    }
    
    .testimonial-card .text-lg {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* 管理后台反馈列表响应式样式 */
@media (max-width: 1536px) {
    .admin-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1280px) {
    .admin-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* 搜索框样式 */
.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* 动画效果 */
.order-item {
    transition: all 0.3s ease-in-out;
}

.order-item.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

/* ICP备案样式 */
.icp-link {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.icp-link:hover {
    color: #333;
}

.icp-icon {
    height: 16px;
    margin-right: 4px;
}

/* 移动端导航菜单 - Apple 风格设计 */
.mobile-nav {
    position: fixed;
    top: 85px;
    right: 20px;
    width: 200px;
    max-width: calc(100vw - 40px);
    background: rgba(252, 253, 254, 0.92);
    backdrop-filter: blur(35px) saturate(190%);
    -webkit-backdrop-filter: blur(35px) saturate(190%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateX(20px) scale(0.92);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.mobile-nav.show {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.mobile-nav li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 0;
}

.mobile-nav li:last-child {
    margin-bottom: 0;
}

.mobile-nav li:last-child a {
    border-bottom: none;
}

.mobile-nav.show li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #1c1c1e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.08) 0%,
        rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-nav li a:hover::before,
.mobile-nav li a:active::before {
    opacity: 1;
}

.mobile-nav li a:hover {
    background: transparent;
    color: #007aff;
    border-bottom-color: rgba(59, 130, 246, 0.2);
    transform: translateX(8px);
    box-shadow: none;
}

.mobile-nav li a:active {
    transform: translateX(6px);
    transition: all 0.15s ease;
}

.mobile-nav .material-icons {
    font-size: 20px;
    margin-right: 12px;
    color: #8e8e93;
    transition: all 0.35s ease;
    font-weight: 400;
}

.mobile-nav li a:hover .material-icons {
    color: #007aff;
    transform: scale(1.15);
}

/* 锚点跳转优化 - CSS原生方案作为备选 */
#workflows, #testimonials, #contact, #home {
    scroll-margin-top: 100px; /* 移动端友好的偏移量 */
}

/* PC端优化 */
@media (min-width: 769px) {
    #workflows, #testimonials, #contact, #home {
        scroll-margin-top: 50px; /* PC端更小的偏移量，减少留白 */
    }
}

/* 全局平滑滚动 */
html {
    scroll-behavior: smooth;
    /* 强制始终显示滚动条槽，防止弹窗打开时页面跳动 */
    overflow-y: scroll;
}

/* Apple 风格动画延迟 */
.mobile-nav li:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav li:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav li:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav li:nth-child(4) { transition-delay: 0.24s; }
.mobile-nav li:nth-child(5) { transition-delay: 0.30s; }

/* Apple 风格小屏幕优化 */
@media (max-width: 480px) {
    .mobile-nav {
        right: 18px;
        width: 190px;
        top: 80px;
        border-radius: 20px;
    }
    
    .mobile-nav ul {
        padding: 6px 0;
    }
    
    .mobile-nav li a {
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .mobile-nav li:last-child a {
        border-bottom: none;
    }
    
    .mobile-nav .material-icons {
        font-size: 18px;
        margin-right: 10px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .mobile-nav {
        right: 16px;
        width: calc(100vw - 32px);
        max-width: 220px;
        top: 78px;
        border-radius: 18px;
    }
    
    .mobile-nav ul {
        padding: 4px 0;
    }
    
    .mobile-nav li a {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-nav li:last-child a {
        border-bottom: none;
    }
    
    .mobile-nav .material-icons {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* Apple 风格遮罩层 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* 装饰元素 */
.bg-shape-primary {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(124, 77, 255, 0.08), rgba(94, 114, 235, 0.08));
    top: -150px;
    left: -200px;
    z-index: -1;
    filter: blur(60px);
}

.bg-shape-secondary {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 124, 189, 0.06), rgba(94, 114, 235, 0.06));
    bottom: 10%;
    right: -200px;
    z-index: -1;
    filter: blur(70px);
}

.bg-floating-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(126, 87, 194, 0.15);
    top: 25%;
    right: 15%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.bg-floating-donut {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid rgba(94, 114, 235, 0.12);
    left: 15%;
    top: 35%;
    z-index: -1;
    animation: float 10s ease-in-out infinite, rotate 30s linear infinite;
}

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

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

/* 新的现代风格 */
:root {
  --primary-color: #4568dc;
  --secondary-color: #784ba0;
  --light-purple: #e9e4f8;
  --dark-purple: #3a1c71;
  --text-dark: #1c1e53;
  --text-light: #64648e;
  --white: #ffffff;
  --bg-light: #f8f9ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
  background: var(--bg-light);
  overflow-x: hidden;
}

/* 渐变背景 */
.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #e9e4f8 100%);
  z-index: -10;
}

/* 背景装饰元素 */
.bg-circle-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -200px;
  top: -100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(94, 114, 235, 0.1));
  filter: blur(60px);
  z-index: -5;
  animation: float-slow 15s ease-in-out infinite;
}

.bg-circle-2 {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -300px;
  top: -200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 113, 255, 0.08), rgba(123, 100, 255, 0.08));
  filter: blur(80px);
  z-index: -5;
  animation: float-slow 20s ease-in-out infinite reverse;
}

.bg-donut-1 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 10%;
  top: 30%;
  border-radius: 50%;
  border: 8px solid rgba(124, 77, 255, 0.1);
  z-index: -1;
  animation: float 8s ease-in-out infinite, rotate 30s linear infinite;
}

.bg-donut-2 {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 25%;
  top: 15%;
  border-radius: 50%;
  border: 6px solid rgba(124, 77, 255, 0.1);
  z-index: -1;
  animation: float 12s ease-in-out infinite 2s, rotate 40s linear infinite reverse;
}

.bg-blur-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 20%;
  bottom: 10%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 100, 200, 0.05), rgba(94, 114, 235, 0.05));
  filter: blur(50px);
  z-index: -2;
}

.bg-blur-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 30%;
  bottom: 30%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.04), rgba(94, 114, 235, 0.04));
  filter: blur(40px);
  z-index: -2;
}

/* 移除重复的导航栏定义 - 使用上方统一的定义 */

.logo {
  color: var(--text-dark);
  font-weight: 600;
}

/* 统一导航链接样式，确保在透明和玻璃状态下都清晰可见 */
.navbar .nav-links a {
  color: #64648E !important;
  font-weight: 500;
  transition: color 0.3s;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.navbar .nav-links a:hover {
  color: #3b82f6 !important;
}

/* 确保品牌文字在透明状态下清晰可见 */
.navbar .brand span {
  color: #000000 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 确保定制化手册按钮始终清晰可见 */
.navbar .cta-button {
  color: white !important;
}

/* 菜单按钮样式重置 */
.navbar .menu-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.cta-button {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.25);
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

/* 现代Hero区域 */
.modern-hero {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.brand-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title span {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.primary-button {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(106, 72, 209, 0.2);
  display: inline-block;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(106, 72, 209, 0.3);
}

.secondary-button {
  background: white;
  color: var(--primary-color);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(106, 72, 209, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.main-visual:hover {
  transform: translateY(-10px);
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}

.elem-1 {
  width: 80px;
  height: 80px;
  background: rgba(124, 77, 255, 0.2);
  top: 10%;
  left: -5%;
  animation: float 8s ease-in-out infinite;
}

.elem-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 124, 189, 0.2);
  bottom: 15%;
  right: -5%;
  animation: float 10s ease-in-out infinite 1s;
}

.elem-3 {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(124, 77, 255, 0.15);
  top: 40%;
  right: -10%;
  animation: float 12s ease-in-out infinite 2s, rotate 30s linear infinite;
}

/* 统计卡片 */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat-card {
  background: white;
  padding: 20px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 180px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-block;
}

.stat-suffix {
  font-size: 30px;
    font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
}

.stat-label {
  color: var(--text-light);
    font-size: 16px;
  margin-top: 5px;
}

/* 工作流部分 */
.workflow-section {
  padding: 100px 0 60px 0;
  background: white;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 3px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 旧的workflow-card样式已移除 */

/* VIP商家定制标识 */
.vip-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #d4af37 100%);
  padding: 5px 8px;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transform: translateY(0);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vip-badge:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.vip-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.vip-text {
  font-size: 11px;
  font-weight: 700;
  color: #8b4513;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.workflow-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 悬浮遮罩层 */
.workflow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.workflow-card:hover .workflow-overlay {
  opacity: 1;
  visibility: visible;
}

/* 查看详情按钮 - 毛玻璃效果 */
.view-detail-btn {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  min-width: 120px;
  letter-spacing: 0.5px;
}

.workflow-card:hover .view-detail-btn {
  transform: translateY(0);
}

.view-detail-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.view-detail-btn .material-icons {
  font-size: 18px;
  color: white;
  margin-right: 2px;
}

.workflow-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

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

.workflow-info {
  padding: 20px 16px 16px 16px;
  position: relative;
  background: transparent;
  text-align: center;
}

/* 响应式优化 - 移动端图片显示 */
@media (max-width: 768px) {
  /* 旧的workflow-card样式已移除 */
  
  .workflow-image {
    height: 200px;
  }
  
  .thumbnail-grid {
    grid-template-columns: repeat(2, 38px);
    gap: 4px;
    bottom: 8px;
    right: 8px;
    padding: 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  
  .thumbnail-item,
  .thumbnail-more {
    width: 38px;
    height: 28px;
  }
  
  .thumbnail-more {
    font-size: 10px;
    font-weight: 600;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(240, 242, 247, 0.8), rgba(248, 250, 252, 0.85));
    color: rgba(100, 116, 139, 0.8);
    border: 1px solid rgba(200, 208, 218, 0.5);
  }
  
  .thumbnail-more::after {
    font-size: 10px;
    padding: 4px 8px;
    bottom: -30px;
  }
  
  .image-count {
    top: 8px;
    left: 8px;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .image-count .material-icons {
    font-size: 12px;
    margin-right: 3px;
}


  

  
  /* 移动端按钮调整 */
  .view-detail-btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .view-detail-btn .material-icons {
    font-size: 16px;
  }
}

.workflow-title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 2.8em;
  word-break: break-word;
  transition: color 0.3s ease;
}

.workflow-card:hover .workflow-title {
  color: #4a5568;
}

.workflow-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* 多图布局样式 */
.workflow-image {
  position: relative;
  cursor: pointer;
}

/* 新的正方形缩略图网格 */
/* 新的横排缩略图网格 - 默认显示4个缩略图 */
.thumbnail-grid-horizontal {
  position: absolute;
  bottom: 110px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: fit-content;
  margin: 0 auto;
}

/* 保留原有的正方形缩略图网格 */
.thumbnail-grid-square {
  position: absolute;
  bottom: 115px;
  right: 12px;
  display: grid;
  grid-template-columns: repeat(2, 36px);
  gap: 3px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px;
  border-radius: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* 保留原有的thumbnail-grid样式 */
.thumbnail-grid {
  position: absolute;
  bottom: 45px;
  right: 10px;
  display: grid;
  grid-template-columns: repeat(2, 48px);
  gap: 6px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 新的横排缩略图项 - 正方形，优化显示效果 */
.thumbnail-item-horizontal {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  position: relative;
}

.thumbnail-item-horizontal:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.thumbnail-item-horizontal img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 图片数量右侧显示 - 优化样式 */
.image-count-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 32px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
}

.image-count-right:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.02);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.image-count-right .material-icons {
  font-size: 12px;
  margin-right: 2px;
}

/* 保留原有的正方形缩略图项 */
.thumbnail-item-square {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.thumbnail-item-square:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.thumbnail-item-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 保留原有的thumbnail-item样式 */
.thumbnail-item {
  width: 48px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(228, 232, 237, 0.8);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  transition: all 0.2s ease;
  background: rgba(248, 250, 252, 0.5);
  position: relative;
}

.thumbnail-item:hover {
  transform: scale(1.03);
  border-color: rgba(203, 213, 225, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.8);
}

.thumbnail-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.thumbnail-more {
  width: 48px;
  height: 36px;
  background: linear-gradient(135deg, rgba(240, 242, 247, 0.85), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(200, 208, 218, 0.6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(100, 116, 139, 0.8);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.thumbnail-more:hover {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
  border-color: rgba(200, 208, 218, 0.8);
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  color: rgba(71, 85, 105, 0.9);
}

/* Tooltip 样式 */
.thumbnail-more::after {
  content: "点击查看更多搭配";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  pointer-events: none;
}

.thumbnail-more:hover::after,
.thumbnail-more.touch-active::after {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}

/* 新的图片数量标签 - 右上角位置 */
.image-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-count-badge:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.image-count-badge .material-icons {
  font-size: 14px;
  margin-right: 4px;
  color: white;
}

/* 保留原有的image-count样式以兼容其他地方的使用 */
.image-count {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  color: rgba(71, 85, 105, 0.9);
  font-size: 12px;
  font-weight: 600;
  background: rgba(248, 250, 252, 0.92);
  padding: 5px 10px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 232, 237, 0.6);
  transition: all 0.2s ease;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
}

.image-count:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(203, 213, 225, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: rgba(51, 65, 85, 1);
}

.image-count .material-icons {
  font-size: 14px;
  margin-right: 4px;
  color: rgba(100, 116, 139, 0.8);
}

.view-more-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.view-more-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.view-more-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* 动画效果 */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* 响应式调整 */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    }

    .hero-content {
    margin: 0 auto;
  }
  
  .hero-description {
    margin: 0 auto 40px;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 50px;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .stat-card {
    width: 100%;
    max-width: 300px;
  }
}

/* 大屏幕适配 */
@media (min-width: 1600px) {
  .workflow-grid {
    max-width: 1600px;
    gap: 44px;
  }
}

/* 平板横屏适配 */
@media (max-width: 1299px) and (min-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* 平板中等屏幕适配 */
@media (max-width: 1023px) and (min-width: 768px) {
  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  /* 平板横屏缩略图调整 */
  .thumbnail-grid-horizontal {
    gap: 3px;
    padding: 7px 11px;
    bottom: 105px;
  }
  
  .thumbnail-item-horizontal {
    width: 38px;
    height: 38px;
  }
  
  .image-count-right {
    min-width: 33px;
    height: 30px;
    font-size: 10px;
    margin-left: 7px;
  }
}


  
  .workflow-image {
    height: 220px;
  }
  
  /* 平板端缩略图调整 */
  .thumbnail-grid-horizontal {
    gap: 3px;
    padding: 6px 10px;
    bottom: 100px;
  }
  
  .thumbnail-item-horizontal {
    width: 36px;
    height: 36px;
  }
  
  .image-count-right {
    min-width: 32px;
    height: 28px;
    font-size: 10px;
    margin-left: 6px;
  }

@media (max-width: 767px) {
  .navbar {
    padding: 15px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .workflow-section {
    padding: 40px 0 30px 0;
  }
}

@media (max-width: 480px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 100%;
  }
  
  .workflow-section {
    padding: 32px 0 24px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 28px !important;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 16px !important;
    padding: 0 16px;
  }
}

/* 集成的Hero内容区域 */
.hero-content-integrated {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 60px;
    position: relative;
}

/* 品牌内容区域 */
.brand-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 品牌标题区 */
.brand-header {
  text-align: left;
}

.brand-subtitle {
  font-size: 18px;
  color: #4568dc;
    font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 5px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
        gap: 15px;
    align-items: center;
}

.gradient-text {
  background: linear-gradient(90deg, #4568dc, #784ba0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-title-secondary {
  color: #333;
}

/* 描述文本容器 */
.hero-description-container {
  max-width: 90%;
}

.hero-description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 统计数据居中布局 */
.transparent-stats-centered {
  display: flex;
  justify-content: space-between;
    position: relative;
  margin: 10px 0 20px;
  padding: 20px 0;
  max-width: 90%;
}

.transparent-stats-centered .stat-item {
    text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  flex: 1;
  padding: 15px 10px;
  border-right: 1px solid rgba(100, 100, 142, 0.1);
}

.transparent-stats-centered .stat-item:last-child {
  border-right: none;
}

.transparent-stats-centered .stat-item:hover {
  transform: translateY(-5px);
}

.transparent-stats-centered .stat-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.transparent-stats-centered .stat-number {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(90deg, #4568dc, #784ba0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.transparent-stats-centered .stat-symbol {
  font-size: 36px;
    font-weight: 600;
  color: #784ba0;
  margin-left: 2px;
}

.transparent-stats-centered .stat-label {
  font-size: 16px;
  color: #64648e;
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 居中按钮优化 */
.hero-buttons-centered {
  display: flex;
        gap: 20px;
  margin-top: 10px;
}

.hero-buttons-centered .primary-button,
.hero-buttons-centered .secondary-button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-buttons-centered .primary-button {
  background: linear-gradient(90deg, #4568dc, #784ba0);
    color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(69, 104, 220, 0.3);
}

.hero-buttons-centered .secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: #4568dc;
  border: 1px solid rgba(69, 104, 220, 0.3);
  backdrop-filter: blur(5px);
}

.hero-buttons-centered .primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(69, 104, 220, 0.4);
}

.hero-buttons-centered .secondary-button:hover {
  background: rgba(69, 104, 220, 0.05);
  transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 54px;
  }
  
  .transparent-stats-centered .stat-number {
    font-size: 46px;
  }
  
  .transparent-stats-centered .stat-symbol {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .hero-content-integrated {
    padding-right: 0;
    text-align: center;
    align-items: center;
    padding: 40px 20px;
  }
  
  .brand-header {
    text-align: center;
  }
  
  .hero-title {
    font-size: 48px;
    justify-content: center;
  }
  
  .hero-description-container {
    max-width: 100%;
    text-align: center;
  }
  
  .transparent-stats-centered {
    max-width: 100%;
  }
  
  .hero-buttons-centered {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 40px;
  }
  
  .transparent-stats-centered {
    flex-direction: column;
    align-items: center;
        gap: 20px;
  }
  
  .transparent-stats-centered .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(100, 100, 142, 0.1);
    padding-bottom: 20px;
    width: 100%;
    max-width: 200px;
  }
  
  .transparent-stats-centered .stat-item:last-child {
    border-bottom: none;
  }
  
  .hero-buttons-centered {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
  }
}

/* 统计数据卡片式布局 */
.stats-cards {
  display: flex;
  gap: 24px; /* 增加卡片之间的间距 */
  margin: 25px 0; /* 增加上下间距 */
  width: 100%;
  justify-content: space-between; /* 平均分布 */
}

.stat-card {
  flex: 0 1 auto; /* 允许卡片根据内容自适应宽度 */
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  padding: 24px 32px; /* 增加内部填充 */
  text-align: center;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  min-width: 180px; /* 设置最小宽度 */
}

/* 数字样式调整 */
.stat-number {
  font-size: 3.2rem; /* 增大数字大小 */
  font-weight: 700;
  color: #2563EB;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* 加号样式 */
.stat-symbol {
  font-size: 2rem; /* 调整加号大小 */
  font-weight: 600;
  color: #3B82F6;
  margin-left: 2px;
}

/* 标签文字样式 */
.stat-label {
  color: #6B7280;
  font-size: 1.1rem; /* 增大标签文字 */
  font-weight: 500;
  margin-top: 4px;
}

/* 悬停效果 */
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .stats-cards {
    flex-wrap: wrap; /* 允许在小屏幕上换行 */
    justify-content: center;
    gap: 16px;
  }
  
  .stat-card {
    padding: 20px 24px;
    min-width: 150px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-symbol {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

/* 确保在页面顶部时导航栏始终透明 */
body.at-top .navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* 打字机效果容器 - 减少间距使布局更紧凑 */
.typewriter-container {
    margin: 10px 0 10px; /* 减小上下间距 */
    min-height: 65px; /* 进一步减小高度 */
    display: flex;
    align-items: center;
}

/* 打字机文字样式 - 进一步增大 */
.typewriter-text {
    font-size: 54px; /* 增大字体尺寸 */
    font-weight: 900; /* 增加到最粗的900 */
    color: #0052cc; /* 保持蓝色 */
    line-height: 1.15;
    min-height: 62px;
    font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.8px;
    text-shadow: 0px 0px 1px rgba(0,82,204,0.3); /* 添加微弱阴影增强粗体感 */
    -webkit-font-smoothing: antialiased; /* 增强字体渲染 */
    -moz-osx-font-smoothing: grayscale; /* 增强字体渲染 */
}

/* 确保iOS设备上文字同样粗体 */
@supports (-webkit-touch-callout: none) {
    .typewriter-text {
        text-shadow: 0px 0px 1px rgba(0,0,0,0.5);
        font-weight: 900;
    }

}

/* 响应式调整 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 42px; /* 移动端稍小但保持粗体 */
        font-weight: 900;
    }
}

/* AI服务展示区域 - 字体放大 */
.ai-services-container {
    margin-bottom: 15px; /* 进一步减小底部间距 */
    margin-top: 0px; /* 调整位置 */
}

.ai-services {
    font-size: 18px; /* 增大字体尺寸 */
    line-height: 1.7;
    color: #333; /* 更深的文字颜色增强可读性 */
    max-width: 650px;
    font-weight: 500; /* 稍微加粗 */
    font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.service-divider {
    color: #888;
    margin: 0 8px;
}

/* 统计卡片区域 - 缩小尺寸 */
.stats-cards {
    margin-top: 15px; /* 再次减少顶部间距 */
    gap: 12px; /* 减小卡片间距 */
}

.stat-card {
    padding: 15px 12px; /* 减小内边距 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* 减轻阴影 */
}

.stat-number {
    font-size: 42px; /* 减小字体尺寸 */
}

.stat-symbol {
    font-size: 28px; /* 减小字体尺寸 */
}

.stat-label {
    font-size: 13px; /* 减小字体尺寸 */
    margin-top: 2px;
}

/* 调整整体内容布局 */
.hero-content-integrated {
    padding-top: 15px !important; /* 覆盖内联样式 */
    display: flex;
        flex-direction: column;
    gap: 5px; /* 减少子元素间的间距 */
}

/* 按钮区域 - 进一步调整 */
.hero-buttons-centered {
    margin-top: 20px; /* 进一步减少顶部间距 */
}

/* 打字机文字样式 - 匹配参考网站风格 */
.typewriter-text {
    font-size: 52px; /* 略微调整大小 */
    font-weight: 700; /* 调整为中粗字体，与参考网站一致 */
    color: #0066cc; /* 调整蓝色，更接近参考网站 */
    line-height: 1.2;
    min-height: 62px;
    font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.5px; /* 调整字间距 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 去除额外的文字阴影效果，参考网站没有明显阴影 */
@supports (-webkit-touch-callout: none) {
    .typewriter-text {
        font-weight: 700;
    }
}

/* 响应式调整 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 40px;
        font-weight: 700;
    }
}

/* 匹配参考网站的红色边框效果 */
.typewriter-container {
    position: relative;
    margin: 10px 0 20px;
    min-height: 65px;
    display: flex;
    align-items: center;

}

/* 可选：添加红色边框效果，类似参考网站 */
.typewriter-text {
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #e83e8c;
    border-radius: 4px;
    background-color: #f8f9fa;
}

/* 清理之前所有的打字机样式定义，替换为单一定义 */
.typewriter-container {
    position: relative;
    margin: 10px 0 20px;
    min-height: 65px;
    display: flex;
    align-items: center;
}

/* 完全重置打字机文字样式，确保没有冲突 */
.typewriter-text {
    /* 关键粗细设置 */
    font-weight: 700 !important; /* 使用!important确保优先级 */
    
    /* 其他样式 */
    font-size: 52px;
    color: #1855bb; /* 更接近图片中的蓝色 */
    line-height: 1.2;
    min-height: 62px;
    font-family: "PingFang SC", "Segoe UI", Arial, sans-serif;
    letter-spacing: -0.5px;
    
    /* 强化字体渲染 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* 匹配参考图片中的边框样式 */
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #ef5a92; /* 调整为图片中的红色边框 */
    border-radius: 4px;
    background-color: rgba(248, 249, 252, 0.4); /* 半透明背景 */
}

/* 特殊设备兼容性 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* WebKit浏览器特定样式 */
    .typewriter-text {
        font-weight: 700 !important;
    }
}

/* 确保移动设备上也使用相同粗细 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 40px;
        font-weight: 700 !important;
    }
}

/* 完全重置打字机相关样式，移除所有之前的定义 */

/* 打字机容器样式 - 增加间距 */
.typewriter-container {
    position: relative;
    margin: 30px 0 40px; /* 增加上下间距 */
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 确保左对齐 */
}

/* 打字机文字样式 - 增加粗细和空间感 */
.typewriter-text {
    /* 关键粗细设置 */
    font-weight: 800 !important; /* 增加粗细到800 */
    
    /* 基础样式 */
    font-size: 54px;
    color: #1855bb; /* 保持蓝色 */
    line-height: 1.3; /* 增加行高 */
    letter-spacing: -0.3px; /* 减少字间负间距，文字不要太挤 */
    
    /* 移除所有边框和背景 */
    background: transparent;
    border: none;
    padding: 0;
    
    /* 增强字体渲染 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    /* 确保字体选择 */
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

/* 增强字体重量的额外方法 */
@supports (-webkit-background-clip: text) {
    .typewriter-text {
        text-shadow: 0 0 1px rgba(24, 85, 187, 0.2);
    }
}

/* AI服务展示部分增加间距 */
.ai-services-container {
    margin-top: 25px; /* 与打字机保持一定距离 */
    margin-bottom: 30px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .typewriter-container {
        margin: 20px 0 25px; /* 移动端稍微减少间距 */
    }
    
    .typewriter-text {
        font-size: 42px;
        line-height: 1.25;
        font-weight: 800 !important;
    }
    
    .ai-services-container {
        margin-top: 15px;
        margin-bottom: 20px;
    }

}

/* ===== 清除之前所有打字机样式 ===== */

/* 打字机容器 - 优化间距 */
.typewriter-container {
    position: relative;
    margin: 25px 0 35px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 打字机文字 - 超大号艺术字体效果 */
.typewriter-text {
    /* 使用华文行楷/方正舒体等艺术字体，降级到常规字体 */
    font-family: "华文行楷", "方正舒体", "STXingkai", "STCaiyun", "PingFang SC", "Microsoft YaHei", sans-serif !important;
    font-size: 62px !important; /* 超大号 */
    font-weight: 600 !important; /* 艺术字体通常不需要太粗 */
    color: #0066cc !important; /* 鲜亮的蓝色 */
    line-height: 1.2 !important;
    letter-spacing: 1px !important; /* 略微增加字间距增强艺术感 */
    
    /* 清除所有边框背景 */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    
    /* 增加立体感 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    
    /* 确保渲染质量 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* AI服务列表分隔符间距调整 */
.service-divider {
    color: #888;
    margin: 0 3px !important; /* 减少分隔符两侧间距 */
}

.ai-services {
    font-size: 16px;
    letter-spacing: -0.3px; /* 略微压缩整体间距 */
    word-spacing: -1px; /* 减少词间距 */
}

/* 响应式调整 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 46px !important;
    }
}

/* 可选：红色边框容器 */
.typewriter-frame {
    border: 2px solid #e83e8c;
    border-radius: 6px;
    padding: 10px 20px;
    display: inline-block;
    background-color: rgba(248, 249, 252, 0.4);
}

/* 移除红色边框样式 */
.typewriter-frame {
    /* 移除所有边框和背景 */
    border: none;
    background-color: transparent;
    
    /* 保留内联布局但减少内边距 */
    display: inline-block;
    padding: 0px;
}

/* ===== 打字机效果完全优化 ===== */

/* 打字机容器 - 专业化布局 */
.typewriter-container {
    position: relative;
    margin: 30px 0 35px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 打字机文字 - 现代专业风格 */
.typewriter-text {
    /* 选择专业商业字体 */
    font-family: "阿里巴巴普惠体", "思源黑体", "Noto Sans SC", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
    
    /* 醒目大小与粗细 */
    font-size: 58px !important;
    font-weight: 800 !important;
    
    /* 视觉效果增强 */
    color: #0066dd !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    
    /* 移除所有多余装饰 */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    
    /* 专业渲染优化 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* 品牌高亮效果 */
.typewriter-text .brand-highlight {
    background: linear-gradient(135deg, #0066dd, #3385ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AI服务列表优化 */
.service-divider {
    color: #aaa;
    margin: 0 4px !important;
}

.ai-services {
    font-size: 17px !important;
    letter-spacing: -0.2px !important;
    word-spacing: -0.5px !important;
    color: #444 !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

/* 响应式优化 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 42px !important;
    }
    
    .ai-services {
        font-size: 15px !important;
    }
}

/* 确保清除框架样式 */
.typewriter-frame {
    border: none !important;
    background-color: transparent !important;
    display: inline-block;
    padding: 0;
}

/* 重置打字机容器 - 保持合适间距 */
.typewriter-container {
    position: relative;
    margin: 30px 0 35px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 打字机文字 - 思源黑体加粗风格 */
.typewriter-text {
    /* 专用思源黑体 */
    font-family: "思源黑体", "Noto Sans SC", "Source Han Sans SC", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
    
    /* 醒目大小与粗细 */
    font-size: 58px !important;
    font-weight: 900 !important; /* 最粗体 */
    
    /* 视觉效果增强 */
    color: #0066dd !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    
    /* 移除所有多余装饰 */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    
    /* 专业渲染优化 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* AI服务列表优化 */
.service-divider {
    color: #aaa;
    margin: 0 4px !important;
}

.ai-services {
    font-size: 17px !important;
    letter-spacing: -0.2px !important;
    word-spacing: -0.5px !important;
    color: #444 !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

/* 响应式优化 */
@media (max-width: 767px) {
    .typewriter-text {
        font-size: 42px !important;
        font-weight: 900 !important; /* 保持粗体 */
    }
    
    .ai-services {
        font-size: 15px !important;
    }
}

/* 确保清除框架样式 */
.typewriter-frame {
    border: none !important;
    background-color: transparent !important;
    display: inline-block;
    padding: 0;
}

/* 新增副标题样式 */
.subtitle-container {
    margin: 5px 0 25px 0;
    padding: 0;
}

.subtitle-text {
    /* 黑体加粗，比AI服务列表大一倍左右 */
    font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "SimHei", sans-serif !important;
    font-size: 32px !important; /* 比AI服务列表(17px)大近一倍 */
    font-weight: 700 !important; /* 加粗但不要太重，以与打字机效果区分 */
    color: #333333 !important; /* 深色但不像打字机那么突出 */
    line-height: 1.4 !important;
    letter-spacing: -0.3px !important;
    
    /* 确保渲染质量 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    max-width: 80%; /* 控制宽度，避免太长 */
}

/* 响应式调整 */
@media (max-width: 767px) {
    .subtitle-text {
        font-size: 24px !important;
        line-height: 1.3 !important;
        max-width: 100%;
    }
    
    .subtitle-container {
        margin: 0 0 20px 0;
    }
}

/* 更新副标题样式 - 单行紧凑显示 */
.subtitle-container {
    margin: 0 0 15px 0; /* 减少上下间距 */
    padding: 0;
}

.subtitle-text {
    /* 调整字体大小和粗细 */
    font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif !important;
    font-size: 24px !important; /* 缩小字体确保单行显示 */
    font-weight: 600 !important; /* 稍微减轻字重 */
    color: #333333 !important;
    line-height: 1.2 !important; /* 减小行高 */
    letter-spacing: -0.2px !important; /* 微调字间距 */
    white-space: nowrap; /* 强制单行 */
    
    /* 确保渲染质量 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* 整体布局优化 - 紧凑显示 */
.typewriter-container {
    margin: 15px 0 5px; /* 大幅减少上下间距 */
    min-height: 70px; /* 减小高度 */
}

.ai-services-container {
    margin-bottom: 8px; /* 减少底部间距 */
    margin-top: 0px;
}

/* 统计卡片区域 - 进一步缩小 */
.stats-cards {
    margin-top: 10px; /* 减少顶部间距 */
    margin-bottom: 10px; /* 减少底部间距 */
    gap: 8px; /* 减小卡片间距 */
}

.stat-card {
    padding: 10px 8px; /* 进一步减小内边距 */
}

.stat-number {
    font-size: 38px; /* 进一步减小字体尺寸 */
}

.stat-symbol {
    font-size: 24px; /* 减小字体尺寸 */
}

.hero-buttons-centered {
    margin-top: 10px; /* 减少顶部间距 */
}

/* 整体内容区域调整 */
.hero-content-integrated {
    padding-top: 10px !important; /* 减少顶部填充 */
    gap: 2px; /* 减少元素间间距 */
}

/* 响应式调整 */
@media (max-width: 767px) {
    .subtitle-text {
        font-size: 18px !important; /* 移动端更小 */
        white-space: normal; /* 允许移动端换行 */
    }
    
    .typewriter-container {
        margin: 10px 0 5px; /* 移动端更紧凑 */
        min-height: 60px;
    }
    
    .stats-cards {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/* 减少顶部空白 - 调整Hero区域与导航栏的距离 */
.modern-hero {
    padding-top: 30px !important; /* 大幅减少顶部填充 */
    padding-bottom: 40px !important; /* 保持底部适当间距 */
}

/* 调整内容整体垂直间距 */
.hero-content-integrated {
    padding-top: 0px !important; /* 减少内容区顶部填充 */
    margin-top: 0px !important;
    gap: 2px; /* 保持元素间的紧凑间距 */
}

/* 微调打字机容器位置 */
.typewriter-container {
    margin: 10px 0 8px; /* 调整上下间距 */
    min-height: 70px;
}

/* 优化整体布局比例 */
.hero-grid {
    gap: 20px; /* 减少网格间距 */
    align-items: flex-start; /* 顶部对齐 */
}

/* 移动端优化 */
@media (max-width: 767px) {
    .modern-hero {
        padding-top: 20px !important; 
        padding-bottom: 30px !important;
    }
    
    .hero-content-integrated {
        padding-top: 0px !important;
    }
    
    .typewriter-container {
        margin: 5px 0 5px;
    }
}

/* 更新背景Canvas的样式，确保它在最底层，并增加透明度 */
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -13; /* 修改为-13，确保在背景层之上 */
    opacity: 0.75;
    pointer-events: none;
    /* 添加额外的调试边框用于测试 */
    /* border: 3px solid red; */
}

/* 确保其他背景元素的z-index正确 */
.bg-gradient, .bg-circle-1, .bg-circle-2, 
.bg-donut-1, .bg-donut-2, .bg-dot-pattern,
.bg-blur-1, .bg-blur-2 {
    z-index: -5;
}

/* 放大左上角logo区域 */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    transform: scale(1.2); /* 整体放大1.2倍 */
    transform-origin: left center; /* 从左侧开始放大 */
}

.logo-img {
    width: 40px; /* 增加logo图片尺寸 */
    height: 40px;
}

.logo {
    font-size: 1.5rem; /* 增加logo文字大小 */
    font-weight: 600;
    color: #2563EB;
}

/* 放大主标题区域 */
.title-section {
    transform: scale(1.15); /* 整体放大1.15倍 */
    transform-origin: left top; /* 从左上角开始放大 */
    margin-bottom: 20px; /* 增加底部间距，避免与下方内容重叠 */
}

#typewriter-title {
    font-size: 3.2rem !important; /* 增加标题文字大小 */
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.subtitle {
    font-size: 1.4rem !important; /* 增加副标题文字大小 */
    margin-top: 40px; /* 调整与主标题的间距 */
}

/* 移动端适配 - 微调logo位置和大小 */
@media (max-width: 768px) {
    /* 移动端logo微调：往左移动并放大到108% */
    .brand {
        transform: scale(1.08); /* 108%缩放 */
        transform-origin: left center; /* 从左侧开始缩放 */
        margin-left: -24px; /* 往左移动更多 */
    }
    
    /* 调整logo容器内间距，参考PC端但更紧凑 */
    .brand .flex.items-center.space-x-3 {
        gap: 4px; /* 让文字离logo图标更近 */
    }
    
    /* 微调logo头像尺寸 */
    .brand .w-10.h-10 {
        width: 36px; /* 从40px微调到36px */
        height: 36px;
    }
    
    /* 微调logo文字大小 */
    .brand .text-base,
    .brand .text-\[17px\] {
        font-size: 1rem; /* 稍微缩小文字 */
    }
    
    .brand .text-xs,
    .brand .text-\[11px\] {
        font-size: 0.65rem; /* 稍微缩小副标题文字 */
    }
    
    #typewriter-title {
        font-size: 3.92rem !important; /* 2.8rem * 1.4 = 140% */
    }
    
    .subtitle {
        font-size: 1.2rem !important;
    }
}

/* 背景元素响应式调整 */
.bg-gradient,
.bg-circle-1,
.bg-circle-2,
.bg-donut-1,
.bg-donut-2,
.bg-dot-pattern,
.bg-blur-1,
.bg-blur-2 {
    position: fixed;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* 移动端背景元素调整 */
@media (max-width: 768px) {
    .bg-circle-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        left: -75px;
        opacity: 0.4;
    }
    
    .bg-circle-2 {
        width: 120px;
        height: 120px;
        bottom: 10%;
        right: -60px;
        opacity: 0.3;
    }
    
    .bg-donut-1,
    .bg-donut-2 {
        width: 100px;
        height: 100px;
    }
    
    .bg-dot-pattern {
        background-size: 20px 20px;
        opacity: 0.1;
    }
    
    .bg-blur-1,
    .bg-blur-2 {
        width: 150px;
        height: 150px;
        filter: blur(40px);
    }
}

/* 优化容器响应式布局 */
.container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .stats-section {
        margin: 0 -12px;
        padding: 20px 12px;
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* 优化导航栏响应式 */
.navbar {
    min-height: 60px;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 12px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* 保持与PC端一致的brand样式 */
    /* .nav-left .brand {
        transform: none;
        padding: 0;
        gap: 10px;
    }
    
    .brand .flex.items-center.space-x-3 {
        gap: 10px;
        padding: 0;
    } */
    
    /* 保持与PC端一致的logo尺寸和文字样式 */
    /* .brand .w-10.h-10 {
        width: 36px;
        height: 36px;
    }
    
    .brand .text-base,
    .brand .text-\[17px\] {
        font-size: 1.25rem;
        white-space: nowrap;
        font-weight: bold;
    }
    
    .brand .text-xs,
    .brand .text-\[11px\],
    .brand .text-gray-500 {
        display: none;
    } */
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 8px 16px;
        white-space: nowrap;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        backdrop-filter: blur(4px);
        border-radius: 20px;
    }
    
    .menu-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .menu-btn .material-icons {
        font-size: 18px;
    }
}

/* 优化动态元素响应式 */
.floating-decorations {
    display: none; /* 在移动端隐藏装饰元素 */
}

@media (min-width: 768px) {
    .floating-decorations {
        display: block;
    }
}

/* 优化弹幕区域响应式 */
.comment-marquee {
    height: auto;
    min-height: 200px;
    padding: 16px 0;
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 12px;
        padding: 4px 8px;
        margin: 4px 0;
    }
}

/* 定制化手册按钮响应式 - 已统一为自定义CSS样式 */

@media (max-width: 768px) {
    .cta-button {
        font-size: 0.9rem;
        padding: 6px 12px;
        white-space: nowrap;
        position: relative;
        right: 8px;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* 移动端工作流样式 */
    .workflow-section {
        padding: 40px 0;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }
    
    /* 旧的workflow-card样式已移除 */
    
    .workflow-info {
        padding: 16px 12px 12px 12px;
    }
    
    .workflow-title {
        font-size: 12px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    /* 移动端横排缩略图调整 - 优化显示 */
    .thumbnail-grid-horizontal {
        gap: 3px;
        padding: 6px 8px;
        bottom: 85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: fit-content;
        max-width: calc(100% - 20px);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
    }
    
    .thumbnail-item-horizontal {
        width: 28px;
        height: 28px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;
    }
    
    .image-count-right {
        min-width: 28px;
        height: 24px;
        font-size: 9px;
        margin-left: 4px;
        border-radius: 4px;
        padding: 0 4px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .image-count-right .material-icons {
        font-size: 10px;
        margin-right: 2px;
    }
    
    /* 移动端正方形缩略图调整 */
    .thumbnail-grid-square {
        grid-template-columns: repeat(2, 32px);
        gap: 2px;
        padding: 4px;
        bottom: 60px;
        right: 8px;
    }
    
    .thumbnail-item-square {
        width: 32px;
        height: 32px;
    }
    
    .image-count-badge {
        top: 8px;
        right: 8px;
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .image-count-badge .material-icons {
        font-size: 12px;
        margin-right: 3px;
    }
    
    /* 移动端VIP标识调整 */
    .vip-badge {
        top: 6px;
        right: 6px;
        padding: 4px 6px;
        border-radius: 12px;
        gap: 3px;
    }
    
    .vip-logo {
        width: 12px;
        height: 12px;
    }
    
    .vip-text {
        font-size: 8px;
        letter-spacing: 0.1px;
    }
}

/* 新的工作流UI样式 - 按照图2设计，增加间距 */
.workflow-filter-container {
    margin: 3rem 0 3.5rem 0;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: inherit;
    /* 确保一排能显示9个按钮 */
    line-height: 1;
}

.filter-tab {
    padding: 14px 20px;
    border: none;
    background: #f8fafc;
    color: #6b7280;
    border-radius: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-out;
    white-space: nowrap;
    font-size: 14px;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    z-index: inherit;
    transform: translateZ(0) scale(1);
    flex: 0 0 auto;
    min-width: 90px;
    /* 优化一排显示9个的布局 */
    max-width: 130px;
    will-change: transform;
    backface-visibility: hidden;
}

/* 只有非激活状态才响应普通悬浮 */
.filter-tab:not(.active):hover {
    background: #eff6ff;
    color: #4f7fff;
    transform: translateZ(0) scale(1.02);
    border-color: rgba(79, 127, 255, 0.2);
    box-shadow: 0 2px 8px rgba(79, 127, 255, 0.15);
}

/* 激活状态 - 最高优先级，始终保持 - 扁平化设计 */
.filter-tab.active {
    background: linear-gradient(135deg, #4f7fff 0%, #8b5cf6 100%) !important;
    color: white !important;
    transform: translateZ(0) scale(1.0);
    border-color: transparent !important;
    font-weight: 600 !important;
    /* 移除阴影效果，保持扁平化 */
    box-shadow: none !important;
}

/* 激活状态的悬浮增强 - 只保留轻微放大，不改变颜色 */
.filter-tab.active:hover {
    transform: translateZ(0) scale(1.01) !important;
    /* 移除背景颜色变化，保持原有的蓝色 */
}

.filter-tab:active {
    transform: translateZ(0) scale(0.96);
    transition: transform 0.08s ease-out;
}

.filter-tab.active:active {
    transform: translateZ(0) scale(0.98);
    transition: transform 0.08s ease-out;
}

/* 专业可访问性支持 - 无阴影设计 */
.filter-tab:not(.active):focus {
    outline: none;
    border-color: #4f7fff;
    background: #eff6ff;
}

.filter-tab.active:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6) !important;
    outline-offset: 2px;
}

/* 禁用状态预留 */
.filter-tab:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .filter-tab {
        border: 2px solid #d1d5db;
    }
    
    .filter-tab.active {
        border: 2px solid #4f7fff !important;
        background: #4f7fff !important;
    }
}

/* 确保筛选器在页面加载时的层级稳定性 */
.workflow-filter-container {
    isolation: isolate;
}

.filter-tab {
    isolation: isolate;
}

/* 工作流网格 - 固定4列布局，强制等宽卡片 */
.new-workflow-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.8rem !important;
    margin-top: 2.5rem !important;
    position: relative !important;
    width: 100% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1.5rem !important;
    grid-auto-rows: 1fr !important; /* 确保所有行高度一致 */
    box-sizing: border-box !important;
    justify-items: stretch !important; /* 强制网格项目拉伸填满宽度 */
    align-items: stretch !important; /* 强制网格项目拉伸填满高度 */
}

/* 工作流卡片基础样式 - 参考第二张图片的简洁风格 */
.new-workflow-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    min-height: 550px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important; /* 更纯净的白色背景 */
    border-radius: 16px !important; /* 更柔和的圆角 */
    border: none !important; /* 移除边框实现简约效果 */
    backdrop-filter: blur(12px) saturate(1.2) !important; /* 减少模糊效果 */
    -webkit-backdrop-filter: blur(12px) saturate(1.2) !important;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.08),
        0 3px 15px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04) !important; /* 增强阴影替代边框的分离效果 */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* moreWorkflows 单独处理，允许JavaScript控制显示/隐藏 */
#moreWorkflows {
    display: none; /* 默认隐藏，允许JavaScript控制 */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.8rem !important;
    margin-top: 2.5rem !important;
    position: relative !important;
    width: 100% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1.5rem !important;
}

/* 确保显示时应用网格布局 - 提高优先级覆盖内联样式 */
#moreWorkflows.show,
#moreWorkflows[style*="display: grid"] {
    display: grid !important;
    /* 默认4列布局 */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.8rem !important;
    margin-top: 2.5rem !important;
    position: relative !important;
    width: 100% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1.5rem !important;
}

/* ========================================
   工作流卡片样式系统 - 旧版本已移除，使用底部统一的苹果风格
======================================== */

/* 旧的磨砂奢华LV风格设计已移除 */

/* 旧的悬停效果已移除 */

/* 旧的装饰效果定义已移除 */

/* 旧的装饰线条已移除 */

/* 旧的图片区域样式已移除 */

/* ========================================
   旧的工作流卡片布局已移除 - 使用底部统一的苹果风格
======================================== */

/* 旧的信息区域样式已移除 */

/* 旧的标题样式已移除 */

/* 旧的标签行样式已移除 */

/* 旧的标签样式已移除 */

/* 旧的缩略图样式已移除 */

/* 旧的缩略图项目样式已移除 */

/* ========================================
   大量旧样式定义已移除，跳转到最新苹果风格样式
======================================== */
/* 所有旧样式定义从这里开始已被移除 */

.more-count-bottom:hover {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.9) 0%, 
        rgba(139, 92, 246, 1) 100%);
    transform: scale(1.15);
}

/* 优化痛点描述 - 更简洁 */
.workflow-benefits {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.benefit-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.85) 0%, 
        rgba(22, 163, 74, 0.9) 100%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 2px 6px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* 已删除的悬停效果 1 */

/* 隐藏分类标签以简化设计 */
.workflow-category-badge {
    display: none;
}


/* 奢华光晕引导效果 */
.new-workflow-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(45deg, 
        transparent 30%,
        rgba(218, 165, 32, 0.1) 50%,
        transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 10;
}

/* 已删除的悬停效果 2 */

/* 隐藏不需要的元素 */
.detail-badge {
    display: none;
}


/* ========================================
   4列布局 + 奢华缩略图设计 
======================================== */

/* 移除强制4列布局，使用响应式设计 */

/* 重复定义已移除 */




/* 重新启用分类标签并优化样式 */
.workflow-category-badge {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.9) 0%, 
        rgba(5, 150, 105, 0.95) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 3px 10px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 12;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.workflow-category-badge:hover {
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.95) 0%, 
        rgba(4, 120, 87, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* 响应式断点 - 固定布局适配不同屏幕尺寸 */
@media (max-width: 1400px) {
    .new-workflow-grid,
    #moreWorkflows.show {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2.2rem !important;
        max-width: 1400px !important;
    }
    
    .new-workflow-card {
        min-height: 530px !important; /* 对应增加卡片高度 */
        width: 100% !important;
    }
    
    .workflow-main-image {
        height: 400px !important; /* 大幅增加响应式图片高度 */
        flex: 0 0 400px !important;
        width: 100% !important;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .new-workflow-grid,
    #moreWorkflows.show {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.8rem !important;
        max-width: 1200px !important;
    }
    
    .new-workflow-card {
        min-height: 510px !important; /* 对应增加卡片高度 */
        width: 100% !important;
    }
    
    .workflow-main-image {
        height: 380px !important; /* 中等屏幕增加图片高度 */
        flex: 0 0 380px !important;
        width: 100% !important;
    }
}

/* 平板端优化 - iPad等设备 */
@media (max-width: 900px) and (min-width: 801px) {
    .new-workflow-grid,
    #moreWorkflows.show {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
        max-width: 100% !important;
    }
    
    .new-workflow-card {
        min-height: 420px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .workflow-main-image {
        height: 300px !important;
        flex: 0 0 300px !important;
        width: 100% !important;
    }
    
    .workflow-card-info {
        padding: 18px !important;
        min-height: 120px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .workflow-card-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .workflow-feature-tags {
        margin: 8px 0 !important;
    }
    
    .feature-tag-black {
        padding: 5px 10px !important;
        font-size: 9px !important;
        border-radius: 6px !important;
    }
    
    .workflow-benefits {
        margin-top: auto !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 800px) {
    .new-workflow-grid,
    #moreWorkflows.show {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .new-workflow-card {
        min-height: 400px !important; /* 减少卡片高度，避免变形 */
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .workflow-main-image {
        height: 280px !important; /* 适中的图片高度 */
        flex: 0 0 280px !important;
        width: 100% !important;
    }
    
    .workflow-card-info {
        padding: 16px !important;
        min-height: 110px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .workflow-card-title {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .workflow-feature-tags {
        margin: 6px 0 !important;
    }
    
    .workflow-benefits {
        margin-top: auto !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 500px) {
    .new-workflow-grid,
    #moreWorkflows.show {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
        padding: 0 1rem !important;
    }
    
    .new-workflow-card {
        min-height: 420px !important; /* 对应增加卡片高度 */
        width: 100% !important;
    }
    
    .workflow-main-image {
        height: 270px !important; /* 手机端增加图片高度 */
        flex: 0 0 270px !important;
        width: 100% !important;
    }
    
    .workflow-card-info {
        padding: 14px !important;
        min-height: 110px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .workflow-card-title {
        font-size: 0.9rem !important;
    }
}





    /* 移除了底部按钮区域 - 简化设计 */
    
    /* 移除了按钮样式 - 简化设计 */



/* 定制工作流区域 - 长条上下排版设计 */
.custom-workflow-section {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.custom-workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}


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

.custom-workflow-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.custom-workflow-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.custom-workflow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.custom-workflow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.custom-workflow-btn:hover::before {
    left: 100%;
}

.custom-workflow-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.custom-workflow-btn .material-icons {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.custom-workflow-btn:hover .material-icons {
    transform: rotate(360deg) scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .custom-workflow-section {
        padding: 40px 0;
    }
    
    .custom-workflow-content {
        max-width: 680px;
        padding: 0 20px;
    }
    
    .custom-workflow-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
        line-height: 1.1;
    }
    
    .custom-workflow-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
        max-width: 500px;
    }
    
    .custom-workflow-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .custom-workflow-btn .material-icons {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .custom-workflow-section {
        padding: 32px 0;
    }
    
    .custom-workflow-content {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .custom-workflow-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }
    
    .custom-workflow-description {
        font-size: 0.9rem;
        margin-bottom: 26px;
        padding: 0 8px;
        line-height: 1.4;
        max-width: 420px;
    }
    
    .custom-workflow-btn {
        padding: 13px 26px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 35px;
    }
    
    .custom-workflow-btn .material-icons {
        font-size: 17px;
    }
}

@media (max-width: 360px) {
    .custom-workflow-section {
        padding: 28px 0;
    }
    
    .custom-workflow-content {
        padding: 0 12px;
    }
    
    .custom-workflow-title {
        font-size: 1.45rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    
    .custom-workflow-description {
        font-size: 0.85rem;
        margin-bottom: 24px;
        padding: 0 6px;
        line-height: 1.35;
        max-width: 340px;
    }
    
    .custom-workflow-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        gap: 6px;
        border-radius: 30px;
    }
    
    .custom-workflow-btn .material-icons {
        font-size: 16px;
    }
}


/* 融合式布局的响应式优化 */

/* 中等屏幕优化 */
@media (max-width: 1200px) {
    .workflow-card-info {
        padding: 20px;
        min-height: 130px;
        gap: 12px;
    }
    
    .workflow-card-title {
        font-size: 1.05rem;
        max-height: 2.4rem;
    }
    
    .feature-tag-black {
        padding: 4px 10px; /* 胶囊形状的内边距 */
        font-size: 9px;
        border-radius: 50px; /* 胶囊状圆角 */
        min-height: 22px; /* 胶囊形状的高度 */
    }
    
    
    .benefit-check {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }
    
    .benefit-text {
        font-size: 10px;
    }
}

/* 平板端优化 */
@media (max-width: 900px) {
    .workflow-card-info {
        padding: 18px;
        min-height: 120px;
        gap: 10px;
    }
    
    .workflow-card-title {
        font-size: 1rem;
        max-height: 2.2rem;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .workflow-feature-tags {
        gap: 4px;
    }
    
    .feature-tag-black {
        padding: 3px 8px; /* 胶囊形状的内边距 */
        font-size: 8px;
        border-radius: 50px; /* 胶囊状圆角 */
        min-height: 20px; /* 胶囊形状的高度 */
    }
    
    
    .benefit-check {
        width: 13px;
        height: 13px;
        font-size: 8px;
    }
    
    .benefit-text {
        font-size: 10px;
    }
}

/* 手机端优化 */
@media (max-width: 480px) {
    .workflow-card-info {
        padding: 16px;
        min-height: 110px;
        gap: 8px;
    }
    
    .workflow-card-title {
        font-size: 0.95rem;
        max-height: 2rem;
        line-height: 1.25;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .workflow-feature-tags {
        width: 100%;
        gap: 3px;
    }
    
    .feature-tag-black {
        padding: 3px 7px; /* 胶囊形状的内边距 */
        font-size: 8px;
        border-radius: 50px; /* 胶囊状圆角 */
        min-height: 18px; /* 胶囊形状的高度 */
    }
    
    
    .benefit-check {
        width: 12px;
        height: 12px;
        font-size: 7px;
    }
    
    .benefit-text {
        font-size: 9px;
    }
}



/* ========================================
   白色毛玻璃重新设计 - 优雅融合布局
======================================== */

/* 信息区域 - 参考第二张图片的清爽风格 */
.workflow-card-info {
    display: flex !important;
    position: relative !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    
    /* 清爽的白色背景，参考第二张图片风格 */
    background: rgba(255, 255, 255, 0.95) !important; /* 略微透明的白色 */
    backdrop-filter: blur(8px) saturate(1.1) !important; /* 轻微模糊 */
    -webkit-backdrop-filter: blur(8px) saturate(1.1) !important;
    
    /* 柔和的边框和圆角 */
    border: 1px solid rgba(240, 240, 240, 0.9) !important; /* 非常淡的边框 */
    border-top: none !important; /* 与图片区域无缝连接 */
    border-radius: 0 0 14px 14px !important; /* 与卡片圆角一致 */
    box-shadow: 
        0 -1px 0 rgba(255, 255, 255, 0.8) inset,
        0 1px 3px rgba(0, 0, 0, 0.02) !important; /* 轻微的内阴影和外阴影 */
    
    /* 紧凑且优雅的布局 */
    padding: 16px 20px 18px 20px !important;
    margin: 0 !important;
    flex-direction: column !important;
    gap: 6px !important;
    min-height: 110px !important;
    max-height: 130px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    z-index: 1 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* 已删除的悬停效果 3 */

/* ========================================
   全新的简洁悬停效果 - 重新设计
======================================== */

/* 主卡片悬停效果 */
.new-workflow-card:hover {
    /* 整体上移 */
    transform: translateY(-8px) !important;
    
    /* 温和的阴影增强 */
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06) !important;
    
    /* 平滑过渡 */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 图片缩放效果 */
.new-workflow-card:hover .workflow-main-image img {
    transform: scale(1.03) !important;
}

/* 信息区域保持稳定 - 只调整视觉效果 */
.new-workflow-card:hover .workflow-card-info {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
}

/* 标题颜色微调 */
.new-workflow-card:hover .workflow-card-title {
    color: #1a202c !important;
}

/* 独立的工作流标题样式 - 简洁清晰的文字设计 */
.new-workflow-card .workflow-card-info .workflow-card-title {
    color: #2d3748 !important; /* 更柔和的深灰色，参考第二张图片 */
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important; /* 修复：设置为0，避免文字斜向移动 */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: 2.8rem !important;
    text-shadow: none !important;
    transition: color 0.3s ease !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
}

/* 禁用所有标签悬停效果，保持样式稳定 */
.new-workflow-card .workflow-card-info .workflow-feature-tags .feature-tag-black:hover,
.workflow-feature-tags .feature-tag-black:hover,
span.feature-tag-black:hover,
.feature-tag-black:hover,
.new-workflow-card:hover .feature-tag-black,
body .new-workflow-card .workflow-card-info .workflow-feature-tags .feature-tag-black:hover,
body .workflow-feature-tags .feature-tag-black:hover,
body span.feature-tag-black:hover {
    transform: none !important;
    background: inherit !important;
    box-shadow: inherit !important;
    color: inherit !important;
}

/* 独立的标签和缩略图行样式 - 紧凑间距 */
.new-workflow-card .workflow-card-info .workflow-tags-thumbnails-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important; /* 减少间距，更紧凑 */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    box-sizing: border-box !important;
}

/* 独立的功能标签容器样式 - 紧凑间距 */
.new-workflow-card .workflow-card-info .workflow-feature-tags {
    display: flex !important;
    gap: 4px !important; /* 减少标签间距，更紧凑 */
    flex: 1 !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* 独立的功能标签样式 - 高曲率圆角效果 - 强制应用 */
.new-workflow-card .workflow-card-info .workflow-feature-tags .feature-tag-black,
.workflow-feature-tags .feature-tag-black,
span.feature-tag-black {
    display: inline-flex !important;
    align-items: center !important;
    padding: 7px 14px !important; /* 增大内边距 */
    background: linear-gradient(135deg, #007AFF 0%, #8B5CF6 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important; /* 适中圆角，如图中"全部"按钮样式 */
    font-size: 11px !important; /* 增大字体 */
    font-weight: 700 !important; /* 更粗字体 */
    letter-spacing: 0.02em !important;
    border: none !important;
    box-shadow: 
        0 1px 3px rgba(139, 92, 246, 0.2),
        0 1px 2px rgba(139, 92, 246, 0.1) !important;
    text-shadow: none !important; /* 去掉文字阴影 */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
    min-height: 24px !important; /* 调整高度配合胶囊形状 */
}

/* 悬停效果 - 强制应用 */
.new-workflow-card .workflow-card-info .workflow-feature-tags .feature-tag-black:hover,
.workflow-feature-tags .feature-tag-black:hover,
span.feature-tag-black:hover,
.feature-tag-black:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, #0056CC 0%, #7C3AED 100%) !important;
    box-shadow: 
        0 2px 6px rgba(124, 58, 237, 0.3),
        0 1px 3px rgba(124, 58, 237, 0.2) !important;
}




/* 独立的解决痛点样式 - 紧凑间距 */
.new-workflow-card .workflow-card-info .workflow-benefits {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important; /* 减少间距，更紧凑 */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.benefit-check {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 
        0 2px 6px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.benefit-text {
    color: #374151 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: none !important;
}

/* 重复定义已移除 */

/* 主图区域 - 匹配参考图片的圆角风格 */
.workflow-main-image {
    position: relative !important;
    width: 100% !important;
    height: 420px !important;
    overflow: hidden !important;
    border-radius: 14px 14px 0 0 !important; /* 与卡片圆角保持一致 */
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%) !important; /* 更柔和的背景渐变 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 420px !important;
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.workflow-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* 图片加载失败时的占位符样式 - 默认隐藏 */
.workflow-main-image::before {
    content: "";
    display: none;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23cbd5e1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* 当需要显示占位符时 */
.workflow-main-image.show-placeholder::before {
    display: block !important;
}

/* 图片加载失败时的样式 */
.workflow-main-image img[src=""],
.workflow-main-image img:not([src]) {
    opacity: 0;
    width: 0;
    height: 0;
}

/* 确保正常图片完全显示 */
.workflow-main-image img[src]:not([src=""]) {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/* 确保工作流卡片在任何情况下都保持一致的布局 */
.new-workflow-card {
    box-sizing: border-box !important;
}

.new-workflow-card .workflow-main-image {
    box-sizing: border-box !important;
}

.new-workflow-card .workflow-card-info {
    box-sizing: border-box !important;
}

/* 防止内容溢出导致高度不一致 */
.workflow-card-title {
    word-break: break-word !important;
    hyphens: auto !important;
}

/* 确保所有卡片在网格中的高度对齐和布局稳定性 */
.new-workflow-grid .new-workflow-card {
    align-self: stretch !important;
    contain: layout style !important; /* 现代浏览器性能优化 */
}

/* 防止内容溢出和布局偏移 */
.workflow-main-image,
.workflow-card-info {
    will-change: transform !important; /* 优化动画性能 */
    contain: layout !important;
}

/* 确保图片容器在任何情况下都保持固定尺寸 */
.workflow-main-image {
    min-height: 420px !important; /* 与主定义保持一致 */
    max-height: 420px !important;
}

/* 强制信息区域保持在底部，不与图片重叠 */
.workflow-card-info {
    align-self: flex-end !important;
}

/* 跨浏览器兼容性和强制约束 */
.new-workflow-card {
    -webkit-transform: translateZ(0) !important; /* 启用硬件加速 */
    transform: translateZ(0) !important;
}

/* 全局网格项目约束 - 强制等宽，更严格的约束 */
.new-workflow-grid > .new-workflow-card,
#moreWorkflows > .new-workflow-card {
    grid-column: span 1 !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 100% !important; /* 强制占满网格单元格 */
    max-width: 100% !important; /* 严格限制最大宽度 */
    min-width: 0 !important; /* 防止内容撑宽 */
    flex-shrink: 0 !important; /* 防止收缩 */
    flex-grow: 1 !important; /* 允许增长填满空间 */
}

/* 重置可能影响宽度的全局样式 */
.new-workflow-card * {
    box-sizing: border-box !important;
}

/* 独立的检查图标样式 - 参考图片优化尺寸 */
.new-workflow-card .workflow-card-info .workflow-benefits .benefit-check {
    width: 16px !important; /* 恢复合适尺寸 */
    height: 16px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 10px !important; /* 恢复合适字体 */
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 
        0 2px 6px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 独立的痛点文本样式 - 清晰简洁的文字 */
.new-workflow-card .workflow-card-info .workflow-benefits .benefit-text {
    color: #4a5568 !important; /* 更柔和的中灰色，与第二张图片风格一致 */
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


/* 白色毛玻璃响应式优化 */

/* 桌面端优化 */
@media (max-width: 1200px) {
    .workflow-card-info {
        bottom: 14px !important;
        left: 14px !important;
        right: 14px !important;
        padding: 16px !important;
        gap: 10px !important;
        border-radius: 14px !important;
    }
    
    .workflow-card-title {
        font-size: 0.95rem !important;
        max-height: 2.4rem !important;
    }
    
    .feature-tag-black {
        padding: 3px 8px !important;
        font-size: 8px !important;
        border-radius: 10px !important;
    }
    
    
    .benefit-check {
        width: 14px !important;
        height: 14px !important;
        font-size: 8px !important;
    }
    
    .benefit-text {
        font-size: 9px !important;
    }
}

/* 平板端优化 */
@media (max-width: 900px) {
    .workflow-card-info {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        padding: 14px !important;
        gap: 8px !important;
        border-radius: 12px !important;
    }
    
    .workflow-card-title {
        font-size: 0.9rem !important;
        max-height: 2.2rem !important;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    .workflow-feature-tags {
        gap: 4px !important;
    }
    
    .feature-tag-black {
        padding: 3px 8px !important; /* 胶囊形状的内边距 */
        font-size: 8px !important;
        border-radius: 50px !important; /* 胶囊状圆角 */
        min-height: 20px !important; /* 胶囊形状的高度 */
    }
    
    
    .benefit-check {
        width: 13px !important;
        height: 13px !important;
        font-size: 7px !important;
    }
    
    .benefit-text {
        font-size: 9px !important;
    }
}

/* 手机端优化 */
@media (max-width: 480px) {
    .workflow-card-info {
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 12px !important;
        gap: 6px !important;
        border-radius: 10px !important;
    }
    
    .workflow-card-title {
        font-size: 0.85rem !important;
        max-height: 2rem !important;
        line-height: 1.25 !important;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 8px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .workflow-feature-tags {
        width: 100% !important;
        gap: 3px !important;
    }
    
    .feature-tag-black {
        padding: 2px 6px !important; /* 胶囊形状的内边距 */
        font-size: 7px !important;
        border-radius: 50px !important; /* 胶囊状圆角 */
        min-height: 16px !important; /* 胶囊形状的高度 */
    }
    
    
    .benefit-check {
        width: 12px !important;
        height: 12px !important;
        font-size: 6px !important;
    }
    
    .benefit-text {
        font-size: 8px !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .feature-tag-black:hover {
        transform: none !important;
    }
    
    .workflow-card-info {
        background: rgba(255, 255, 255, 0.98) !important;
    }
}


/* ========================================
   正确的白色毛玻璃设计 - 底部贴合布局
======================================== */

/* 重新修正信息区域 - 底部贴合的白色毛玻璃 */
.workflow-card-info {
    display: flex !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    
    /* 白色毛玻璃核心效果 */
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.8) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.1) !important;
    
    /* 移除边框，保持简约设计 */
    border-radius: 0 0 24px 24px !important;
    
    /* 多层阴影增强质感 */
    box-shadow: 
        0 -2px 20px rgba(255, 255, 255, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06),
        /* 移除白色内阴影，消除细白圈效果 */;
    
    /* 布局属性 */
    padding: 20px !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-height: 120px !important;
    z-index: 10 !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    
    /* 增强毛玻璃效果的渐变背景 */
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(241, 245, 249, 0.85) 100%
    ) !important;
}

/* 已删除的悬停效果 6 */

/* 黑色字体标题 */
.workflow-card-title {
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: 2.6rem !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease !important;
}

/* 已删除的悬停效果 10 */

/* 标签和缩略图融合行 */
.workflow-tags-thumbnails-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 !important;
}

/* 功能标签 - 深色设计 */
.workflow-feature-tags {
    display: flex !important;
    gap: 6px !important;
    flex: 1 !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.feature-tag-black {
    display: inline-flex !important;
    align-items: center !important;
    padding: 4px 12px !important;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 14px !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 2px 8px rgba(30, 41, 59, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

/* 第二个重复的标签悬停定义已清理 */

/* 缩略图容器 - 毛玻璃质感 */

/* 缩略图项目 */


/* 痛点描述 */
.workflow-benefits {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.benefit-check {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 
        0 2px 6px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.benefit-text {
    color: #374151 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* 重复定义已移除 */

/* 主图区域 - 已在上方统一定义 */


/* 正确白色毛玻璃的响应式设计 */

/* 中等屏幕优化 */
@media (max-width: 1200px) {
    .workflow-card-info {
        padding: 18px !important;
        gap: 10px !important;
        min-height: 110px !important;
    }
    
    .workflow-card-title {
        font-size: 1.05rem !important;
        max-height: 2.4rem !important;
    }
    
    .feature-tag-black {
        padding: 3px 10px !important;
        font-size: 9px !important;
        border-radius: 12px !important;
    }
    
    .workflow-bottom-thumbnails {
        padding: 5px 7px !important;
        border-radius: 10px !important;
        gap: 3px !important;
    }
    
    .thumbnail-item-bottom,
    .more-count-bottom {
        width: 20px !important;
        height: 20px !important;
        border-radius: 5px !important;
    }
    
    .benefit-check {
        width: 14px !important;
        height: 14px !important;
        font-size: 8px !important;
    }
    
    .benefit-text {
        font-size: 10px !important;
    }
}

/* 平板端优化 */
@media (max-width: 900px) {
    .workflow-card-info {
        padding: 16px !important;
        gap: 8px !important;
        min-height: 100px !important;
    }
    
    .workflow-card-title {
        font-size: 1rem !important;
        max-height: 2.2rem !important;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    .workflow-feature-tags {
        gap: 4px !important;
    }
    
    .feature-tag-black {
        padding: 3px 8px !important;
        font-size: 8px !important;
        border-radius: 10px !important;
    }
    
    .workflow-bottom-thumbnails {
        padding: 4px 6px !important;
        border-radius: 8px !important;
        gap: 2px !important;
    }
    
    .thumbnail-item-bottom,
    .more-count-bottom {
        width: 18px !important;
        height: 18px !important;
        border-radius: 4px !important;
    }
    
    .more-count-bottom {
        font-size: 7px !important;
        padding: 0 4px !important;
    }
    
    .benefit-check {
        width: 13px !important;
        height: 13px !important;
        font-size: 7px !important;
    }
    
    .benefit-text {
        font-size: 10px !important;
    }
}

/* 手机端优化 */
@media (max-width: 480px) {
    .workflow-card-info {
        padding: 14px !important;
        gap: 6px !important;
        min-height: 90px !important;
    }
    
    .workflow-card-title {
        font-size: 0.95rem !important;
        max-height: 2rem !important;
        line-height: 1.25 !important;
    }
    
    .workflow-tags-thumbnails-row {
        gap: 8px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .workflow-feature-tags {
        width: 100% !important;
        gap: 3px !important;
    }
    
    .feature-tag-black {
        padding: 2px 6px !important;
        font-size: 7px !important;
        border-radius: 8px !important;
    }
    
    .workflow-bottom-thumbnails {
        align-self: flex-end !important;
        padding: 3px 5px !important;
        border-radius: 6px !important;
        gap: 2px !important;
    }
    
    .thumbnail-item-bottom,
    .more-count-bottom {
        width: 16px !important;
        height: 16px !important;
        border-radius: 3px !important;
        border-width: 1px !important;
    }
    
    .more-count-bottom {
        font-size: 6px !important;
        padding: 0 3px !important;
        min-width: 16px !important;
    }
    
    .benefit-check {
        width: 12px !important;
        height: 12px !important;
        font-size: 6px !important;
    }
    
    .benefit-text {
        font-size: 9px !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .thumbnail-item-bottom:hover,
    .more-count-bottom:hover,
    .feature-tag-black:hover {
        transform: none !important;
    }
    
    .workflow-card-info {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(18px) saturate(1.6) brightness(1.1) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.6) brightness(1.1) !important;
    }
    
    .workflow-bottom-thumbnails {
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(10px) saturate(1.2) !important;
        -webkit-backdrop-filter: blur(10px) saturate(1.2) !important;
    }
}


/* ========================================
   图片区域缩略图和悬停引导样式
======================================== */

/* 主图区域基础样式更新 - 已在上方统一定义 */




/* 悬停引导提示 */
.hover-guide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
    pointer-events: none;
}

/* 悬停引导效果已移除 */
/* 已删除的悬停效果 11 */

/* 引导图标 */
.guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 4px 16px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.guide-icon .material-icons {
    font-size: 20px;
    font-weight: 500;
}

/* 引导文字 */
.guide-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* 脉动动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 16px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 24px rgba(99, 102, 241, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* 移除信息区域的缩略图相关样式 */
.workflow-tags-thumbnails-row {
    display: block !important;
}

.workflow-bottom-thumbnails {
    display: none !important;
}

/* 调整功能标签样式（去掉融合行后的调整） */
.workflow-feature-tags {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin: 0 !important;
}


/* 图片区域缩略图的响应式设计 */

/* 中等屏幕优化 */
@media (max-width: 1200px) {
    .image-thumbnails {
        bottom: 10px;
        right: 10px;
        padding: 5px 7px;
        border-radius: 10px;
        gap: 3px;
    }
    
    .thumbnail-item,
    .more-count {
        width: 22px;
        height: 22px;
        border-radius: 5px;
    }
    
    .more-count {
        font-size: 7px;
        padding: 0 5px;
    }
    
    .hover-guide {
        padding: 18px 20px;
        border-radius: 14px;
    }
    
    .guide-icon {
        width: 36px;
        height: 36px;
    }
    
    .guide-icon .material-icons {
        font-size: 18px;
    }
    
    .guide-text {
        font-size: 11px;
    }
}

/* 平板端优化 */
@media (max-width: 900px) {
    .image-thumbnails {
        bottom: 8px;
        right: 8px;
        padding: 4px 6px;
        border-radius: 8px;
        gap: 2px;
    }
    
    .thumbnail-item,
    .more-count {
        width: 20px;
        height: 20px;
        border-radius: 4px;
        border-width: 1px;
    }
    
    .more-count {
        font-size: 7px;
        padding: 0 4px;
    }
    
    .hover-guide {
        padding: 16px 18px;
        border-radius: 12px;
        gap: 6px;
    }
    
    .guide-icon {
        width: 32px;
        height: 32px;
    }
    
    .guide-icon .material-icons {
        font-size: 16px;
    }
    
    .guide-text {
        font-size: 10px;
    }
}

/* 手机端优化 */
@media (max-width: 480px) {
    .image-thumbnails {
        bottom: 6px;
        right: 6px;
        padding: 3px 5px;
        border-radius: 6px;
        gap: 2px;
    }
    
    .thumbnail-item,
    .more-count {
        width: 18px;
        height: 18px;
        border-radius: 3px;
        border-width: 1px;
    }
    
    .more-count {
        font-size: 6px;
        padding: 0 3px;
        min-width: 18px;
    }
    
    .hover-guide {
        padding: 14px 16px;
        border-radius: 10px;
        gap: 5px;
    }
    
    .guide-icon {
        width: 28px;
        height: 28px;
    }
    
    .guide-icon .material-icons {
        font-size: 14px;
    }
    
    .guide-text {
        font-size: 9px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .hover-guide {
        display: none;
    }
    
    .thumbnail-item:hover,
    .more-count:hover {
        transform: none;
    }
    
    .image-thumbnails {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }
}


/* ========================================
   增强毛玻璃质感效果
======================================== */

/* 增强信息区域的毛玻璃效果 */
.workflow-card-info {
    /* 更强的毛玻璃核心效果 */
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(32px) saturate(2.2) brightness(1.2) contrast(1.1) !important;
    -webkit-backdrop-filter: blur(32px) saturate(2.2) brightness(1.2) contrast(1.1) !important;
    
    /* 增强毛玻璃质感的多层背景 */
    background-image: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 250, 252, 0.8) 30%,
            rgba(241, 245, 249, 0.75) 70%,
            rgba(226, 232, 240, 0.7) 100%),
        radial-gradient(ellipse at top,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 50%),
        radial-gradient(ellipse at bottom,
            rgba(226, 232, 240, 0.3) 0%,
            transparent 50%) !important;
    
    /* 增强边框效果 */
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-top: 3px solid rgba(255, 255, 255, 0.95) !important;
    
    /* 多层阴影增强立体感 */
    box-shadow: 
        0 -4px 32px rgba(255, 255, 255, 0.6),
        0 8px 48px rgba(0, 0, 0, 0.15),
        0 4px 24px rgba(0, 0, 0, 0.1),
        0 2px 12px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(255, 255, 255, 0.7),
        inset 0 0 60px rgba(255, 255, 255, 0.2) !important;
}

.new-workflow-card:hover .workflow-card-info {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(40px) saturate(2.5) brightness(1.25) contrast(1.15) !important;
    -webkit-backdrop-filter: blur(40px) saturate(2.5) brightness(1.25) contrast(1.15) !important;
    
    background-image: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.85) 30%,
            rgba(241, 245, 249, 0.8) 70%,
            rgba(226, 232, 240, 0.75) 100%),
        radial-gradient(ellipse at top,
            rgba(255, 255, 255, 0.5) 0%,
            transparent 50%),
        radial-gradient(ellipse at bottom,
            rgba(226, 232, 240, 0.4) 0%,
            transparent 50%) !important;
    
    border-top-color: rgba(255, 255, 255, 0.98) !important;
    
    box-shadow: 
        0 -6px 40px rgba(255, 255, 255, 0.8),
        0 12px 64px rgba(0, 0, 0, 0.18),
        0 6px 32px rgba(0, 0, 0, 0.12),
        0 3px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -2px 0 rgba(255, 255, 255, 0.8),
        inset 0 0 80px rgba(255, 255, 255, 0.3) !important;
}

/* 增强图片区域缩略图的毛玻璃效果 */
.image-thumbnails {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(20px) saturate(1.8) brightness(0.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(0.8) !important;
    
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.2) !important;
}

.new-workflow-card:hover .image-thumbnails {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(24px) saturate(2) brightness(0.7) !important;
    -webkit-backdrop-filter: blur(24px) saturate(2) brightness(0.7) !important;
    
    border-color: rgba(255, 255, 255, 0.5) !important;
    
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 24px rgba(0, 0, 0, 0.3) !important;
}

/* 增强悬停引导的毛玻璃效果 */
.hover-guide {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(24px) saturate(1.8) brightness(0.9) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(0.9) !important;
    
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(0, 0, 0, 0.3) !important;
}

/* 增强标签的毛玻璃效果 */
.workflow-bottom-thumbnails {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(16px) saturate(1.6) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.6) brightness(1.1) !important;
    
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        /* 下边缘白色内阴影已移除 */
        inset 0 0 30px rgba(255, 255, 255, 0.4) !important;
}

.new-workflow-card:hover .workflow-bottom-thumbnails {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(1.8) brightness(1.15) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.15) !important;
    
    border-color: rgba(255, 255, 255, 0.95) !important;
    
    box-shadow: 
        0 6px 28px rgba(0, 0, 0, 0.12),
        0 3px 14px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.85),
        inset 0 0 40px rgba(255, 255, 255, 0.5) !important;
}

/* 重复定义已移除 */

/* 重复定义已移除 */


/* ========================================
   纯净磨砂玻璃材质设计 - 移除黑色层
======================================== */

/* 纯净白色磨砂玻璃信息区域 */
.workflow-card-info {
    /* 纯净白色磨砂玻璃背景 */
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(28px) saturate(1.8) brightness(1.15) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.8) brightness(1.15) !important;
    
    /* 纯净的白色渐变背景 */
    background-image: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(248, 250, 252, 0.85) 70%,
            rgba(241, 245, 249, 0.8) 100%) !important;
    
    /* 移除所有深色元素 */
    /* 边框已移除 */
    border-top: 2px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 0 0 24px 24px !important;
    
    /* 纯净的白色阴影系统 */
    box-shadow: 
        0 -4px 24px rgba(255, 255, 255, 0.8),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.9) !important;
    
    /* 确保完全贴合底部 */
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    
    /* 布局属性 */
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-height: 120px !important;
    z-index: 10 !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.new-workflow-card:hover .workflow-card-info {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(32px) saturate(2) brightness(1.2) !important;
    -webkit-backdrop-filter: blur(32px) saturate(2) brightness(1.2) !important;
    
    background-image: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 30%,
            rgba(248, 250, 252, 0.9) 70%,
            rgba(241, 245, 249, 0.85) 100%) !important;
    
    border-top-color: rgba(255, 255, 255, 0.98) !important;
    
    box-shadow: 
        0 -6px 32px rgba(255, 255, 255, 0.9),
        0 12px 48px rgba(0, 0, 0, 0.1),
        0 6px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* 重复定义已移除 */

/* 确保主图区域干净 - 已在上方统一定义 */

/* 移除任何可能的黑色背景或渐变，但保留占位符 */
.workflow-main-image::after,
.new-workflow-card::before,
.new-workflow-card::after {
    display: none !important;
}

/* 确保文字在磨砂玻璃上清晰可读 */
.workflow-card-title {
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

.benefit-text {
    color: #374151 !important;
    font-size: 11px !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* 功能标签保持深色以在白色磨砂玻璃上突出 */
.feature-tag-black {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 4px 12px !important;
    border-radius: 14px !important;
    font-size: 10px !important;
    font-weight: 500 !important;
}

/* 检查标记保持绿色 */
.benefit-check {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* 确保缩略图容器也是白色磨砂玻璃 */
.image-thumbnails {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.5) !important;
    /* 边框已移除 */
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        /* 白色内阴影已移除 */
}

.new-workflow-card:hover .image-thumbnails {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
}

/* 悬停引导也改为白色磨砂玻璃 */
.hover-guide {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.guide-text {
    color: #374151 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* 移除任何深色背景干扰 */
.workflow-bottom-thumbnails {
    display: none !important;
}

.workflow-tags-thumbnails-row {
    display: block !important;
}


/* ========================================
   颗粒感毛玻璃质感 - 真实磨砂玻璃效果
======================================== */

/* 为工作流信息区域添加颗粒感毛玻璃质感 */
.workflow-card-info {
    /* 基础毛玻璃背景 */
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(24px) saturate(1.6) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.6) brightness(1.1) !important;
    
    /* 添加颗粒感纹理背景 */
    background-image: 
        /* 细腻颗粒纹理 */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.8) 0.5px, transparent 0.5px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle at 50% 10%, rgba(248, 250, 252, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(241, 245, 249, 0.3) 0.8px, transparent 0.8px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5) 0.6px, transparent 0.6px),
        radial-gradient(circle at 30% 60%, rgba(248, 250, 252, 0.2) 1.2px, transparent 1.2px),
        
        /* 更细的颗粒层 */
        radial-gradient(circle at 10% 40%, rgba(255, 255, 255, 0.4) 0.3px, transparent 0.3px),
        radial-gradient(circle at 60% 90%, rgba(248, 250, 252, 0.3) 0.4px, transparent 0.4px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px),
        radial-gradient(circle at 40% 30%, rgba(241, 245, 249, 0.15) 0.9px, transparent 0.9px),
        
        /* 主要渐变背景 */
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 40%,
            rgba(241, 245, 249, 0.85) 80%,
            rgba(226, 232, 240, 0.82) 100%) !important;
    
    /* 设置颗粒纹理的尺寸 */
    background-size: 
        8px 8px, 12px 12px, 16px 16px, 10px 10px, 14px 14px, 18px 18px,
        6px 6px, 9px 9px, 11px 11px, 15px 15px,
        100% 100% !important;
    
    /* 颗粒动画（可选） */
    background-position:
        0 0, 4px 4px, 8px 8px, 2px 6px, 6px 2px, 10px 10px,
        1px 1px, 5px 7px, 9px 3px, 3px 9px,
        0 0 !important;
    
    /* 边框和阴影增强颗粒感 */
    /* 边框已移除 */
    border-top: 2px solid rgba(255, 255, 255, 0.95) !important;
    
    box-shadow: 
        0 -4px 24px rgba(255, 255, 255, 0.7),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.9),
        /* 添加内部颗粒感阴影 */
        inset 0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(248, 250, 252, 0.2) !important;
}

/* 第五个重复定义已清理 */

/* 为其他毛玻璃元素也添加颗粒感 */
.image-thumbnails {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.5) !important;
    
    /* 缩略图容器的细腻颗粒 */
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0.4px, transparent 0.4px),
        radial-gradient(circle at 70% 70%, rgba(248, 250, 252, 0.4) 0.6px, transparent 0.6px),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 250, 252, 0.8) 100%) !important;
    
    background-size: 6px 6px, 10px 10px, 100% 100% !important;
}

.hover-guide {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
    
    /* 悬停引导的颗粒感 */
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 80%, rgba(248, 250, 252, 0.5) 0.7px, transparent 0.7px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0.9px, transparent 0.9px),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%) !important;
    
    background-size: 8px 8px, 12px 12px, 16px 16px, 100% 100% !important;
}

/* 细微的颗粒动画效果（可选） */
@keyframes grainShift {
    0%, 100% {
        background-position:
            0 0, 4px 4px, 8px 8px, 2px 6px, 6px 2px, 10px 10px,
            1px 1px, 5px 7px, 9px 3px, 3px 9px,
            0 0;
    }
    50% {
        background-position:
            1px 1px, 5px 5px, 9px 9px, 3px 7px, 7px 3px, 11px 11px,
            2px 2px, 6px 8px, 10px 4px, 4px 10px,
            0 0;
    }
}

/* ========================================
   所有旧样式定义已移除 - 只保留最新的苹果风格
======================================== */

/* ========================================
   苹果风格工作流卡片 - 统一清洁版本
======================================== */

/* 删除重复的网格定义 */

/* 主卡片容器 - 苹果磨砂质感 */
.new-workflow-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        /* 移除所有白色内阴影和边框，实现纯净简约效果 */;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif !important;
    cursor: pointer !important;
    aspect-ratio: auto !important;
}

/* 重复的悬停效果已清理，统一使用前面定义的版本 */

/* 图片区域 - 已在上方统一定义，移除冲突样式 */

.workflow-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    filter: contrast(1.02) saturate(1.1) !important;
}

/* 已删除的悬停效果 7 */

/* 信息区域 - 图片下方布局 */
.workflow-card-info {
    position: relative !important;
    background: transparent !important;
    border-radius: 0 0 18px 18px !important;
    padding: 20px 18px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    min-height: auto !important;
}

/* 第六个重复定义已清理 */

/* 标题样式 */
.workflow-card-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif !important;
    text-shadow: none !important;
    max-height: none !important;
}

/* 功能标签 */
.workflow-feature-tags {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
}

.workflow-feature-tags .feature-tag-black:nth-child(n+4) {
    display: none !important;
}

.feature-tag-black {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif !important;
    padding: 6px 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    letter-spacing: 0.02em !important;
    box-shadow: 
        0 2px 8px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-tag-black:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 
        0 4px 16px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

/* 为标签添加微妙的光泽效果 */
.feature-tag-black::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.6s ease !important;
}

.feature-tag-black:hover::before {
    left: 100% !important;
}

/* 解决痛点区域 */
.workflow-benefits {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 2px !important;
}

.benefit-check {
    width: 16px !important;
    height: 16px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.benefit-check .material-icons {
    font-size: 10px !important;
    color: white !important;
    font-weight: 700 !important;
}

.benefit-text {
    font-size: 0.8rem !important; /* 从0.875rem微调小到0.8rem */
    color: #86868b !important;
    line-height: 1.4 !important; /* 从1.5调小到1.4 */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* 高亮状态 */
.new-workflow-card.highlighted {
    box-shadow: 0 0 0 3px #3b82f6, 0 8px 16px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-8px) !important;
    transition: all 0.3s ease !important;
}

/* 隐藏所有缩略图相关元素 */
.workflow-bottom-thumbnails,
.image-thumbnails,
.thumbnail-item,
.thumbnail-item-bottom,
.thumbnail-item-horizontal,
.thumbnail-item-square,
.thumbnail-grid,
.thumbnail-grid-horizontal,
.thumbnail-grid-square,
.thumbnail-more,
.more-count,
.more-count-bottom,
.workflow-overlay,
.view-detail-btn,
.detail-badge,
.workflow-category-badge,
.hover-guide,
.guide-icon,
.guide-text,
.workflow-tags-thumbnails-row {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 移除装饰效果 */
.new-workflow-card::before,
.new-workflow-card::after {
    display: none !important;
}

/* 删除所有冲突的媒体查询规则 */


/* ==========================================
   工作流卡片扁平化设计优化
   ========================================== */

/* 苹果风格标签按钮 - 高曲率圆角优化 */
.feature-tag-black {
    display: inline-flex !important;
    align-items: center !important;
    
    /* 苹果风格渐变设计 - 加入紫色调 */
    background: linear-gradient(135deg, #007AFF 0%, #8B5CF6 100%) !important;
    color: #ffffff !important;
    font-size: 11px !important; /* 增大字体 */
    font-weight: 700 !important; /* 更粗字体 */
    padding: 7px 14px !important; /* 增大内边距 */
    border-radius: 8px !important; /* 适中圆角，如图中"全部"按钮样式 */
    border: none !important;
    
    /* 去掉文字阴影 */
    text-shadow: none !important;
    
    /* 苹果风格精致阴影 - 紫色调 */
    box-shadow: 0 1px 3px rgba(139, 92, 246, 0.2), 
                0 1px 2px rgba(139, 92, 246, 0.1) !important;
    
    /* 苹果风格平滑过渡 */
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

/* 第四个重复的标签悬停定义已清理 */

/* 已删除的悬停效果 8 */



/* 微调标题字体大小 */
.workflow-card-title {
    color: #1a202c !important;
    font-size: 1.15rem !important; /* 从1.3rem调小到1.15rem */
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: 3.2rem !important; /* 相应调整高度 */
    text-shadow: none !important;
    transition: color 0.3s ease !important;
}

/* 重复的标题悬停效果已清理，统一使用前面定义的版本 */



/* 响应式字体优化 */
@media (max-width: 1200px) {
    .workflow-card-title {
        font-size: 1.1rem !important; /* 进一步调小 */
        max-height: 3rem !important;
    }
    
    .feature-tag-black {
        padding: 6px 12px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        border-radius: 7px !important; /* 适中圆角 */
    }
}

@media (max-width: 900px) {
    .workflow-card-title {
        font-size: 1.05rem !important; /* 平板端适中大小 */
        max-height: 2.8rem !important;
    }
    
    .feature-tag-black {
        padding: 5px 11px !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        border-radius: 6px !important; /* 适中圆角 */
    }
}

@media (max-width: 480px) {
    .workflow-card-title {
        font-size: 1rem !important; /* 手机端调整大小 */
        max-height: 2.6rem !important;
        line-height: 1.3 !important;
    }
    
    .feature-tag-black {
        padding: 5px 10px !important;
        font-size: 8px !important;
        font-weight: 700 !important;
        border-radius: 5px !important; /* 适中圆角 */
    }
}

/* ==============================================
   最高优先级样式覆盖 - 确保适中圆角生效
   ============================================== */

/* 特色功能标签 - 最终样式覆盖 */
body .new-workflow-card .workflow-card-info .workflow-feature-tags .feature-tag-black,
body .workflow-feature-tags .feature-tag-black,
body span.feature-tag-black {
    background: linear-gradient(135deg, #007AFF 0%, #8B5CF6 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important; /* 适中圆角，如图中"全部"按钮样式 */
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 7px 14px !important;
    border: none !important;
    box-shadow: 0 1px 3px rgba(139, 92, 246, 0.2), 0 1px 2px rgba(139, 92, 246, 0.1) !important;
    text-shadow: none !important;
}

/* 悬停效果 - 最终覆盖 */
/* 已删除的悬停效果 12 */






/* ===== ��������Ƶ֧����ʽ ===== */
/* ������ͼƬ/��Ƶͨ����ʽ */
.workflow-image video,
.workflow-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.workflow-image video:hover,
.workflow-main-image video:hover {
    transform: scale(1.05);
}

/* ��Ƶ���Ű�ť���ǲ� */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    pointer-events: none;
    z-index: 2;
    color: white;
}

/* ģ̬���е���Ƶ��ʽ */
#modalMainImage {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* ����ͼ�е���Ƶ��ʽ */
.modal-thumbnails video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ��Ƶ��ʶ��ǩ */
.video-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(138, 43, 226, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

.video-badge .material-icons {
    font-size: 12px;
}
