/* 统一标题样式 */
.section-title {
    position: relative;
    display: inline-block;
    color: #000; /* 文字为黑色 */
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    /* 确保标题居中显示 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* 大圆角类 */
.rounded-20 {
  border-radius: 20px !important;
}

/* 专业卡片悬停效果 */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 86, 179, 0.15);
}

/* 卡片图片的悬停效果 */
.card-hover .case-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* 卡片标题的悬停效果 */
.card-hover .card-title {
  transition: color 0.3s ease;
}

.card-hover:hover .card-title {
  color: var(--primary-blue);
}

/* 卡片链接的悬停效果 */
.card-hover .card-link {
  transition: all 0.3s ease;
}

.card-hover:hover .card-link {
  color: #1d4ed8;
}

/* 卡片链接图标的悬停效果 */
.card-hover .card-link i {
  transition: transform 0.3s ease;
}

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

/* 培训列表页面样式 */
.training-list-section {
    background-color: var(--white);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.training-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.01) 0%, rgba(0, 86, 179, 0.02) 100%);
    pointer-events: none;
}

/* 面包屑导航样式 */
.training-breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 86, 179, 0.08);
}

.training-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.training-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.training-breadcrumb .breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.training-breadcrumb .breadcrumb-link:hover {
    color: var(--primary-blue);
}

.training-breadcrumb .breadcrumb-item.active {
    color: var(--primary-blue);
}

.training-breadcrumb .breadcrumb-item i {
    color: var(--primary-blue-light);
    margin-right: 0.5rem;
}

/* 页面标题 */
.training-header {
    text-align: center;
    margin-bottom: 3rem;
}

.training-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.training-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 培训列表 */
.training-list-section h3 {
    border-bottom: none !important;
    text-decoration: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 1.5rem;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* 培训卡片样式 */
.training-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(0, 86, 179, 0.03);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 86, 179, 0.04) 100%);
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.training-card.training-card-process {
    min-height: auto;
    height: auto;
}

.search-case-card {
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-case-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 86, 179, 0.08);
    display: flex;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-case-card:hover .search-case-card-inner {
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.15);
    transform: translateY(-4px);
    border-color: rgba(0, 86, 179, 0.2);
}

.search-case-image {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0fe 100%);
}

.search-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

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

.search-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.search-case-content {
    flex: 1;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.search-case-tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-case-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.08);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-case-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
    text-decoration: none;
}

.search-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.search-case-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-case-card:hover .search-case-title a {
    color: var(--primary-blue);
}

.search-case-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-case-footer {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 86, 179, 0.08);
}

.btn-search-case {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.25);
}

.btn-search-case:hover {
    background: var(--primary-blue-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.35);
}

.btn-search-case i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-search-case:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .search-case-image {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .search-case-content {
        padding: 1.5rem;
    }
    
    .search-case-title {
        font-size: 1.15rem;
    }
    
    .search-case-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .search-case-card-inner {
        flex-direction: column;
    }
    
    .search-case-image {
        flex: 0 0 auto;
        max-width: 100%;
        height: 200px;
    }
    
    .search-case-content {
        padding: 1.25rem;
    }
    
    .search-case-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .search-case-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .search-case-tag {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-search-case {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .search-case-card {
        margin-bottom: 1rem;
    }
    
    .search-case-image {
        height: 180px;
    }
    
    .search-case-content {
        padding: 1rem;
    }
    
    .search-case-title {
        font-size: 1rem;
    }
    
    .search-case-description {
        font-size: 0.85rem;
    }
    
    .search-case-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .btn-search-case {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .search-case-image {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .search-case-content {
        padding: 1.5rem;
    }
    
    .search-case-title {
        font-size: 1.15rem;
    }
    
    .search-case-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .search-case-card-inner {
        flex-direction: column;
    }
    
    .search-case-image {
        flex: 0 0 auto;
        max-width: 100%;
        height: 200px;
    }
    
    .search-case-content {
        padding: 1.25rem;
    }
    
    .search-case-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .search-case-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .search-case-tag {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-search-case {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .search-case-card {
        margin-bottom: 1rem;
    }
    
    .search-case-image {
        height: 180px;
    }
    
    .search-case-content {
        padding: 1rem;
    }
    
    .search-case-title {
        font-size: 1rem;
    }
    
    .search-case-description {
        font-size: 0.85rem;
    }
    
    .search-case-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .btn-search-case {
        width: 100%;
        justify-content: center;
    }
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.training-card:hover::before {
    opacity: 1;
}

.training-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 86, 179, 0.15),
                0 0 0 1px rgba(0, 86, 179, 0.1);
    border-color: rgba(0, 86, 179, 0.2);
}

/* 卡片图片样式 */
.training-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.training-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card:hover .training-card-image img {
    transform: scale(1.1);
    filter: brightness(1.05) contrast(1.02) saturate(1.03);
}

.training-card:hover .training-card-image img {
    transform: scale(1.1);
    filter: brightness(1.05) contrast(1.02) saturate(1.03);
}

.training-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.15) 0%, rgba(0, 86, 179, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(1px);
}

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

/* 卡片内容样式 */
.training-card-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.training-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
}

.training-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.training-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
    overflow: hidden;
    letter-spacing: -0.01em;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 86, 179, 0.1);
    text-align: center;
}

.training-card:hover .training-card-title {
    color: var(--primary-blue);
}

.training-card-description {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: block;
    overflow: hidden;
    transition: color 0.3s ease;
    white-space: pre-line;
}

.training-card:hover .training-card-description {
    color: var(--text-primary);
    opacity: 1;
}

/* 卡片元数据 */
.training-card-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 86, 179, 0.08);
    position: relative;
    transition: border-color 0.3s ease;
}

.training-card:hover .training-card-meta {
    border-color: rgba(0, 86, 179, 0.15);
}

/* 领取课程大纲按钮样式 */
.training-card-meta .link-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.2);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.training-card-meta .link-primary:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.3);
}

.training-card-meta .link-primary i {
    transition: all 0.3s ease;
    font-size: 1.1rem;
    opacity: 1;
}

.training-card-meta .link-primary:hover i {
    transform: translateX(4px);
    opacity: 1;
}


/* 课程信息样式 */
.training-card-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0.08) 100%);
    border-radius: 8px;
    flex-wrap: wrap;
}

.training-card-date span {
    color: var(--primary-blue);
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.training-card-date span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 分页容器样式 */
.training-pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 86, 179, 0.08);
    position: relative;
    z-index: 1;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .training-cards {
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
        gap: 2rem;
    }
    
    .training-info {
        padding: 14px 20px;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .training-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.75rem;
    }
    
    .training-card-content {
        padding: 1.75rem;
    }
    
    .training-info {
        padding: 12px 16px;
        margin-bottom: 1.25rem;
    }
    
    .info-item {
        gap: 6px;
    }
    
    .info-icon {
        font-size: 1rem;
        width: 20px;
    }
    
    .info-text {
        font-size: 0.875rem;
    }
    
    .detail-item {
        padding: 10px 14px;
        margin-bottom: 0.875rem;
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-content {
        font-size: 0.875rem;
    }
    
    .btn-action {
        max-width: 160px;
        padding: 9px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .training-list-section {
        padding: 2.5rem 0 3.5rem;
    }
    
    .training-breadcrumb {
        margin-bottom: 1.75rem;
    }
    
    .training-cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .training-card-content {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .training-card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding-bottom: 0.875rem;
    }
    
    .training-card-description {
        font-size: 0.95rem;
    }
    
    .training-info {
        padding: 12px 16px;
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .training-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-divider {
        display: none;
    }
    
    .info-item {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .info-icon {
        font-size: 1rem;
        width: 20px;
    }
    
    .info-text {
        font-size: 0.875rem;
    }
    
    .price-highlight {
        font-size: 0.95rem;
    }
    
    .training-details {
        margin-bottom: 1.25rem;
    }
    
    .detail-item {
        padding: 10px 12px;
        margin-bottom: 0.75rem;
        border-radius: 10px;
        border-left-width: 2px;
    }
    
    .detail-label {
        font-size: 0.85rem;
        margin-right: 6px;
    }
    
    .detail-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .training-card-actions {
        gap: 8px;
    }
    
    .btn-action {
        max-width: 100%;
        flex: 1;
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .training-pagination {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .training-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .training-card {
        min-height: auto;
    }
    
    .training-card-content {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .training-card-title {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
    }
    
    .training-info {
        padding: 10px 14px;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .info-icon {
        font-size: 0.95rem;
        width: 18px;
    }
    
    .info-text {
        font-size: 0.85rem;
    }
    
    .price-highlight {
        font-size: 0.9rem;
    }
    
    .detail-item {
        padding: 8px 12px;
        margin-bottom: 0.625rem;
        border-radius: 8px;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-content {
        font-size: 0.8rem;
    }
    
    .btn-action {
        padding: 8px 10px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .training-card-image {
        height: 200px;
    }
    
    .training-card-content {
        padding: 1.5rem;
    }
    
    .training-card-meta .link-primary {
        font-size: 0.9rem;
        padding: 0.4rem 0.65rem;
    }
    
    .training-breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* 学员见证/典型案例部分样式 */
.pain-points {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

/* 统计数据卡片样式 */
.pain-points .stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pain-points .stat-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(135deg, rgba(0, 86, 179, 0.01) 0%, rgba(0, 86, 179, 0.02) 100%);
}

.pain-points .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.15);
}

.pain-points .stat-card h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pain-points .stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* 案例和评价卡片容器 */
.pain-points .testimonials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pain-points .testimonials-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* 案例和评价卡片样式 */
.pain-points .testimonial-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.08);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.pain-points .testimonial-card:hover {
    box-shadow: 0 12px 35px rgba(0, 86, 179, 0.1);
    border-color: rgba(0, 86, 179, 0.12);
    transform: translateY(-2px);
}

.pain-points .testimonial-card .card-title {
    font-size: 1.35rem;
    font-weight: 650;
    color: var(--primary-blue);
    margin-bottom: 1.75rem;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* 案例/评价项样式 */
.pain-points .testimonial-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 86, 179, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.pain-points .testimonial-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pain-points .testimonial-item:hover {
    transform: translateX(5px);
}

/* 头像样式 */
.pain-points .testimonial-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease;
}

.pain-points .testimonial-item:hover .testimonial-avatar {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

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

/* 内容样式 */
.pain-points .testimonial-content {
    flex-grow: 1;
    text-align: left;
}

.pain-points .testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 星级评分样式 */
.pain-points .testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.pain-points .testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* 文本内容样式 */
.pain-points .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.pain-points .testimonial-text span.text-primary {
    font-weight: 600;
    color: var(--primary-blue);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .pain-points {
        padding: 3rem 0;
    }
    
    .pain-points .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pain-points .stat-card {
        padding: 1.5rem 0.75rem;
    }
    
    .pain-points .stat-card h1 {
        font-size: 2rem;
    }
    
    .pain-points .testimonial-card {
        padding: 1.5rem;
    }
    
    .pain-points .testimonial-card .card-title {
        font-size: 1.2rem;
    }
    
    /* 确保在所有屏幕尺寸下都是图片在左文字在右且左对齐 */
    .pain-points .testimonial-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.875rem;
    }
    
    .pain-points .testimonial-avatar {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .pain-points .testimonial-rating {
        justify-content: flex-start;
    }
    
    .pain-points .testimonial-content {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .pain-points {
        padding: 2rem 0;
    }
    
    /* 手机端保持统计卡片一行显示两个 */
    .pain-points .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .pain-points .stat-card {
        padding: 1.25rem 0.625rem;
    }
    
    .pain-points .stat-card h1 {
        font-size: 1.75rem;
    }
    
    .pain-points .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* 进一步优化手机端案例/评价项布局 */
    .pain-points .testimonial-item {
        gap: 0.75rem;
    }
    
    .pain-points .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .pain-points .testimonial-name {
        font-size: 0.95rem;
    }
}

/* 培训课程Swiper轮播样式 */
.train-swiper {
    position: relative;
    padding: 20px 0;
}

.train-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.train-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.train-swiper .card {
    width: 100%;
    margin: 0;
}

/* Swiper导航按钮样式 */
.train-swiper .swiper-button-next,
.train-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.train-swiper .swiper-button-next:hover,
.train-swiper .swiper-button-prev:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.2);
}

.train-swiper .swiper-button-next::after,
.train-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Swiper分页器样式 */
.train-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.train-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.train-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--primary-blue);
    border-radius: 4px;
}

.train-list-swiper .swiper-button-next,
.train-list-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.train-list-swiper .swiper-button-next:hover,
.train-list-swiper .swiper-button-prev:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.2);
}

.train-list-swiper .swiper-button-next::after,
.train-list-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.train-list-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.train-list-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.train-list-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--primary-blue);
    border-radius: 4px;
}

.train-list-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.train-list-swiper .training-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.train-list-swiper .training-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.train-list-swiper .training-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.train-list-swiper .training-card-actions {
    margin-top: auto;
}

/* 行业解决方案卡片样式 */
.industry-solution-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03),
              0 0 0 1px rgba(0, 0, 0, 0.01);
  background-image: 
    linear-gradient(135deg, rgba(0, 86, 179, 0.01) 0%, rgba(0, 86, 179, 0.02) 100%),
    radial-gradient(circle at 100% 0%, rgba(0, 86, 179, 0.03) 0%, transparent 30%);
  backdrop-filter: blur(10px);
}

