:root {
/*   --hfmes-about-primary: #2c5aa0;     /* 主蓝色 */
  --hfmes-about-secondary: #1e7e34;   /* 辅助绿色 */
  --hfmes-about-accent: #e67e22;      /* 强调橙色 */
  --hfmes-about-dark: #2c3e50;        /* 深灰色 */
  --hfmes-about-light: #f8f9fa;       /* 浅布景致 */
  --hfmes-about-border: #e0e0e0;      /* 边框色 */
  --hfmes-about-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  --hfmes-about-radius: 4px;
} */

.hfsoft-solution-hero .hfsoft-solution-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hfmes-about-reset * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ===== 页面庞器形状 ===== */
.hfmes-about-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.hfmes-about-breadcrumb a {
  color: var(--hfmes-about-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.hfmes-about-breadcrumb a:hover {
  color: var(--hfmes-about-accent);
  text-decoration: underline;
}

.hfmes-about-breadcrumb span {
  color: #888;
}

.hfmes-about-header {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--hfmes-about-primary);
}

.hfmes-about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hfmes-about-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hfmes-about-tagline {
  font-size: 1.2rem;
  color: var(--hfmes-about-primary);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid var(--hfmes-about-secondary);
}

.hfmes-about-meta {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.hfmes-about-section {
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--hfmes-about-border);
}

.hfmes-about-section:last-of-type {
  border-bottom: none;
}

.hfmes-about-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--hfmes-about-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hfmes-about-border);
}

.hfmes-about-section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hfmes-about-primary);
  margin: 20px 0 12px;
}

.hfmes-about-highlight {
  background-color: rgba(44, 90, 160, 0.11);
  padding: 2px 4px;
  border-radius: 2px;
  font-weight: 500;
}


/* ===== 服务列表容器 ===== */
.hfmes-about-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px; 
}

/* ===== 单个服务卡片形状 ===== */
.hfmes-about-service-item {
    background: #f8fafc;
    border-left: 5px solid #0a46e4; 
    padding: 25px 22px;
    border-radius: 16px; 
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

/* ===== 卡片悬停交互成效 ===== */
.hfmes-about-service-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 40px rgba(10, 70, 228, 0.12);
    background: #ffffff; 
    border-left-color: #00b2ff;
}

/* ===== 卡片内关键词形状 ===== */
.hfmes-about-service-item strong {
    display: block; 
    font-size: 1.3rem;
    color: #1a365d; 
    margin-bottom: 12px;
    font-weight: 700;
}

