/* 主样式文�?*/
:root {
  --primary-color: #333333;
  --secondary-color: #666666;
  --accent-color: #0057FF;
  --text-color: #333;
  --light-text: #ffffff;
  --bg-color: #fff;
  --light-gray: #f6f6f6;
  --medium-gray: #e0e0e0;
  --dark-gray: #333;
  --heading-font: 'Noto Sans SC', 'SF Pro Display', sans-serif;
  --body-font: 'Noto Sans SC', 'SF Pro Text', sans-serif;
  --transition-speed: 0.3s;
  --container-width: 1200px;
  --header-height: 80px;
  --header-scrolled-height: 60px;
  --primary-rgb: 51, 51, 51;
  --secondary-rgb: 102, 102, 102;
  --accent-rgb: 0, 87, 255;
}
 
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: #0045cc;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

section {
  padding: 5rem 0;
}

/* 确保hero区域不受section通用样式影响 */
section.video-hero-section {
  padding: 0 !important;
  margin: 0 !important;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

.cta-button:hover {
  background-color: #0045cc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 87, 255, 0.3);
}

.learn-more-link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 1rem;
  position: relative;
}

.learn-more-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-speed) ease;
}

.learn-more-link:hover::after {
  width: 100%;
}

/* 响应式设�?*/
@media (max-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 768px;
  }
  
  section {
    padding: 4rem 0;
  }
  
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
}

/* 为锚点添加适当的滚动偏移，考虑固定导航�?*/
:target {
  scroll-margin-top: 100px;
}

@media (max-width: 992px) {
  :target {
    scroll-margin-top: 80px;
  }
}

/* 最新图文新闻区�?*/
.latest-news {
  padding: 5rem 0 3rem;
  background-color: var(--bg-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-item.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
}

.news-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 比例 */
  position: relative;
  overflow: hidden;
}

.news-item.featured .news-image {
  height: 100%;
  padding-bottom: 0;
}

.news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.news-content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.news-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.news-item.featured .news-content h2 {
  font-size: 1.8rem;
}

.news-content p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link {
  align-self: flex-start;
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

.news-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.news-link:hover::after {
  width: 100%;
}

/* 响应式调�?*/
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-item.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .news-item.featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  .news-item.featured .news-image {
    height: 0;
    padding-bottom: 56.25%;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-item.featured {
    grid-column: span 1;
  }
  
  .news-content {
    padding: 1.2rem 1.5rem;
  }
  
  .news-content h2 {
    font-size: 1.3rem;
  }
  
  .news-item.featured .news-content h2 {
    font-size: 1.5rem;
  }
}

/* 精选项目轮播区域相关样式已删除（未使用） */

/* 精选项目区域相关样式已删除（未使用，实际使用的是case-showcase） */

/* Gensler风格的精选项目相关样式已删除（未使用） */

.animated-text {
    display: inline-block;
    overflow: visible;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000 !important;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    width: auto;
    line-height: 1.2;
}

.animated-text .char {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.5s ease; /* 从0.3s改为0.5s，使过渡更加平滑 */
    position: relative;
    will-change: opacity;
}

.animated-text .char.fade {
    opacity: 0.3;
    transition: opacity 0.5s ease; /* 从0.3s改为0.5s，使过渡更加平滑 */
}

/* #philosophy .animated-text 已删除（#philosophy不再使用） */

/* 招聘区域样式 */
.careers {
    background: linear-gradient(135deg, #1a1f2c 0%, #0d1117 100%) !important; /* 使用!important确保样式生效 */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 以下是装饰元素样式 */
.careers .decoration-circle-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(125, 91, 254, 0.35), rgba(79, 193, 233, 0.35)); /* 增加透明度 */
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.careers .decoration-circle-2 {
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(252, 92, 125, 0.35), rgba(106, 130, 251, 0.35)); /* 增加透明度 */
    z-index: -1;
    animation: float 12s ease-in-out infinite reverse;
}

.careers .decoration-dots {
    position: absolute;
    top: 40px;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(125, 91, 254, 0.9) 2px, transparent 2px); /* 增加透明度 */
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.6; /* 增加整体不透明度 */
}