.industry-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px 18px 0 0;
}

.industry-solution-card:hover::before {
  opacity: 1;
}

.industry-solution-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 22px 65px rgba(0, 86, 179, 0.2),
              0 0 0 1px rgba(0, 86, 179, 0.1),
              inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 86, 179, 0.2);
}

/* 焦点状态优化 */
.industry-solution-card:focus-within {
  outline: none;
  box-shadow: 0 12px 40px rgba(0, 86, 179, 0.15),
              0 0 0 3px rgba(0, 86, 179, 0.1);
  transform: translateY(-4px);
}

/* 卡片加载动画 */
.industry-solution-card {
  animation: cardFadeIn 0.6s ease-out;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03),
                0 0 0 1px rgba(0, 0, 0, 0.01);
  }
}

/* 延迟动画效果 */
.industry-solution-card:nth-child(1) {
  animation-delay: 0s;
}

.industry-solution-card:nth-child(2) {
  animation-delay: 0.1s;
}

.industry-solution-card:nth-child(3) {
  animation-delay: 0.2s;
}

.industry-solution-card:nth-child(4) {
  animation-delay: 0.3s;
}

.industry-solution-card:nth-child(5) {
  animation-delay: 0.4s;
}

.industry-solution-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* 高级响应式调整 */
@media (max-width: 992px) {
  .industry-solution-card {
    border-radius: 16px;
  }
  
  .solution-image-wrapper {
    height: 190px;
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 768px) {
  .industry-solution-card {
    border-radius: 14px;
  }
  
  .solution-image-wrapper {
    height: 180px;
    border-radius: 14px 14px 0 0;
  }
  
  .solution-content {
    padding: 1.5rem;
  }
  
  .solution-title {
    font-size: 1.2rem;
    padding-left: 0.375rem;
  }
  
  .industry-solution-card:hover .solution-title {
    padding-left: 0.5rem;
    transform: translateX(3px);
  }
  
  .solution-description {
    font-size: 0.9rem;
  }
  
  .solution-footer {
    padding-top: 1rem;
  }
}

@media (max-width: 576px) {
  .solution-image-wrapper {
    height: 160px;
  }
  
  .solution-content {
    padding: 1.25rem;
  }
  
  .solution-title {
    font-size: 1.15rem;
  }
  
  .solution-description {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .solution-btn {
    font-size: 0.875rem;
  }
}

/* 解决方案图片样式 */
.solution-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 0;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solution-card:hover .solution-image {
  transform: scale(1.08);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.15) 0%, rgba(0, 86, 179, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-solution-card:hover .solution-overlay {
  opacity: 1;
}

/* 悬停箭头图标 */
.solution-image-wrapper::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 86, 179, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
  z-index: 2;
}

.industry-solution-card:hover .solution-image-wrapper::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* 解决方案内容样式 */
.solution-content {
  padding: 2rem;
  position: relative;
}

.solution-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.solution-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  padding-left: 0.5rem;
}

.solution-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--primary-blue-light));
  border-radius: 2px;
  transform: scaleY(0.8);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solution-card:hover .solution-title {
  color: var(--primary-blue);
  transform: translateX(4px);
  padding-left: 0.75rem;
}

.industry-solution-card:hover .solution-title::before {
  opacity: 1;
  transform: scaleY(1);
}

.solution-description {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: color 0.3s ease;
}

.industry-solution-card:hover .solution-description {
  color: var(--text-primary);
  opacity: 0.95;
}

/* 解决方案页脚样式 */
.solution-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 86, 179, 0.06);
  position: relative;
  transition: border-color 0.3s ease;
}

.industry-solution-card:hover .solution-footer {
  border-color: rgba(0, 86, 179, 0.12);
}

/* 页脚装饰元素 */
.solution-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.industry-solution-card:hover .solution-footer::before {
  width: 100%;
}

/* 解决方案按钮样式 */
.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.solution-btn:hover {
  color: var(--primary-blue-dark);
}

.solution-btn i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.industry-solution-card:hover .solution-btn i {
  transform: translateX(4px);
}

/* 软件Banner样式 */
.software-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-color: #1e40af;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 64, 175, 0.7) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 0;
}

/* 软件概述板块样式 */
.software-overview {
    padding: 3rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}



.software-overview .section-description {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.software-overview .row {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-overview .row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.software-overview .col-md-6 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* CAE行业解决方案Banner样式 */
.solution-banner {
    position: relative;
    min-height: 340px; /* 微调banner高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-blue-dark); /* 使用网站统一的深蓝色变量 */
}

.solution-banner .banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* 调整背景图透明度，使蓝色背景更突出 */
    transition: transform 0.8s ease-out;
}

.solution-banner:hover .banner-bg {
    transform: scale(1.05);
}

.solution-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 61, 130, 0.95) 0%, rgba(0, 61, 130, 0.8) 50%, rgba(0, 61, 130, 0.7) 100%); /* 使用统一的蓝色渐变 */
}

.solution-banner .banner-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

/* 优化文字颜色和样式 */
.solution-banner .banner-title {
    font-size: 2.875rem;
    font-weight: 700; /* 稍微调整字重 */
    color: #ffffff; /* 保持白色主标题 */
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35); /* 优化文字阴影 */
    max-width: 600px;
    /* 移除轻微背景，采用更现代的设计 */
    display: block; /* 改为块级元素 */
    padding: 0;
}

.solution-banner .banner-description {
    font-size: 1.1875rem; /* 稍微增大字体 */
    color: #e3f2fd; /* 更明亮的浅蓝色文本 */
    margin-bottom: 2.25rem;
    max-width: 580px;
    line-height: 1.75;
    font-weight: 400;
    /* 移除背景和内边距，采用更简洁的设计 */
    padding: 0;
    background: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* 添加文字阴影 */
}

/* Solution Banner按钮样式已移除 - 使用Bootstrap默认样式 */
.solution-banner .banner-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* 确保solution-banner中的所有p标签文字为白色 */
.solution-banner p {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* 装饰性元素 */
.solution-banner .banner-decoration {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.solution-banner .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.solution-banner .deco-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: pulse 8s infinite ease-in-out;
}

.solution-banner .deco-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 200px;
    animation: pulse 6s infinite ease-in-out 1s;
}

.solution-banner .deco-circle-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 100px;
    animation: pulse 7s infinite ease-in-out 0.5s;
}



/* 动画效果 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* 动画类（模拟animate.css效果） */
.animate__fadeInUp {
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 滚动触发动画 */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 使用Bootstrap 5的原生响应式布局 */

/* 通用按钮样式已移除 - 使用Bootstrap默认样式 */

/* 移除自定义媒体查询，使用Bootstrap 5的响应式类 */

/* 自定义alert-primary样式 */
.alert-primary {
    color: #0a2b5c;
    background-color: #e0efff;
    border-color: #91c5ff;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    border-width: 1px;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.1);
    margin-bottom: 1rem;
}

/* 确保段落样式 */
.alert-primary p {
    margin-bottom: 0;
    color: inherit;
}

/* 添加微妙的装饰效果 */
.alert-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1a56db 0%, #3b82f6 100%);
    border-radius: 4px 0 0 4px;
    z-index: 1;
}



/* 核心痛点样式已移除 */

/* 核心价值样式 */
.core-values {
    position: relative;
    padding: 4rem 0;
    background-color: #f8fafc;
}

.core-values .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.core-values .row {
    gap: 2rem;
}



.core-values .card-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    transition: all 0.3s ease;
}



.core-values .card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.core-values .card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
    flex-grow: 1;
}

/* 使用Bootstrap 5的响应式类代替自定义媒体查询 */

/* 专属定制方案样式 */
.custom-solutions {
    padding: 4rem 0;
    position: relative;
}

.custom-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%233b82f6" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: -1;
}

.custom-solutions .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 标签切换样式 */
.custom-solutions .solution-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.custom-solutions .solution-tabs .tab-btn {
    padding: 0.875rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-solutions .solution-tabs .tab-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.custom-solutions .solution-tabs .tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* 重置标签样式 - 确保Bootstrap默认标签切换机制正常工作 */
/* 移除所有可能干扰的自定义样式 */

/* 添加Bootstrap标准fade类样式以确保标签切换正常工作 */
.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}

