/* 全局色彩变量 统一管控 */
:root {
  --primary: #2d71bc;
  --primary-light: #f0f6fc;
  --primary-dark: #235a99;
  --text-main: #1f2937;
  --text-normal: #4b5563;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --bg-gray: #f9fafb;
	--white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 30px rgba(45, 113, 188, 0.12);
	--shadow-base: 0 12px 40px rgba(15, 40, 80, 0.08);
	--border-line: rgba(200, 169, 126, 0.25);
}


.card-list .card-item{
	padding: 46px 37px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 3px 3px 18px 0 rgba(204, 204, 204, 0.4);
	margin-bottom: 28px;
}

.card-list .card-item .card-left{
	width: 60%;
	padding-right: 40;
}


.card-list .card-item .card-right{
	width: 40%;
	padding-left: 30;
}

.card-list .card-item .card-title {
	font-size: 30px;
	line-height: 36px;
	color: #2d71bc;
	font-weight: 700;
	display: flex;
	margin-bottom: 30px;
}

.card-list .card-item .card-title .line{
	width: 5px;
	background: #2d71bc;
	margin-right: 20px;
}

.card-list .card-item .card-left .content-desc{
	font-size: 16px;
	font-weight: 300;
	line-height: 23px;
	color: #3f424a;
}
.block1 .card-item .tips{
	font-size: 16px;
	color: #000;
	font-weight: 300;
	margin-top: 10px;
	line-height: 28px;
}

.card-list .card-item .card-left .rocket-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 248px;
	height: 64px;
	border-radius: 64px;
	color: #fff;
	font-family: "Noto Sans SC";
	font-size: 28px;
	font-weight: 700;
	background-color: #2d71bc;
	cursor: pointer;
}

.card-list .card-item .card-left .rocket-btn .rocket-img{
	width: 28px;
	height: 28px;
	margin-right: 14px;
}

.t-yuanjiao{
	border-radius: 10px;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
	line-height: 1.8;
}

/* 顶部横幅 */
.page-banner {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--bg-gray);
  margin-bottom: 60px;
}
.banner-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}
.banner-sub {
  font-size: 20px;
  color: var(--text-normal);
  margin-bottom: 20px;
  font-weight: 500;
}
.banner-desc {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
}

/* 平台卡片 基础样式 */
.platform-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 48px;
  transition: all 0.35s ease;
  overflow: hidden;
}
/* 交替布局：偶数项 图文反转 */
.platform-card:nth-child(2) {
  flex-direction: row-reverse;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.25s; }
.platform-card:nth-child(3) { animation-delay: 0.4s; }

/* 图片区域 固定比例 */
.card-pic {
  flex: 0 0 34%;
  position: relative;
}
.card-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.platform-card:hover .card-pic img {
  transform: scale(1.04);
}

/* 文字内容区域 */
.card-content-wrap {
  flex: 1;
  padding: 40px;
}

/* 卡片头部 */
.card-headers {
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.card-headers h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
}
.platform-tag {
  padding: 6px 20px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 500;
}

/* 内容双栏布局 */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* 内容板块 */
.content-block {
  margin-bottom: 28px;
}
.block-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-title::before {
  content: "";
  width: 4px;
  height: 18px;
  background-color: var(--primary);
  border-radius: 2px;
}
.block-text {
  font-size: 15px;
  color: var(--text-normal);
  margin-bottom: 8px;
	line-height: 1.8;
}
.text-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* 标签组 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.tag-item {
  padding: 5px 14px;
  background: var(--bg-gray);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-normal);
  transition: 0.3s;
	line-height: 1.8;
}
.tag-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* 优势列表 */
.adv-list {
  list-style: none;
}
.adv-list li {
  font-size: 15px;
  color: var(--text-normal);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
	line-height: 1.8;
}
.adv-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 底部总结 */
.summary-box {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 36px 40px;
  margin: 20px 0 70px;
  border: 1px solid var(--border);
}
.summary-box h3 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 4px solid var(--primary);
}
.summary-text {
  font-size: 16px;
  color: var(--text-normal);
  line-height: 1.9;
}


/* 仓储网格卡片 */
.ware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}
.ware-card {
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.ware-card:hover {
  border-color: var(--gold);
}
.ware-card h3 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
	border-bottom: 1px dashed #cecece;
}
.ware-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}


/* 平板适配 */
@media (max-width: 992px) {
  /* 移动端取消交替，统一上图下文 */
  .platform-card,
  .platform-card:nth-child(2) {
    flex-direction: column;
  }
  .card-pic {
    flex: none;
    height: 260px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .page-banner {
    padding: 60px 20px;
  }
  .banner-title {
    font-size: 36px;
  }
}

/* 手机适配 */
@media (max-width: 576px) {
  .card-content-wrap {
    padding: 24px 20px;
  }
  .card-headers h2 {
    font-size: 22px;
  }
  .card-pic {
    height: 200px;
  }
  .summary-box {
    padding: 24px 20px;
  }
  .banner-title {
    font-size: 28px;
  }
}




@media screen and (max-width: 790px) {
	.card-list .card-item .card-left{
		width: 100%;
		padding-right:0px;
	}
	.card-list .card-item .card-right{
		width: 100%;
		padding-left: 0px;
	}
}

/* 移动端适配 */
@media (max-width: 768px) {
  .nav-menu {display: none;}
  .banner-content h1 {font-size: 32px;}
  .section-title h2 {font-size: 28px;}
  .container {margin: 50px auto;}
}



/* 语言切换器容器 */
.language-switcher {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    margin-left: 15px;  /* 根据你的设计调整间距 */
    z-index: 1000;
}

/* 当前语言显示区域 */
.language-switcher .current-lang {
    padding: 5px 34px 5px 18px;
    background-color: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.2s;
    position: relative;
}
.language-switcher .current-lang:hover {
    background-color: #e9e9e9;
}

/* 下拉箭头 */
.language-switcher .arrow-down {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.2s;
}
.language-switcher:hover .arrow-down {
    transform: translateY(-50%) rotate(180deg);
}

/* 下拉菜单选项列表 */
.language-switcher .lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1001;
}
.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}
.language-switcher .lang-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}
.language-switcher .lang-dropdown li:hover {
    background-color: #f0f0f0;
}

.t_yyqh{
	height: 80px;
}



/* 修复二级菜单宽度不受一级菜单限制 */
.ys_hd_pc .t_naverwai {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);  /* 水平居中 */
    
    /* 🔥 关键：让二级菜单宽度由内容决定，不受父级宽度限制 */
    width: max-content;           /* 根据内容自动撑开宽度 */
    min-width: 150px;             /* 保证最小宽度，防止过窄 */
    max-width: 260px;             /* 可选，防止过宽超出屏幕 */
    
}


#translate {
	display: none;
}

.t_sypt1zi {
		word-break: break-all; 
    white-space: normal;
    max-width: 100%;
}

.t_qyjj_swiper{
	width: 578px;
	height: 434px;
}