/* 中间菱形 */
.careers .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.2)); /* 增加透明�?*/
    z-index: 1;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果 */
.careers:hover::before {
    transform: scale(1.2) translate(20px, 20px);
}

.careers:hover::after {
    transform: scale(1.2) translate(-20px, 20px);
}

.careers:hover .container::before {
    transform: translate(-50%, -50%) rotate(225deg) scale(1.2);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3)); /* 增强效果 */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); /* 添加发光效果 */
}

.careers .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.careers-text {
    flex: 1;
    max-width: 500px;
    margin-right: 40px;
    color: #ffffff; /* 改为白色文字 */
}

.careers-image {
    flex: 1;
    max-width: 500px;
    margin-left: auto;
}

.careers-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* 增强阴影效果 */
    transition: transform 0.3s ease;
}

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

.careers p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.8) !important; /* 改为白色文字 */
    font-weight: 500;
}

.careers .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f4821f; /* 改为橙色按钮 */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.careers .cta-button:hover {
    background-color: #e5730e; /* 深一点的橙色 */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .careers {
        padding: 80px 0;
    }
    
    .careers .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .careers-text {
        max-width: 100%;
        margin-right: 0;
    }
    
    .careers-image {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .careers {
        padding: 60px 0;
    }
    
    .careers-text h2.animated-text {
        font-size: 2rem;
    }
    
    .careers p {
        font-size: 1.1rem;
    }
}

.careers-text h2.animated-text {
    display: inline-block;
    overflow: visible;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    width: auto;
    line-height: 1.2;
    margin-bottom: 30px;
    word-break: keep-all;
}

.careers-text h2.animated-text .char {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.5s ease; /* 从0.3s改为0.5s，使过渡更加平滑 */
    position: relative;
    will-change: opacity;
}

.careers-text h2.animated-text .char.fade {
    opacity: 0.3;
    transition: opacity 0.5s ease; /* 从0.3s改为0.5s，使过渡更加平滑 */
}

.careers p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

/* FAQ区域样式 */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* 添加装饰元素 */
.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(244, 130, 31, 0.15), rgba(244, 160, 31, 0.1));
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.15), rgba(66, 133, 244, 0.1));
    z-index: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item:nth-child(1) {
    border-left-color: #f4821f;
}

.faq-item:nth-child(2) {
    border-left-color: #4285f4;
}

.faq-item:nth-child(3) {
    border-left-color: #34a853;
}

.faq-item:nth-child(4) {
    border-left-color: #ea4335;
}

.faq-question {
    padding: 22px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item:nth-child(1) .faq-question::before {
    background-color: #f4821f;
}

.faq-item:nth-child(2) .faq-question::before {
    background-color: #4285f4;
}

.faq-item:nth-child(3) .faq-question::before {
    background-color: #34a853;
}

.faq-item:nth-child(4) .faq-question::before {
    background-color: #ea4335;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -6px;
}

.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
    margin-top: -2px;
    border-color: #1a73e8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
    opacity: 0;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.answer-content {
    padding: 25px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #555;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* 足够大以容纳内容 */
    opacity: 1;
}

.faq-item.active .faq-question {
    color: #1a73e8;
    background: #f5f9ff;
}

.faq-item.active .faq-question h3 {
    color: #1a73e8;
}

.faq-answer ul {
    padding-left: 5px;
    margin: 15px 0;
    list-style: none;
}

.faq-answer li {
    margin: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.faq-item:nth-child(1) .faq-answer li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23f4821f'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.faq-item:nth-child(2) .faq-answer li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%234285f4'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.faq-item:nth-child(3) .faq-answer li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%2334a853'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.faq-item:nth-child(4) .faq-answer li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23ea4335'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 25px;
    }
    
    .faq-question::after {
        right: 15px;
        width: 10px;
        height: 10px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 1500px;
    }
    
    .answer-content {
        padding: 20px 15px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .faq-answer li::before {
        width: 16px;
        height: 16px;
    }
}

/* Resources区域样式已删除（未使用） */

/* back-to-top 和 contact-button 相关样式已迁移到 layout-floating-contact.css，此处删除 */

/* 项目案例展示区域 */
.case-showcase {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.case-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(244, 130, 31, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(244, 130, 31, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
    z-index: 1;
}

.case-showcase::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(244,130,31,0.05)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.case-showcase .container {
    position: relative;
    z-index: 2;
}

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

.case-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.case-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* 分类按钮样式 */
.case-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
    padding: 0 20px;
}

.case-tab {
    position: relative;
    padding: 12px 24px;
    font-size: 16px;
    color: var(--text-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.case-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), #4d8aff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 30px;
}

.case-tab span {
    position: relative;
    z-index: 2;
}

.case-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 87, 255, 0.1);
}