/* 确保tab-pane在show状态下正确显示 */
.tab-pane {
    transition: opacity 0.15s linear;
}

.tab-pane.active {
    display: block;
}

.tab-pane:not(.active) {
    display: none;
}

/* 通用标签内容样式 - 简化以确保与Bootstrap默认行为兼容 */
/* 已移除空的.tab-content选择器定义 */

/* 圆角标签按钮样式 */
.nav-tabs .nav-link {
    border-radius: 20px;
    margin: 0 8px;
    padding: 8px 16px;
    border: none;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background-color: #0d6efd;
    color: white;
    font-weight: 500;
}

.nav-tabs .nav-link:not(.active) {
    background-color: #f8f9fa;
    color: #6c757d;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: #e9ecef;
    color: #495057;
}

/* 已在上方定义.fade类，此处删除重复定义 */

.fade:not(.show) {
    opacity: 0;
}

/* 确保active状态的tab-pane正确显示 */
/* 已在上方定义.tab-pane相关样式，此处删除重复定义 */

/* 解决方案内容布局 */
.custom-solutions .solution-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.custom-solutions .solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.custom-solutions .solution-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.8;
}

.custom-solutions .solution-features {
    margin: 1.5rem 0;
}

.custom-solutions .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.custom-solutions .feature-icon {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.custom-solutions .feature-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* 解决方案图片样式 */
.custom-solutions .solution-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.custom-solutions .solution-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    transition: opacity 0.3s ease;
}

.custom-solutions .solution-image:hover::after {
    opacity: 0;
}

.custom-solutions .solution-image img {
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: auto;
}

.custom-solutions .solution-image:hover img {
    transform: scale(1.05);
}

/* 专属定制方案响应式设计 */
/* 使用Bootstrap 5的响应式类替代自定义媒体查询 */

/* 效率对比样式 */
.efficiency-comparison {
    padding: 4rem 0;
    background-color: #f8fafc;
    position: relative;
}

.efficiency-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    z-index: -1;
}

.efficiency-comparison .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 数据统计卡片样式 */
.efficiency-comparison .stats-container {
    margin-bottom: 3rem;
}

.efficiency-comparison .stats-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.efficiency-comparison .stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* 效率提升数字卡片样式优化 */
.stats-card {
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stats-card .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a56db;
}

.stats-card p {
    color: #374151;
    font-weight: 500;
}

.efficiency-comparison .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* 使用Bootstrap 5的响应式类替代自定义媒体查询 */

/* 成功案例样式 */
.success-cases {
    padding: 4rem 0;
    position: relative;
}

.success-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%233b82f6" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: -1;
}

.success-cases .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 行业标签筛选 */
.success-cases .industry-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.success-cases .industry-tag {
    padding: 0.5rem 1.25rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.success-cases .industry-tag:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.success-cases .industry-tag.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* 案例卡片样式 */
.success-cases .case-grid {
    gap: 2rem;
}



/* 公司Logo样式 */
.success-cases .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    min-height: 120px;
    height: 120px;
    overflow: hidden;
}

.success-cases .company-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

/* 案例标题和描述 */
.success-cases .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.success-cases .card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

/* 案例统计信息 */
.success-cases .case-stats {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.success-cases .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    min-width: 80px;
}

.success-cases .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.success-cases .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* 标签样式 */
.success-cases .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.success-cases .badge {
    padding: 0.375rem 0.75rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.success-cases .badge:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

/* 查看详情按钮 */
.success-cases .view-details {
    display: inline-block;
    margin-top: 1rem;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-cases .view-details:hover {
    color: #2563eb;
    transform: translateX(5px);
}

/* 使用Bootstrap 5的响应式类替代自定义媒体查询 */

/* 客户评价样式 */
.testimonials {
    padding: 4rem 0;
    background-color: #f8fafc;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    z-index: -1;
}

.testimonials .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 评价轮播容器 */
.testimonials .testimonial-carousel {
    position: relative;
}

/* 评价内容卡片 */
.testimonials .testimonial-content {
    position: relative;
    padding: 2.5rem;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid #e2e8f0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.testimonials .testimonial-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.05);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

/* 评价文本 */
.testimonials .testimonial-text {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* 评价者信息 */
.testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.testimonials .author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f1f5f9;
}

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

.testimonials .author-info {
    display: flex;
    flex-direction: column;
}

.testimonials .author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonials .author-company {
    font-size: 0.9375rem;
    color: #64748b;
}

/* 评分星星 */
.testimonials .rating {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* 轮播控制按钮 */
.testimonials .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials .carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #64748b;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonials .carousel-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* 客户评价响应式设计 */
@media (max-width: 768px) {
    .testimonials .testimonial-content {
        padding: 2rem;
    }
    
    .testimonials .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonials .author-name {
        font-size: 1rem;
    }
}

/* 联系咨询样式 */
.contact {
    padding: 4rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%233b82f6" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: -1;
}

.contact .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 联系表单 */
.contact .contact-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact .contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact .contact-form label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

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

.contact .contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact .contact-form .submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.contact .contact-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* 联系信息 */
.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.contact .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    color: #3b82f6;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact .contact-item:hover .contact-icon {
    transform: scale(1.1);
    background-color: #3b82f6;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.contact .contact-details {
    flex-grow: 1;
}

.contact .contact-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact .contact-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact .contact-text a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact .contact-text a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* 联系咨询响应式设计 */
@media (max-width: 992px) {
    .contact .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact .contact-form {
        padding: 2rem;
    }
    
    .contact .contact-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

/* 联系咨询样式 */
.contact .contact-form input,
.contact .contact-form textarea {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

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

.contact .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    color: #3b82f6;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact .contact-item:hover .contact-icon {
    transform: scale(1.1);
    background-color: #3b82f6;
    color: white;
}

/* 行动号召样式已移除 - 使用HTML中的Bootstrap类和内联样式 */

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 全局过渡动画 */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}
    position: relative;
}

/* 确保图片和内容高度一致 */
.software-overview .overview-image,
.software-overview .overview-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.software-overview .overview-image {
    position: relative;
    overflow: hidden;
}

.software-overview .overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    z-index: 1;
    pointer-events: none;
}

.software-overview .overview-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
}

.software-overview .overview-image:hover img {
    transform: scale(1.05);
}

/* 内容区域样式优化 */
.software-overview .col-md-6.overflow-auto {
    height: auto;
    max-height: 600px;
    /* 简化的自定义滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

/* Chrome, Edge, Safari简化滚动条 */
.software-overview .col-md-6.overflow-auto::-webkit-scrollbar {
    width: 4px;
}

.software-overview .col-md-6.overflow-auto::-webkit-scrollbar-track {
    background: transparent;
}

.software-overview .col-md-6.overflow-auto::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.software-overview .col-md-6.overflow-auto::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.software-overview .overview-content {
    padding: 2rem;
    justify-content: flex-start;
    background: white;
}

.software-overview .overview-content.mt-3 {
    margin-top: 0;
}

.software-overview .overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.software-overview .overview-content h3,
.software-overview .overview-content h4 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
}

.software-overview .overview-content h3 {
    font-size: 1.75rem;
    padding-left: 15px;
    border-left: 4px solid #6a11cb;
}

.software-overview .overview-content h4 {
    font-size: 1.35rem;
    color: #34495e;
}

/* 列表样式优化 */
.software-overview .overview-content ul,
.software-overview .overview-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.software-overview .overview-content ul li {
    margin-bottom: 0.85rem;
    line-height: 1.7;
    color: #5a6c7d;
    position: relative;
}



/* 特色功能板块样式 */
.software-features {
    background-color: #ffffff;
    padding: 4rem 0;
    position: relative;
    margin-top: 0;
}



.software-features .section-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.swiper.features-swiper {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.swiper.features-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.swiper.features-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

.swiper.features-swiper .card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.swiper.features-swiper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 86, 179, 0.15);
}

.swiper.features-swiper .card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.swiper.features-swiper .card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.swiper.features-swiper .card-body {
    padding: 1.5rem;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

.swiper.features-swiper .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.swiper.features-swiper .card:hover .feature-title {
    color: var(--primary-blue);
}

.swiper.features-swiper .feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    overflow: hidden;
    height: auto;
    max-height: 120px;
    position: relative;
}

.swiper.features-swiper .feature-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper.features-swiper .feature-description.truncated::after {
    opacity: 1;
}

.features-pagination {
    position: relative;
    margin-top: 1.5rem;
    bottom: 0 !important;
}

.features-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.features-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--primary-blue);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .swiper.features-swiper .card-img-top {
        height: 160px;
    }
    
    .swiper.features-swiper .card-body {
        padding: 1.25rem;
    }
    
    .swiper.features-swiper .feature-title {
        font-size: 1.1rem;
    }
    
    .swiper.features-swiper .feature-description {
        font-size: 0.875rem;
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .swiper.features-swiper .card-img-top {
        height: 150px;
    }
    
    .swiper.features-swiper .card-body {
        padding: 1rem;
    }
    
    .swiper.features-swiper .feature-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .swiper.features-swiper .feature-description {
        font-size: 0.85rem;
        max-height: 90px;
    }
}

@media (max-width: 576px) {
    .swiper.features-swiper {
        padding-bottom: 30px;
    }
    
    .swiper.features-swiper .card-img-top {
        height: 140px;
    }
    
    .swiper.features-swiper .card:hover {
        transform: translateY(-4px);
    }
}

/* Swiper导航按钮样式 */
.swiper.features-swiper .swiper-button-prev,
.swiper.features-swiper .swiper-button-next,
.swiper.cases-swiper .swiper-button-prev,
.swiper.cases-swiper .swiper-button-next,
.features-prev,
.features-next,
.cases-prev,
.cases-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper.features-swiper .swiper-button-prev:hover,
.swiper.features-swiper .swiper-button-next:hover,
.swiper.cases-swiper .swiper-button-prev:hover,
.swiper.cases-swiper .swiper-button-next:hover,
.features-prev:hover,
.features-next:hover,
.cases-prev:hover,
.cases-next:hover {
    background: rgba(255, 255, 255, 1);
    color: #764ba2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper.features-swiper .swiper-button-prev::after,
.swiper.features-swiper .swiper-button-next::after,
.features-prev::after,
.features-next::after,
.cases-prev::after,
.cases-next::after,
.swiper.cases-swiper .swiper-button-prev::after,
.swiper.cases-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}



/* 应用案例板块样式 */
.software-cases {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 0;
}



.software-cases .section-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.swiper.cases-swiper {
    position: relative;
    padding-bottom: 40px;
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.swiper.cases-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.swiper.cases-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

.swiper.cases-swiper .card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.swiper.cases-swiper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 86, 179, 0.15);
}

.swiper.cases-swiper .card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.swiper.cases-swiper .card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.swiper.cases-swiper .card-body {
    padding: 1.5rem;
    position: relative;
    background: white;
}

