* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* display: flex; */
  /* justify-content: space-between; */
  /* padding: 0 20px; */
}

/* ========== Header ========== */
.header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
 background: #f5f6f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo img {
  height: 64px;
  width: auto;
}

.header-divider {
  display: block;
  width: 5px;
  height: 36px;
  background: #0e7a3b;
  flex-shrink: 0;
}

.nav ul {
  display: flex;
  gap: 40px;
}

.nav a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.nav a:hover,
.nav [data-page].active a {
  color: #0e7a3b;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  padding: 4px 8px;
}

/* ========== Banner ========== */
.page-banner {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
    object-fit: cover;
}

.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.page-banner .banner-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.page-banner .banner-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.page-banner .banner-text p {
  font-size: 16px;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* ========== Section Common ========== */
.section {
  padding: 60px  0 0 0;
}

.section-white {
 background: #f5f6f6;
}

.section-gray {
  background: #f5f6f6;
}

.section-title {
 text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #03883e;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-sub {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ========== Hero / Homepage Banner ========== */
.hero {
  position: relative;
  width: 100%;
  
}

.hero > img {
  width: 100%;
  height: 700px;
  display: block;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 80, 40, 0.6);
  background: linear-gradient(135deg, rgba(10, 90, 50, 0.7) 0%, rgba(0, 60, 20, 0.7) 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero .hero-sub {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.hero .hero-sub .dot {
  margin: 0 10px;
  opacity: 0.5;
}

/* Hero Button Row */
.hero-btn-row {
 position: absolute;
    bottom: 244px;
    right: 8%;
    z-index: 2;
    display: flex;
    gap: 2.4vw;
}

.hero-action-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.4vw;
  padding: 0.4vw 1.5vw;
  background: #fff;
  border-radius: 2vw;
  text-decoration: none;
  box-shadow: 0 0.15vw 0.5vw rgba(0, 0, 0, 0.15);
}

.hero-action-btn img {
      width: 1.5vw;
    height: 1.5vw;
  object-fit: cover;
  border-radius: 0.2vw;
}

.hero-action-btn span {
  font-size: 1vw;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.08vw;
  white-space: nowrap;
}

/* Hero Modal */
.hero-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.hero-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px 50px;
  text-align: center;
  position: relative;
  min-width: 280px;
}

.hero-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.hero-modal-close:hover {
  color: #333;
}

.hero-modal-qr {
  width: 180px;
  height: 180px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-modal-box p {
  font-size: 16px;
  color: #333;
  margin-top: 8px;
}

/* Tangchuang2 Modal */
.displaynone {
  display: none !important;
}

/* .tangchuang2 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tangchuang2 .tangchuang2 {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.tang_lg {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.tang_lgl img {
  height: 40px;
}

.tang_lgr {
  font-size: 16px;
  color: #333;
}

.tang_lgr em {
  color: #0e7a3b;
  font-style: normal;
  font-weight: 700;
}

.tang_p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.tang_p em {
  color: #e74c3c;
  font-style: normal;
  font-weight: 600;
} */

/* .a-close {
  position: absolute;
  top: 12px;
  right: 16px;
}

.a-close a {
  font-size: 24px;
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.a-close a:hover {
  color: #333;
}

.tang_fo {
  width: 100%;
}

.tang_foi {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tang_foi input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #f9f9f9;
  outline: none;
}

.tang_foi input:focus {
  border-color: #0e7a3b;
}

.tang_foi img {
  width: 20px;
  height: 20px;
}

.tang_fob {
  width: 100%;
  padding: 12px;
  background: #0e7a3b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 6px;
}

.tang_fob:hover {
  background: #0c6a33;
} */

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

/* ========== Section Decorative Header ========== */
.section-decor {
  width: 100%;
  max-width: 1448px;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.section-marker {
  width: 6px;
    height: 30px;
    background: #257936;
    flex-shrink: 0;
}

.section-en-title {
    text-align: center;
    font-size: 16px;
    color: #707583;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== About Grid (homepage) ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: #555;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 14px;
  text-indent: 2em;
}

.about-motto {
  color: #0e7a3b;
  font-weight: 600;
  text-indent: 0;
  font-size: 16px;
  padding: 12px 16px;
  background: #f0f7f0;
  border-left: 3px solid #0e7a3b;
  border-radius: 2px;
}

.about-img img {
  width: 100%;
  display: block;
}

/* ========== Stats Section ========== */
.stats-section {
  background: #5b5d63;
  padding: 40px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 38px;
  font-weight: 700;
  color: #f5d742;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

/* ========== Business Cards Section ========== */
.biz-section {
  padding: 60px 0 0  0px;
 background: #f5f6f6;
}

.biz-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.biz-card {
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.biz-card img {
  width: 100%;
  display: block;
  margin-bottom: 0;
}

.biz-card h3 {
  font-size: 16px;
  color: #222;
  margin: 14px 0 4px;
  font-weight: 600;
}

.biz-card p {
  font-size: 16px;
  color: #999;
  line-height: 1.6;
  padding: 0 10px 10px;
}

/* ========== Platform Section ========== */
.platform-section {
  padding: 50px 0;
  background: #f5f9f5;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.platform-card {
 background: #f5f6f6;
  text-align: center;
  padding: 36px 20px 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.platform-card:hover {
  transform: translateY(-4px);
}

.platform-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e8;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #0e7a3b;
}

.pi-data::after { content: "D"; }
.pi-supply::after { content: "S"; }
.pi-tech::after { content: "T"; }
.pi-global::after { content: "G"; }

.platform-card h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.platform-card p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
}

/* ========== Homepage Sections ========== */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cards-4 .hc {
  text-align: center;
  padding: 0 16px;
}

.cards-4 .hc img {
  width: 100%;
  border-radius: 0;
  margin-bottom: 12px;
}

.cards-4 .hc h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
}

.cards-4 .hc p {
  font-size: 16px;
  color: #999;
  line-height: 1.6;
}

/* Section: dark strip */
.section-dark-strip {
  background: #313236;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

.section-dark-strip .big-num {
  font-size: 40px;
  font-weight: 700;
  color: #c9a74a;
}

/* Section: green */
.section-green {
  background: #2d6b36;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.section-green .sg-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-green p {
  font-size: 14px;
  opacity: 0.8;
}

/* Section: light green */
.section-light-green {
  background: #eef3e6;
  padding: 50px 0;
  text-align: center;
}

/* Section: light blue */
.section-light-blue {
  background: #e2edf7;
  padding: 50px 0;
  text-align: center;
}

/* Section: blue (contact CTA) */
.section-blue {
  background: #1a3a5c;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.section-blue .btn-outline {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s;
  margin-top: 20px;
}

.section-blue .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Section: partner logos */
/* Section header image decoration */
.section-header-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 10px;
  display: block;
}

/* Red accent section for 核心业务 */
.red-section {
  background: #313236;
}

.red-section .red-top {
  background: #c92a2a;
  text-align: center;
  padding: 14px 0;
}

.red-section .red-top h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.red-section .red-body {
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

/* Service section (light blue bg) */
.service-section {
  background: #e2edf7;
  padding: 50px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-grid .si {
 background: #f5f6f6;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.service-grid .si h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-grid .si p {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
}

/* News section */
.news-section {
}

.news-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 40px;
  align-items: start;

}

.news-featured {
  position: relative;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
margin-top: 20px;

}

.news-featured-img {
  display: block;
  overflow: hidden;
}

.news-featured-img img {
      width: 100%;
    height: 390px;
}


.news-featured-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;


}
.news-featured-info .left-date{
text-align: center; 
position: relative;
padding-right: 10px;
}
.news-featured-info .left-date::after{
   content: ' ';
    height: 40px;
    width: 1px;
    position: absolute;
    background: #eee;
    top: 12px;
    right: -8px;
}
.news-featured-date {
  font-size: 14px;
  color: #050505;
  white-space: nowrap;
}

.news-featured-title {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 10px;
}

.news-list-side {
  display: flex;
  flex-direction: column;
}

.news-side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
  text-decoration: none;
}

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

.news-side-item:hover .news-side-title {
  color: #0e7a3b;
}

.news-side-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-side-title {
  font-size: 18px;
  color: #030303;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.3s;
  margin-bottom: 6px;
}

.news-side-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-side-date {
  font-size: 12px;
  color: #5a5a5a;
}

.news-more-link {
  font-size: 14px;
  color: #0e7a3b;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 20px;
}

.news-side-item:hover .news-more-link {
  color: #0c6a33;
}

@media (max-width: 768px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-featured-img img {
    height: 200px;
  }
}

/* CTA section */
.cta-section {
  background: #1a3a5c;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-section p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.cta-section .btn-cta {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.cta-section .btn-cta:hover {
  background: rgba(255,255,255,0.1);
}

/* Partner logos */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.partner-logos img {
  height: 50px;
  opacity: 0.5;
  filter: grayscale(1);
}

.partner-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========== About Page ========== */
.about-banner {
  background: linear-gradient(135deg, #1a3018 0%, #0d1f0c 100%);
}

.intro-grid,
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro img {
  border-radius: 0;
  width: 100%;
}

.about-intro h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 16px;
  font-weight: 700;
}

.about-intro p {
  color: #666;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 2;
}

.about-vision {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-vision img {
  margin: 30px auto 0;
  width: 100%;
  max-width: 900px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-grid .fi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f5f6f6;
}

.feature-grid .fi img {
  width: 32px;
  height: 32px;
}

.feature-grid .fi span {
  font-size: 16px;
  color: #333;
}

.about-red-section {
  background: #d42828;
  padding: 60px 0 0 0;
  color: #fff;
  text-align: center;
}

.about-red-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.about-lightblue-section {
  background: #d4edfb;
  padding: 50px 0;
  text-align: center;
}

.about-green-section {
  background: #e6f2ea;
  padding: 40px 0;
  text-align: center;
}

.about-green-section .green-icon-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-green-section .green-icon-row .gi {
  text-align: center;
}

.about-green-section .green-icon-row .gi img {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
}

.about-green-section .green-icon-row .gi p {
  font-size: 16px;
  color: #333;
}

/* ========== About Page v2 (PSD) ========== */

/* Sub-nav */
.about-subnav {
  background: #f5f6f6;
  border-bottom: 0px solid #e0e0e0;
  position: sticky;
  top: 0px;
  z-index: 99;
}

.about-subnav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.about-subnav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  color: #0b0b0b;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  /* transition: all 0.3s; */
  white-space: nowrap;
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about-subnav a:hover{
     color: #fff;
    background: rgba(14,122,59,0.55);
}
.about-subnav a.active {
     color: #fff;
    background: #0e7a3b;
}

/* 公司概况 */
.about-overview {
 background: #f5f6f6;
  padding: 60px 0 0 0px;
}

.overview-stats {
     display: flex;
    justify-content: space-between;
    /* gap: 54px; */
    margin-bottom: 40px;
    width: 1200px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
 background: #f5f6f6;
  border: 1px solid #009944;
}

.stat-block:last-child {
  border-right: 1px solid #009944;
}

.stat-num {
      font-size: 36px;
    font-weight: 700;
    color: #fff;
    background: #009944;
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
        margin-bottom: 0;
    display: inline-block;
    position: relative;
}

.stat-plus {
 font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-left: 1px;
    position: absolute;
    top: -10px;
}

.stat-unit {
  font-size: 14px;
  color: #fff;
  font-weight: 100;
}

.stat-label {
  font-size: 14px;
    color: #009944;
    font-weight: 500;
    padding: 8px;
}

.overview-subtitle {
  text-align: center;
  font-size: 20px;
  color: #4c4c4c;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 2px;
}

.overview-intro {
  overflow: hidden;
}

.overview-float-img {
  float: left;
  width: 600px;
  height: auto;
  margin-right: 30px;
  margin-bottom: 16px;
}

.overview-intro p {
  color: #4c4c4c;
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 14px;
  text-indent: 2em;
}

/* 发展历程 */
.about-history {
 background: #f5f6f6;
  padding: 60px 0 70px;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding-left: 120px;
}

/* .history-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
} */

.history-row {
  position: relative;
  margin-bottom: 36px;
}

.history-row:last-child {
  margin-bottom: 0;
}

.history-year {
  position: absolute;
  left: -120px;
  top: 0;
  width: 80px;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  color: #0e7a3b;
  line-height: 1.4;
}

/* .history-dot {
  position: absolute;
  left: -20px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #0e7a3b;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 1;
} */

.history-text {
  padding: 0 0 0 30px;
}

.history-text p {
     color: #050505;
    font-size: 16px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.history-text p::before {
  content: '• ';
  color: #0e7a3b;
  font-weight: 700;
}

/* 资质荣誉 */
.about-honors {
 background: #f5f6f6;
  padding: 60px 0 0 0;
}

.honors-items {
  margin-top: 30px;
}

.honor-large {
  margin-bottom: 30px;
}

.honor-large img {
  width: 100%;
  display: block;
}

.honors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.honor-item img {
  width: 100%;
  display: block;
}

/* 党建中心 */
.about-party {
 background: #f5f6f6;
  padding: 60px 0 0 0;
}

.party-img img {
  width: 100%;
  max-width: 1480px;
  margin: 20px auto 0;
  display: block;
}

/* 客户服务 */
.about-service {
 background: #f5f6f6;
  padding: 60px 0 0 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.service-card {
  text-align: center;
  padding: 50px 16px;
  background: #dce6df;
  border-radius:24px;
  transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #D1DDD5;
}

.service-card-img {
 width: 48px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 4px;
    margin: auto;
    margin-bottom: 10px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
    /* object-fit: cover; */
}

.service-card h4 {
  font-size: 20px;
  color: #0a0a0a;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 16px;
  color: #464545;
  line-height: 1.6;
}

/* 联系我们 */
.about-contact {
 background: #f5f6f6;
  padding: 60px 0 0 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
  align-items: start;
}

.contact-details {
  padding-top: 10px;
}

.contact-title {
      font-size: 24px;
    color: #03883e;
  font-weight: 700;
  margin-bottom: 46px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

.cd-item {
  display: flex;
  align-items:center;
  gap: 16px;
  margin-bottom: 24px;
}

.cd-icon {
  width: 34px;
  height:  34px;
}

.cd-phone::after { content: 'T'; }
.cd-email::after { content: '@'; }
.cd-location::after { content: 'P'; }

.cd-item h4 {
  font-size: 20px;
  color: #4c4c4c;
  margin-bottom: 4px;
  font-weight: 600;
}

.cd-item p {
  font-size: 14px;
  color: #666;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cd-icon {
  width: 34px;
  height:  34px;
}

.cd-phone::after { content: 'T'; }
.cd-email::after { content: '@'; }
.cd-location::after { content: 'P'; }

.cd-item h4 {
  font-size: 20px;
  color: #222;
  margin-bottom: 4px;
  font-weight: 600;
}

.cd-item p {
  font-size: 14px;
  color: #666;
}

.btn-map {
 display: inline-block;
    color: #0e7a3b;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}


.contact-map img {
  width: 100%;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background: #e8ecee;
  border: 1px solid #d0d5d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  letter-spacing: 1px;
}

/* 联系表单 */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
}

.form-title {
  font-size: 18px;
  color: #009944;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #f2f1f0;
  color: #333;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca0a6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-submit {
  padding: 12px 40px;
  background: #008f48;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  letter-spacing: 1px;
  width: 100%
}

.contact-form .btn-submit:hover {
  background: #007a3d;
}

/* Bottom full-width map */
.contact-map-full {
  background: #e8ecee;
  padding: 0;
}

.map-full-inner {
  max-width: 100%;
  margin: 0 auto;
}

.map-full-inner .map-placeholder-lg {
  width: 100%;
  height: 500px;
  background: #dce3e8;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  letter-spacing: 1px;
}

/* ========== Cases Page (PSD) ========== */
.cases-banner {
  background: linear-gradient(135deg, #d4e6f7 0%, #d8eaf9 50%, #d0e4f5 100%);
}

.cases-showcase {
  padding: 50px 0 0;
}

.cases-showcase img {
  width: 100%;
  border-radius: 0;
}

.cases-subnav {
  background: #fff;
  position: sticky;
  top: 0px;
  z-index: 99;
}

.cases-subnav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.cases-subnav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  color: #0b0b0b;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  /* transition: all 0.3s; */
  white-space: nowrap;
}

.cases-subnav a:hover{
     color: #fff;
    background: rgba(14,122,59,0.55);
}
.cases-subnav a.active {
     color: #fff;
    background: #0e7a3b;
}

/* Case detail list */
.case-detail-list {
  margin-top: 30px;
}

.case-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  margin-bottom: 28px;
  padding: 24px;
  /* background: #f9fafb; */
  border-radius: 6px;
  /* transition: transform 0.2s; */
}

/* .case-detail:hover {
  transform: translateX(4px);
} */

.case-detail-img img {
  width: 100%;
  border-radius: 4px;
}

.case-detail-text h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-detail-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.page-btn:hover {
  border-color: #009944;
  color: #009944;
}

.page-btn.active {
  background: #009944;
  border-color: #009944;
  color: #fff;
}

.page-prev,
.page-next {
  font-size: 12px;
}

/* 基地案例 - 文章样式 */
.article-detail {
  background: #fff;
  border-radius: 6px;
  margin-top: 40px;
}

.article-title {
  font-size: 24px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e0e0e0;
}

.article-date {
  font-size: 13px;
  color: #999;
}

.article-tag {
  font-size: 12px;
  color: #009944;
  background: #e8f5e9;
  padding: 2px 10px;
  border-radius: 3px;
}

.article-body p {
 font-size: 16px;
    color: #5b5a5a;
  line-height: 2.2;
  margin-bottom: 18px;
  text-indent: 2em;
}

.article-img {
  float: left;
  width: 320px;
  height: 210px;
    /* object-fit: cover; */
  margin: 0 28px 18px 0;
  border-radius: 4px;
}

.article-img-full {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0 20px;
  display: block;
}

@media (max-width: 768px) {
  .article-detail {
    padding: 20px;
  }

  .article-title {
    font-size: 20px;
  }

  .article-img {
    float: none;
    width: 100%;
    height: 200px;
    margin: 0 0 16px;
  }
}

/* Featured cases */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.featured-card {
 background: #f5f6f6;
  padding: 36px 24px 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
}

.fc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #0e7a3b;
}

.fi-data::after { content: "S"; }
.fi-cloud::after { content: "C"; }
.fi-chain::after { content: "F"; }

.featured-card h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.featured-card p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
}

/* ========== School Page (PSD) ========== */
.school-banner {
  background: linear-gradient(135deg, #3a8a5c 0%, #2d6b36 50%, #1f5a2a 100%);
  overflow: hidden;
}

.school-banner-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.decor-1 {
  width: 300px;
  height: 300px;
  border: 3px solid #fff;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.decor-2 {
  width: 200px;
  height: 200px;
  border: 3px solid #fff;
  top: 20%;
  left: 12%;
}

.decor-3 {
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  bottom: 10%;
  left: 8%;
}


/* 关于商学院 - 上下结构 */
.school-about {
  padding: 60px 0;
}

.school-about-header {
  text-align: center;
  margin-bottom: 30px;
}

.school-about-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #03882e;
  margin-bottom: 8px;
}

.school-about-en {
  color: #707583;
  font-size: 14px;
  letter-spacing: 1px;
}

.school-about-text {
  margin-bottom: 30px;
}

.school-about-text p {
  color: #555;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 12px;
}

.school-about-img {
  width: 100%;
}

.school-about-img img {
  width: 100%;
  display: block;
}

/* 解决方案 */
.school-solution {
  padding: 60px 0;
}

.school-solution .section-title {
  color: #03883e;
}

.school-solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.solution-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.solution-img img {
  width: 100%;
  height: 100%;
    /* object-fit: cover; */
  display: block;
  /* transition: transform 0.3s; */
}

/* .solution-card:hover .solution-img img {
  transform: scale(1.05);
} */

.solution-card h4 {
      color: #484848;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
}

/* 学员遍布全国各地 - 上下结构 */
.school-students {
  background: #f5f6f6;
  padding: 60px 0;
}

.school-students-header {
  text-align: center;
  margin-bottom: 30px;
}

.school-students-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.school-students-header .students-en {
  color: #707583;
  font-size: 14px;
  letter-spacing: 1px;
}

.school-students-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 400px;
}

.school-students-side {
  background: #33a56d;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.students-side-inner {
  text-align: center;
  padding: 0 24px;
}

.students-en {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.students-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.ss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 16px;
}

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

.ss-num {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.ss-label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-top: 4px;
}

.students-logo {
  width: 120px;
  margin-top: 10px;
}

.school-students-map {
  background: #e8f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.students-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.map-city-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.map-city-item img {
  width: 100%;
  height: 100%;
    /* object-fit: cover; */
  display: block;
}

.map-city-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  padding: 12px 10px 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* 资料下载 */
.school-download {
  padding: 60px 0;
}

.school-download-list {
  margin-top: 30px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: -1px;
  transition: transform 0.2s;
  text-decoration: none;
  position: relative;
}

.download-item:hover {
  transform: translateX(4px);
}

.download-icon {
  flex-shrink: 0;
}

.download-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 150px;
  background: #2b57bb;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 1px;
      text-align: center;
}

.download-info {
  flex: 1;
}

.download-info h4 {
 font-size: 20px;
    color: #404040;
    font-weight: 500;
    margin-bottom: 10px;
}

.download-info p {
  font-size: 16px;
  color: #888;
  line-height: 1.6;
}

.download-meta {
  position: absolute;
  right: 24px;
  bottom: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.download-size {
  font-size: 12px;
  color: #aaa;
}

.download-btn {
  display: inline-block;
  padding: 6px 16px;
  background: #0e7a3b;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.download-item:hover .download-btn {
  background: #0c6a33;
}

/* 合作机构 */
.school-partners-section {
  padding: 60px 0;
}

.school-partners {
  margin-top: 30px;
  text-align: center;
}

.school-partners img {
  display: inline-block;
  max-width: 1200px;
  width: 100%;
}

/* School responsive */
@media (max-width: 992px) {
  .school-solution-cards {
    grid-template-columns: 1fr;
  }

  .school-students-layout {
    grid-template-columns: 1fr;
  }

  .students-map-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .download-meta {
    position: static;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .school-banner-right {
    width: 100%;
    opacity: 0.4;
  }

  .school-students-side {
    padding: 30px 0;
  }

  .students-map-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== News Page (PSD) ========== */
.news-banner {
  background: linear-gradient(135deg, #2563eb 0%, #1a4a9e 100%);
}

.news-subnav {
  background: #f5f6f6;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0px;
  z-index: 99;
}

.news-subnav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.news-subnav a {
  display: block;
  padding: 14px 28px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}

.news-subnav a:hover,
.news-subnav a.active {
  color: #0e7a3b;
  border-bottom-color: #0e7a3b;
  background: rgba(14,122,59,0.04);
}





/* News cards */
.news-cards {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.news-card {
  background: #f9fafb;
  padding: 24px 28px;
  border-radius: 6px;
  border-left: 4px solid #0e7a3b;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateX(4px);
}

.nc-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.nc-more {
  font-size: 14px;
  color: #0e7a3b;
  font-weight: 500;
  transition: color 0.3s;
}

.nc-more:hover {
  color: #0c6a33;
  text-decoration: underline;
}

/* Media list */
.media-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.media-item {
 background: #f5f6f6;
  padding: 24px 28px;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.media-source {
  display: inline-block;
  font-size: 12px;
  color: #0e7a3b;
  font-weight: 600;
  margin-bottom: 6px;
  background: #e8f5e8;
  padding: 2px 10px;
  border-radius: 2px;
}

.media-item h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 6px;
}

.media-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.media-date {
  font-size: 12px;
  color: #aaa;
}

/* Industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.industry-item {
  background: #f9fafb;
  padding: 24px;
  border-radius: 6px;
  transition: transform 0.2s;
}

.industry-item:hover {
  transform: translateY(-2px);
}

.industry-item h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.industry-item p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 10px;
}

.industry-date {
  font-size: 12px;
  color: #aaa;
}

/* Policy list */
.policy-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.policy-item {
 background: #f5f6f6;
  padding: 24px 28px;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  position: relative;
  padding-left: 90px;
}

.policy-tag {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #eee;
  padding: 2px 10px;
  border-radius: 2px;
}

.policy-tag.hot {
  color: #fff;
  background: #e74c3c;
}

.policy-item h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 6px;
}

.policy-item p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-date {
  font-size: 12px;
  color: #aaa;
}

/* ========== Contact Page (PSD) ========== */
.contact-banner {
  background: linear-gradient(135deg, #c4d7fc 0%, #b8d1f8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 6px;
  transition: background 0.3s;
}

.contact-item:hover {
  background: #f0f7f0;
}

.contact-item img {
  width: 40px;
  height: 40px;
}

.contact-item h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-item p {
  font-size: 14px;
  color: #0e7a3b;
  font-weight: 500;
}

.contact-form-box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.contact-form-box h3 {
 font-size: 24px;
    color: #03883e;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: inherit;
 background: #f5f6f6;
  transition: border-color 0.3s;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0e7a3b;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  padding: 12px 30px;
  background: #0e7a3b;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #0c6a33;
}

/* Contact location section */
.contact-location {
  background: #f0f3fa;
  padding: 60px 0 0 0;
}

.contact-map-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.map-container {
  min-height: 380px;
}

.map-placeholder-lg {
  width: 100%;
  height: 380px;
  background: #dce3e8;
  border: 1px solid #c8d0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 4px;
}

.map-sidebar {
 background: #f5f6f6;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.map-sidebar h4 {
  font-size: 17px;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.ms-item {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.ms-item strong {
  color: #333;
  white-space: nowrap;
}

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

/* ========== Footer ========== */
.footer {
  background: #31342b;
  color: #aaa;
}

.footer-main {
  padding: 50px 0 30px;
}
.footer-main .container{
  width: 1200px;
  display: flex;
  justify-content: space-between
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  width: 48%;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 2;
  color: #999;
}

.footer-col ul li {
  margin-bottom: 4px;
  font-size: 14px;
  color: #999;
}

.footer-col ul li a {
  color: #FBFCF9;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #0e7a3b;
}

/* QR code */
.footer-qr {
  text-align: center;
  padding-right: 0;
}

.footer-qr .qr-code,
.footer-qr .text-box {
  display: inline-block;
  vertical-align: top;
}

.footer-qr .qr-code {
  margin-right: 40px;
}

.footer-qr .text-box {
  text-align: left;
}

.footer-qr .phone-number {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-qr .text-label {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
}

.qr-code {
  display: inline-block;
  position: relative;
}

.logo_alert {
  width: 110px;
  text-align: center;
  margin-bottom: 10px;
}

.logo_alert img {
  width: 100%;
  display: none;
  border-radius: 4px;
}

.logo_alert img.active {
  display: block;
}

#tab {
  display: inline-flex;
  align-items: center;
}

#tab img {
  cursor: pointer;
  transition: transform 0.2s;
      margin: 0px 4px;
}

#tab img:hover {
  transform: scale(1.1);
}

.imgs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.imgs img {
  width: 28px;
  height: auto;
}

.imgs .weiboa {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
}

.qr-placeholder {
  width: 110px;
  height: 110px;
 background: #f5f6f6;
  border: 2px solid #555;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-placeholder::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 4px;
  position: absolute;
}

.qr-code p {
  font-size: 12px;
  color: #FBFCF9;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.qr-label {
  font-size: 12px;
  color: #FBFCF9;
  letter-spacing: 1px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #FBFCF9;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .cards-4,
  .cases-grid,
  .school-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .about-intro,
  .school-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer-qr {
    grid-column: span 6;
  }

  .about-green-section .green-icon-row {
    gap: 30px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .overview-grid,
  .honors-grid,
  .service-images,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .overview-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .stat-block {
    width: calc(50% - 5px);
    padding: 20px 12px;
  }

  .overview-float-img {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .honor-large {
    margin-bottom: 20px;
  }

  .biz-cards,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 30%;
  }

  .history-timeline {
    padding-left: 60px;
  }

  .history-timeline::before {
    left: 40px;
  }

  .history-year {
    left: -60px;
    width: 40px;
    font-size: 16px;
  }

  .about-subnav .container {
    gap: 0;
  }

  .about-subnav a {
    padding: 12px 16px;
    font-size: 14px;
  }

  .case-detail {
    grid-template-columns: 1fr;
  }

  .case-detail-img {
    max-width: 260px;
  }

  .featured-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .policy-item {
    padding-left: 24px;
  }

  .policy-tag {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }

  .cases-subnav a,
  .news-subnav a {
    padding: 12px 16px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 60px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
   background: #f5f6f6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px;
  }

  .nav li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .header-divider {
    height: 28px;
    margin: 0 12px;
  }

  .hero {
    margin-top: 60px;
  }

  .hero .hero-text h1 {
    font-size: 26px;
  }

  .hero .hero-text p {
    font-size: 14px;
  }

  .page-banner {
    height: 260px;
    margin-top: 60px;
  }

  .page-banner .banner-text h1 {
    font-size: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 20px;
  }

  .cards-4,
  .cases-grid,
  .school-cards,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-qr {
    grid-column: span 3;
  }

  .partner-logos {
    gap: 20px;
  }

  .partner-logos img {
    height: 30px;
  }

  .biz-cards,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    min-width: auto;
  }

  .about-grid,
  .overview-grid,
  .honors-grid,
  .service-images,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .honor-large {
    margin-bottom: 20px;
  }

  .overview-grid {
    gap: 30px;
  }

  .history-timeline {
    padding-left: 50px;
  }

  .history-timeline::before {
    left: 24px;
  }

  .history-year {
    position: relative;
    left: 0;
    width: auto;
    text-align: left;
    font-size: 18px;
    margin-bottom: 6px;
  }

  .history-dot {
    left: -20px;
  }

  .history-text {
    padding-left: 0;
  }

  .about-subnav a,
  .cases-subnav a,
  .news-subnav a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .case-detail {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .case-detail-img {
    max-width: 100%;
  }

  .featured-grid,
  .industry-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    padding: 20px;
  }

  .policy-item {
    padding-left: 20px;
  }

  .policy-tag {
    position: static;
    display: inline-block;
    margin-bottom: 6px;
  }

  .hero .hero-content h1 {
    font-size: 28px;
  }

  .hero .hero-sub {
    font-size: 14px;
  }

  .overview-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-block {
    width: calc(50% - 0px);
    padding: 16px 10px;
    border-radius: 0;
  }

  .stat-num {
    font-size: 28px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-img {
    height: 160px;
  }

  .hero-btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .contact-map-full .map-placeholder-lg {
    height: 300px;
  }
}

/* ========== Join/Recruitment Page ========== */
.join-banner {
  background: linear-gradient(135deg, #3a8a5c 0%, #2d6b36 50%, #1f5a2a 100%);
  overflow: hidden;
}

.join-banner-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.join-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
}

.join-decor-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
}

.join-decor-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 5%;
}

.join-banner-badge {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.badge-icon {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.badge-star {
  font-size: 24px;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 2px;
}

/* 为什么选择菜东家 */
.join-why {
  padding: 70px 0;
}

.join-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.join-why-card {
  text-align: center;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.join-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.join-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #0e7a3b;
}

.join-why-icon svg {
  width: 100%;
  height: 100%;
}

.join-why-card h4 {
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.join-why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 六大核心 */
.join-core {
  background: #33a56d;
  padding: 60px 0;
}

.join-core-title {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.join-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.join-core-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.join-core-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.join-core-item:hover .join-core-icon {
  background: rgba(255,255,255,0.25);
}

.join-core-icon svg {
  width: 40px;
  height: 40px;
}

.join-core-item span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* 加盟流程 */
.join-process {
  padding: 70px 0;
}

.join-process-flow {
  position: relative;
  margin-top: 50px;
  padding: 0 20px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.step-dot {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 3px solid #33a56d;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: background 0.3s;
}

.process-step:hover .step-dot {
  background: #33a56d;
}

.step-content {
  max-width: 100px;
}

.step-num {
  font-size: 20px;
  font-weight: 700;
  color: #33a56d;
  margin-bottom: 6px;
}

.step-content h4 {
  font-size: 14px;
  color: #222;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}

/* Join responsive */
@media (max-width: 992px) {
  .join-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-banner-badge {
    right: 5%;
  }

  .process-line {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .process-step {
    flex: 0 0 calc(25% - 15px);
  }
}

@media (max-width: 768px) {
  .join-banner-badge {
    display: none;
  }

  .join-why-cards {
    grid-template-columns: 1fr;
  }

  .join-core-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-step {
    flex: 0 0 calc(50% - 10px);
  }
}
.tangchuang2 {
    width: 800px;
    box-shadow: -1px 0px 5px #fff;
    -webkit-box-shadow: -1px 0px 5px #fff;
    -moz-box-shadow: -1px 0px 5px #fff;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    background: #ffffff;
    position: fixed;
    z-index: 999999999999999999;
    margin-top: -300px;
    margin-left: -350px;
}

.tangchuang2 .a-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #bbb;
    text-align: center;
    border-radius: 1000px;
}

.tangchuang2 .a-close:hover {
    cursor: pointer;
}

.tangchuang2 .a-close a {
    font-size: 24px;
    color: #f75555;
}

.tang_lg {
    padding-left: 66px;
    padding-right: 66px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
        display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tang_lg .tang_lgl {
    display: inline-block;
    margin-right: 30px;
}

.tang_lg .tang_lgl img {
    display: inline-block;
    width: 195px;
    height: 60px;
    position: relative;
    top: 15px;
}

.tang_lg .tang_lgr {
    display: inline-block;
    margin-left: 30px;
}

.tang_lg .tang_lgr {
    font-size: 32px;
    color: #666;
}

.tang_lg .tang_lgr em {
    color: #0e7a3b;
    font-weight: 600;
}

.tang_p {
    font-size: 18px;
    color: #aaa;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.tang_p em {
    color: #0e7a3b;
    font-weight: 600;
}

.tang_fo {
    padding-left: 80px;
    padding-right: 60px;
}

.tang_fo .tang_foi {
    position: relative;
}

.tang_fo .tang_foi input {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 70px;
    margin-top: 30px;
}

.tang_fo .tang_foi img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 12px;
    margin-left: 20px;
}

.tang_fo .tang_fob {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #666;
    border-radius: 5px;
    background: #0e7a3b;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    border: 0;
}