a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: PingFangSC-Regular, Helvetica Neue, Hiragino Sansgb, Arial,
    Microsoft Yahei, Microsoft Yahei ui, Simsun, Sans-serif;
  vertical-align: baseline;
  outline: 0;
  word-break: break-word;
  word-wrap: break-word;
}
span {
  display: inline-block;
}

/* 供应链管理系统页面样式 */
:root {
  --primary: #ff812d;
  --primary-dark: #fe2f63;
  --secondary: #ff7d41;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --primary-color: #f86848;
  --secondary-color: #ff8a70;
  --text-color: #333;
  --bg-dark: #343a40;
  --border-radius: 8px;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Banner样式 */
.product-banner {
  height: 400px;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff812d 0%, #fe2f63 67.5%, #ff7d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern.svg") repeat;
  opacity: 0.1;
}

.product-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.product-banner-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-banner-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-banner-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: auto;
  z-index: 1;
}

/* 产品章节样式 */
.product-section,
.core-abilities,
.application-scenarios,
.service-plans {
  padding: 80px 0;
}

.product-section.bg-light,
.core-abilities.bg-light,
.application-scenarios.bg-light,
.service-plans.bg-light {
  background-color: var(--bg-light);
}

.section-title,
.sortof-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after,
.sortof-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 2px;
}

/* 核心能力卡片样式 */
.abilities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.ability-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  width: calc(25% - 30px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ability-card:hover::before {
  opacity: 1;
}

.ability-icon {
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.ability-icon i {
  font-size: 54px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.ability-card:hover .ability-icon i {
  transform: scale(1.1);
  color: var(--primary-dark);
}

.ability-icon img {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
}

.ability-card:hover .ability-icon img {
  transform: scale(1.1);
}

.ability-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.ability-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 应用场景 */
.application-scenarios {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.scenarios-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.scenario-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(248, 104, 72, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.scenario-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
  text-align: center;
}

.scenario-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.scenario-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.scenario-features li {
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.scenario-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.scenario-image {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
}

.scenario-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.scenario-card:hover .scenario-image img {
  transform: scale(1.05);
}

/* 服务方案 */
.service-plans {
  padding: 60px 0;
  background-color: white;
}

.service-plans .container {
  max-width: 1440px;
}

.service-plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-plan-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
}

.service-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-plan-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(248, 104, 72, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.service-plan-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
  text-align: center;
}

.service-plan-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.service-plan-features {
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-plan-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.service-plan-feature i {
  color: var(--primary-color);
  margin-right: 12px;
  margin-top: 4px;
}

.service-plan-feature-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-plan-cta {
  text-align: center;
  margin-top: auto;
}

/* 统一按钮样式 */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  gap: 8px;
  box-shadow: var(--box-shadow);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: var(--secondary-color);
  color: white;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .scenarios-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scenarios-container {
    grid-template-columns: 1fr;
  }

  .service-plans-container {
    grid-template-columns: 1fr;
  }
}

/* 维持现有样式兼容 */
.maxwidth {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.padBg {
  padding: 80px 0;
}

.bggray {
  background-color: var(--bg-light);
}

.flex-column {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.flex-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flex-column.flex-center {
  justify-content: space-between;
}

.flex-column.flex-middle {
  align-items: center;
}

.purchase_index_navList_left_img,
.purchase_index_navList_right_img {
  flex: 1;
  padding: 30px;
}

.purchase_navList_right_text,
.purchase_navList_left_text {
  flex: 1;
  padding: 40px;
}

.imgsize {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.flex-column:hover .imgsize {
  transform: scale(1.05);
}

.scf_navList_rightTitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.fw {
  font-weight: 700;
}

.scf_navList_rightLable {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  padding: 5px 15px;
  border-radius: 4px;
}

.scf_navList_rightText {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 20px 0;
}

.PingFangSCMedium {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.bgbai {
  background-color: var(--white);
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.colororange {
  color: var(--primary);
}

.home_more {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.home_product_saasMoreicon {
  margin-left: 5px;
}

.br12 {
  border-radius: 12px;
}

/* 适应商城架构部分的样式 */
.plan-box .play-scene-container {
  text-align: center;
}

.plan-box .play-scene-container.ecommerce img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.plan-box .play-scene-container.ecommerce img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 容器样式 */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* 修改各板块最大宽度 */
.core-abilities .container,
.plan-box .play-scene-container,
.service-plans .container,
.maxwidth {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* 商城架构图片限制 */
.plan-box .play-scene-container.ecommerce img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 1400px; /* 确保图片不超过容器 */
}

/* 文本对齐 */
.text-center {
  text-align: center;
}

/* 弹窗样式 */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: popupFadeIn 0.3s;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
  text-align: center;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-item i {
  width: 30px;
  color: var(--primary-color);
  margin-right: 15px;
}

.qrcode-container {
  text-align: center;
  margin: 20px 0;
}

.contact-qrcode {
  max-width: 200px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* 优势卡片新样式 */
.advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.advantage-card {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(248, 104, 72, 0.1);
  border-radius: 50%;
  margin: 0 auto 15px;
}

.advantage-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
  text-align: center;
}

.advantage-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
}

.advantage-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
  text-align: center;
}

/* 卡片组件统一样式 */

.advantage-card,
.scenario-card,
.service-plan-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  min-height: 350px;
}

.ability-card:hover,
.advantage-card:hover,
.scenario-card:hover,
.service-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 统一卡片标题样式 */
.ability-title,
.advantage-title,
.scenario-title,
.service-plan-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}

/* 统一卡片副标题样式 */
.advantage-subtitle,
.service-plan-subtitle {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
}

/* 统一卡片描述文本样式 */
.ability-desc,
.advantage-desc,
.scenario-desc,
.service-plan-feature-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

/* 核心优势部分优化 */
.advantages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* 应用场景特性列表样式优化 */
.scenario-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.scenario-features li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 10px;
}

/* 服务方案特性优化 */
.service-plan-features {
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-plan-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .advantages-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-container,
  .scenarios-container,
  .service-plans-container {
    grid-template-columns: 1fr;
  }

  .ability-card,
  .advantage-card,
  .scenario-card,
  .service-plan-card {
    min-height: auto;
  }
}