.swiper.cases-swiper .case-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: center;
}

.swiper.cases-swiper .card:hover .case-title {
    color: var(--primary-blue);
}

.swiper.cases-swiper .cases-pagination {
    position: relative;
    margin-top: 1.5rem;
    bottom: 0 !important;
}

.swiper.cases-swiper .cases-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.swiper.cases-swiper .cases-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--primary-blue);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .swiper.cases-swiper .card-img-top {
        height: 160px;
    }
    
    .swiper.cases-swiper .card-body {
        padding: 1.25rem;
    }
    
    .swiper.cases-swiper .case-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .swiper.cases-swiper .card-img-top {
        height: 150px;
    }
    
    .swiper.cases-swiper .card-body {
        padding: 1rem;
    }
    
    .swiper.cases-swiper .case-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .swiper.cases-swiper {
        padding-bottom: 30px;
    }
    
    .swiper.cases-swiper .card-img-top {
        height: 140px;
    }
    
    .swiper.cases-swiper .card:hover {
        transform: translateY(-4px);
    }
}

/* 相关服务卡片样式 */
.xgfw {
    padding-top: 0 !important;
}

.xgfw .card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.xgfw .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 86, 179, 0.15);
}

.xgfw .card-img-top {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.xgfw .card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.xgfw .card-body {
    padding: 1.25rem;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.375rem;
}

.xgfw .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.xgfw .card:hover .card-title {
    color: var(--primary-blue);
}

.xgfw .card-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.xgfw .btn-primary{
    align-self: flex-start;
    margin-top: 0.25rem;
    border-radius: 20px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.xgfw .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.35);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .xgfw .card-img-top {
        height: 140px;
    }
    
    .xgfw .card-body {
        padding: 1.25rem;
    }
    
    .xgfw .card-title {
        font-size: 1.1rem;
    }
    
    .xgfw .card-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .xgfw .card-img-top {
        height: 130px;
    }
    
    .xgfw .card-body {
        padding: 1rem;
    }
    
    .xgfw .card-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }
    
    .xgfw .card-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .xgfw .btn-primary1 {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .xgfw .card {
        margin-bottom: 1rem;
    }
    
    .xgfw .card-img-top {
        height: 120px;
    }
    
    .xgfw .card:hover {
        transform: translateY(-4px);
    }
}

/* 功能模块网格样式 */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card-hidden {
    display: none;
}

.module-card-visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

.module-card-inner {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.module-card:hover .module-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.15);
}

.module-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.module-card:hover .module-title {
    color: var(--primary-blue);
}

.module-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.module-toggle-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.module-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 25px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.module-toggle-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.25);
    transform: translateY(-2px);
}

.module-toggle-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .module-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .module-card-inner {
        padding: 1.25rem;
    }
    
    .module-title {
        font-size: 1rem;
    }
    
    .module-desc {
        font-size: 0.875rem;
    }
}

/* SDK列表网格样式 */
.sdk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sdk-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdk-card-hidden {
    display: none;
}

.sdk-card-visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.sdk-toggle-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.sdk-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 25px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sdk-toggle-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.25);
    transform: translateY(-2px);
}

.sdk-toggle-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .sdk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .sdk-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* 滚动监听导航样式 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

#navbar-example2 .nav {
  position: relative;
}

#navbar-example2 .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

#navbar-example2 .nav-link.active {
  font-weight: bold;
  color: var(--primary-blue) !important;
}

#navbar-example2 .nav-item.news-hover {
  position: relative;
}

#navbar-example2 .nav-item.news-hover:hover .nav-link {
  color: var(--primary-blue) !important;
}

#navbar-example2 .nav-item.news-hover .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

#navbar-example2 .nav-item.news-hover:hover .nav-link::after {
  width: 100%;
}

#navbar-example2 .nav-item.news-hover .nav-link.active::after {
  width: 100%;
}

/* 导航栏下拉菜单样式 */
.navbar .nav-item.dropdown .nav-dropdown-toggle .dropdown-icon {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* 导航栏激活状态样式 */
.navbar .nav-item.active .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.navbar .nav-item.active .nav-link .dropdown-icon {
    color: var(--primary-blue) !important;
}

/* 下拉菜单激活状态 */
.navbar .dropdown-item.active {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0.15) 100%);
    color: var(--primary-blue) !important;
    font-weight: 500;
}

.navbar .nav-item.dropdown.show .nav-dropdown-toggle .dropdown-icon,
.navbar .nav-item.dropdown .show .nav-dropdown-toggle .dropdown-icon,
.nav-item.dropdown.show .nav-dropdown-toggle .dropdown-icon {
    transform: rotate(180deg) !important;
}

.navbar .nav-item.dropdown .nav-dropdown-toggle:hover .dropdown-icon {
    color: var(--primary-blue);
}

/* 电脑端鼠标悬停样式 */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding-top: 0.5rem;
    }
    
    .navbar .nav-item.dropdown .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 0;
        padding-top: 0.5rem;
    }
    
    .navbar .nav-item.dropdown.show .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding-top: 0.5rem;
    }
}

/* 手机端导航栏样式 */
@media (max-width: 991.98px) {
    /* 导航栏容器 */
    .navbar {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    /* 导航菜单 */
    .navbar-collapse {
        padding: 0.5rem 0;
    }
    
    /* 导航项 */
    .navbar-nav {
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    /* 导航链接 */
    .nav-link {
        padding: 1rem 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* 下拉菜单箭头 */
    .nav-dropdown-toggle {
        position: relative;
    }
    
    .nav-dropdown-toggle .dropdown-icon {
        position: absolute;
        right: 0.5rem;
        margin-left: 0;
        transition: transform 0.3s ease;
    }
    
    /* 下拉菜单 */
    .navbar .nav-item.dropdown .dropdown-menu {
        display: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.02);
    }
    
    .navbar .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }
    
    .navbar .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        color: #555;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar .dropdown-item:hover {
        background: rgba(0, 86, 179, 0.08);
        color: var(--primary-blue);
        padding-left: 1.75rem;
    }
    
    /* 移动端菜单按钮 */
    .navbar-toggler {
        border: 1px solid rgba(0, 86, 179, 0.2);
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(0, 86, 179, 0.08);
        border-color: var(--primary-blue);
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
    }
    
    .navbar-toggler[aria-expanded="true"] {
        background: rgba(0, 86, 179, 0.12);
        border-color: var(--primary-blue);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 86, 179, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 86, 179, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
    }
    
    /* 下拉菜单动画 */
    .navbar .nav-item.dropdown.show .dropdown-menu {
        animation: mobileDropdownFadeIn 0.3s ease;
    }
    
    @keyframes mobileDropdownFadeIn {
        from {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
        }
        to {
            opacity: 1;
            max-height: 300px;
            overflow: visible;
        }
    }
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0;
    animation: dropdownFadeIn 0.3s ease;
}

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

.navbar .dropdown-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.08) 0%, rgba(0, 86, 179, 0.12) 100%);
    color: var(--primary-blue);
    padding-left: 1.5rem;
}

/* 新闻列表样式 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-inner {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.news-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-inner:hover .news-image {
    transform: scale(1.08);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.15) 0%, rgba(0, 86, 179, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-inner:hover .news-overlay {
    opacity: 1;
}

.news-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card-inner:hover .news-title {
    color: var(--primary-blue);
}

.news-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.news-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-date {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-image-wrapper {
        height: 160px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1rem;
    }
}



.cases-swiper .swiper-slide .card-link i {
    margin-left: 6px;
}



.cases-swiper .swiper-slide .case-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cases-swiper .swiper-slide .case-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ------------------------ */
/* 案例轮播卡片标签样式 (Cases Swiper Tags) */
/* ------------------------ */
.cases-swiper .swiper-slide .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--card-gap);
    padding: 0;
    list-style: none;
}

.cases-swiper .swiper-slide .case-tags .btn {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    line-height: 1.2;
}

/* 行业标签样式 */
.cases-swiper .swiper-slide .case-tags .btn-primary {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.cases-swiper .swiper-slide .case-tags .btn-primary:hover {
    background-color: #2563eb;
    border-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 学科标签样式 */
.cases-swiper .swiper-slide .case-tags .btn-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.cases-swiper .swiper-slide .case-tags .btn-success:hover {
    background-color: #22c55e;
    border-color: #16a34a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* 移除small标签的默认样式影响 */
.cases-swiper .swiper-slide .case-tags .btn small {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* 应用案例Swiper导航按钮样式 */
.swiper.cases-swiper .swiper-button-prev,
.swiper.cases-swiper .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper.cases-swiper .swiper-button-prev:hover,
.swiper.cases-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 1);
    color: #764ba2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper.cases-swiper .swiper-button-prev::after,
.swiper.cases-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}



/* ============================================================ */
/* 统一卡片设计系统 (Unified Card Design System)                */
/* ============================================================ */

/* ------------------------ */
/* 设计变量 (Design Variables) */
/* ------------------------ */
:root {
    /* 卡片色彩 */
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-border-hover: #cbd5e1;
    --card-shadow: rgba(0, 0, 0, 0.06);
    --card-shadow-hover: rgba(0, 0, 0, 0.12);
    --card-title: #1e293b;
    --card-title-hover: #2563eb;
    --card-text: #64748b;
    
    /* 间距系统 */
    --card-padding: 24px;
    --card-gap: 16px;
    --card-image-height: 200px;
    
    /* 圆角系统 */
    --card-radius: 16px;
    --card-radius-sm: 12px;
    
    /* 动画系统 */
    --card-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-animation-delay: 0.1s;
}

/* ------------------------ */
/* 基础卡片样式 (Base Card) */
/* ------------------------ */
.card {
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 2px 16px var(--card-shadow);
    position: relative;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 移除了.card:hover样式 */

/* ------------------------ */
/* 卡片图片样式 (Card Image) */
/* ------------------------ */
.card-img-top,
.card-image img,
.case-image img {
    width: 100%;
    height: var(--card-image-height);
    object-fit: cover;
}

/* 移除了卡片图片的hover缩放效果 */

/* ------------------------ */
/* 卡片内容区域 (Card Body) */
/* ------------------------ */
.card-body {
    padding: var(--card-padding);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    position: relative;
}

/* ------------------------ */
/* 卡片标题样式 (Card Title) */
/* ------------------------ */
.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--card-title);
    line-height: 1.4;
    margin: 0;
}

/* 移除了卡片标题的hover颜色变化 */

/* ------------------------ */
/* 卡片文本样式 (Card Text) */
/* ------------------------ */
.card-text {
    font-size: 0.9375rem;
    color: var(--card-text);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

/* ------------------------ */
/* 卡片链接样式 (Card Link) */
/* ------------------------ */
.card-link {
    font-weight: 500;
    color: var(--card-title-hover);
    text-decoration: none;
    margin-top: auto;
}



.card-link i {
    margin-left: 6px;
}

/* ------------------------ */


/* ------------------------ */
/* 卡片标签样式 (Card Tags) */
/* ------------------------ */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.card-tags .tag {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #f1f5f9;
    color: var(--card-text);
    border-radius: 20px;
    transition: var(--card-transition);
}

.card-tags .tag:hover {
    background-color: var(--card-title-hover);
    color: white;
    transform: translateY(-2px);
}

/* ============================================================ */
/* 特定类型卡片样式 (Specialized Card Styles)                  */
/* ============================================================ */

/* ------------------------ */
/* 核心价值观卡片 (Core Values Card) */
/* ------------------------ */
.core-values .card {
    border: none;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.core-values .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--card-transition);
}

.core-values .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.core-values .card:hover::before {
    transform: scaleX(1);
}

/* ------------------------ */
/* 成功案例卡片 (Success Cases Card) */
/* ------------------------ */
.success-cases .card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.success-cases .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.success-cases .card-body {
    padding: 28px;
}

/* ------------------------ */
/* 案例轮播卡片 (Cases Swiper Card) */
/* ------------------------ */
.cases-swiper .swiper-slide .card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cases-swiper .swiper-slide .case-image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
}

