/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "微软雅黑", Microsoft YaHei, sans-serif;
}

/* 型号导航区域 */
.model-nav {
  padding: 30px 20px;
  background-color: #f5f7fa;
}

.model-nav .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 标题容器 */
.title-container {
  text-align: center;
  margin-bottom: 20px;
}

.title-container h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.title-container .title-black {
  color: #333333;
}

.title-container .title-blue {
  color: #2D55C6;
}

.title-container p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 2px;
}

.title-container .decor-line {
  color: #2D55C6;
  margin: 0 15px;
}

/* 定制横幅 */
.custom-banner {
  background-color: #2D55C6;
  color: #ffffff;
  text-align: center;
  padding: 12px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 4px;
}

/* 型号表格 */
.model-table {
  background-color: #ffffff;
  border: 2px solid #2D55C6;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.model-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 45px;
}

.model-row span {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 1px;
}

.model-row.odd {
  background-color: #e8edf5;
}

.model-row.even {
  background-color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .title-container h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }
  
  .title-container p {
    font-size: 14px;
  }
  
  .custom-banner {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 20px;
  }
  
  .model-row {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }
  
  .model-row span {
    flex: 0 0 45%;
    padding: 5px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .title-container h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .model-row span {
    flex: 0 0 100%;
  }
}

/* 产品定制加工流程 */
.custom-process {
  padding: 50px 20px;
  background-color: #ffffff;
}

.custom-process .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 350px;
}

/* 中间标题横幅 */
.center-banner {
  background-color: #2D55C6;
  color: #ffffff;
  text-align: center;
  padding: 6px 60px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: auto;
}

.center-banner h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
  letter-spacing: 14px;
}

.center-banner p {
  font-size: 12px;
  opacity: 0.95;
  letter-spacing: 1.5px;
  margin: 0;
}

/* 流程容器 */
.process-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* 上下直线 */
.process-container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: #cccccc;
  z-index: 1;
}

/* 下半直线 */
.process-container::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: #cccccc;
  z-index: 1;
}

/* 左半圆 */
.process-container .left-arc {
  position: absolute;
  top: 10%;
  left: 0;
  width: 54px;
  height: calc(78% + 8px);
  border: 4px solid #cccccc;
  border-right: none;
  border-radius: 50px 0 0 50px;
  z-index: 1;
}

/* 右半圆 */
.process-container .right-arc {
  position: absolute;
  top: 10%;
  right: 0;
  width: 54px;
  height: calc(78% + 8px);
  border: 4px solid #cccccc;
  border-left: none;
  border-radius: 0 50px 50px 0;
  z-index: 1;
}

/* 上下部分步骤 */
.process-top,
.process-bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.process-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 10%;
}

.process-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 10%;
}

/* 步骤 */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* 步骤圆圈 */
.step-circle {
  width: 70px;
  height: 70px;
  background-color: #2D55C6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 113, 220, 0.3);
}

/* 步骤标签 */
.step-label {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .center-banner h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }
  
  .center-banner p {
    font-size: 12px;
  }
  
  .step-circle {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .step-label {
    font-size: 14px;
  }
  
  .process-top {
    margin-bottom: 80px;
  }
  
  .process-bottom {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .process-container {
    padding: 0 20px;
  }
  
  .process-top,
  .process-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .process-top {
    margin-bottom: 20px;
  }
  
  .process-bottom {
    margin-top: 20px;
  }
  
  .process-container::before,
  .process-container::after {
    display: none;
  }
  
  .step {
    flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 200px;
  }
  
  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .step-label {
    font-size: 14px;
  }
}

/* 产品展示区域 */
.product-showcase {
  width: 1920px;
  margin: 0 auto;
  background-image: url("xwbj.jpg");
  background-repeat: repeat;
  background-position: center top;
}

.product-showcase .container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 展示区域标题 */
.showcase-header {
  text-align: center;
  margin-bottom: 20px;
}

.showcase-header h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 6px;
}

.showcase-header .title-black {
  color: #333333;
}

.showcase-header .title-blue {
  color: #2D55C6;
}

.showcase-header p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 2px;
}

.showcase-header .decor-line {
  color: #2D55C6;
  margin: 0 12px;
}

/* 展示内容区域 */
.showcase-content {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* 左侧信息卡片 */
.info-card {
  flex: 1;
  background-color: #2D55C6;
  padding: 10px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
}

.info-card .english-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.info-card h3 {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* 特性标签 */
.feature-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-tags .tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 2px;
  position: relative;
}

.feature-tags .arrow-tag {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding-right: 35px;
}

.feature-tags .arrow-tag::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 15px solid rgba(255, 255, 255, 0.2);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}

/* 特性列表 */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-list li {
  color: #ffffff;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 1px;
  opacity: 0.95;
}

