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

/* 公司简介样式 */
.company-intro {
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.company-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-content {
  position: relative;
  display: flex;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
  overflow: hidden;
}

.intro-text {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.text-block {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.text-block:hover {
  transform: translateX(10px);
  border-left-color: var(--accent-color);
}

.text-block h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.text-block h3 i {
  margin-right: 1rem;
  color: var(--accent-color);
}

.text-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.tech-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 102, 204, 0.05), rgba(0, 229, 204, 0.1));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* 数据统计卡片样式 */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.stat-progress {
  width: 100%;
  height: 4px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  animation: progressAnimation 1.5s ease-out;
}

@keyframes progressAnimation {
  from { width: 0; }
}

/* 响应式设计 */
@media (max-width: 992px) {
  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-bg {
    display: none;
  }
}

@media (max-width: 768px) {
  .intro-stats {
    grid-template-columns: 1fr;
  }
  
  .text-block {
    padding-left: 1rem;
  }
}

/* 核心价值观样式 */
.core-values {
  padding: 4rem 0;
  background: #f5f8fa;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
    linear-gradient(135deg, #0066CC, #00AAFF);
  background-origin: border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

/* 联系方式和地图样式 */
.contact-section {
    padding: 3rem 0;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-item {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.info-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-secondary);
}

/* 地图容器样式 */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 信息窗体样式 */
.info-window {
    padding: 15px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-window h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.info-content {
    font-size: 14px;
}

.info-content p {
    margin: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.info-content i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* 动画效果 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

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

/* 企业文化样式 */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.culture-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,102,204,0.2);
}

.card-icon {
  font-size: 2.5rem;
  color: #0066cc;
  margin-bottom: 1.5rem;
}

.culture-story {
    width: 100%;
    margin: 1.5rem auto 0;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    grid-column: 1 / -1;  /* 让它占据整行 */
    position: relative;
    overflow: hidden;
}

.culture-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.culture-story h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.culture-story h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.culture-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    text-indent: 2em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .culture-story {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .culture-story h3 {
        font-size: 1.5rem;
    }

    .culture-story p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* 删除地图相关样式，添加位置图片样式 */
.location-image {
    width: 100%;
    height: 400px;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .location-image {
        height: 250px;
    }
}

/* 交通方式样式 */
.transport-info {
    margin-top: 0.5rem;
}

.transport-info p {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.transport-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 1rem;
}

/* 调整整体间距 */
.section {
    padding: 2rem 0;  /* 从4rem减少到2rem */
}

/* 调整响应式布局 */
@media (max-width: 768px) {
    .section {
        padding: 1.5rem 0;
    }

    .culture-story {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .location-image {
        height: 250px;  /* 从300px减少到250px */
    }
}
