/* 全局基础样式 */
:root {
	--primary-blue: #00AAFF;
	--primary-green: #0AFFAB;
	--dark-blue: #001880;
	--text-dark: #1a1a1a;
	--text-light: #ffffff;
	--bg-dark: #000000;
	--news-primary-blue: #001880;
	--news-primary-green: #0AFFAB;
	--news-bg-light: #F1F1F1;
	--news-text-dark: #1a1a1a;
	--news-text-light: #ffffff;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Microsoft YaHei", sans-serif;
}

body {
	background-color: var(--text-light);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.8;
}

/* 核心：1440px 居中容器 */
.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 核心中心容器：1440px 居中 */
.news-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
  }

/* 基础 Flex 容器 */
.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.center {
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* 按钮样式 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 30px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: opacity 0.3s;
}
.btn:hover { opacity: 0.8; }
.btn-blue { background-color: var(--primary-blue); color: var(--text-light); }
.btn-green { background-color: var(--primary-green); color: var(--dark-blue); }
.btn-blue:hover{ background-color: var(--primary-blue) !important; color: var(--text-light)!important; }
.btn-green:hover { background-color: var(--primary-green) !important; color: var(--dark-blue)!important; }
/* 导航栏 */
.header{
	background: #001880;
	color: #fff;
	border-bottom: 5px solid #0AFFAB ;
	
}
.header .bg-dark{
	background-color: #001880 !important;
	height:80px;
}

.header .navbar-main{
	margin-left: 50px;
}
.header  .navbar-left{
	align-items: center;
	gap: 15px;
}
.header  .navbar-left img{
	width:20px;
 }
.header .dropdown-toggle::after{
	background: url('static/picture/toggle.png');
	background-size: cover;
	width: 13px;
	height:7px;
	border: none;
	vertical-align: 0;
}

.header .navbar-main .nav-item{
	margin-right: 25px;

}
.navbar1 {
	width: 100%;
	background-image: url('static/picture/h3KY1eb39YuQNYWtP386Etj3nlQ.png');
	background-size: cover;
	background-position: center;
	height: 100px;
	position: sticky;
	top: 0;
	z-index: 100;
}

/* 首屏 Banner */
.hero-section {
	position: relative;
	width: 50%;


}


.products-cards__container{

	--size--32: 2rem;

    height: 540px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
	margin-top: 50px;


	
}

.bd{
	width: 100%;
	height:100%;
}

.bd .swiper {
    width: 100%;
    height: 100%;  /* 关键：100%高度 */
}

/* 通用区块样式 */
.section {
	padding: 80px 0;
	
	width: 100%;
}

.about-section{
	padding-top: 120px;
}

.section-title {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	
}



.section-subtitle {
	font-size: 14px;
	margin-bottom: 40px;
	max-width: 500px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	min-height: 45px;
}

.about-section .btn-blue{
	position: relative;
	/*bottom: -150px;*/
}