/* 案例轮播卡片图片遮罩 */
.cases-swiper .swiper-slide .case-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
    transition: opacity var(--card-transition);
}

/* ------------------------ */
/* 搜索筛选卡片 (Search Filter Card) */
/* ------------------------ */
.card.search-filter-card {
    background: #f8fafc;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.card.search-filter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* ------------------------ */
/* 案例详情卡片 (Case Detail Card) */
/* ------------------------ */
.card.case-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

/* ============================================================ */
/* 响应式卡片设计 (Responsive Card Design)                     */
/* ============================================================ */

@media (max-width: 768px) {
    :root {
        --card-padding: 20px;
        --card-gap: 12px;
        --card-image-height: 180px;
        --card-radius: 12px;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .core-values .card {
        padding: 24px;
    }
    
    .success-cases .card-body {
        padding: 24px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    :root {
        --card-padding: 16px;
        --card-gap: 10px;
        --card-image-height: 160px;
    }
    
    .card:hover {
        transform: translateY(-4px);
    }
    
    .core-values .card:hover,
    .success-cases .card:hover,
    .card.case-card:hover {
        transform: translateY(-6px);
    }
}
/* 描述文字样式 */
.feature-description {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
    overflow: auto;
    height: 150px;
    /* 简化的自定义滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

/* Chrome, Edge, Safari简化滚动条 */
.feature-description::-webkit-scrollbar {
    width: 4px;
}

.feature-description::-webkit-scrollbar-track {
    background: transparent;
}

.feature-description::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.feature-description::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}



/* 响应式设计 */
@media (max-width: 992px) {
    .software-features {
        padding: 3rem 0;
    }
    .feature-title {
        font-size: 1.3rem;
    }
    
    .software-features .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .swiper.features-swiper,
    .swiper.cases-swiper {
        padding-bottom: 40px;
    }
    

    
    .card-img-top {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .software-features {
        padding: 2.5rem 0;
    }
    .feature-title {
        font-size: 1.25rem;
    }
    
    .software-features .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-img-top {
        height: 160px;
    }
    
    .features-swiper {
        padding-bottom: 40px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 25px;
        height: 25px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.8);
        color: #667eea;
    }
    
    }
}

@media (max-width: 576px) {
    .software-features {
        padding: 2rem 0;
    }
    .feature-title {
        font-size: 1.2rem;
    }
    
    .swiper.features-swiper .swiper-button-prev,
    .swiper.features-swiper .swiper-button-next,
    .swiper.cases-swiper .swiper-button-prev,
    .swiper.cases-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    
    .swiper.features-swiper .swiper-button-prev::after,
    .swiper.features-swiper .swiper-button-next::after,
    .swiper.cases-swiper .swiper-button-prev::after,
    .swiper.cases-swiper .swiper-button-next::after {
        font-size: 14px;
    }
    
    .features-swiper,
    .cases-swiper {
        padding-bottom: 40px;
    }
    

    
    .software-features .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .card-body {
        padding: 1.15rem;
    }
    
    .card-img-top {
        height: 140px;
    }
}

.software-overview .overview-content ol li {
    margin-bottom: 0.85rem;
    line-height: 1.7;
    color: #5a6c7d;
}

/* 强调文本 */
.software-overview .overview-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 链接样式 */
.software-overview .overview-content a {
    color: #6a11cb;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px dotted #6a11cb;
}

.software-overview .overview-content a:hover {
    color: #2575fc;
    border-bottom-color: #2575fc;
    border-bottom-style: solid;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .software-overview .overview-content {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .software-overview {
        padding: 2.5rem 0;
    }
    
    .software-overview .section-description {
        font-size: 1.125rem;
    }
    
    .software-overview .row {
        flex-direction: column;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .software-overview .col-md-6 {
        width: 100%;
    }
    
    .software-overview .overview-image {
        height: 350px;
    }
    
    .software-overview .overview-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .software-overview {
        padding: 2rem 0;
    }
    

    
    .software-overview .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .software-overview .overview-image {
        height: 250px;
    }
    
    .software-overview .overview-content {
        padding: 1.5rem;
    }
    
    .software-overview .overview-content p {
        font-size: 1rem;
    }
    
    .software-overview .overview-content h3 {
        font-size: 1.5rem;
    }
    
    .software-overview .overview-content h4 {
        font-size: 1.25rem;
    }
}/* 元王科技官网自定义样式 - 基于Bootstrap 5设计 */

/* 案例搜索页面专用样式 */
/* ========================================== */
/* 搜索筛选区域样式增强 */
.card.search-filter-card {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.card.search-filter-card:hover {
    box-shadow: var(--shadow-lg);
}

/* 自定义下拉选择框样式 */
select.form-select {
    border-color: #e9ecef;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

select.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
    outline: none;
}

/* 搜索框样式增强 */
.input-group .form-control {
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.input-group .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
    outline: none;
}

/* Input Group按钮样式已移除 - 使用Bootstrap默认样式 */

/* 案例卡片样式优化 */
.card.case-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    background-color: var(--white);
}

.card.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* 案例缩略图样式 */
.case-card .case-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 180px;
}

.case-card .case-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* 日期标签样式 */
.case-card .date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 86, 179, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.case-card:hover .date-badge {
    background-color: rgba(0, 61, 130, 0.95);
}

/* 案例标题样式 */
.case-card .case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.case-card .case-title:hover {
    color: var(--primary-blue);
}

/* 案例描述样式 */
.case-card .case-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* 标签样式优化 */
.case-card .tags-container {
    margin-bottom: 1rem;
}

.case-card .tag-badge {
    background-color: #f0f4f8;
    color: var(--text-secondary);
    border-radius: 16px;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    transition: var(--transition-base);
    display: inline-block;
}

.case-card .tag-badge:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

/* 统计信息样式 */
.case-card .stats-container {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.case-card .stat-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.case-card:hover .stat-item {
    color: var(--primary-blue);
}

.case-card .stat-item i {
    margin-right: 0.5rem;
}

/* 查看详情按钮样式 */
.case-card .detail-btn {
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.case-card .detail-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}

/* 无结果状态样式优化 */
.no-results-container {
    border-radius: var(--border-radius);
    border: 1px dashed #e9ecef;
    background-color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.no-results-container:hover {
    border-color: #dee2e6;
    box-shadow: var(--shadow-sm);
}

.no-results-icon {
    color: #adb5bd;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.no-results-container:hover .no-results-icon {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.no-results-description {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.reset-filters-btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.reset-filters-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}

/* 分页样式优化 */
.pagination {
    margin-top: 2rem;
}

.pagination .page-item .page-link {
    border-radius: 6px;
    margin: 0 3px;
    transition: var(--transition-base);
    color: var(--text-primary);
    border: 1px solid #e9ecef;
}

.pagination .page-item .page-link:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background-color: rgba(0, 86, 179, 0.05);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    .card.case-card .case-thumbnail {
        height: 150px;
    }
    
    .case-card .stats-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .case-card .stat-item {
        margin-right: 0;
    }
    
    .case-card .detail-btn {
        width: 100%;
        text-align: center;
        margin-top: 0.75rem;
    }
    
    .search-filter-card .row > div {
        margin-bottom: 1rem;
    }
    
    .search-filter-card .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .card.case-card .case-thumbnail {
        height: 180px;
    }
    
    .no-results-container {
        padding: 2rem 1rem;
    }
    
    .no-results-icon {
        font-size: 3rem;
    }
    
    .no-results-title {
        font-size: 1.25rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.case-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.case-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* 加载状态动画 */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s ease-in-out infinite;
}

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

/* 案例搜索页面专用样式结束 */
/* ========================================== */

/* 颜色变量 - 基于logo配色 */
:root {
    --primary-blue: #0056b3; /* 元王logo主蓝色 */
    --primary-blue-light: #1e73be; /* 较浅的蓝色 */
    --primary-blue-dark: #003d82; /* 较深的蓝色 */
    --secondary-green: #39b54a; /* logo中的绿色 */
    --accent-yellow: #ffcc00; /* logo中的黄色 */
    --text-primary: #333333;
    --text-secondary: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition-base: all 0.3s ease;
}

/* 全局样式 - 扩展Bootstrap 5 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
}

/* 自定义按钮样式 - 基于网站蓝色配色方案 */
.btn-primary {
    --bs-btn-bg: var(--primary-blue);
    --bs-btn-border-color: var(--primary-blue);
    --bs-btn-color: var(--white);
    --bs-btn-hover-bg: var(--primary-blue-dark);
    --bs-btn-hover-border-color: var(--primary-blue-dark);
    --bs-btn-active-bg: var(--primary-blue-dark);
    --bs-btn-active-border-color: var(--primary-blue-dark);
    --bs-btn-disabled-bg: var(--primary-blue);
    --bs-btn-disabled-border-color: var(--primary-blue);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-blue);
    --bs-btn-border-color: var(--primary-blue);
    --bs-btn-hover-bg: var(--primary-blue);
    --bs-btn-hover-border-color: var(--primary-blue);
    --bs-btn-hover-color: var(--white);
    --bs-btn-active-bg: var(--primary-blue);
    --bs-btn-active-border-color: var(--primary-blue);
    --bs-btn-active-color: var(--white);
    --bs-btn-disabled-color: var(--primary-blue);
    --bs-btn-disabled-border-color: var(--primary-blue);
    --bs-btn-focus-shadow-rgb: 0, 86, 179;
    --bs-btn-border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary:disabled {
    opacity: 0.6;
    transform: none;
}

/* 确保按钮在焦点状态下有适当的轮廓 */
.btn-primary:focus-visible,
.btn-outline-primary:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* 蓝色背景下的按钮样式 - btn-primary1 */
.btn-primary1 {
    --bs-btn-bg: var(--white);
    --bs-btn-border-color: var(--white);
    --bs-btn-color: var(--primary-blue);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.95);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.95);
    --bs-btn-hover-color: var(--primary-blue-dark);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.85);
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.85);
    --bs-btn-active-color: var(--primary-blue-dark);
    --bs-btn-disabled-bg: rgba(255, 255, 255, 0.7);
    --bs-btn-disabled-border-color: rgba(255, 255, 255, 0.7);
    --bs-btn-disabled-color: rgba(0, 86, 179, 0.7);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-width: 1px;
}

.btn-primary1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.btn-primary1:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.1s ease;
}

.btn-primary1:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-primary1:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* 蓝色背景下的描边按钮样式 - btn-outline-primary1 */
.btn-outline-primary1 {
    --bs-btn-color: var(--white);
    --bs-btn-border-color: var(--white);
    --bs-btn-bg: transparent;
    --bs-btn-hover-bg: var(--white);
    --bs-btn-hover-border-color: var(--white);
    --bs-btn-hover-color: var(--primary-blue-dark);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.9);
    --bs-btn-active-border-color: var(--white);
    --bs-btn-active-color: var(--primary-blue-dark);
    --bs-btn-disabled-color: rgba(255, 255, 255, 0.6);
    --bs-btn-disabled-border-color: rgba(255, 255, 255, 0.6);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-width: 2px;
    background-color: transparent;
}

