@import url(base.css);


section#about {
	display: flex;
	width: 100%;
	min-height: 630px; /* 高度可根据图片调整 */
	position: relative; /* 作为子元素绝对定位的参考 */
	            overflow: hidden; /* 防止内容溢出 */
	padding: 70px 0 140px 0;
	box-sizing: border-box;
}
 /* 左侧图片栏 */
section#about > .about-left-img {
	width: 900px;
	height: 630px;
	background: url("../img/about.png") no-repeat center center;
	background-size: cover; /* 图片铺满容器 */
	
}
/* 右侧内容栏 */
section#about > .about-right {
	position: absolute;
	top: 140px;
	right: 0;
	width: 57%; /* 内容栏宽度，可调整 */
	height: 630px;
	background-color: #f5f5f5; /* 浅灰色背景，和截图一致 */
	display: flex;
	align-items: flex-start;
	flex-direction: column; /* 内部垂直排列 */
	justify-content: center; /* 垂直居中 */
	box-shadow: -5px 0 15px rgba(0,0,0,0.05); /* 轻微阴影，更立体 */
	padding: 85px 15% 65px 85px;
	box-sizing: border-box;
}
section#about > .about-right > .intro-title {
	font-size: 42px;
	color: #333;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 30px;
	font-weight: bold;
}
section#about > .about-right > .intro-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background-color: #c20f0f;
}
section#about > .about-right > .intro-desc {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 35px 0 80px 0;
}
section#about > .about-right > .intro-btn {
	/* 基础布局 */
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px; /* 文字和圆点的间距 */
	/* 尺寸和形状 */
	padding: 20px 10px 20px 40px;
	box-sizing: border-box;
	/* 样式 */
	background-color: #c20f0f; /* 截图同款红色 */
	color: #fff; /* 白色文字 */
	border-radius: 30px; /* 胶囊形圆角 */
	font-size: 16px; /* 文字大小 */
	cursor: pointer; /* 鼠标手型 */
	position: relative;
	overflow: hidden; /* 防止圆点溢出 */
	transition: background-color 0.3s ease; /* hover过渡 */
	margin-bottom: 85px;
}
/* hover效果（可选，提升交互） */
section#about > .about-right > .intro-btn:hover {
	background-color: #b91c1c; /* hover加深红色 */
}

/* 三个圆点容器 */
section#about > .about-right > .intro-btn > .btn-dots {
	display: flex;
	align-items: center;
	gap: 4px; /* 圆点之间的间距 */
	background-color: #fff;
	border-radius: 30px; /* 胶囊形圆角 */
	padding: 10px 20px;
	box-sizing: border-box;
}

/* 单个圆点样式 */
section#about > .about-right > .intro-btn > .btn-dots > .btn-dot {
	width: 6px; /* 圆点直径 */
	height: 6px;
	background-color: #c20f0f; /* 白色圆点 */
	border-radius: 50%; /* 圆形 */
}

section#about > .about-right > .intro-stats {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

section#about > .about-right > .intro-stats > .stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section#about > .about-right > .intro-stats > .stat-item > .stat-number {
	font-size: 42px;
	color: #d82028;
	font-weight: bold;
	margin-bottom: 8px;
	line-height: 1;
}

section#about > .about-right > .intro-stats > .stat-item > .stat-number > .stat-unit {
	font-size: 18px;
	color: #d82028;
	font-weight: normal;
	margin-left: 5px;
}

section#about > .about-right > .intro-stats > .stat-item > .stat-text {
	font-size: 14px;
	color: #d82028;
}


