@charset "utf-8";
/* CSS Document */
/* 页面顶部大图展示样式 */

@font-face {
  font-family: 'MyFont';
  src: url('/fonts/AlibabaPuHuiTi-3-55-RegularL3.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}
.hero-banner img {
  width: 100%;              /* 自动适应宽度（最大宽1920px） */
  max-width: 1920px;        /* 最大宽度限制为1920像素 */
  height: 570px;            /* 固定高度 */
  object-fit: cover;        /* 保持图片比例并填满区域 */
  display: block;
  margin: 0 auto;           /* 居中对齐 */
}
/* 优势卡片区域整体容器 */
/* 整体区域：背景色、上下居中对齐 */
.platform-advantages-section {
  width: 100%;
  height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 标题样式 */
.platform-title {
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 36px;
  text-align: center;
  font-family: 'MyFont', sans-serif;
  font-weight: 700;
}

/* 容器div2：左右分布 */
.platform-container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}

/* 左侧div3：2行2列卡片区 */
.platform-left {
  width: 810px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* 每个卡片（div5~8） */
.advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 标题与图标并排 */
.advantage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* 标题文本 */
.advantage-title {
  font-size: 30px;
  color: #222;
  font-family: 'MyFont', sans-serif;
}

/* 小图标样式 */
.advantage-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* 文本描述 */
.advantage-desc {
  font-size: 18px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 15px;
	text-align: left;
}

/* 咨询按钮 */
.advantage-button {
  background-color: #3947ff;
  color: #fff;
  padding: 5px 30px;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  align-self: flex-start;
}

/* 右侧div4区域：一张图卡片 */
.platform-right {
  width: 380px;
  height: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
/* 品牌价值整体模块 div1 */
.brand-value-section {
  width: 100%;
  max-width: 1920px;
  height: 650px;
  background-color: #ffffff;
  margin: 0 auto;
  padding-top: 0px;
}
/* 标题样式 */
.brand-value-title {
  margin-top: 50px;
  font-size: 36px;
  text-align: center;
  font-family: 'MyFont', sans-serif;
  font-weight: 700;
}
/* 背景图容器样式 */
.brand-bg-container {
  width: 1200px;
  height:450px;
  margin-top: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
	margin: 0 auto;
	box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  justify-content: space-between; /* 左右分散对齐 */
  margin-top: 40px;
  background-color: #222;
}
.brand-bg-container1{
  width: 1019px;
  height:301px;
  background-image: url("../images/04.png"); /* 根据你的资源路径调整 */
	margin: 0 auto;
}