.btn-outline-primary1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: var(--primary-blue-dark);
}

.btn-outline-primary1:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.1s ease;
}

.btn-outline-primary1:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary1:disabled {
    opacity: 0.5;
    transform: none;
    cursor: not-allowed;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.link-primary {
    color: var(--primary-blue) !important;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.link-primary:hover, .link-primary:focus {
    color: var(--primary-blue) !important;
    text-decoration: underline;
}

.link-light {
    color: rgb(144 147 153 / var(--tw-text-opacity, 1)) !important;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.link-light:hover, .link-light:focus {
    color: rgb(0 86 179 / var(--tw-text-opacity, 1)) !important;
    text-decoration: underline;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* 首页Swiper轮播样式 */
.hero-swiper {
    position: relative;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    height: 500px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    padding: 2rem;
    color: white;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-caption h5 {
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.hero-caption p {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.hero-caption .btn {
    text-shadow: none;
    font-weight: 700;
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.hero-caption .btn:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Swiper分页器样式 */
.hero-swiper .swiper-pagination {
    bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-swiper .swiper-pagination-bullet:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: white;
    width: 20px;
    height: 6px;
    border-radius: 3px;
    border-color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Swiper导航按钮样式 */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover::after,
.hero-swiper .swiper-button-next:hover::after {
    font-size: 20px;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 350px;
    }
    
    .hero-caption {
        left: 5%;
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .hero-caption h5 {
        font-size: 1.25rem;
    }
    
    .hero-caption p {
        font-size: 0.875rem;
    }
    
    .hero-caption .btn {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 10px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        margin: 0 4px;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
        width: 18px;
        height: 5px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        height: 250px;
    }
    
    .hero-caption {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 1rem;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero-caption h5 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-caption p {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-caption .btn {
        padding: 0.3125rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 8px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        margin: 0 3px;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
        width: 16px;
        height: 4px;
    }
    
    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 16px;
    }
}

/* 导航栏样式 */
.navbar {
    --bs-navbar-bg: var(--white);
    --bs-navbar-color: var(--text-primary);
    --bs-navbar-hover-color: var(--primary-blue);
    --bs-navbar-active-color: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 40px;
    margin-right: 0.75rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: color 0.3s ease;
}

/* 主导航菜单（header.html）的下划线效果 */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {

}

/* 关于页面内部导航（about_page.html）的下划线效果 */
.nav.over .nav-link:hover::after,
.nav.over .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background-color: var(--primary-blue);
}

/* 标题样式 - 覆盖Bootstrap 5 */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: 600;
}

/* 统一板块标题样式 */
/* 已在文件顶部定义.section-title，此处删除重复定义 */
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    /* 确保标题居中显示 */
    left: 50%;
    transform: translateX(-50%);
    color: #000; /* 文字为黑色 */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 3px;
}

/* 统一板块副标题样式 */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    text-align: center;
    transition: color 0.3s ease;
}

/* 为我们的客户部分的副标题添加黑色文字样式 */
.our-clients-section .section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* 响应式标题样式调整 */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
        padding-bottom: 0.625rem;
    }
    
    .section-title::after {
        width: 70px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        padding-bottom: 0.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

/* 主内容区域 */
.main-content {
    padding: 3rem 0;
}

/* 页脚样式 */
.footer {
    background-color: var(--bg-light);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* 页脚手风琴样式 */
#footerAccordion {
    width: 100%;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-button:hover::before {
    transform: scaleY(1);
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
    transform: scaleY(1);
}

.accordion-button::after {
    filter: invert(1);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links.mobile {
    padding: 0.75rem 1.25rem;
    margin: 0;
}

.footer-links.mobile li {
    margin-bottom: 0.75rem;
    position: relative;
}

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

.footer-links.mobile a {
    color: rgba(54, 53, 53, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.375rem 0;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(148, 54, 54, 0.05);
}

.footer-links.mobile a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.footer-links.mobile a:hover {
    color: rgb(66, 65, 65);
    padding-left: 15px;
    font-weight: 600;
}

.footer-links.mobile a:hover::before {
    left: 0;
    opacity: 1;
}

/* 响应式样式 */
@media (max-width: 575.98px) {
    .accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .footer-links.mobile {
        padding: 0.625rem 1rem;
    }
    
    .footer-links.mobile li {
        margin-bottom: 0.625rem;
    }
    
    .footer-links.mobile a {
        font-size: 0.9rem;
    }
}

/* CAE页面特定样式 - Bootstrap 5 优化 */

/* Banner区域样式优化 */
.banner-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 1rem;
}

.banner-section .absolute {
    position: absolute;
}

.banner-section .inset-0 {
    inset: 0;
}

.banner-section .bg-blue-900 {
    background-color: var(--primary-blue-dark);
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    filter: brightness(0.8); /* 略微调暗背景图片以增强文字可读性 */
}

.banner-section .bg-gradient-to-r {
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.9), rgba(0, 59, 121, 0.7));
}

.banner-section .container {
    position: relative;
    z-index: 10;
}

.banner-section .max-w-3xl {
    max-width: 48rem;
}

.banner-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.banner-section .text-center {
    text-align: center;
}

.banner-section h1 {
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.banner-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Banner按钮样式 */
.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Banner特定按钮样式已移除 - 使用Bootstrap默认样式 */

/* Banner特定按钮样式已移除 - 使用Bootstrap默认样式 */

/* 动画效果 */
.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

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

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

/* 底部装饰元素 */
.banner-section .bottom-0 {
    bottom: 0;
}

.banner-section .left-0 {
    left: 0;
}

.banner-section .w-full {
    width: 100%;
}

.banner-section .h-24 {
    height: 6rem;
}

.banner-section .bg-gradient-to-t {
    background: linear-gradient(to top, white, transparent);
}

/* 动画关键帧定义 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 应用范围样式 */
.application-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    z-index: 1;
}

/* 应用范围部分样式已整合到统一的section-title和section-subtitle样式中 */

/* 应用范围折叠功能样式 */
#applicationCollapse {
    transition: all 0.5s ease;
    overflow: hidden;
}

#applicationCollapse .col {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}



/* 背景装饰 */
.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 100%);
    z-index: 0;
}

.application-section .container {
    position: relative;
    z-index: 1;
}

.application-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.application-section h2::after {
    content: none;
}


    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.1);
    display: flex;
    flex-direction: column;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue-light);
}

