/* ========== introduce-v2.css 关于小蜜蜂页面新样式 ========== */

/* ---- 导航：继承 index-v2.css，这里做少量补充 ---- */
#nav-box { display: flex; }

/* ---- Hero Banner ---- */
.banner2 {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 320px;
}
.banner2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.banner2 .img-box {
  list-style: none;
  padding: 0;
  margin: 0;
}
.banner2 .img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.banner2-caption {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.banner2-caption .hero-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 0 12px;
}
.banner2-caption .hero-sub {
  font-size: 16px;
  opacity: 0.85;
  letter-spacing: 3px;
}

/* ---- 面包屑 ---- */
.breadcrumb {
  width: 100%;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 20px;
  font-size: 14px;
  color: #999;
}
.breadcrumb-inner a {
  color: #666;
}
.breadcrumb-inner a:hover {
  color: #d6336c;
}
.breadcrumb-inner b {
  margin: 0 10px;
  color: #ccc;
  font-weight: normal;
}

/* ---- 主体布局 ---- */
.main-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px 80px;
  box-sizing: border-box;
  display: flex;
  gap: 50px;
}
.side-menu {
  width: 200px;
  flex-shrink: 0;
}
.side-menu .menu-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  padding-bottom: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #d6336c;
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu ul li a {
  display: block;
  padding: 14px 18px;
  font-size: 15px;
  color: #555;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.side-menu ul li a:hover {
  color: #d6336c;
  background: #fafafa;
  border-left-color: #d6336c;
}
.side-menu ul li a.cur {
  color: #d6336c;
  background: #fafafa;
  border-left-color: #d6336c;
  font-weight: 600;
}
.content-area {
  flex: 1;
  min-width: 0;
}
.content-area .page-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.content-area .page-sub {
  font-size: 13px;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* ---- 公司简介内容 ---- */
.about-text {
  font-size: 15px;
  color: #555;
  line-height: 2.1;
  margin-bottom: 30px;
  text-align: justify;
}
.about-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  display: block;
}
.about-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.about-imgs .about-img {
  width: auto;
  max-width: 50%;
  margin-bottom: 0;
}

/* ---- 清理旧 introduce.css 样式 ---- */
.main1 { width: 100%; }
.main1 .top, .main1 .bottom { display: none; }

/* ---- 旧 index.css 遗留清理 ---- */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font: 14px "microsoft yahei", Arial, Helvetica, sans-serif;
  color: #333;
}
ul, li { margin: 0; padding: 0; list-style: none; }
a { color: #666; text-decoration: none; }
img { border: 0; display: block; }

/* ---- 联系我们（aboutus）特殊样式 ---- */
.contact-info {
  background: #fafafa;
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 30px;
}
.contact-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
}
.contact-row + .contact-row {
  border-top: 1px dashed #e5e5e5;
}
.contact-label {
  width: 90px;
  flex-shrink: 0;
  color: #999;
}
.contact-value {
  color: #333;
  font-weight: 500;
}