.hero-section {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}
.hero-section img{
	object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: inline-block;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

/* 关于我们 */
.about-section {
	background-image: url('static/picture/pexels-kamil-gr-3609723-5398480.png');
	background-size: cover;
	background-position: right;
	color: var(--text-light);
	text-align: center;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

/* 产品系列 */
.products-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	width: 100%;
}
.product-card {
	background-image: url('static/picture/T700dSs4dTeLFBKyC1jWj4FGKY.png');
	background-size: cover;
	border-radius: 20px;
	padding: 40px 20px;
	width: calc(33.333% - 20px);
	min-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--text-light);
	padding-bottom: 0;
	
}
.product-card img {
	height: 270px;
    object-fit: contain;
    margin: 20px 0;
    margin-top: 80px;
}
.product-title {
	color: var(--primary-green);
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}
.product-actions {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

/* 解决方案 */
.solutions-section {
	
	color: var(--text-light);
	text-align: center;
	padding-top: 0;
	
}

.solutions-section .solutions1{
	background-image: url('static/picture/aaRxmy7Go4lN7jmHeWv07Oelg.png');
	background-size: cover;
	background-position: center;
	height: 654px;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
.solutions-section .section-title { color: var(--primary-green);margin-top: 70px; margin-bottom: 50px;}
.solutions-section .btn-blue{width: 291px; margin: 0 auto;margin-bottom: 100px;}
.solutions-section .section-subtitle{
	max-width: 1000px;
}
/* 合作企业 */
.partners-section { background-color: #fff; text-align: center;padding-top: 0;}
.partners-section img { display: inline-block; }

.partners-section .partners{
	background-image: url(images/bg1.png);
    background-size: cover;
    background-position: center;
    height: 800px;
    background-repeat: no-repeat;
    border-radius: 20px;
	padding-top: 60px;
    padding-left: 0px;
    padding-right: 0px;
}

.partners-section .section-title{
	color: var(--primary-green);
	text-align: center;
	margin-bottom: 30px;
}

.section-structure .news-cases-grid{
	flex-direction: column;
	color:#fff;
}
.section-structure  .news-case-title{
	color:#fff;
}
.section-structure .news-case-card{
	width: 100%;
    min-width: initial;
    max-width: initial;
	border-radius: 15px;
	align-items: start;
	background: #4E66CE;
    background: linear-gradient(180deg, rgba(78, 102, 206, 1) 0%, rgba(26, 50, 154, 1) 56%, rgba(39, 63, 167, 1) 81%);
}

.news-case-desc{
	padding: 15px;
}

/* 新闻中心 */
.news-section {
	
	color: var(--text-light);
	text-align: center;
}
.news-section .section-title { color: var(--primary-green);    padding-top: 50px; }
.news-section-desc{
	background-image: url('static/picture/9IZ2bp0O1SFclbw3LLZoJWWss.png');
	height: 324px;
	background-size: cover;
	background-position: center;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.news-section-bg{
	background-image: url('static/picture/NKMJtcorvUhJxyFOmvmHbHmybIQ.png');
	background-size: cover;
	background-position: center;
	height: 697px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

/* 最近事件 */
.events-section {

	color: var(--text-light);
	text-align: center;
	padding-top: 0;
}
.actimg{
	border-radius: 25px;
}
.events-section .events-container{
	background-image: url('static/picture/deF0Imd37OyTqLBruOJmkQJSoM.png');
	background-size: cover;
	background-position: center;
	border-radius: 25px;
	padding: 50px;
}
.events-section .section-title { color: var(--primary-green); }
.events-slider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 0px;
}
.slider-arrow { width: 50px; cursor: pointer; }
.swiper-pagination1{
	position: relative;
	width: auto !important;
	bottom: initial !important;
    top: initial !important;
    left: initial !important;
}

.swiper-pagination1 .swiper-pagination-bullet {
	border-radius: 50%;
	width: 15px;
	height: 15px;
	background: #ebebeb;
}

/* =========================================
   您准备好了吗 (CTA Section) 
   ========================================= */
.cta-section {
	background-color: var(--dark-blue); /* #001880 */
	color: var(--text-light);
	padding: 100px 0;
}
.cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}
.cta-text {
	flex: 1;
	min-width: 300px;
}
.cta-title {
	font-size: 60px;
	color: var(--primary-green);
	margin-bottom: 20px;
	letter-spacing: 3px;
}
.cta-subtitle { 
	font-size: 30px; 
	line-height: 1.7;
	letter-spacing: 1.5px; 
}
.cta-btn-wrapper {
	position: relative;
	cursor: pointer;
}
/* 模拟原图中的圆角矩形按钮和联系我们文字 */
.cta-btn-bg {
	width: 311px;
	height: 43px;
	background-color: var(--primary-blue);
	border-radius: 21.5px;
	display: flex;
	align-items: center;
	color: var(--text-light);
	font-size: 12px;
	font-weight: bold;
	justify-content: center;
}

/* =========================================
   底部 (Footer Section)
   ========================================= */
.footer {
	background-color: var(--bg-dark); /* 纯黑背景 */
	color: var(--text-light);
	padding: 80px 0 20px;
	position: relative;
}

/* 顶部：支持与帮助 */
.footer-help-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 0px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: 40px;
	gap: 30px;
	background:#09FFAA ;
	padding-top: 20px;
}
.help-grid{
	max-width: 710px;
	margin-top: 50px;
}
.help-grid .col-12{
	margin-bottom: 30px;
}
.help-grid img{
	width:73px;
	height: auto;
	margin-right: 30px;
}
.help-desc h5{
   color: rgb(0, 24, 128);
   font-size: 18px;
}
.help-desc p{
	color: rgb(0, 24, 128);
   font-size: 14px;
   padding-right: 30px;
}
.help-top-ct{
	display: flex;
	justify-content: space-between;
}
.technical-support {
	font-size: 51px;
	font-weight: 900;
	color: var(--dark-blue); /* #001880 深蓝色 */
	line-height: 1.2;
}
.footer-contact{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 100px;
}
.help-text-block {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.help-text-block h2 {
	font-size: 48px;
	font-weight: bold;
}
.help-text-block a {
	font-size: 38px;
    font-weight: bold;
    color: #001880;
    background-color: var(--primary-green);
    border-radius: 21.5px;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
}

/* 中部：导航列与社交图标 */
.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	gap: 40px;
	margin-bottom: 60px;
}
.footer-col { 
	min-width: 100px; 
}
.footer-col h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--text-light);
}
.footer-col ul { list-style: none;padding-left: 0; }
.footer-col ul li {
	font-size: 14px;
	margin-bottom: 15px;
	color: var(--text-light);
}