.application-card-img {
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.application-card-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.application-card-icon {
    background-color: rgba(0, 86, 179, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.application-card:hover .application-card-icon {
    background-color: rgba(0, 86, 179, 0.1);
}

.application-card-icon i {
    color: var(--primary-blue);
    font-size: 2.5rem;
}

.application-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.application-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}


/* 应用案例样式 */
.cases-section {
    padding: 5rem 0;
    position: relative;
}

/* 案例部分样式已整合到统一的section-title和section-subtitle样式中 */



.case-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.case-card-footer .industry {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-card-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.case-card-footer a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* 常见问题样式 */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);
    z-index: 1;
}

/* FAQ部分样式已整合到统一的section-title和section-subtitle样式中 */

/* ============================================================ */
/* 统一手风琴设计系统 (Unified Accordion Design System)        */
/* ============================================================ */

:root {
    /* 手风琴色彩变量 - 根据bg-light背景优化 */
    --accordion-bg: #f8f9fa; /* Bootstrap bg-light的实际颜色值 */
    --accordion-border: #e9ecef;
    --accordion-border-hover: #dee2e6;
    --accordion-header-bg: #ffffff;
    --accordion-header-bg-hover: #ffffff;
    --accordion-header-bg-active: #ffffff;
    --accordion-title: #212529;
    --accordion-title-hover: var(--primary-blue);
    --accordion-title-active: var(--primary-blue);
    --accordion-text: #6c757d;
    --accordion-icon: #6c757d;
    --accordion-icon-active: var(--primary-blue);
    --accordion-shadow: rgba(0, 0, 0, 0.04);
    --accordion-shadow-hover: rgba(0, 0, 0, 0.08);
    --accordion-shadow-active: rgba(0, 0, 0, 0.1);
    
    /* 动画变量 */
    --accordion-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------ */
/* 手风琴容器样式 (Accordion Container) */
/* ------------------------ */
.accordion {
    --bs-accordion-border-color: var(--accordion-border);
    --bs-accordion-bg: var(--accordion-bg);
    --bs-accordion-border-radius: var(--card-radius);
    --bs-accordion-inner-border-radius: var(--card-radius);
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-color: var(--accordion-title);
    --bs-accordion-btn-bg: var(--accordion-header-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ------------------------ */
/* 手风琴项样式 (Accordion Item) */
/* ------------------------ */
.accordion-item {
    border: 1px solid var(--accordion-border);
    margin-bottom: 1rem;
    border-radius: var(--card-radius);
    box-shadow: 0 2px 8px var(--accordion-shadow);
    transition: var(--accordion-transition);
    background-color: var(--accordion-bg);
    overflow: hidden;
    position: relative;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px var(--accordion-shadow-hover);
    border-color: var(--accordion-border-hover);
}

/* ------------------------ */
/* 手风琴头部样式 (Accordion Header) */
/* ------------------------ */
.accordion-header {
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    overflow: hidden;
}

/* ------------------------ */
/* 手风琴按钮样式 (Accordion Button) */
/* ------------------------ */
.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
    border: none;
    background-color: var(--accordion-header-bg);
    color: var(--accordion-title);
    transition: var(--accordion-transition);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: var(--accordion-transition);
    z-index: 2;
}

.accordion-button:hover {
    background-color: var(--accordion-header-bg-hover);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:hover::before {
    background-color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
    border-color: var(--primary-blue);
}

.accordion-button:not(.collapsed) {
    background-color: var(--accordion-header-bg-active);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
    background-color: var(--primary-blue);
}

/* ------------------------ */
/* 手风琴图标样式 (Accordion Icon) */
/* ------------------------ */
.accordion-button::after {
    color: var(--accordion-icon);
    transform: rotate(-180deg);
    transition: transform 0.3s ease, color 0.3s ease;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    color: var(--accordion-icon-active);
    transform: rotate(0deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ------------------------ */
/* 手风琴内容样式 (Accordion Body) */
/* ------------------------ */
.accordion-body {
    padding: 1.5rem;
    background-color: var(--accordion-bg);
    border-top: 1px solid var(--accordion-border);
    transition: var(--accordion-transition);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.accordion-body p {
    color: var(--accordion-text);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ------------------------ */
/* 响应式设计 (Responsive Design) */
/* ------------------------ */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
    }
    
    .accordion-item {
        margin-bottom: 0.75rem;
    }
}

/* 为什么选择我们样式 */
.why-us-section {
    padding: 5rem 0;
    position: relative;
}

/* 为什么选择我们部分样式已整合到统一的section-title和section-subtitle样式中 */

/* 优势项样式 */
.advantage-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: var(--transition-base);
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.advantage-item:hover .advantage-icon {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 1.5rem;
}

.advantage-item h3 {
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.advantage-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 优势卡片样式 */
.advantage-col .card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-col .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-col .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-col .card:hover::before {
    transform: scaleX(1);
}

.card-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.card-img-placeholder {
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-col .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.advantage-col .card:hover .card-title {
    color: var(--primary-blue);
}

.advantage-col .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    transition: color 0.3s ease;
}

.advantage-col .card:hover .card-text {
    color: #333;
}

.advantage-col .card-link {
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.advantage-col .card:hover .card-link {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.advantage-col .card-link i {
    transition: transform 0.3s ease;
}

.advantage-col .card:hover .card-link i {
    transform: translateX(3px);
}

/* 响应式样式 */
@media (max-width: 767.98px) {
    .advantage-col .card {
        padding: 1.5rem;
    }
    
    .card-img-container {
        min-height: 100px;
    }
    
    .advantage-col .card-title {
        font-size: 1rem;
    }
    
    .advantage-col .card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .advantage-col .card {
        padding: 1.25rem;
    }
    
    .card-img-container {
        min-height: 80px;
    }
    
    .card-img-placeholder i {
        font-size: 2rem !important;
    }
    
    .advantage-col .card-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .advantage-col .card-text {
        font-size: 0.8rem;
    }
}

/* 产品和服务卡片样式 */
.product-service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-service-card:hover::before {
    transform: scaleX(1);
}

.product-service-img {
    position: relative;
    overflow: hidden;
    height: 180px;
    transition: all 0.3s ease;
}

.product-service-card:hover .product-service-img {
    transform: scale(1.05);
}

.product-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-service-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-service-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.product-service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-service-card:hover .product-service-title {
    color: var(--primary-blue);
}

.product-service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-service-card:hover .product-service-link {
    transform: translateX(8px);
}

.product-service-link i {
    transition: transform 0.3s ease;
}

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

/* 展开按钮样式 */
.product-service-toggle {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.product-service-toggle:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.product-service-toggle i {
    transition: transform 0.3s ease;
}

.product-service-toggle:hover i {
    transform: translateY(2px);
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .product-service-img {
        height: 160px;
    }
    
    .product-service-content {
        padding: 1.25rem;
    }
    
    .product-service-title {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .product-service-img {
        height: 140px;
    }
    
    .product-service-content {
        padding: 1rem;
    }
    
    .product-service-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .product-service-img {
        height: 120px;
    }
    
    .product-service-content {
        padding: 0.75rem;
    }
    
    .product-service-title {
        font-size: 0.9rem;
    }
    
    .product-service-toggle {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 新闻动态样式 */
.news-featured-card {
    position: relative;
    transition: all 0.3s ease;
}

.news-featured-card:hover {
    transform: scale(1.02);
}

.news-featured-card:hover img {
    transform: scale(1.1);
}

.news-featured-card img {
    transition: transform 0.5s ease;
}

.news-featured-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.news-featured-title {
    font-size: 1.0rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.news-featured-card:hover .news-featured-title {
    color: white;
}

.news-featured-more {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-featured-card:hover .news-featured-more {
    color: white;
    transform: translateX(5px);
}

.news-featured-more i {
    transition: transform 0.3s ease;
}

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

/* 右侧文章列表 */
.news-list-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

.news-list-img {
    overflow: hidden;
    border-radius: 8px;
}

.news-list-img img {
    transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.1);
}

.news-list-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000000;
}

.news-list-item:hover .news-list-title {
    color: var(--primary-blue);
}

.news-list-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.news-list-more {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.news-list-item:hover .news-list-more {
    transform: translateX(3px);
}

.news-list-more i {
    transition: transform 0.3s ease;
}

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

/* 响应式样式 */
@media (max-width: 767.98px) {
    .news-featured-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .news-featured-title {
        font-size: 1.2rem;
    }
    
    .news-list-img {
        width: 100px !important;
        height: 70px !important;
    }
    
    .news-list-img img {
        width: 100%;
        height: 100%;
    }
    
    .news-list-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .news-featured-card img {
        min-height: 250px !important;
    }
    
    .news-featured-overlay {
        padding: 1.25rem 0.75rem 0.75rem;
    }
    
    .news-featured-title {
        font-size: 1rem;
    }
    
    .news-list-img {
        width: 90px !important;
        height: 60px !important;
    }
    
    .news-list-item {
        padding: 0.75rem !important;
    }
    
    .news-list-title {
        font-size: 0.85rem;
    }
}

/* 公司实力样式 */
.py-10 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.py-10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.mb-8 {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.25rem;
}

.p-6 {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stats-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.stats-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.stats-item:hover::before {
    left: 100%;
}

.stats-item:hover::after {
    width: 300px;
    height: 300px;
}

.stats-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.2);
}

.stats-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.stats-item:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.stats-icon i {
    font-size: 2rem !important;
    transition: color 0.3s ease;
}

.stats-item:hover .stats-icon i {
    color: rgba(255, 255, 255, 0.95);
}

.stats-item h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stats-item:hover h3 {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.stats-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stats-item:hover p {
    color: white;
    transform: translateY(2px);
}

/* 关于页面数字展示部分去掉悬停效果 */
.stats-item.about-stats {
    transition: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.stats-item.about-stats:hover {
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.stats-item.about-stats:focus,
.stats-item.about-stats:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.stats-item.about-stats::before,
.stats-item.about-stats::after {
    display: none !important;
}

.stats-item.about-stats:hover::before,
.stats-item.about-stats:hover::after {
    display: none !important;
}

.stats-item.about-stats .stats-icon {
    transition: none !important;
}

.stats-item.about-stats:hover .stats-icon {
    transform: none !important;
    filter: none !important;
}

.stats-item.about-stats .stats-icon i {
    transition: none !important;
}

.stats-item.about-stats:hover .stats-icon i {
    color: inherit !important;
}

.stats-item.about-stats h3 {
    transition: none !important;
}

.stats-item.about-stats:hover h3 {
    text-shadow: none !important;
    transform: none !important;
}

.stats-item.about-stats p {
    transition: none !important;
}

.stats-item.about-stats:hover p {
    color: inherit !important;
    transform: none !important;
}

/* 关于页面数字展示部分去掉悬停效果 */
.about_page .stats-item {
    transition: none;
}

.about_page .stats-item:hover {
    transform: none;
    box-shadow: none;
    background: inherit;
    border-color: inherit;
}

.about_page .stats-item:hover::before,
.about_page .stats-item:hover::after {
    display: none;
}

.about_page .stats-item:hover .stats-icon {
    transform: none;
    filter: none;
}

.about_page .stats-item:hover .stats-icon i {
    color: inherit;
}

.about_page .stats-item:hover h3 {
    text-shadow: none;
    transform: none;
}

.about_page .stats-item:hover p {
    color: inherit;
    transform: none;
}

/* 页脚二维码样式 */
.qrcode-list {
    margin-top: 1.5rem;
}

.qrcode-item {
    transition: all 0.3s ease;
}

.qrcode-item:hover {
    transform: translateY(-5px);
}

.qrcode-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.qrcode-item:hover .qrcode-img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.qrcode-img img {
    display: block;
    transition: transform 0.3s ease;
}

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

/* 响应式样式 */
@media (max-width: 767.98px) {
    .qrcode-list {
        justify-content: center;
    }
    
    .qrcode-img {
        width: 80px;
        height: 80px;
    }
    
    .qrcode-img img {
        width: 100%;
        height: 100%;
    }
}

/* 响应式样式 */
@media (max-width: 767.98px) {
    .py-10 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .mb-8 {
        margin-bottom: 2rem;
    }
    
    .p-6 {
        padding: 1.5rem;
    }
    
    .stats-icon i {
        font-size: 1.75rem !important;
    }
    
    .stats-item h3 {
        font-size: 1.5rem;
    }
    
    .stats-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .p-6 {
        padding: 1.25rem;
    }
    
    .stats-icon i {
        font-size: 1.5rem !important;
    }
    
    .stats-item h3 {
        font-size: 1.25rem;
    }
    
    .stats-item p {
        font-size: 0.8rem;
    }
}

.training-info {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0.02) 100%);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(0, 86, 179, 0.15);
    margin: 0 8px;
}

.info-icon {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.training-card:hover .info-icon {
    color: var(--primary-blue-dark);
    transform: scale(1.1);
}

.info-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.training-card:hover .info-text {
    color: var(--primary-blue);
}

.price-highlight {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.training-card:hover .price-highlight {
    color: #c0392b;
    transform: scale(1.05);
}

.training-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 1rem;
    padding: 12px 16px;
    background-color: rgba(0, 86, 179, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.training-card:hover .detail-item {
    background-color: rgba(0, 86, 179, 0.06);
    border-left-color: var(--primary-blue-dark);
}

.detail-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 8px;
}

.detail-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.training-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
}

.btn-action {
    flex: 1;
    max-width: 180px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.25);
}

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

/* 我们的客户样式 - 优化版 */
.our-clients-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* 背景装饰元素 */
.our-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--primary-blue));
    opacity: 0.8;
}

/* 精致的装饰圆点 */
.our-clients-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,123,255,0.05) 0%, rgba(0,123,255,0) 70%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}

.our-clients-section .container {
    position: relative;
    z-index: 1;
}

/* 我们的客户部分使用统一的section-title样式 */



/* 为Logo文字添加样式 */
.client-logo span {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.client-logo:hover span {
    color: var(--primary-blue);
}

/* 响应式优化 - 使用统一的section-title样式 */
@media (max-width: 992px) {
    .client-logo {
        min-height: 80px;
    }
}

@media (max-width: 576px) {
    .our-clients-section {
        padding: 3rem 0;
    }
    
    .client-logo {
        min-height: 70px;
    }
}

/* 服务流程样式 - 优化版 */
.service-process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.service-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--primary-blue));
    opacity: 0.8;
}

/* 服务流程部分样式已整合到统一的section-title和section-subtitle样式中 */

/* 流程容器 - 用于连接线条 */
.service-process-section .row {
    position: relative;
}

/* 流程连接线 - 桌面版 */
.service-process-section .row::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--primary-blue));
    z-index: 1;
    display: none;
}

/* 响应式显示连接线 */
@media (min-width: 992px) {
    .service-process-section .row::before {
        display: block;
    }
}

.process-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    border-top: 3px solid transparent;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-blue);
}

.process-number {
    font-size: 1.25rem;
    font-weight: 700;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.process-item:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(45, 102, 255, 0.5);
}

.process-item h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.process-item:hover h4 {
    color: var(--secondary-blue);
}

.process-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.process-item:hover p {
    color: var(--text-primary);
}

/* 添加数字动画效果 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 响应式优化 */
@media (max-width: 991px) {
    .process-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
    
    .service-process-section h3 {
        font-size: 2rem;
    }
    
    .process-item {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .service-process-section {
        padding: 3rem 0;
    }
    
    .service-process-section h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* 巨幕区域按钮优化样式 */
.jumbotron-btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* 结合Bootstrap 5变量的按钮样式 */
.jumbotron-btn-primary {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1.5;
    --bs-btn-border-radius: 0.5rem;
    
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--primary-blue);
    background-color: white;
    border: 2px solid white;
    border-radius: var(--bs-btn-border-radius);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.jumbotron-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.jumbotron-btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.jumbotron-btn-secondary {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1.5;
    --bs-btn-border-radius: 0.5rem;
    
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: var(--bs-btn-border-radius);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.jumbotron-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.jumbotron-btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
}

/* 响应式调整 - 基于Bootstrap 5断点 */
@media (max-width: 1200px) {
    .banner-section {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .banner-section {
        min-height: 450px;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        left: 0;
        width: 30px;
    }
    
    .application-card,
    .advantage-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .application-section,
    .cases-section,
    .faq-section,
    .why-us-section {
        padding: 3rem 0;
    }
    
    .banner-section {
        min-height: 400px;
    }
    
    .case-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .banner-section {
        min-height: 350px;
    }
    
    /* Banner按钮布局样式已移除 */
    
    /* 按钮尺寸限制已移除 */
    
    .case-card img {
        height: 180px;
    }
}

/* Banner区域按钮样式已移除 - 使用Bootstrap默认样式 */

/* 按钮悬停和激活状态样式已移除 */

/* 客户轮播相关样式 */
.our-clients-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* 删除重复的h3样式，使用统一的section-title样式 */

.clients-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    /* 添加足够的左右内边距，确保导航按钮不会导致内容出现空白 */
    padding: 20px 60px;
}

.clients-swiper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: auto;
}

.clients-swiper .swiper-slide {
    flex-shrink: 0;
    /* 设置为auto让Swiper根据slidesPerView正确计算宽度 */
    width: auto;
    box-sizing: border-box;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 200px;
}

.client-logo {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #e3f2fd;
}

.client-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* 导航按钮样式 */
.clients-carousel-container .swiper-button-prev,
.clients-carousel-container .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0; /* 移除可能干扰居中的margin */
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.clients-carousel-container .swiper-button-prev:hover,
.clients-carousel-container .swiper-button-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    color: var(--primary-blue-dark);
}

.clients-carousel-container .swiper-button-prev::after,
.clients-carousel-container .swiper-button-next::after {
    font-size: 20px;
    font-weight: 600;
}

.clients-carousel-container .swiper-button-prev {
    /* 调整左侧按钮位置，避免与内容重叠 */
    left: 0;
    margin-top: 0; /* 确保垂直居中 */
}

.clients-carousel-container .swiper-button-next {
    /* 调整右侧按钮位置 */
    right: 0;
    margin-top: 0; /* 确保垂直居中 */
}

/* 联系我们营销型引导部分样式 */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Contact按钮样式已移除 - 使用Bootstrap默认样式 */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.2rem;
}

/* 联系我们响应式设计 */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    /* 按钮容器样式已移除 */
    
    /* 按钮样式已移除 */
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    /* 按钮样式已移除 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .clients-carousel-container {
        /* 确保在中等屏幕上有足够的内边距 */
        padding: 20px 50px;
    }
    
    .clients-carousel-container .swiper-button-prev,
    .clients-carousel-container .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: 0; /* 确保在中等屏幕上垂直居中 */
    }
    
    .clients-carousel-container .swiper-button-prev::after,
    .clients-carousel-container .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .clients-carousel-container {
        /* 确保在小屏幕上有足够的内边距 */
        padding: 20px 40px;
    }
    
    .clients-swiper .swiper-slide {
        height: 100px;
        box-sizing: border-box;
    }
    
    .client-logo {
        padding: 15px;
        box-sizing: border-box;
    }
    
    .client-logo img {
        max-height: 60px;
    }
}