/* ===== 卡片内描述文字形状 ===== */
.hfmes-about-service-item:not(strong) {
    color: #2d3748; 
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

/* ===== 移动端响应式优化 ===== */
@media (max-width: 768px) {
    .hfmes-about-section {
        /* margin: 40px 20px;  *//* 左右边距 */
        /* padding: 30px 25px; */
        border-radius: 16px;
    }

    .hfmes-about-section-title {
        font-size: 2.1rem;
    }

    .hfmes-about-section > p {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .hfmes-about-service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hfmes-about-service-item {
        padding: 22px 20px;
    }
}

/* ===== 价值主张卡片 ===== */
.hfmes-about-value-card {
  background-color: #fff;
  border: 1px solid var(--hfmes-about-border);
  border-radius: var(--hfmes-about-radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--hfmes-about-shadow);
  transition: box-shadow 0.3s;
}

.hfmes-about-value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hfmes-about-value-title {
  font-size: 1.3rem;
  color: var(--hfmes-about-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.hfmes-about-value-title::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--hfmes-about-secondary);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 0.9rem;
}

/* ===== 优化内容区域 ===== */
.hfmes-about-sge-section {
  background-color: #f0f9ff;
  padding: 24px;
  border-radius: var(--hfmes-about-radius);
  border: 1px solid #cce7ff;
  margin: 30px 0;
}

.hfmes-about-faq {
  margin-top: 24px;
}

.hfmes-about-faq-item {
  background-color: #fff;
  border-radius: var(--hfmes-about-radius);
  padding: 18px;
  margin-bottom: 16px;
  border-left: 4px solid var(--hfmes-about-accent);
}

.hfmes-about-faq-question {
  font-size: 1.1rem;
  color: var(--hfmes-about-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hfmes-about-faq-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--hfmes-about-accent);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

.hfmes-about-faq-answer {
  padding-left: 34px;
}

.hfmes-about-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
  border-radius: var(--hfmes-about-radius);
  margin-top: 40px;
  border: 1px solid #cce7ff;
}

.hfmes-about-cta-title {
  font-size: 1.8rem;
  color: var(--hfmes-about-primary);
  margin-bottom: 16px;
  border: none;
}

.hfmes-about-cta-text {
  /* max-width: 700px; */
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.hfmes-about-button {
  display: inline-block;
  background-color: #4a87ee;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: var(--hfmes-about-radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.hfmes-about-button:hover {
  background-color: #234a8c;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.hfmes-about-communication {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--hfmes-about-light);
  border-radius: var(--hfmes-about-radius);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.hfmes-about-com-title {
  font-size: 1.2rem;
  color: var(--hfmes-about-primary);
  margin-bottom: 12px;
}

.hfmes-about-chat-button {
  background-color: var(--hfmes-about-secondary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--hfmes-about-radius);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hfmes-about-chat-button:hover {
  background-color: #1a6c2e;
}

.hfmes-about-wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hfmes-about-wechat img {
  width: 120px;
  height: 120px;
  margin-top: 10px;
  border: 1px solid var(--hfmes-about-border);
  border-radius: var(--hfmes-about-radius);
  padding: 8px;
  background-color: white;
}


.hfmes-style {
    font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
    color: #333;
    line-height: 1.6;
    /* max-width: 1000px; */
    margin: 20px auto;
    padding: 0 15px;
}

.hfmes-style h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #222;
    border-bottom: 2px solid #1e6cd4;
    padding-bottom: 8px;
    margin: 1.2em 0 0.8em;
}
.hfmes-style h2:first-child {
    margin-top: 0;
}

.hfmes-style h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #1e6cd4;
    margin: 1.5em 0 0.8em;
}

.hfmes-style p {
    margin: 0.8em 0 1em;
}

.hfmes-style ul,
.hfmes-style ol {
    margin: 0.8em 0;
    padding-left: 2em;
}

.hfmes-style li {
    margin-bottom: 0.6em;
}

.hfmes-style .highlight {
    background-color: #fff9c4;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 600;
    color: #d32f2f;
}

.hfmes-style a {
    color: #1e6cd4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.hfmes-style a:hover {
    color: #f60;
    text-decoration: underline;
}

.ms-services-section {
    background-color: #f5f9ff;
    padding: 40px 0;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

.ms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ms-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.ms-title-main {
    font-size: 2.4rem;
    color: #1a2b4c;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.ms-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2a6eff;
    border-radius: 2px;
}

.ms-title-sub {
    font-size: 1.1rem;
    color: #6a7890;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ms-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.ms-service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(42, 110, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid #e8f0ff;
}

.ms-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2a6eff, #5d9cff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ms-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(42, 110, 255, 0.15);
}

.ms-service-card:hover::before {
    transform: scaleX(1);
}

.ms-service-card:hover .ms-service-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2a6eff, #5d9cff);
}

.ms-service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f0ff, #d4e3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.ms-icon {
    font-size: 32px;
    color: #2a6eff;
    transition: all 0.3s ease;
}

.ms-service-card:hover .ms-icon {
    color: #ffffff;
}

.ms-service-name {
    font-size: 1.4rem;
    color: #1a2b4c;
    margin-bottom: 16px;
    font-weight: 700;
}

.ms-service-desc {
    font-size: 1rem;
    color: #6a7890;
    line-height: 1.7;
}

/* 图标界说 */
.ms-icon-tasks::before {
    content: "?";
    font-size: 32px;
}

.ms-icon-warehouse::before {
    content: "?";
    font-size: 32px;
}

.ms-icon-clipboard::before {
    content: "?";
    font-size: 32px;
}

.ms-icon-chart::before {
    content: "?";
    font-size: 32px;
}

.ms-icon-toolbox::before {
    content: "?";
    font-size: 32px;
}

.ms-icon-display::before {
    content: "?";
    font-size: 32px;
}

/* 动画成效 */
.ms-animate-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: ms-fade-up 0.8s forwards;
}

.ms-animate-fade:nth-child(1) { animation-delay: 0.1s; }
.ms-animate-fade:nth-child(2) { animation-delay: 0.2s; }
.ms-animate-fade:nth-child(3) { animation-delay: 0.3s; }
.ms-animate-fade:nth-child(4) { animation-delay: 0.4s; }
.ms-animate-fade:nth-child(5) { animation-delay: 0.5s; }
.ms-animate-fade:nth-child(6) { animation-delay: 0.6s; }

@keyframes ms-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .ms-services-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .ms-services-section {
        padding: 60px 0;
    }
    
    .ms-title-main {
        font-size: 2rem;
    }
    
    .ms-services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ms-service-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ms-services-section {
        padding: 50px 0;
    }
    
    .ms-section-title {
        margin-bottom: 40px;
    }
    
    .ms-title-main {
        font-size: 1.8rem;
    }
    
    .ms-title-sub {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .ms-service-icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .ms-icon {
        font-size: 28px;
    }
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .hfmes-about-container {
    padding: 16px;
    margin: 10px auto;
  }
  
  .hfmes-about-title {
    font-size: 1.8rem;
  }
  
  .hfmes-about-section-title {
    font-size: 1.4rem;
  }
  
  .hfmes-about-service-list {
    grid-template-columns: 1fr;
  }
  
  .hfmes-about-sge-section {
    padding: 16px;
  }
  
  .hfmes-about-cta {
    padding: 24px 16px;
  }
  
  .hfmes-about-communication {
    flex-direction: column;
    gap: 20px;
  }
  
  .hfmes-about-button {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hfmes-about-title {
    font-size: 1.6rem;
  }
  
  .hfmes-about-tagline {
    font-size: 1.1rem;
  }
  
  .hfmes-about-section {
    margin-bottom: 28px;
  }
}

/* ===== 打印优化 ===== */
@media print {
  .hfmes-about-breadcrumb,
  .hfmes-about-button,
  .hfmes-about-communication {
    display: none;
  }
  
  .hfmes-about-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: #000;
  }
  
  .hfmes-about-title,
  .hfmes-about-section-title {
    color: #000;
  }
  
  .hfmes-about-value-card,
  .hfmes-about-faq-item {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}<!--耗时1776123354.2709秒-->