@charset "UTF-8";

/* ============================================
   蓝色商务风格主题 — 济南跨境电商综合服务平台
   ============================================ */

/* ---------- CSS 变量 ---------- */
:root {
  --blue-primary: #2B7FFF;
  --blue-deep:    #155DFC;
  --blue-dark:    #0F172B;
  --blue-mid:     #1C398E;
  --blue-light:   #EFF6FF;
  --text-dark:    #101828;
  --text-body:    #4A5565;
  --text-muted:   #6A7282;
  --border-light: #F3F4F6;
}

html { scroll-behavior: smooth; }
body { font-family: "Microsoft YaHei", 微软雅黑, "PingFang SC", sans-serif; color: var(--text-dark); }

/* ============================================
   顶部导航栏 TopBar
   ============================================ */
.cm-topbar {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-mid) 50%, var(--blue-dark) 100%);
  box-shadow: 0 8px 10px -6px rgba(0,0,0,.1), 0 20px 25px -5px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cm-topbar-inner-wapper{
  background-color: #fff;
}

.cm-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cm-topbar-inner a{
  text-decoration: none;
}    

/* Logo */
.cm-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  flex:1;
}

.cm-logo-icon {
  position: relative;
    display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-logo-char {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cm-logo-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #05DF72;
  border-radius: 50%;
  border: 2px solid var(--blue-dark);
}

.cm-logo-title {
  font-size: 18px;
  font-weight: 700;
      background: linear-gradient(90deg, #316cb2 0%, #316cb2d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  white-space: nowrap;
}

.cm-logo-sub {
  font-size: 11px;
  color: #316cb2;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

/* 导航链接 */
.cm-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.cm-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.cm-nav-link:hover,
.cm-nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.12);
  text-decoration: none;
}

.cm-nav-entry {
  background: var(--blue-primary) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 16px !important;
}

.cm-nav-entry:hover {
  background: var(--blue-deep) !important;
}

/* 右侧区域 */
.cm-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* 电话块 */
.cm-phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 0 16px;
  height: 60px;
}

.cm-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-phone-label {
  font-size: 12px;
  color: #3972b6;
  line-height: 1.3;
}

.cm-phone-number {
  font-size: 16px;
  font-weight: 700;
  color: #3972b6;
  line-height: 1.4;
  white-space: nowrap;
}

/* 登录按钮 */
.cm-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgb(95 131 186);
  border-radius: 8px;
  color: #3972b6;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.cm-login-btn:hover {
  background: rgba(95,131,186,.1);
  color:#3972b6;
  text-decoration: none;
}

/* 汉堡按钮 */
.cm-hamburger {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cm-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* 移动端菜单 */
.cm-mobile-nav {
  background: #111827;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.cm-mobile-link {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.cm-mobile-link:hover,
.cm-mobile-link.active {
  color: #fff;
  text-decoration: none;
}

.cm-mobile-link.cm-nav-entry {
  color: var(--blue-primary) !important;
  background: none;
  border-radius: 0;
}

.cm-mobile-phone {
  margin-top: 12px;
  font-size: 13px;
  color: #8EC5FF;
}

/* ============================================
   Hero 轮播区
   ============================================ */
.hero-section {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,23,43,.78) 0%, rgba(15,23,43,.45) 60%, rgba(15,23,43,.15) 100%);
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  margin-bottom: 32px;
}

.btn-hero {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all .25s;
}

.btn-hero.btn-primary {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}

.btn-hero.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,127,255,.45);
}

.btn-hero.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* ============================================
   区块通用标题
   ============================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

.section-badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.section-title-wapper{
   position: relative;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title-en{
  font-size: 60px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 1;
}

.section-desc {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ============================================
   新闻区 NewsSection
   ============================================ */
.news-section {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
  padding: 80px 0 0;
}

.news-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.news-tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,.1), 0 10px 15px -3px rgba(0,0,0,.1);
  padding: 4px;
  gap: 0;
}

.news-tab {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.news-tab.active {
  background: linear-gradient(90deg, var(--blue-primary) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(43,127,255,.3);
}

.news-tab:hover:not(.active) {
  background: var(--blue-light);
  color: var(--blue-primary);
}

/* 新闻卡片 */
.news-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) { .news-cards-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .news-cards-row { grid-template-columns: 1fr; } }

.news-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(43,127,255,.12);
  border-color: rgba(43,127,255,.2);
  transform: translateY(-4px);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-card-meta img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-card-date {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.news-card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(90deg, #FB2C36 0%, #FF6900 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 9999px;
}

.news-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-deep);
  text-decoration: none;
  transition: color .2s;
}

.news-card-link:hover {
  color: var(--blue-primary);
  text-decoration: none;
}

.news-card-footer img {
  width: 16px;
  height: 16px;
}

/* ============================================
   服务区（物流 / 金融 / 核心服务）
   ============================================ */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(43,127,255,.07);
  transition: all .3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(43,127,255,.16);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(43,127,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--blue-primary);
}

.feature-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   合作伙伴网格
   ============================================ */
.partner-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(43,127,255,.1);
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

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

@media (max-width: 767px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all .2s;
}

.partner-item:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  box-shadow: 0 2px 12px rgba(43,127,255,.15);
}

/* ============================================
   统计数字
   ============================================ */
.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   电商园区
   ============================================ */
.park-main-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.park-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all .3s;
  background: #fff;
}

.park-card:hover,
.park-card-active {
  border-color: var(--blue-primary);
  box-shadow: 0 4px 20px rgba(43,127,255,.15);
}

/* ============================================
   页脚 Footer
   ============================================ */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}

.footer-logo-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-logo-sub   { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-desc       { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 20px; }

.footer-contact-item { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item .fi { color: var(--blue-primary); width: 14px; flex-shrink: 0; margin-top: 2px; }

.footer-heading { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links   { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a  { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-divider { border-color: rgba(255,255,255,.1); margin: 40px 0 0; }

.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-align: center;
}

.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

.footer-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  text-decoration: none;
  gap: 6px;
  transition: all .2s;
}

.footer-quick-link:hover {
  background: rgba(43,127,255,.3);
  color: #fff;
  text-decoration: none;
}

.footer-quick-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   工具 & 兼容
   ============================================ */
.cm-hidden  { display: none; }
.cm-pointer { cursor: pointer; }
.cm-ff-yh   { font-family: "Microsoft YaHei", 微软雅黑, "SimSun", 宋体, serif; }

.cm-block-head-bottom {
  border-bottom: 3px solid var(--blue-primary);
  display: inline-block;
  padding-bottom: .3rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.cm-media-img {
  max-width: 180px;
  max-height: 120px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .cm-media-img { max-width: 120px; max-height: 80px; }
  .hero-title   { font-size: 28px; }
  .section-title { font-size: 26px; }
  .cm-topbar-inner { padding: 0 16px; gap: 12px; }
}

.cm-link { color: var(--blue-primary); transition: color .3s; }
.cm-link:hover { color: #1a6fe0; text-decoration: underline; }

.es-highlight em { color: #dc3545; font-style: normal; font-weight: bold; }

.text-primary { color: var(--blue-primary) !important; }

.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 .2rem rgba(43,127,255,.2);
}

/* Bootstrap btn 覆盖 */
.btn-primary {
  background-color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.btn-primary:hover {
  background-color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn-outline-primary {
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.btn-outline-primary:hover {
  background-color: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}

/* 合作伙伴链接卡片 */
.partner-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
}
.partner-item-link:hover {
  text-decoration: none;
  color: var(--blue-primary);
}
.partner-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.partner-logo-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