/* 软件详情页面Banner样式 */
/* ========================================== */
.software-banner {
    position: relative;
    margin-top: -1px;
    margin-bottom: 3rem;
}

.banner-container {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.software-banner:hover .banner-bg {
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 0;
}

.software-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.software-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Banner Actions按钮样式已移除 - 使用Bootstrap默认样式 */



/* 响应式设计 */
@media (max-width: 992px) {
    .banner-container {
        min-height: 350px;
    }
    
    .software-title {
        font-size: 2rem;
    }
    
    .software-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .banner-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner-container {
        min-height: 300px;
    }
    
    .banner-content {
        padding: 3rem 0;
    }
    
    .software-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .software-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .software-info-card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .banner-container {
        min-height: 250px;
    }
    
    .software-title {
        font-size: 1.5rem;
    }
    
    .price-btn, .demo-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .price-btn,
    .demo-btn {
        width: auto;
        text-align: center;
    }
}

/* 客户Logo轮播样式 */
.client-logos-carousel {
    position: relative;
    overflow: hidden;
    padding: 10px;
    text-align: center;
}

.client-logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-logo-slide:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.client-logo-slide img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* 去掉灰度效果 */
}

.client-logo-slide:hover img {
    transform: scale(1.05);
}

/* 客户评价轮播分页指示器样式 - 增强版 */
.client-testimonials .swiper-pagination.testimonial-pagination {

    position: relative !important;

}

/* 行业卡片样式 - 专业优化版 */
.industry-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 86, 179, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* 手动实现stretch-link功能 */
.stretch-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
}

/* 确保按钮文本仍然可见 */
.btn-industry span {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.industry-card:hover {
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.2);
    transform: translateY(-2px);
}

.industry-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    padding-right: 2rem;
}

.industry-card-title h5 {
    color: #1a202c;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card-title h5 {
    color: var(--primary-blue);
}

.industry-card-cta {
    margin-top: 1.25rem;
    width: 100%;
}

.industry-card-icon {
    color: var(--primary-blue-light);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 120px;
    border-radius: 18px;
    width: 50%;
    margin: 0;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-card-icon {
    transform: scale(1.03);
}

.industry-card-icon i {
    font-size: 4rem !important;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-icon i {
    transform: scale(1.1);
    color: var(--primary-blue-dark);
}

/* 移除行业卡片的顶部线条动画效果 */
.industry-card.advantage-item::before {
    display: none;
}

.btn-industry {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    padding: 0.425rem 0.8rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.15);
    cursor: pointer;
}

.btn-industry span {
    position: relative;
}

/* 自定义导航按钮样式 */
.client-prev,
.client-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-prev:hover,
.client-next:hover {
    background: #007bff;
    color: white;
}

.client-prev {
    left: -20px;
}

.client-next {
    right: -20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .client-prev {
        left: 10px;
    }
    
    .client-next {
        right: 10px;
    }
    
    .client-logo-slide {
        height: 100px;
        padding: 15px;
    }
    
    .client-logo-slide img {
        max-height: 70px;
        max-width: 120px;
    }
}

/* 隐藏所有滚动条的上下箭头 - 增强版 */

/* WebKit浏览器 (Chrome, Safari) - 更全面的隐藏 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 明确隐藏所有方向的滚动条按钮 */
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment,
::-webkit-scrollbar-button {
    display: none !important;
    width: 0;
    height: 0;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* IE 和 Edge - 强制隐藏 */
body {
    -ms-overflow-style: none !important;
}

/* 针对body和html的滚动条 */
body::-webkit-scrollbar-button,
html::-webkit-scrollbar-button {
    display: none !important;
}

/* 确保所有可滚动元素都应用样式 */
*::-webkit-scrollbar-button {
    display: none !important;
}

/* 内容宽度控制样式 */
.content-wrapper {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

/* 图片不超过容器宽度 */
.content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 表格响应式处理 */
.content-wrapper table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    margin: 1rem 0;
}

.content-wrapper table th,
.content-wrapper table td {
    white-space: normal;
    word-wrap: break-word;
    max-width: 200px;
}

/* 代码块和预格式化文本 */
.content-wrapper pre,
.content-wrapper code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 视频和嵌入式内容 */
.content-wrapper iframe,
.content-wrapper embed,
.content-wrapper object,
.content-wrapper video {
    max-width: 100%;
    height: auto;
}

/* 防止长单词或URL溢出 */
.content-wrapper {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* 响应式表格包装器 */
.content-wrapper .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 防止内容溢出容器 */
.content-wrapper * {
    max-width: 100%;
    box-sizing: border-box;
}

/* 自定义active样式 */
.list-group-item.active {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
}

/* 鼠标悬停效果 */
.list-group-item:hover {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* 关于页面内容样式 */
.about-content {
    font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.about-content p {
    margin-bottom: 1.2rem;
}

.about-content h1, .about-content h2, .about-content h3, .about-content h4, .about-content h5, .about-content h6 {
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-content ul, .about-content ol {
    padding-left: 2em;
    margin-bottom: 1.2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* 关于页面导航样式 */
.about-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.about-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.about-nav .nav-item {
    white-space: nowrap;
    margin-right: 0.5rem;
}

.about-nav .nav-link {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.about-nav .nav-link:hover {
    color: var(--primary-blue);
}

.about-nav .nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-blue);
}

/* 响应式样式 */
@media (min-width: 768px) {
    .about-nav {
        justify-content: flex-start;
    }
    
    .about-nav .nav-item {
        margin-right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-nav {
        justify-content: flex-start;
    }
    
    .about-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}