/* 产品中心 */
section#product {
	height: 860px;
	background: url(../img/product.png) no-repeat ;
	background-size: cover;
	padding: 75px 0 90px 0;
	box-sizing: border-box;
}
section#product > .product {
	display: flex;
	flex-direction: column;
}
section#product > .product > .product-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffffff;
}
section#product > .product > .product-title > span:first-of-type {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 30px;
}
section#product > .product > .product-cont {
	margin-top: 75px;
	display: flex;
	flex-direction: column;
}
section#product > .product > .product-cont .swiper-slide {
	display: flex;
	align-items: center;
	height: 400px;
}
section#product > .product > .product-cont .swiper-slide > .product-cont-img {
	width: 50%;
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;

	box-sizing: border-box;

}
section#product > .product > .product-cont .swiper-slide > .product-cont-img > img {
	max-height: 100%;
    max-width: 80%;
}
/* section#product > .product > .product-cont .swiper-slide:hover > .product-cont-img > img {
	transform: scale(1.08);
} */
section#product > .product > .product-cont .swiper-slide > .product-cont-cont {
	flex: 1;
	display: flex;
	padding: 15px ;

	box-sizing: border-box;
	height: inherit;
	/* justify-content: flex-start; */
	align-items: flex-start;
	flex-direction: column;
	color: #ffffff;
	font-weight: 100;
}

section#product > .product > .product-cont .swiper-slide {
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 15px;
  box-sizing: border-box;
}

section#product > .product > .product-cont .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

section#product > .product > .product-cont .swiper-slide {
  /* border-color: rgba(200, 30, 30, 0.6); 红色边框，和主题呼应 */
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}
section#product > .product > .product-cont .swiper-slide > .product-cont-cont:hover::after {
  opacity: 1;
}



section#product > .product > .product-cont .swiper-slide > .product-cont-cont > span:first-of-type {
	font-size: 32px;
}
section#product > .product > .product-cont .swiper-slide > .product-cont-cont > span:last-of-type {
	font-size: 16px;
	margin: 50px 0;
	line-height: 30px;
}
section#product > .product > .product-cont .swiper-slide > .product-cont-cont > a {
	padding: 20px 45px;
	box-sizing: border-box;
	border: 1px solid #a4a5a6;
	color: #ffffff;
	font-size: 16px;
}
section#product > .product > .product-cont .swiper-slide > .product-cont-cont > a:hover {
	border: 1px solid #c20f0f;
	background-color: #c20f0f;
}
section#product > .product > .product-cont > .tab-buttons {
	display: flex;
	margin-top: 55px;
}
section#product > .product > .product-cont > .tab-buttons > .tab-btn {
	display: flex;
	justify-content: space-between;
	width: 33.33333%;
	border: 1px solid #a4a5a6;
	color: #ffffff;
	font-weight: bold;
	font-size: 22px;
	cursor: pointer;
	padding: 10px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
section#product > .product > .product-cont > .tab-buttons > .tab-btn:nth-child(2) {
	border-left: 0;
	border-right: 0;
}
section#product > .product > .product-cont > .tab-buttons > .tab-btn.active {
	background-color: #c20f0f;
	border: #c20f0f 1px solid;
}
section#product > .product > .product-cont > .tab-buttons > .tab-btn:hover {
	background-color: #c20f0f;
	border: #c20f0f 1px solid;
}


/* 应用领域 */
section#app {
	padding: 75px 0;
	box-sizing: border-box;
}
section#app > .app {
	display: flex;
	flex-direction: column;
}
section#app > .app > .app-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #444444;
}
section#app > .app > .app-title > span:first-of-type {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 30px;
}
section#app > .app > .app-cont {
	display: flex;
	/* justify-content: space-between; */
}
section#app > .app > .app-cont > .app-cont-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	width: 35%;
	height: 640px;
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* outline: 1px solid green; */
	/* max-height: 190px; */
	
	height: 25%;
	position: relative;
	border-bottom: 1px solid #cdcece;
}
/* section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item:first-of-type { */
	/* justify-content: flex-start; */