/* 分割线 */
.divider {
  width: 60px;
  height: 4px;
  background-color: #f5b800;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* 咨询按钮 */
.consult-btn {
  align-self: flex-start;
  background-color: #ffffff;
  color: #2D55C6;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.consult-btn:hover {
  background-color: #f0f4f8;
  transform: translateY(-2px);
}

/* 右侧产品图片 */
.product-image {
  flex: 1;
  background-color: #0D3F98;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  border-left: 10px solid #ffffff;
}

.product-image img {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .showcase-content {
    flex-direction: column;
  }
  
  .info-card {
    padding: 40px 30px;
  }
  
  .info-card h3 {
    font-size: 28px;
  }
  
  .product-image {
    border-left: none;
    border-top: 3px solid #2D55C6;
  }
}

@media (max-width: 768px) {
  .showcase-header h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }
  
  .showcase-header p {
    font-size: 14px;
  }
  
  .info-card {
    padding: 30px 20px;
  }
  
  .info-card h3 {
    font-size: 24px;
  }
  
  .feature-list li {
    font-size: 16px;
  }
  
  .consult-btn {
    width: 100%;
    text-align: center;
  }
}

/* 产品卡片区域 */
.product-cards {
  padding: 60px 20px;
  background-color: #f5f7fa;
}

.product-cards .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 卡片包装器 */
.cards-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

/* 产品卡片 */
.product-card {
  flex: 1;
  background-color: #2D55C6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 113, 220, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 113, 220, 0.4);
}

/* 卡片图片 */
.card-image {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.card-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

/* 卡片标题 */
.card-title {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-title span {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 100%;
    min-width: auto;
  }
  
  .card-image {
    min-height: 180px;
  }
  
  .card-title span {
    font-size: 16px;
  }
}

/* 产品实拍区域 */
.product-real {
  padding: 60px 20px;
  background-color: #ffffff;
}

.product-real .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 标题区域 */
.product-real .title {
  text-align: center;
  margin-bottom: 40px;
}

.product-real .title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 12px;
  letter-spacing: 6px;
}

.product-real .title p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 2px;
}

.product-real .title .decor-line {
  color: #2D55C6;
  margin: 0 12px;
}

/* 图片网格 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 网格项 */
.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.407);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.407);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-real .title h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .product-real .title h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
  
  .product-real .title p {
    font-size: 14px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* 适用场景区域 */
.product-apply {
  padding: 60px 20px;
  background-color: #f5f7fa;
}

.product-apply .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 标题区域 */
.product-apply .title {
  text-align: center;
  margin-bottom: 25px;
}

.product-apply .title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #2D55C6;
  margin-bottom: 12px;
  letter-spacing: 6px;
}

.product-apply .title p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 2px;
}

.product-apply .title .decor-line {
  color: #2D55C6;
  margin: 0 12px;
}

/* 描述文字 */
.apply-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 50px;
}

/* 应用场景网格 */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 应用场景项 */
.apply-item {
  background-color: #ffffff;
  overflow: hidden;
  border: 1px solid #e8edf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apply-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 113, 220, 0.2);
}

/* 应用场景图片 */
.apply-image {
  overflow: hidden;
}

.apply-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.apply-item:hover .apply-image img {
  transform: scale(1.05);
}

/* 应用场景标题 */
.apply-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: 15px 10px 5px;
  letter-spacing: 2px;
}

/* 应用场景副标题 */
.apply-subtitle {
  font-size: 12px;
  color: #999999;
  text-align: center;
  padding: 0 10px 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .apply-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-apply .title h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }
  
  .apply-desc {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .apply-grid {
    grid-template-columns: 1fr;
  }
  
  .product-apply .title h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
  
  .apply-desc {
    font-size: 14px;
    padding: 0 10px;
  }
  
  .apply-image img {
    height: 180px;
  }
  
  .apply-title {
    font-size: 16px;
  }
}