.case-tab:hover::before {
    opacity: 0.1;
}

.case-tab.active {
    color: #fff;
    background: linear-gradient(45deg, var(--accent-color), #4d8aff);
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
    transform: translateY(-2px);
}

.case-tab.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 87, 255, 0.35);
}

/* 响应式调�?*/
@media (max-width: 768px) {
    .case-categories {
        gap: 10px;
        margin: 30px 0;
    }

    .case-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .case-categories {
        gap: 8px;
        margin: 20px 0;
    }

    .case-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 项目列表样式 */
.case-list {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-list.active {
    display: grid;
    opacity: 1;
}

/* 项目卡片样式 */
.case-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.1);
}

/* 默认显示的项目信�?*/
.case-default-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.case-default-info .case-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.case-default-info .case-location {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 加深背景渐变，确保文字更清晰可见，但不会太暗 */
.case-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.case-item:hover .case-default-info {
    opacity: 0;
}

/* 悬停时显示的详细信息 */
.case-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.case-item:hover .case-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.case-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.case-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.case-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* 查看详情按钮 */
.case-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transform: translateX(60px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-item:hover .case-link {
    transform: translateX(0);
}

.case-link:hover {
    background: #f4821f;
    transform: translateX(0) scale(1.1);
}

.case-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.case-link:hover svg {
    transform: translateX(2px);
}

/* 响应式布局 */
@media (max-width: 992px) {
    .case-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-categories {
        gap: 10px;
    }
    
    .case-tab {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .case-list {
        grid-template-columns: 1fr;
    }
    
    .case-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .case-showcase {
        padding: 40px 0;
    }
    
    .case-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .case-categories {
        margin-bottom: 30px;
    }
    
    .case-tab {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* IT业务项目区域 */
.it-projects {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f5f9fc 0%, #e8f4f8 100%);
    overflow: hidden;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.it-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(13, 202, 240, 0.08) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
    z-index: 1;
}

/* 添加装饰性圆形元?*/
.it-projects .decoration-circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 130, 31, 0.1) 0%, rgba(244, 130, 31, 0.05) 100%);
    top: -50px;
    left: -100px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.it-projects .decoration-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 75, 142, 0.1) 0%, rgba(45, 75, 142, 0.05) 100%);
    bottom: -50px;
    right: -50px;
    z-index: 1;
    animation: float 12s ease-in-out infinite reverse;
}

.it-projects .decoration-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 10px 10px;
    top: 20%;
    right: 5%;
    opacity: 0.3;
    z-index: 1;
    transform: rotate(15deg);
}

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

.it-projects::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(45,75,142,0.05)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.it-projects .container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.it-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #2d4b8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.it-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.it-title::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(244, 130, 31, 0.1);
    top: -15px;
    left: calc(50% - 100px);
    z-index: -1;
}

.it-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.it-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
}

.it-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    background: #000;
}

.it-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.it-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.it-item:hover .it-image img {
    transform: scale(1.1);
}

.it-default-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 0;
}

.it-default-info .it-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.it-default-info .it-location {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.it-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.it-item:hover .it-default-info {
    opacity: 0;
}

.it-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.it-item:hover .it-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.it-hover-info .it-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.it-hover-info .it-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.it-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.it-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #f4821f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transform: translateX(60px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(244, 130, 31, 0.2);
    opacity: 0;
}

.it-item:hover .it-link {
    transform: translateX(0);
    opacity: 1;
}