/* 社交图标排布 */
.footer-socials {
	display: flex;
	gap: 25px;
	align-items: center;
}
.footer-socials img { 
	width: 40px; 
	height: auto; 
	object-fit: contain;
	cursor: pointer;
	transition: transform 0.3s;
}
.footer-socials img:hover {
	transform: translateY(-5px);
}

/* 底部：版权和法律链接 */
.footer-bottom {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: var(--text-light);
	gap: 20px;
}
.footer-legal {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}


.news-banner {
	--news-text-light: #ffffff;
	background-image: url('static/picture/Bq5oGjs28OMuj6sGJ9bPPO5mJ8.png');
	background-size: cover;
	background-position: top;
	padding: 120px 0;
	color: var(--news-text-light);
	text-align: center;
}

.news-banner-title {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 30px;
}

.news-banner-desc {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 50px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

.news-btn-cyan {
	--news-primary-blue: #001880;
	--news-primary-green: #0AFFAB;
	background-color: var(--news-primary-green);
	color: var(--news-primary-blue);
	font-size: 18px;
	font-weight: bold;
	padding: 15px 50px;
	border-radius: 50px;
	display: inline-block;
	cursor: pointer;
	transition: opacity 0.3s;
}

.news-btn-cyan:hover {
	opacity: 0.8;
}

.news-container .swiper-pagination1 .swiper-pagination-bullet{
	background: #001880;
}

 /* ====== 右侧：表单收集区 ====== */
 .cs2-form-col {
    width: 100%;
    max-width: 500px;
    background-color: #FFF;
    border-radius: 30px;
    padding: 40px 30px; /* 根据内框 440px 宽度倒推出来的 padding 30px */
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .cs2-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px; /* 还原字段间的等高间距 */
  }
  .cs2-form-group label {
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 9px;
  }
  .cs2-form-group label span {
    color: #FF0000; /* 红色的星号必填项标识 */
    margin-left: 4px;
  }
  .cs2-form-group input,  .cs2-form-group select {
    width: 100%;
    height: 31px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 2px;
    padding: 0 12px;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: box-shadow 0.2s;
  }
  .cs2-form-group input:focus {
    box-shadow: inset 0 0 0 1.5px rgba(0, 24, 128, 0.4);
  }
  .cs2-submit-btn {
    margin-top: 25px;
    width: 160px;
    height: 50px;
    background-color: #001880;
    color: #FFF;
    border: none;
    border-radius: 25px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
  }
  .cs2-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .ajax-contact-form1{
	border-radius: 0;
	box-shadow: none;
  }

/* 响应式调整 */
@media (max-width: 992px) {
	.product-card { width: calc(50% - 15px); }
	.help-text-block h2, .help-text-block a { font-size: 32px; }
	.cta-title { font-size: 40px; }
	.cta-subtitle { font-size: 20px; }
	.technical-support { font-size: 40px; }
	.news-banner-title {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.product-card { width: 100%; }
	.footer-grid { flex-direction: column; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.footer-legal { justify-content: center; }
	.help-text-block { flex-direction: column; align-items: flex-start; }
	.footer-help-top { flex-direction: column; align-items: flex-start; }
}


/* 基础重置与全屏背景 */
.cw-v5-wrapper {
	box-sizing: border-box;
	font-family: "Microsoft YaHei", "Microsoft YaHei Placeholder", sans-serif;
	/* 还原整个页面的背景大图 */
	background-image: url('../static/picture/CCfeTUs2cnSvuZYrajLHY5DMA.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color: #fff;
	margin: 0;
	padding: 60px 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .cw-v5-wrapper * {
	box-sizing: border-box;
  }
  
  /* 核心定宽容器：最大宽度 1440px，居中对齐 */
  .cw-v5-container {
	width: 100%;
	max-width: 1440px;
	display: flex;
	flex-direction: column;
	gap: 100px; /* 顶部内容与底部弹窗的间距 */
  }
  
  /* =========================================
	 顶部内容区：两列布局
	 ========================================= */
  .cw-v5-top-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
	flex-wrap: wrap;
  }
  
  /* 顶部左侧：标题与客服插画 */
  .cw-v5-top-left {
	flex: 1;
	min-width: 320px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 30px;
  }
  
  .cw-v5-main-headline {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	color: rgb(0, 24, 128);
	margin: 0;
  }
  
  .cw-v5-main-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin: 0;
  }
  
  .cw-v5-main-desc p {
	margin: 0 0 15px 0;
  }
  
  .cw-v5-hero-image {
	width: 100%;
	max-width: 430px;
	height: auto;
	object-fit: contain;
	margin-top: 20px;
  }
  
  /* 顶部右侧：表单请求说明与下拉框模拟 */
  .cw-v5-top-right {
	flex: 1;
	min-width: 320px;
	max-width: 537px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px; /* 稍微错开视觉高度 */
  }
  
  .cw-v5-request-label {
	font-size: 14px;
	color: #333;
	margin: 0;
  }
  
  /* 还原下拉框设计 (原生 CSS 替代原 Framer 的绝对定位图片和SVG边框) */
  .cw-v5-dropdown-mock {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 40px;
	border: 1px solid #001880;
	border-radius: 20px;
	padding: 0 10px 0 20px;
	background-color: #fff;
	cursor: pointer;
  }
  
  .cw-v5-dropdown-text {
	font-size: 14px;
	color: rgb(102, 102, 102);
  }
  
  .cw-v5-dropdown-icons {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .cw-v5-dropdown-icon-img {
	height: 20px;
	object-fit: contain;
  }
  
  .cw-v5-support-desc {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	margin-top: 20px;
  }
  
  /* =========================================
	 底部模块：Cookie 偏好设置管理弹窗
	 ========================================= */
  .cw-v5-preferences-modal {
	width: 100%;
	max-width: 1000px;
	background-color: #F2F2F2;
	border-radius: 20px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  /* 弹窗头部：Logo与标题 */
  .cw-v5-modal-header {
	display: flex;
	align-items: center;
	padding: 30px 40px;
	gap: 40px;
	justify-content: space-between;
  }
  
  .cw-v5-modal-logo {
	height: 43px;
	object-fit: contain;
  }
  
  .cw-v5-modal-title {
	font-size: 36px;
	color: rgb(51, 51, 51);
	margin: 0;
	font-weight: normal;
  }
  
  /* 弹窗主体结构：左侧导航 + 右侧内容 */
  .cw-v5-modal-body {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
  }
  
  /* 侧边栏导航 */
  .cw-v5-sidebar {
	width: 300px;
	display: flex;
	flex-direction: column;
	padding: 20px 0 40px;
	background-color: transparent; /* 背景色同 Modal 的 #F2F2F2 */
	padding-top: 0;
  }
  
  .cw-v5-nav-item {
	font-size: 14px;
	color: rgb(51, 51, 51);
	padding: 15px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  /* 激活状态的菜单项（模拟原设计中左侧带蓝条的白色选中框） */
  .cw-v5-nav-item.cw-v5-active {
	background-color: #fff;
	color: rgb(0, 24, 128);
	font-weight: bold;
	border-left: 4px solid #001880;
	border-radius: 0 10px 10px 0;
	margin-right: -10px; /* 制造与右侧白色区域的无缝衔接 */
	position: relative;
	z-index: 2;
  }
  
  
  
  
  /* 侧边栏容器 */
  .cw-v5-sidebar {
	width: 300px;
	padding: 0 0 40px 0;
	background-color: transparent;
	border: none; /* 移除可能的默认边框 */
  }
  
  /* 基础菜单项样式（覆盖 Bootstrap nav-link） */
  .cw-v5-nav-item.nav-link {
	font-size: 14px;
	color: rgb(51, 51, 51);
	padding: 15px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left; /* 确保文字左对齐 */
	background: none;
	border: none;
	border-left: 4px solid transparent; /* 预留位置防止抖动 */
	border-radius: 0;
	margin-bottom: 0;
  }
  
  /* 悬停效果 */
  .cw-v5-nav-item.nav-link:hover {
	color: rgb(0, 24, 128);
	background-color: rgba(255, 255, 255, 0.5);
  }
  
  /* 激活状态（Bootstrap 使用 .active） */
  .cw-v5-nav-item.nav-link.active {
	background-color: #fff !important;
	color: #001880 !important;
	font-weight: bold;
	border-left: 4px solid #001880 !important;
	border-radius: 0 !important;
	margin-right: -1px; /* 这里的负边距取决于你右侧内容的边距，用于遮盖边框 */
	position: relative;
	z-index: 2;
  }
  
  /* 移除 Bootstrap 获取焦点时的蓝色光晕 */
  .cw-v5-nav-item.nav-link:focus {
	box-shadow: none;
  }
  
  /* 右侧内容区 */
  .cw-v5-content-area {
	flex: 1;
	min-width: 300px;
	background-color: #fff;
	border-radius: 0px 0 0 0;
	padding: 40px 40px 100px; /* 底部留白给按钮 */
	position: relative;
  }
  
  .cw-v5-content-title {
	font-size: 24px;
	color: rgb(0, 24, 128);
	margin: 0 0 20px 0;
	font-weight: normal;
  }
  
  .cw-v5-content-text {
	font-size: 14px;
	line-height: 1.8;
	color: rgb(51, 51, 51);
	margin: 0 0 10px 0;
	max-width: 400px; /* 给右侧装饰图片留出空间 */
	position: relative;
	z-index: 2;
  }
  
  .cw-v5-privacy-link {
	font-size: 14px;
	color: rgb(0, 24, 128);
	text-decoration: none;
	font-weight: bold;
	position: relative;
	z-index: 2;
  }
  
  /* 弹窗右侧大插图：定位到底部边缘 */
  .cw-v5-modal-graphic {
	position: absolute;
	right: 0;
	bottom: 40px;
	width: 100%;
	max-width: 250px;
	height: auto;
	object-fit: contain;
	z-index: 1;
	pointer-events: none;
  }
  
  /* 底部按钮组 */
  .cw-v5-modal-actions {
	position: absolute;
	bottom: 30px;
	right: 40px;
	display: flex;
	gap: 20px;
	z-index: 3;
  }
  
  .cw-v5-btn {
	padding: 12px 24px;
	border-radius: 25px;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
	text-align: center;
	border: none;
	transition: opacity 0.2s ease;
  }
  
  .cw-v5-btn:hover {
	opacity: 0.8;
  }
  
  .cw-v5-btn-primary {
	background-color: #001880;
	color: #fff;
  }
  
  .cw-v5-btn-outline {
	background-color: transparent;
	border: 1px solid #001880;
	color: rgb(0, 24, 128);
  }

  .modal-cw-custom{
	width: 1000px;
	--bs-modal-width: 1000px;
  }

  .modal-cw-custom .modal-content{
	background-color: #F2F2F2;
  }



.map{
	position: relative;
  }
  
  .map .nav {
	width: 500px;
    position: absolute;
    display: none;
    transition: all 0.3s;
    top: 60px;
    background: rgba(0, 0, 0, 0.7);
    text-align: left;
    font-weight: bold;
    padding: 15px 0;
    left: 50%;
    font-family: SourceHanSansCN-Bold;
    transform: translate(-50%, 0);
  }
  .map .nav li {
	line-height: 25px;
	color: #fff;
  }
  .nav_map ul{
	list-style: none;
  }
  .map .nav li a {
	color: #fff;
  }
  
  .map .nav .close {
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
	width: 27px;
	height: 27px;
	background: url(images/close.png) center no-repeat;
	background-size: 100% 100%;
  }


  
/* 基础区块样式 */
.news-section {
	padding: 80px 0;
	width: 100%;
	padding-top: 0;
  }
  
  .news-section-title {
	font-size: 48px;
	color: var(--news-primary-blue);
	font-weight: bold;
	margin-bottom: 40px;
	text-align: left;
  }
  
  /* =========================================
   第一部分：我们的案例 (Hero & Cases)
   ========================================= */
  .news-cases-header {
	text-align: center;
	margin-bottom: 60px;
  }
  
  .news-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
  }
  
  .news-tab {
	padding: 15px 50px;
	border-radius: 50px;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid var(--news-primary-blue);
	transition: all 0.3s;
	width: 298px;
  }
  
  .news-tab-inactive {
	background-color: transparent;
	color: var(--news-primary-blue);
  }
  
  .news-tab-active {
	background-color: var(--news-primary-blue);
	color: var(--news-text-light);
  }
  
  .news-cases-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
  }
  
  .news-case-card {
	flex: 1;
	min-width: 320px;
	max-width: 450px;
	border: 2px solid var(--news-primary-blue);
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	padding-bottom: 30px;
	transition: transform 0.3s;
  }
  
  .news-case-card:hover {
	transform: translateY(-10px);
  }
  
  .news-case-img {
	width: 100%;
	height: auto;
	object-fit: cover;
  }
  
  .news-case-title {
	font-size: 26px;
	color: var(--news-primary-blue);
	font-weight: bold;
	text-align: center;
	margin: 25px 20px;
	line-height: 1.4;
  }
  
  .news-case-btn {
	background-color: var(--news-primary-blue);
	color: var(--news-text-light);
	padding: 12px 35px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
  }


  .cs2-form-grid{
	width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ajax-contact-form1{
	width: 100%;
	max-width: initial;
  }

  .navbar-main .dropdown-menu{

	background: #4E66CE;
background: linear-gradient(180deg,rgba(78, 102, 206, 1) 0%, rgba(26, 50, 154, 1) 56%, rgba(39, 63, 167, 1) 81%);
  }

  .navbar-main .dropdown-menu a{
	color:#fff;
  }
  .navbar-main .dropdown-menu a:hover{
	color:#000;
  }

  .header .dropdown .dropdown-menu {
	display: none;
	transition: all 0.3s ease;
  }

  .header .dropdown:hover .dropdown-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
  }
  
  
  /* =========================================
	 响应式适配方案
	 ========================================= */
  @media (max-width: 900px) {
	.modal-cw-custom{
		width: 90%;
	  }
	.cw-v5-top-section {
	  flex-direction: column;
	}
	.cw-v5-top-left, .cw-v5-top-right {
	  max-width: 100%;
	}
	.cw-v5-modal-body {
	  flex-direction: column;
	}
	.cw-v5-sidebar {
	  width: 100%;
	  flex-direction: row;
	  flex-wrap: wrap;
	  padding: 0;
	}
	.cw-v5-nav-item.cw-v5-active {
	  border-left: none;
	  border-bottom: 4px solid #001880;
	  border-radius: 10px 10px 0 0;
	  margin-right: 0;
	  margin-bottom: -10px;
	}
	.cw-v5-content-area {
	  border-radius: 20px 20px 0 0;
	  padding: 30px;
	}
	.cw-v5-content-text {
	  max-width: 100%;
	}
	.cw-v5-modal-graphic {
	  opacity: 0.2; /* 移动端减弱图片存在感，防止遮挡文字 */
	  max-width: 200px;
	}
	.cw-v5-modal-actions {
	  position: relative;
	  bottom: auto;
	  right: auto;
	  margin-top: 30px;
	  justify-content: flex-start;
	}

	.news-section-title {
		font-size: 36px;
		text-align: center;
	}

	.news-section-bg{
		height:400px;
	}
  }
  
  @media (max-width: 600px) {
	.cw-v5-modal-header {


	  gap: 15px;
	  padding: 20px;
	}
	.cw-v5-modal-title {
	  font-size: 18px;
	}
	.cw-v5-modal-logo {
		height: 33px;
		object-fit: contain;
	}
	.cw-v5-modal-actions {
	  flex-direction: column;
	  width: 100%;
	}
	.cw-v5-btn {
	  width: 100%;
	}

	.cw-v5-content-area{
		min-width: initial;
	}
	.products-cards__container{
		height: auto;
		flex-direction: column;
	}
	.hero-section{
		width: 100%;
	}

	.hero-section img{
		border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	}
	.hero-section{
		border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
	}
	.about-section{
		border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
	background-position: center;
	}
	.about-section .btn-blue{
		bottom:0;
	}
	.news-section{
		padding-top: 0;
	}

	.slider-arrow{
		width: 25px;
	}
	.events-section .events-container{
		padding: 20px;
	}
	.help-top-ct{
		flex-direction: column;
	}

	.footer-contact{
		flex-direction: column;
		gap:30px;
	}
	.header .navbar-left{
		align-items: flex-start;
		margin-left: 50px;
	}

	.news-container{
		padding: 20px;
		overflow: hidden;
	}
	.shareicons{
		right: 10px;
	}
	.news-banner{
		padding: 60px 0;
	}

	.adv-compare-list li{
		word-break: break-word;
	}
	.adv-compare-card.light{
		border-top-right-radius: inherit;
		border-bottom-right-radius: inherit;
	}

	.cs2-form-grid{
		grid-template-columns: initial;
	}




  }