/* 基础重置 & 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: #99c5ce; /* 原#0056b3，改为青色 */
  transition: color 0.3s ease;
}

a:hover {
  color: #7a9ea8; /* 原#003d82，改为对应深色青色 */
}

/* 容器样式：居中 + 最大宽度（仅保留一份） */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 头部样式（整合去重） */
header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* 品牌LOGO区域（仅保留一份） */
.brand {
  display: flex;
  align-items: center;
  color: #333;
  gap: 15px;
}

.brand-badge {
  width: 95px;
  height: 60px;
  background-image: url(../images/i_03.jpg); /* 本地替换：替换为你的LOGO路径 */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.brand-sub {
  font-size: 0.85rem;
  color: #666;
}

/* 导航样式 */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  color: #333;
  font-size: 0.95rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid #99c5ce; /* 原#0056b3，改为青色 */
  color: #333;
}

/* Hero区域（整合去重） */
.hero {
  background:
              url('../images/b_02.jpg'); /* 原#0056b3改为#99c5ce，青色渐变 */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0;
 
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-card h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.lead strong {
  color: #ffd700;
  font-weight: bold;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* 右侧課題/お問い合わせ例（整合去重） */
.hero-side {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.mini-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1rem;
}

.mini-list {
  list-style: disc inside;
  font-size: 0.9rem;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* 通用区块样式 */
.section {
  margin-bottom: 60px;
}

.section-title {
  margin-bottom: 25px;
  text-align: left;
}

.section-title h2 {
  font-size: 1.6rem;
  color: #99c5ce; /* 原#0056b3，改为青色 */
  margin-bottom: 8px;
}

.section-title p {
  font-size: 0.95rem;
  color: #666;
}

/* 卡片样式 */
.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 表格样式 */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.table th, .table td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.table th {
  background-color: #f5f7fa;
  width: 20%;
  font-weight: bold;
  color: #333;
}

.table td {
  color: #666;
}

/* 按钮区域（整合去重） */
.cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: #99c5ce; /* 原#0056b3，改为青色 */
  color: #fff;
}

.btn.primary:hover {
  background-color: #7a9ea8; /* 原#003d82，改为对应深色青色 */
  color: #fff;
}

/* 整合.btn非primary的样式，保留最终效果 */
.btn:not(.primary) {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn:not(.primary):hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 2列网格 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}



/* 优势卡片网格 */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.strength-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.strength-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.strength-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
		/* 主服务标题样式 */
			.service-main-title {
				font-size: 1.3rem;
				font-weight: bold;
				margin-bottom: 20px;
				padding-left: 10px;
				border-left: 3px solid #99c5ce;
				/* 青色左侧线 */
			}

			/* 国际输送服务：双栏布局 */
			.intl-transport-wrap {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 30px;
				margin-bottom: 40px;
			}

		

			/* 子服务标题栏（带图标+青色背景） */
			.service-sub-title {
				background-color: #99c5ce;
				color: #fff;
				padding: 10px 15px;
				display: flex;
				align-items: center;
				gap: 10px;
				font-weight: bold;
			}

			/* 服务内容区：图片+文字 */
			.service-content {
				display: flex;
				flex-direction: column;
				gap: 15px;
				padding: 15px;
			}

			.service-img {
				width: 100%;
				height: 200px;
				object-fit: cover;
				border-radius: 4px;
			}

			.service-text {
				font-size: 0.95rem;
				line-height: 1.8;
			}

			/* 分隔线（匹配截图的虚线） */
			.service-divider {
				height: 1px;
				border-top: 1px dashed #99c5ce;
				margin: 20px 0 40px;
			}

			/* 保税仓库服务：左图右文布局 */
			.bonded-warehouse-wrap {
				display: grid;
				grid-template-columns: 40% 60%;
				gap: 20px;
				background-color: #fff;
				
				overflow: hidden;
			}

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

			.bonded-text {
				padding: 20px;
				font-size: 0.95rem;
				line-height: 1.8;
			}

			.bonded-text ul {
				list-style: disc inside;
				margin-top: 10px;
				display: flex;
				flex-direction: column;
				gap: 8px;
			}

			.bonded-note {
				margin-top: 15px;
				color: #666;
				font-size: 0.9rem;
			}

			/* 移动端响应式 */
			@media (max-width: 768px) {
				.intl-transport-wrap {
					grid-template-columns: 1fr;
					/* 国际输送双栏变单列 */
				}

				.bonded-warehouse-wrap {
					grid-template-columns: 1fr;
					/* 保税仓库左图右文变单列 */
				}

				.service-img {
					height: 180px;
				}
			}
			/* 页面主标题：居中+青色下划线 */
			.page-title {
			  text-align: center;
			  margin-bottom: 50px;
			  position: relative;
			  padding-bottom: 15px;
			}
			
			.page-title h1 {
			  font-size: 2rem;
			  color: #0088cc;
			  font-weight: bold;
			}
			
			.page-title::after {
			  content: "";
			  position: absolute;
			  bottom: 0;
			  left: 50%;
			  transform: translateX(-50%);
			  width: 80px;
			  height: 3px;
			  background-color: #99c5ce;
			  border-radius: 2px;
			}
			
			/* 仓库卡片列表：PC端2列，移动端1列 */
			.warehouse-list {
			  display: grid;
			  grid-template-columns: repeat(2, 1fr);
			  gap: 30px;
			  margin-bottom: 40px;
			}
			
			/* 单个仓库卡片：带图片+阴影+悬浮效果 */
			.warehouse-card {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  transition: all 0.3s ease;
			  display: flex;
			  flex-direction: column;
			}
			
			.warehouse-card:hover {
			  transform: translateY(-5px); /* 悬浮轻微上浮 */
			  box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 悬浮加深阴影 */
			}
			
			/* 卡片图片区域：固定比例，图片自适应 */
			.card-img-wrap {
			  width: 100%;
			  height: 400px; /* PC端图片高度 */
			  overflow: hidden;
			}
			
			.card-img {
			  width: 100%;
			  height: 100%;
			  object-fit: cover; /* 图片填满容器且不变形 */
			  transition: transform 0.3s ease;
			}
			
			.warehouse-card:hover .card-img {
			  transform: scale(1.05); /* 悬浮图片轻微放大 */
			}
			
			/* 卡片标题栏：青色背景+白色文字 */
			.card-header {
			  background-color: #99c5ce;
			  color: #fff;
			  padding: 15px 20px;
			  font-size: 1.1rem;
			  font-weight: bold;
			}
			
			/* 卡片内容区：标签+内容分离排版 */
			.card-body {
			  padding: 20px;
			  font-size: 0.95rem;
			  flex: 1; /* 内容区自动填充剩余空间 */
			}
			
			.card-item {
			  margin-bottom: 12px;
			  display: flex;
			  align-items: flex-start;
			}
			
			.card-item-label {
			  width: 100px;
			  font-weight: bold;
			  color: #0088cc;
			  flex-shrink: 0; /* 标签宽度固定，不挤压 */
			}
			
			.card-item-content {
			  flex: 1;
			}
			
			/* 保税仓库/大阪事务所：单列展示（带图片） */
			.special-warehouse-wrap {
			  display: flex;
			  flex-direction: column;
			  gap: 30px;
			  margin-top: 20px;
			}
			
			.special-warehouse-card {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  transition: all 0.3s ease;
			  display: grid;
			  grid-template-columns: 35% 65%; /* 图片35%，内容65% */
			}
			
			.special-warehouse-card:hover {
			  transform: translateY(-5px);
			  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			}
			
			.special-card-img-wrap {
			  width: 100%;
			  height: 100%;
			  overflow: hidden;
			}
			
			.special-card-img {
			  width: 100%;
			  height: 100%;
			  object-fit: cover;
			  transition: transform 0.3s ease;
			}
			
			.special-warehouse-card:hover .special-card-img {
			  transform: scale(1.05);
			}
			
			.special-card-content {
			  padding: 20px;
			}
			
			.special-card-header {
			  background-color: #99c5ce;
			  color: #fff;
			  padding: 15px 20px;
			  font-size: 1.1rem;
			  font-weight: bold;
			  margin-bottom: 15px;
			  border-radius: 4px;
			}
			/* 通用板块标题：统一样式 */
			.section-title {
			  font-size: 1.8rem;
			  color: #0088cc;
			  font-weight: bold;
			  margin: 60px 0 30px;
			  position: relative;
			  padding-left: 15px;
			}
			
			.section-title::before {
			  content: "";
			  position: absolute;
			  left: 0;
			  top: 50%;
			  transform: translateY(-50%);
			  width: 5px;
			  height: 1.2em;
			  background-color: #99c5ce;
			  border-radius: 3px;
			}
			
			/* 1. 企業理念板块：左图右文，突出核心标语 */
			.vision-section {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  display: grid;
			  grid-template-columns: 40% 60%;
			  margin-bottom: 40px;
			}
			
			.vision-img-wrap {
			  width: 100%;
			  height: 100%;
			  overflow: hidden;
			}
			
			.vision-img {
			  width: 100%;
			  height: 100%;
			  object-fit: cover;
			}
			
			.vision-content {
			  padding: 40px 30px;
			  display: flex;
			  flex-direction: column;
			  justify-content: center;
			}
			
			.vision-slogan {
			  font-size: 1.5rem;
			  font-weight: bold;
			  color: #0088cc;
			  margin-bottom: 20px;
			  text-align: center;
			  line-height: 1.5;
			}
			
			.vision-desc {
			  font-size: 1.1rem;
			  text-align: center;
			  color: #444;
			}
			
			/* 2. 事業内容板块：卡片式布局，PC端3列，移动端1列 */
			.business-list {
			  display: grid;
			  grid-template-columns: repeat(3, 1fr);
			  gap: 25px;
			  margin-bottom: 40px;
			}
			
			.business-card {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  transition: all 0.3s ease;
			  display: flex;
			  flex-direction: column;
			}
			
			.business-card:hover {
			  transform: translateY(-5px);
			  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			}
			
			.business-img-wrap {
			  width: 100%;
			  height: 180px;
			  overflow: hidden;
			}
			
			.business-img {
			  width: 100%;
			  height: 100%;
			  object-fit: cover;
			  transition: transform 0.3s ease;
			}
			
			.business-card:hover .business-img {
			  transform: scale(1.05);
			}
			
			.business-name {
			  padding: 15px 20px;
			  font-size: 1rem;
			  font-weight: bold;
			  color: #333;
			  background-color: #f5f9fc;
			  border-bottom: 1px solid #e8f4f8;
			}
			
			/* 3. 拠点一覧板块：左图右文（单列卡片） */
			.base-list {
			  display: flex;
			  flex-direction: column;
			  gap: 25px;
			  margin-bottom: 40px;
			}
			
			.base-card {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  display: grid;
			  grid-template-columns: 30% 70%;
			  transition: all 0.3s ease;
			}
			
			.base-card:hover {
			  transform: translateY(-5px);
			  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			}
			
			.base-img-wrap {
			  width: 100%;
			  height: 100%;
			  overflow: hidden;
			}
			
			.base-img {
			  width: 100%;
			  height: 100%;
			  object-fit: cover;
			  transition: transform 0.3s ease;
			}
			
			.base-card:hover .base-img {
			  transform: scale(1.05);
			}
			
			.base-content {
			  padding: 20px;
			  display: flex;
			  align-items: center;
			}
			
			.base-name {
			  font-size: 1rem;
			  font-weight: bold;
			  color: #333;
			}
			
			.base-note {
			  font-size: 0.9rem;
			  color: #666;
			  margin-top: 5px;
			}
			
			/* 4. 会社実績板块：突出数字，带背景图 */
			.achievement-section {
			  background-color: #fff;
			  border-radius: 8px;
			  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
			  overflow: hidden;
			  padding: 40px 30px;
			  text-align: center;
			  background: linear-gradient(rgba(0, 136, 204, 0.05), rgba(0, 136, 204, 0.05)), 
			              url("https://picsum.photos/id/1048/1200/300") no-repeat center center;
			  background-size: cover;
			  margin-bottom: 40px;
			}
			
			.achievement-title {
			  font-size: 1.2rem;
			  color: #333;
			  margin-bottom: 20px;
			}
			
			.achievement-number {
			  font-size: 3rem;
			  font-weight: bold;
			  color: #0088cc;
			  margin-bottom: 10px;
			}
			
			.achievement-desc {
			  font-size: 1.1rem;
			  color: #444;
			}
			
			/* 移动端响应式：屏幕<768px */
			@media (max-width: 768px) {
			  /* 企業理念：单列 */
			  .vision-section {
			    grid-template-columns: 1fr;
			  }
			
			  .vision-img-wrap {
			    height: 200px;
			  }
			
			  .vision-content {
			    padding: 20px 15px;
			  }
			
			  /* 事業内容：单列 */
			  .business-list {
			    grid-template-columns: 1fr;
			  }
			
			  .business-img-wrap {
			    height: 160px;
			  }
			
			  /* 拠点一覧：单列 */
			  .base-card {
			    grid-template-columns: 1fr;
			  }
			
			  .base-img-wrap {
			    height: 180px;
			  }
			
			  /* 会社実績：字号调整 */
			  .achievement-number {
			    font-size: 2.5rem;
			  }
			
			  /* 通用标题字号 */
			  .section-title {
			    font-size: 1.5rem;
			  }
			}
			/* 移动端响应式：屏幕<768px */
			@media (max-width: 768px) {
			  .warehouse-list {
			    grid-template-columns: 1fr; /* 双列变单列 */
			  }
			
			  .special-warehouse-card {
			    grid-template-columns: 1fr; /* 图片+内容变单列 */
			  }
			
			  .card-img-wrap {
			    height: 180px; /* 移动端图片高度调整 */
			  }
			
			  .page-title h1 {
			    font-size: 1.6rem;
			  }
			
			  .card-header, .special-card-header {
			    font-size: 1rem;
			  }
			
			  .card-item {
			    flex-direction: column; /* 标签+内容竖向排列 */
			  }
			
			  .card-item-label {
			    width: 100%;
			    margin-bottom: 5px;
			  }
			}
/* 页脚样式（仅保留一份） */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
 
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer small {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* 响应式适配（整合所有规则，去重） */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-card h1 {
    font-size: 1.6rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  nav ul {
    gap: 15px;
    justify-content: center;
    width: 100%;
  }

  .header-inner {
    justify-content: center;
  }

  .card {
    padding: 20px;
  }

  .table th {
    width: 30%;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strength-card {
    padding: 20px;
  }
}
    /* 头部导航样式 */
    header {
      background-color: #fff;
      border-bottom: 1px solid #e0e0e0;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* 顶部Banner区域 */
    .banner {
      position: relative;
      height: 400px;
      background: url(../images/i_06.jpg); /* 替换为banner大图 */
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 300px;
    }

    .banner-text {
      background-color: rgba(255, 255, 255, 0.85);
      padding: 25px 30px;
      border-radius: 8px;
      max-width: 500px;
    }

    .banner-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: #333;
    }

    /* 资格证书区域 */
    .certificate-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 40px;
      color: #99c5ce;
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: normal;
    }
.section-heading img{width: 100%;}



.section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #99c5ce;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
}

/* 核心：强制三张图均等间距并列 */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 固定3列，确保三张图并列 */
  gap: 40px; /* 列之间的均等间距，可根据需求调整 */
  justify-items: center; /* 每个项目水平居中 */
  max-width: 1000px; /* 限制最大宽度，避免图片过宽 */
  margin: 0 auto; /* 整体居中 */
}

.certificate-item {
  width: 100%;
  max-width: 280px; /* 限制单个证书卡片宽度 */
  text-align: center; /* 图片+文字整体居中 */
}

/* 证书图片样式 */
.certificate-img {
  width: 100%;
  height: auto; /* 保持图片比例 */
  border: 1px solid #e0e0e0;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 15px; /* 图片和文字之间的间距 */
  border-radius: 4px;
}

/* 图片下方的文字标签样式 */
.certificate-label {
  background-color: #99c5ce;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  display: inline-block; /* 适配文字宽度 */
  width: 80%; /* 标签宽度统一，更美观 */
}

/* 移动端响应式适配（屏幕小于768px时改为单列） */
@media (max-width: 768px) {
  .certificate-grid {
    grid-template-columns: 1fr; /* 移动端单列展示 */
    gap: 50px; /* 移动端上下间距加大 */
  }

  .certificate-item {
    max-width: 320px; /* 移动端图片稍宽 */
  }
}

    .certificate-label {
      background-color: #99c5ce;
      color: #fff;
      padding: 5px 15px;
      border-radius: 4px;
      font-size: 0.9rem;
      display: inline-block;
    }

    /* 主营业务区域 */
    .business-section {
      padding: 60px 0;background: #e9f4f6;
    }

    .business-inner {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 40px;
      align-items: flex-start;
    }

    .business-sidebar {
      background-color: #f0f7f9;
      padding: 20px;
      border-radius: 8px;
    }

    .business-sidebar ul {
      list-style: none;
    }

    .business-sidebar li {
      margin-bottom: 15px;
      padding: 10px;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .business-sidebar li.active {
      background-color: #99c5ce;
      color: #fff;
    }

    .business-sidebar li:hover:not(.active) {
      background-color: #e8f2f5;
    }

    .business-content h3 {
      color: #99c5ce;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .business-content p {
      margin-bottom: 20px;
      color: #666;
      line-height: 1.7;
    }

    /* 业务对象区域 */
    .target-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .target-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .target-img {
      width: 100%;
      border-radius: 8px;
    }

    .target-text h3 {
      color: #99c5ce;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .target-text ul {
      list-style: disc inside;
      margin-bottom: 20px;
      color: #666;
    }

    .target-text p {
      color: #666;
      line-height: 1.7;
    }
 /* 核心容器：左右布局 */
    .target-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: flex-start;
      background-color: #fff;
     
    }

    /* 左侧区域：主图 + 文字 */
    .target-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .target-main-img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      object-fit: cover;
    }

    .target-left-title {
      font-size: 1.1rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }

    .target-left-desc {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.7;
    }

    /* 右侧区域：标题 + 图片列表 */
    .target-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .target-right-title {
      font-size: 1.1rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 15px;
    }

    .target-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .target-list-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .target-list-img {
      width:132px;
      height: 80px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0; /* 固定图片尺寸，不被挤压 */
    }

    .target-list-text {
      font-size: 0.95rem;
      color: #666;
      padding-top: 5px; /* 与图片顶部对齐 */
    }

    /* 移动端响应式（屏幕<768px时改为单列） */
    @media (max-width: 768px) {
      .target-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
      }

      .target-list-item {
        flex-direction: column;
        gap: 10px;
      }

      .target-list-img {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
      }

      .target-list-text {
        text-align: center;
        padding-top: 0;
      }
    }
    /* 企业概要区域 */
    .profile-section {
      
      background-color: #fff;
      color: #fff;
    }

    .profile-inner {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .profile-text {
      line-height: 1.8;
    }

    .profile-img {
      width: 100%;
      border-radius: 8px;
      border: 5px solid #fff;
    }

    /* 公司优势区域 */
    .strength-section {
      background:#fff;padding: 60px 0;
    }
 /* 核心区域样式 */
    .strengths-section {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      padding: 40px 0;
    }

    /* 上下行布局（左图右文/左文右图） */
    .strength-row {
      display: grid;
      grid-template-columns: 30% 70%;
      gap: 20px;
      align-items: center;
      padding: 30px 0;
    }
    .strength-row.reverse {
      grid-template-columns: 70% 30%; /* 下半部分交换比例 */
    }

    /* 图片样式 */
    .strength-img-wrap {
     
      overflow: hidden;
    }
    .strength-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 文字列表+图标样式 */
    .strength-text-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      padding: 0 20px;
    }
    .strength-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    .strength-item i {
      color: #99c5ce; /* 青色图标 */
      font-size: 1.2rem;
      margin-top: 3px;
    }
    .strength-item p {
      font-size: 0.95rem;
      color: #444;
    }

    /* 分割线（匹配截图的虚线） */
    .strength-divider {
      height: 1px;
      background-color: #e0e0e0;
      border-top: 1px dashed #99c5ce;
      margin: 0 20px;
    }

    /* 移动端响应式 */
    @media (max-width: 768px) {
      .strength-row, .strength-row.reverse {
        grid-template-columns: 1fr; /* 单列布局 */
      }
      .strength-text-list {
        padding: 20px 0 0;
      }
    }
    .strength-list {
      list-style: none;
      max-width: 800px;
      margin: 0 auto;
    }

    .strength-list li {
      margin-bottom: 25px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .strength-list img {
      width: 120px;
      height: auto;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .strength-list p {
      color: #666;
      line-height: 1.7;
    }

    /* 重要通知区域 */
    .notice-section {
      padding: 60px 0;
      background-color: #acd7e0;
    }
/* 核心容器：左图右文布局 */
			.warning-container {
				max-width: 1200px;
				margin: 0 auto;
				display: grid;
				grid-template-columns: 40% 60%;
				gap: 20px;
				
			}

			/* 左侧图片区域：还原截图的金色边框 */
			.warning-img-wrap {
				
				overflow: hidden;
			}

			.warning-img {
				width: 100%;
				
				object-fit: cover;
				/* 图片填满容器，不变形 */
				display: block;
				/* 消除图片底部空白 */
			}

			/* 右侧文字区域 */
			.warning-text-wrap {
				display: flex;
				flex-direction: column;
				gap: 20px;
				padding: 10px 0;
			}

			/* 标题栏：匹配截图的青色背景+白色文字 */
			.warning-title {
				background-color: #2c96ac;
				
				color: #fff;
				padding: 10px 15px;
				font-size: 1.1rem;
				font-weight: bold;
				border-radius: 4px;
			}

			/* 提示文字 */
			.warning-desc {
				font-size: 0.95rem;
				color: #333;
				line-height: 1.7;
				padding: 0 5px;
			}

			/* 律师信息标题栏 */
			.lawyer-title {
				background-color: #2c96ac;
				
				color: #fff;
				padding: 10px 15px;
				font-size: 1.1rem;
				font-weight: bold;
				border-radius: 4px;
			}

			/* 律师信息列表 */
			.lawyer-info {
				font-size: 0.95rem;
				color: #333;
				line-height: 1.8;
				padding: 0 5px;
			}

			/* 移动端响应式（屏幕<768px时单列） */
			@media (max-width: 768px) {
				.warning-container {
					grid-template-columns: 1fr;
				}

				.warning-img {
					height: 300px;
					/* 移动端图片固定高度 */
				}
			}
    .notice-inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
      align-items: center;
    }

    .notice-img {
      width: 100%;
      border-radius: 8px;
    }

    .notice-text h3 {
      color: #99c5ce;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .notice-text p {
      color: #666;
      margin-bottom: 10px;
      line-height: 1.7;
    }

    /* 新闻区域 */
    .news-section {
      padding: 60px 0;background: #fff;
    }

    .news-list {
      border-top: 2px solid #99c5ce;
    }

    .news-item {
      padding: 15px 0;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .news-item p {
      color: #666;
    }

    .news-item a {
      color: #99c5ce;
      font-size: 0.9rem;
    }
	/* 通知列表容器：整体居中+宽度限制 */
	.notice-list {
	  max-width: 1200px;
	  margin: 0 auto;
	  display: flex;
	  flex-direction: column;
	  gap: 15px; /* 两个通知项之间的间距 */
	}
	
	/* 单个通知项样式：边框+圆角 */
	.notice-item {
	  border: 1px solid #e0e0e0;
	  border-radius: 4px;
	  overflow: hidden; /* 保证子元素圆角生效 */
	}
	
	/* 通知标题栏：青色背景+左右布局 */
	.notice-header {
	  background-color: #2d96ac; /* 匹配截图的青色，可改为你的#99c5ce */
	  color: #fff;
	  padding: 10px 15px;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	
	/* 标题左侧：图标+文字 */
	.notice-header-left {
	  display: flex;
	  align-items: center;
	  gap: 10px;
	}
	
	/* 通知图标（可替换为本地图标） */
	.notice-icon {
	  font-size: 1.2rem;
	}
	
	/* 通知标题文字 */
	.notice-header-title {
	  font-size: 1rem;
	  font-weight: bold;
	}
	
	/* 标题右侧三点按钮 */
	.notice-header-right {
	  font-size: 1.2rem;
	  cursor: pointer; /* 鼠标悬浮变手型 */
	}
	
	/* 通知内容区 */
	.notice-content {
	  padding: 15px 15px;
	  color: #333;
	  font-size: 0.95rem;
	  line-height: 1.8;
	}
	
	/* 移动端适配：字号/间距微调 */
	@media (max-width: 768px) {
	  .notice-header-title {
	    font-size: 0.9rem;
	  }
	  .notice-content {
	    font-size: 0.9rem;
	  }
	}
/* 核心容器：左右布局 */
    .business-container {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
    }

    /* 左侧导航栏 */
    .business-nav {
      background-color: #e8f2f5;
      padding: 10px 0;
    }

    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      cursor: pointer;
      color: #333;
      transition: background-color 0.3s, color 0.3s;
      position: relative;
    }

    /* 选中项样式（匹配截图的蓝色背景） */
    .nav-item.active {
      background-color: #0088cc;
      color: #fff;
    }

    /* 选中项右侧的箭头（截图里的蓝色三角） */
    .nav-item.active::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      border-width: 10px 0 10px 10px;
      border-style: solid;
      border-color: transparent transparent transparent #0088cc;
    }

    .nav-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .nav-text {
      font-size: 14px;
    }

    /* 右侧内容区 */
    .business-content {
      padding: 30px;
      position: relative;
    }

    /* 内容项：默认隐藏，只有active显示 */
    .content-item {
      display: none;
    }

    .content-item.active {
      display: block;
    }

    /* 右侧内容里的每一项样式 */
    .content-block {
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px dashed #e0e0e0;
    }

    .content-block:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .content-title {
      display: flex;
      align-items: center;
      color: #0088cc;
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .content-title i {
      font-size: 18px;
      margin-right: 10px;
    }

    .content-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-left: 28px;
    }

    /* 移动端适配（屏幕小于768px时改为上下布局） */
    @media (max-width: 768px) {
      .business-container {
        grid-template-columns: 1fr;
      }

      .business-nav {
        display: flex;
        justify-content: space-around;
        padding: 10px;
      }

      .nav-item {
        padding: 10px;
        width: 25%;
      }

      .nav-item.active::after {
        display: none;
      }
    }

    .footer-links {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #99c5ce;
      margin: 0 10px;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
      .banner {
        height: auto;
        padding: 30px 20px;
        justify-content: center;
      }

      .banner-text {
        max-width: 100%;
      }

      .business-inner {
        grid-template-columns: 1fr;
      }

      .target-inner {
        grid-template-columns: 1fr;
      }

      .profile-inner {
        grid-template-columns: 1fr;
      }

      .notice-inner {
        grid-template-columns: 1fr;
      }

      .strength-list li {
        flex-direction: column;
        gap: 10px;
      }

      .strength-list img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
      }

      nav ul {
        gap: 15px;
        justify-content: center;
        width: 100%;
      }

      .header-inner {
        justify-content: center;
      }
    }