/* 定制服务区域 */
.product-custom {
  background-image: url(ggbj.jpg);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.product-custom .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 内容区域 */
.custom-content {
  text-align: center;
}

.custom-content h2 {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 英文副标题 */
.english-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* 指示器 */
.indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicators .dot.active {
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 服务项目 */
.service-items {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .product-custom {
    padding: 60px 20px;
  }
  
  .custom-content h2 {
    font-size: 36px;
    letter-spacing: 6px;
  }
  
  .english-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .product-custom {
    padding: 50px 15px;
  }
  
  .custom-content h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }
  
  .english-subtitle {
    font-size: 11px;
  }
  
  .service-items {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* 资质证书区域 */
.product-qualify {
  padding: 30px 20px;
  /*background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);*/
  background-image: url(btzs.jpg);
  position: relative;
  height: 540px;
}

.product-qualify .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* 标题区域 */
.product-qualify .title {
  text-align: center;
  margin-bottom: 50px;
}

.product-qualify .title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #2D55C6;
  margin-bottom: 12px;
  letter-spacing: 6px;
}

.product-qualify .title p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 2px;
}

.product-qualify .title .decor-line {
  color: #2D55C6;
  margin: 0 12px;
}


/* 响应式设计 */
@media (max-width: 1200px) {
  .qualify-item img {
    width: 160px;
    height: 112px;
  }
  
  .qualify-item:nth-child(1) {
    left: calc(50% - 420px);
  }
  
  .qualify-item:nth-child(2) {
    left: calc(50% - 260px);
  }
  
  .qualify-item:nth-child(3) {
    left: calc(50% - 100px);
  }
  
  .qualify-item:nth-child(4) {
    left: calc(50% + 80px);
  }
  
  .qualify-item:nth-child(5) {
    left: calc(50% + 240px);
  }
}

@media (max-width: 992px) {
  
  .qualify-item {
    position: static;
    transform: none !important;
    margin: 15px;
  }
  
  .qualify-item img {
    width: 140px;
    height: 100px;
  }
  
  .showcase-platform {
    display: none;
  }
  
  .product-qualify .title h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }
}

@media (max-width: 768px) {
  .product-qualify {
    padding: 40px 15px;
  }
  
  .product-qualify .title h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
  
  .qualify-item img {
    width: 120px;
    height: 84px;
  }
}

/* 源头厂家 品质保障区域 */
.factory-quality {
  padding: 20px 20px;
  background-color: #ffffff;
}

.factory-quality .container {
  max-width: 1200px;
  margin: 0 auto;
}

.factory-quality .title {
  text-align: center;
}

.factory-quality .title h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.factory-quality .title .title-black {
  color: #333333;
}

.factory-quality .title .title-blue {
  color: #2D55C6;
}

/* 副标题 */
.factory-quality .subtitle {
  font-size: 16px;
  color: #666666;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.factory-quality .subtitle .decor-diamond {
  color: #2D55C6;
  margin: 0 15px;
  font-size: 14px;
}

/* 第二行副标题 */
.factory-quality .subtitle-line {
  font-size: 14px;
  color: #999999;
  letter-spacing: 3px;
}

.factory-quality .subtitle-line .decor-line {
  color: #2D55C6;
  margin: 0 12px;
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .factory-quality .title h2 {
    font-size: 36px;
    letter-spacing: 4px;
  }
  
  .factory-quality .subtitle {
    font-size: 14px;
  }
  
  .factory-quality .subtitle-line {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .factory-quality {
    padding: 40px 15px;
  }
  
  .factory-quality .title h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
  
  .factory-quality .subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }
  
  .factory-quality .subtitle-line {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* 企业简介区域 */
.company-intro {
  width: 1920px;
  margin: 0 auto;
  background-image: url("qyjjbj.jpg");
  background-size: cover;
  background-position: center;
}

.intro-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* 头部区域 */
.intro-header {
  display: flex;
  margin-bottom: 40px;
}

/* 左侧蓝色区域 */
.intro-left {
  width: 45%;
  /*background: linear-gradient(135deg, #2D55C6 0%, #005BB5 100%);*/
  padding: 60px 40px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

/*.intro-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("{pboot:sitetplpath}/zdzyxtxsg/company-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}*/

.intro-englishs{
  border-bottom: 3px solid #ffffff;
  width: 50px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: 140px;
}

.intro-english {
  font-size: 24px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.intro-chinese {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.intro-chinese span:last-child {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 4px;
}

/* 右侧文字区域 */
.intro-right {
  width: 55%;
  padding: 40px 40px 40px 60px;
  /*background-color: #ffffff;*/
}

.intro-right h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 25px;
  letter-spacing: 2px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2D55C6;
  position: relative;
}

.intro-right h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #2D55C6;
}

.intro-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.9;
  text-align: justify;
}

.intro-text p {
  margin-bottom: 15px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* 图片区域 */
.intro-images {
  display: flex;
  gap: 20px;
}

.image-item {
  flex: 1;
  overflow: hidden;
  border: 1px solid #e8edf5;
}

.image-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1920px) {
  .company-intro {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .intro-inner {
    width: 100%;
    padding: 30px 20px;
  }
  
  .intro-header {
    flex-direction: column;
  }
  
  .intro-left {
    width: 100%;
    clip-path: none;
    margin-bottom: 20px;
  }
  
  .intro-right {
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .intro-images {
    flex-direction: column;
  }
  
  .intro-english {
    font-size: 18px;
    letter-spacing: 4px;
  }
  
  .intro-chinese span:last-child {
    font-size: 28px;
  }
  
  .intro-right h2 {
    font-size: 22px;
  }
  
  .intro-text {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .image-item img {
    height: 180px;
  }
}