.it-link:hover {
    background: #e67710;
    transform: translateX(0) scale(1.1);
    box-shadow: 0 4px 12px rgba(244, 130, 31, 0.3);
}

.it-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
}

.it-link:hover svg {
    transform: translateX(2px);
}

/* 响应式布局 */
@media (max-width: 1600px) {
    .it-projects .container {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .it-projects .container {
        max-width: 1140px;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .it-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .it-projects .container {
        max-width: 960px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .it-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .it-projects .container {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .it-projects {
        padding: 40px 0;
    }
    
    .it-projects .container {
        max-width: 540px;
        padding: 0 15px;
    }
}

/* 设计理念区域装饰性元�?*/
.parallax-container {
    position: relative;
    overflow: hidden;
}

.decoration-circle-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.05) 60%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.decoration-circle-2 {
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0.05) 60%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* 招聘区域装饰性元�?*/
.careers {
    position: relative;
    overflow: hidden;
}

.careers .decoration-circle-1 {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.05) 60%, transparent 70%);
    top: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
}

.careers .decoration-circle-2 {
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--primary-rgb), 0.05) 60%, transparent 70%);
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

/* 项目展示区域的装饰圆形和点状装饰 */
.case-showcase .decoration-circle-1 {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(244, 130, 31, 0.15), rgba(255, 159, 67, 0.15));
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

.case-showcase .decoration-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(77, 138, 255, 0.12));
    z-index: 1;
    animation: float 18s ease-in-out infinite reverse;
}

.case-showcase .decoration-dots {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(244, 130, 31, 0.5) 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 1;
    opacity: 0.3;
    transform: rotate(15deg);
}

/* 鼠标悬停效果 */
.case-showcase:hover .decoration-circle-1 {
    animation-play-state: paused;
    transform: scale(1.05);
}

.case-showcase:hover .decoration-circle-2 {
    animation-play-state: paused;
    transform: scale(1.05);
}

.case-showcase:hover .decoration-dots {
    opacity: 0.4;
}

/* IT业务专属装饰元素 */
.it-projects .decoration-circle-1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(13, 202, 240, 0.15) 100%);
    top: -80px;
    left: -120px;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
    box-shadow: inset 0 0 30px rgba(0, 123, 255, 0.2);
}

.it-projects .decoration-circle-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.12) 0%, rgba(108, 117, 125, 0.12) 100%);
    bottom: -70px;
    right: -80px;
    z-index: 1;
    animation: float 18s ease-in-out infinite reverse;
    box-shadow: inset 0 0 20px rgba(13, 202, 240, 0.15);
}

.it-projects .decoration-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(0, 123, 255, 0.4) 1px, transparent 1px);
    background-size: 12px 12px;
    top: 25%;
    right: 8%;
    opacity: 0.3;
    z-index: 1;
    transform: rotate(10deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: pulse 6s ease-in-out infinite;
}

/* 添加轻微的脉冲效果 */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(10deg) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: rotate(13deg) scale(1.05);
    }
}

/* 鼠标悬停效果 */
.it-projects:hover .decoration-circle-1 {
    animation-play-state: paused;
    filter: brightness(1.1);
}

.it-projects:hover .decoration-circle-2 {
    animation-play-state: paused;
    filter: brightness(1.1);
}

.it-projects:hover .decoration-dots {
    animation-play-state: paused;
    opacity: 0.4;
}

.it-title {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    background: linear-gradient(45deg, #007bff, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: -0.5px;
    text-shadow: 0px 0px 1px rgba(0, 123, 255, 0.1);
}

.it-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0dcaf0);
    border-radius: 3px;
}

.it-title::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 202, 240, 0.1);
    top: -15px;
    left: calc(50% - 110px);
    z-index: -1;
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0.03);
}

/* 调整卡片样式 */
.it-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    border: 1px solid rgba(0, 123, 255, 0.08);
}

.it-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(0, 123, 255, 0.18);
}

/* CTA行动号召组件样式 */
/* 使用组件前缀 content-cta- 避免与其他组件冲突 */

/* Section */
.content-cta-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* 修复底部渐变色带问题 - 使用纯色覆盖底部 */
.content-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #764ba2;
    z-index: 1;
}