/* } */
/* section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item:nth-child(2) {
	height: 26%;
} */
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 60px;
	border-bottom: 2px solid #c22d31;
	transition: width 0.5s ease; /* 加过渡更丝滑 */
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item > .app-cont-nav-item-top {
	display: flex;
	align-items: center;
	/* height: 160px; */
	font-size: 18px;
	font-weight: bold;
	color: #444444;
	font-weight: normal;
	/* padding: 10px 0; */
	/* box-sizing: border-box; */
	height: 55px;
	margin-bottom: 10px;
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item > .app-cont-nav-item-top > img {
	width: 55px;
	height: 45px;
	margin-right: 10px;
}

section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item > span {
	max-height: 0;        /* 初始高度 0，隐藏 */
	overflow: hidden;     /* 超出隐藏 */
	opacity: 0;           /* 初始透明 */
	margin-top: 0;
	transition: all 0.8s ease; /* 动画时间 */
	font-size: 16px;
	line-height: 1.6;
	color: #666666;
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item.active span {
	display: block;
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item:hover > span {
	max-height: 72px;  /* 展开高度 */
	opacity: 1;         /* 慢慢显示 */
}

section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item.active > span {
	max-height: 72px;  /* 展开高度 */
	opacity: 1;         /* 慢慢显示 */
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item:hover::after {
	width: 100%;
}
section#app > .app > .app-cont > .app-cont-nav > .app-cont-nav-item.active::after {
	width: 100%;
}




section#app > .app > .app-cont > #app-cont-content {
	height: 640px;
	flex: 1;
	margin-left: 40px;
	display: flex;
	flex-direction: column;
	
}

section#app > .app > .app-cont > #app-cont-content > div {
	height: inherit;
	display: flex;
	align-items: center;
}


section#app > .app > .app-cont > #app-cont-content > div > img {
	width: 100%;
	height: 640px;
}










/* 为什么选择宏阳 */
/* section#hy { */
	/* padding: 75px 0;
	box-sizing: border-box; */
/* } */
section#hy > .hy {
	display: flex;
	flex-direction: column;
}
section#hy > .hy > .hy-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #444444;
}
section#hy > .hy > .hy-title > span:first-of-type {
	font-size: 42px;
	font-weight: bold;
}
section#hy > .hy > .hy-cont {
	display: flex;
	width: 100%;
	height: 750px;
	overflow: hidden;
	margin-top: 30px;
}
 /* 单个颜色块 */
section#hy > .hy > .hy-cont > .process-item {
	flex: 1;
	position: relative;
	transition: all 0.5s ease;
	cursor: pointer;
}

/* 悬浮时取消灰度 + 轻微变宽 */
section#hy > .hy > .hy-cont > .process-item:hover {
	flex: 1.5;
}



/* 五栏不同底色（区分模块） */
section#hy > .hy > .hy-cont > .item1 { background: url(../img/hy-1.png) no-repeat;background-size: cover;}

section#hy > .hy > .hy-cont > .item2 { 
	background: url(../img/Testing.png) no-repeat;
	background-size: cover;
}

section#hy > .hy > .hy-cont > .item3 { 
	background: url(../img/Certificates.png) no-repeat;
	background-size: cover;
}

section#hy > .hy > .hy-cont > .item4 { 
	background: url(../img/Service.png) no-repeat;
	background-size: cover;
}

section#hy > .hy > .hy-cont > .process-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #ffffff;
}
section#hy > .hy > .hy-cont > .process-item > .process-item-title {
	display: flex;
	flex-direction: column;
}
section#hy > .hy > .hy-cont > .process-item > .process-item-title > img {
	width: 75px;
	height: 75px;
}
section#hy > .hy > .hy-cont > .process-item > .process-item-title > span {
	margin-top: 25px;
	font-weight: bold;
	font-size: 32px;
}
section#hy > .hy > .hy-cont > .process-item > .process-item-cont {
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 210px;
	padding: 45px 0;
	box-sizing: border-box;
	width: 70%;
	background-color: rgba(0,0,0,0.6);
	margin-top: 60px;
	font-size: 16px;
	line-height: 30px;
}
section#hy > .hy > .hy-cont > .process-item:hover .process-item-cont {
	opacity: 1;
}


/* 合作伙伴 */
section#partner {
	padding: 75px 0 30px 0;
	box-sizing: border-box;
}
section#partner > .partner {
	display: flex;
	flex-direction: column;
}
section#partner > .partner > span {
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 70px;
	color: #444444;
}
section#partner > .partner > .partner-cont {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section#partner > .partner > .partner-cont > a {
	width: 14.6666%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	height: 70px;
	padding: 0 10px;
	box-sizing: border-box;
	outline: 1px solid #eee;
}
section#partner > .partner > .partner-cont > a > img {
	max-width: 100%;
	max-height: 100%;
}

section#partner > .partner > .partner-cont >.clearfix {
	width: 14.6666%;
}