/* 企业介绍板块样式 - 左右布局版本 */

.company-profile-section {
  background: #fff;
  position: relative;
  width: 100%;
  height: 800px;
  padding: 60px 0;
  overflow: hidden;
}

.company-profile-container {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  position: relative;
  width: 100%;
  min-height: auto;
}

/* 标题区域 */
.profile-header {
  text-align: left;
  margin-bottom: 30px;
}

.profile-title-en {
  font-family: 'Arial', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: bold;
  color: #1c4b90;
  margin: 0 0 10px 0;
  text-align: left;
  letter-spacing: 2px;
}

.profile-title-cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  margin: 0;
  text-align: left;
  color: #333;
  font-weight: 400;
}

/* 内容区域 */
.profile-content {
  flex: 1;
  padding: 0 30px;
  margin-bottom: 0;
  position: relative;
}

/* 左侧文字区域 */
.profile-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 40px;
}

.profile-text p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 30px;
  color: #555;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-spacing: 1px;
}

.profile-text p a {
  text-align: right;
}

.more-link {
  text-align: right;
  margin-top: 10px;
  color: #999;
  padding-left: 60px;
}

.more-link a {
  color: #999;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.more-link a:hover {
  color: #2c5aa0;
  text-decoration: none;
  border-bottom: 2px solid #2c5aa0;
}

/* 左侧底部功能图片 */
.profile-features-left {
  position: relative;
  /*向右移动的关键样式*/
  transform: translateX(200px);
  z-index: 5;
}

.profile-features-left img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 8px;

  transition: all 0.3s ease;
}

.profile-features-left img:hover {
  transform: translateY(3px);
}

/* 右侧主图片区域 */
.profile-image-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.profile-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-right img:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); */
}

/* 响应式设计 - 大屏幕 */
@media (min-width: 1200px) {
  .company-profile-section {
    padding: 80px 0;
  }

  .profile-content {
    padding: 40px;
  }

  .profile-text {
    padding-right: 38px;
  }

  .profile-features-left {
    transform: translateX(200px);
  }
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 991px) {
  .company-profile-section {
    padding: 50px 0;
  }

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

  .profile-content {
    padding: 20px;
  }

  .profile-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .profile-image-right {
    padding-left: 0;
    padding-top: 30px;
  }

  .profile-features-left {
    transform: translateX(0px);
    margin-top: 15px;
  }
}

/* 响应式设计 - 小屏幕 */
@media (max-width: 767px) {
  .company-profile-section {
    padding: 40px 0;
  }

  .profile-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .profile-title-en {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .profile-title-cn {
    font-size: 20px;
  }

  .profile-content {
    padding: 15px;
  }

  .profile-text {
    margin-bottom: 25px;
  }

  .profile-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .profile-image-right {
    padding-left: 0;
    padding-top: 20px;
  }

  .profile-image-right img {
    max-width: 100%;
    max-height: 300px;
  }

  .profile-features-left {
    margin-top: 10px;
    transform: translateX(0px);
  }

  .profile-features-left img {
    max-width: 400px;
  }
}

/* 响应式设计 - 超小屏幕 */
@media (max-width: 480px) {
  .company-profile-section {
    padding: 30px 0;
  }

  .profile-header {
    margin-bottom: 20px;
  }

  .profile-title-en {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .profile-title-cn {
    font-size: 18px;
  }

  .profile-content {
    padding: 10px;
  }

  .profile-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .more-link a {
    font-size: 12px;
  }

  .profile-image-right img {
    max-height: 250px;
  }

  .profile-features-left {
    transform: translateX(0px);
  }

  .profile-features-left img {
    max-width: 300px;
  }
}

/* 动画效果 */
.company-profile-container {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 文字渐入动画 */
.profile-text {
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 图片加载动画 */
.profile-image-right img {
  animation: zoomIn 0.8s ease-out 0.5s both;
}

.profile-features-left img {
  animation: slideInRight 1s ease-out 0.8s both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(350px);
  }
}

/* 在小屏幕上调整动画 */
@media (max-width: 767px) {
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(15px);
    }

    to {
      opacity: 1;
      transform: translateX(20px);
    }
  }
}

@media (max-width: 480px) {
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(5px);
    }

    to {
      opacity: 1;
      transform: translateX(10px);
    }
  }
}

/* 提升可访问性 */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