.content-cta-content {
    position: relative;
    z-index: 2;
}

/* Title */
.content-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Description */
.content-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Buttons */
.content-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.content-cta-btn-primary {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.content-cta-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.content-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Features */
.content-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.content-cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.content-cta-feature-item i {
    color: #fff;
    font-size: 1.1rem;
}

/* Decoration */
.content-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Scroll Animation */
.content-cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.content-cta-section.content-cta-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-cta-section {
        padding: 60px 0;
    }

    .content-cta-title {
        font-size: 2rem;
    }

    .content-cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .content-cta-section {
        padding: 50px 0;
    }

    .content-cta-title {
        font-size: 1.75rem;
    }

    .content-cta-description {
        font-size: 1rem;
    }

    .content-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .content-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}
/* 友情链接组件样式 */
/* 使用组件前缀 content-friendly-links- 避免与其他组件冲突 */

/* Section */
.content-friendly-links-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    overflow: hidden;
}

/* 装饰背景元素 */
.content-friendly-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.content-friendly-links-section .container {
    position: relative;
    z-index: 2;
}

/* Wrapper - 左右布局 */
.content-friendly-links-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Header - 左侧标题按钮 */
.content-friendly-links-header {
    flex-shrink: 0;
}

.content-friendly-links-title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 20px;
    min-width: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.content-friendly-links-title-text {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.content-friendly-links-title-text:first-child {
    margin-bottom: 2px;
}

/* Links Container - 右侧链接区域 */
.content-friendly-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    flex: 1;
    max-width: calc(100% - 100px);
}

/* Link Item */
.content-friendly-links-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
}

.content-friendly-links-item.content-friendly-links-item-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, all 0.3s ease;
}

.content-friendly-links-item:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.content-friendly-links-item span {
    display: inline;
}

/* Footer */
.content-friendly-links-footer {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.content-friendly-links-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.content-friendly-links-note i {
    margin-right: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.content-friendly-links-note a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.content-friendly-links-note a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-friendly-links-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .content-friendly-links-title-box {
        align-self: flex-start;
        padding: 10px 18px;
    }

    .content-friendly-links-title-text {
        font-size: 1rem;
    }

    .content-friendly-links-grid {
        max-width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
}

@media (max-width: 768px) {
    .content-friendly-links-section {
        padding: 30px 0;
    }

    .content-friendly-links-title-box {
        padding: 10px 16px;
        min-width: 60px;
    }

    .content-friendly-links-title-text {
        font-size: 0.95rem;
    }

    .content-friendly-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
    }

    .content-friendly-links-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .content-friendly-links-footer {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .content-friendly-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 6px;
    }

    .content-friendly-links-item {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .content-friendly-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 12px;
    }
}
/* 公司简介卡片组件样式 */

.content-company-intro-section {
    padding: 80px 0;
    background: #fff;
}

.content-company-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-company-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content-company-intro-image:hover img {
    transform: scale(1.05);
}

.content-company-intro-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-company-intro-badge i {
    font-size: 1.1rem;
}

.content-company-intro-content {
    padding-left: 2rem;
}

.content-company-intro-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-company-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-company-intro-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-company-intro-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.content-company-intro-stat-item {
    text-align: center;
}

.content-company-intro-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.content-company-intro-stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.content-company-intro-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.content-company-intro-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

/* 网格布局变体 */
.content-company-intro-variant-grid {
    background: #f8f9fa;
}

.content-company-intro-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-company-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-company-intro-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.content-company-intro-card:hover .content-company-intro-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.content-company-intro-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.content-company-intro-card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .content-company-intro-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .content-company-intro-title {
        font-size: 2rem;
    }
    
    .content-company-intro-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-company-intro-section {
        padding: 60px 0;
    }
    
    .content-company-intro-title {
        font-size: 1.75rem;
    }
    
    .content-company-intro-stats {
        justify-content: space-around;
    }
    
    .content-company-intro-stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .content-company-intro-actions {
        flex-direction: column;
    }
    
    .content-company-intro-actions .btn {
        width: 100%;
    }
}

