@import url(jquery.bxslider.css);
@import url(pscroll.css);
/*首页*/


/* 制作工艺部分背景样式 */
.zzgy {
	width: 100%;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 80px 0;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.zzgy::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/i_bg1.png) center center no-repeat;
	background-size: cover;
	opacity: 0.1;
	z-index: 1;
}

/* 在.wrap3样式后添加.kcx样式 */
.kcx {
	width: 100%;
	background-color: #082259;
	padding: 40px 0;
	margin: 0 auto;
	overflow: hidden;
}

/* 自定义内容区域样式 */
.custom_content_section {
	width: 100%;
	background-color: #082259;
	padding: 60px 0;
	margin: 0 auto;
	overflow: hidden;
}

/* Flex布局类 */
.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.justify-start {
	display: flex;
	justify-content: flex-start;
}

.justify-center {
	display: flex;
	justify-content: center;
}

.justify-end {
	display: flex;
	justify-content: flex-end;
}

.justify-between {
	display: flex;
	justify-content: space-between;
}

.items-start {
	display: flex;
	align-items: flex-start;
}

.items-end {
	display: flex;
	align-items: flex-end;
}

.items-center {
	display: flex;
	align-items: center;
}

.no-shrink {
	flex-shrink: 0;
}

/* 间距类 */
.mb-5 {
	margin-bottom: 20px;
}

.p-6 {
	padding: 1.5rem;
}

/* 自定义轮播项样式 */
.custom_carousel_item {
	border-radius: 20px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom_carousel_item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.custom_text_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.custom_text_box {
		padding: 2.5rem;
	}
}

.custom_text_content h3 {
	font-family: 'Source Han Sans', Arial, sans-serif;
	font-weight: 400;
	color: #3d3d3d;
	margin-bottom: 1rem;
}

.custom_text_description {
	margin-bottom: 1.5rem;
}

.custom_text_description p {
	color: #3d3d3d;
	font-size: 18px;
}

.custom_text_paragraphs {
	color: #666666;
}

.custom_image_content {
	overflow: hidden;
}

.custom_image_content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.custom_image_content img:hover {
	transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.custom_carousel_item {
		flex-direction: column;
	}

	.custom_text_box,
	.custom_image_content {
		width: 100%;
	}

	.custom_image_content {
		height: 300px;
	}
}

/* Swiper自定义样式 */
.swiper-container {
    width: 100%;
    height: auto;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
    padding: 3rem;
    z-index: 2;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
	border-radius: 50%;
	color: #333;
	font-size: 22px;
	line-height: 60px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.swiper-button-prev {
	left: 30px;
}

.swiper-button-next {
	right: 30px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: linear-gradient(135deg, #ffffff, #f0f0f0);
	color: #1a1a2e;
	transform: translateY(-50%) scale(1.15);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	margin: 0 8px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-pagination-bullet-active {
	background-color: #ffffff;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* 确保Swiper容器在移动设备上正确显示 */
@media (max-width: 768px) {
	.swiper-container {
		padding: 0 20px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 18px;
	}
	
	.swiper-button-prev {
		left: 20px;
	}

	.swiper-button-next {
		right: 20px;
	}
}

@media (max-width: 480px) {
	.swiper-container {
		padding: 0 15px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 16px;
	}
	
	.swiper-button-prev {
		left: 15px;
	}

	.swiper-button-next {
		right: 15px;
	}
	
	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0 6px;
	}

	.swiper-pagination-bullet-active {
		width: 14px;
		height: 14px;
	}
}


.i_product_bg {
	background-color: #f5f5f5;
	overflow: hidden;
	padding-bottom: 2.5%;
}
.i_title {
	margin-top: 5%;
	margin-bottom: 4%;
	overflow: hidden;
	text-align: center;
}

.i_title h2 {
	overflow: hidden;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: -3px;
	text-transform: uppercase;
	font-family: "黑体", "SimHei", Arial, sans-serif;
}

.i_title p {
	background: url(../images/i_bg1.png) center bottom no-repeat;
	color: #ffffff;
	padding-bottom: 15px;
	font-family: "黑体", "SimHei", Arial, sans-serif;
}
.nproduct_list2 {
	overflow: hidden;
	padding-bottom: 20px;
	padding-top: 8px;
}
.nproduct_list2 ul {
	display: flex;
	flex-wrap: wrap;
}
.nproduct_list2 ul li {
	float: left;
	width: 32.1%;
	margin-left: 0.5%;
	margin-right: 1%;
	overflow: hidden;
	margin-bottom: 1.5%;
	text-align: center;
	background-color: #fff;
	padding-bottom: 4%;
}
.nproduct_list2 ul li:nth-child(3n+0) {
	margin-right: 0;
}
.nproduct_list2 ul li img {
	display: inline-block;
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	vertical-align: middle;
}
.nproduct_list2 ul li .imgs {
	width: 100%;
	overflow: hidden;
}
.nproduct_list2 ul li h2 {
	font-weight: normal;
	color: #333333;
	line-height: 36px;
	height: 36px;
	text-align: center;
	overflow: hidden;
	padding-left: 2%;
	padding-right: 2%;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all 0.3s;
	margin-bottom: 1%;
}
.nproduct_list2 ul li p {
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	color: #929292;
	font-size: 14px;
	padding-left: 2%;
	padding-right: 2%;
	max-width: 350px;
	margin: 0 auto;
}
.nproduct_list2 ul li em {
	display: block;
	color: #ee697e;
	font-size: 14px;
	margin-top: 10px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
}
.nproduct_list2 ul li label {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
	margin-top: 5px;
}
.nproduct_list2 ul li:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.nproduct_list2 ul li:hover {
	-webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
	transition: all 0.3s;
}
.nproduct_list2 ul li:hover h2 {
	color: #00a1e9;
}
/* 修改现有的.i_solution样式以匹配Vue组件设计 */
.i_solution {
	overflow: hidden;
	padding-bottom: 4%;
	padding-top: 8px;
}

.i_solution ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.i_solution ul li {
	float: none;
	width: calc(50% - 10px);
	margin-right: 0;
	overflow: hidden;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	border-radius: 20px;
	background-color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.i_solution ul li:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.i_solution ul li a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.i_solution ul li .imgs {
	width: 100%;
	height: 351px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	position: relative;
}

.i_solution ul li .imgs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.i_solution ul li .txts {
	position: relative;
	width: 100%;
	height: 197px;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 0 0 20px 20px;
	padding: 28px 48px 0;
	text-align: left;
}

.i_solution ul li h2 {
	font-weight: 400;
	color: #3d3d3d;
	line-height: 70px;
	height: 70px;
	text-align: left;
	overflow: hidden;
	font-size: 48px;
	font-family: 'Source Han Sans', Arial, sans-serif;
	margin-bottom: 0;
	white-space: pre;
}

.i_solution ul li p {
	line-height: 52px;
	height: 52px;
	overflow: hidden;
	color: #3d3d3d;
	font-size: 36px;
	font-family: 'Source Han Sans', Arial, sans-serif;
	font-weight: 400;
	padding-left: 2px;
	margin: 0;
	white-space: pre;
}

.i_solution ul li:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.i_solution ul li {
		width: 100%;
		margin-bottom: 15px;
	}

	.i_solution ul li .imgs {
		height: 250px;
	}

	.i_solution ul li .txts {
		height: auto;
		padding: 20px;
	}

	.i_solution ul li h2 {
		font-size: 32px;
		line-height: 48px;
		height: 48px;
	}

	.i_solution ul li p {
		font-size: 24px;
		line-height: 36px;
		height: 36px;
	}
}
.i_case_bg {
	background: url(../images/i_bg2.jpg) center center no-repeat;
	background-size: cover;
	overflow: hidden;
	padding-bottom: 4%;
}
.i_case_bg .i_title h2 {
	color: #fff;
}
.i_case_bg .i_title p {
	color: #fff;
	background: url(../images/i_bg3.png) center bottom no-repeat;
}
.i_link {
	overflow: hidden;
	margin-bottom: 3%;
}
.i_link ul li {
	float: left;
	width: 15.8%;
	margin-right: 1%;
	margin-bottom: 1%;
	overflow: hidden;
}
.i_link ul li:nth-child(6n+0) {
	margin-right: 0;
}
.i_link ul li .imgs {
	overflow: hidden;
	border: 1px solid #f0f0f0;
}
.i_link ul li .imgs img {
	display: block;
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.i_link ul li .imgs:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.banner_pos {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
}
.banner_pos .banner_div {/* display:table; vertical-align:bottom; */
	height: 100%;
	width: 100%;
	position: relative;
}
/*.banner_pos .wrap .td{ display:table-cell; vertical-align:bottom;height:100%;}*/
/*.banner_pos img{transition:all 0.3s;filter: Alpha(Opacity=100);opacity: 1.0; max-width:100%;}*/
.banner_pos .img001 {
	height: 100%;
	width: 57.6%;
	vertical-align: bottom;
	position: absolute;
	bottom: 0;
	right: 0%;
}
.banner_pos .img001 img {
	height: 100%;
	filter: Alpha(Opacity=0);
	opacity: 0;
}
.banner_pos .txtsbox {
	float: left;
	width: 50%;
}
.banner_pos .txts {
	float: right;
	margin-right: 3%;
	margin-top: 20%;
	width: 94%;
	max-width: 536px;
	text-align: left;
}
.banner_pos .txts h2 {
	color: #00a1e9;
}
.banner_pos .txts p {
	color: #767676;
	margin-top: 6%;
}
.banner_pos .txts a {
	margin-top: 6%;
	width: 220px;
	display: block;
	height: 48px;
	line-height: 48px;
	border: 1px solid #606060;
	text-align: center;
	font-size: 12px;
	color: #a2a2a2;
}
.banner_pos .txts a em {
	float: right;
	margin-right: 7%;
	font-style: normal;
	font-family: "宋体";
	font-size: 18px;
}
.banner_pos .txts a:hover {
	border: 1px solid #00a1e9;
}
.banner_pos .txts a:hover {
	color: #00a1e9;
}

/*动画*/


@media screen and (max-width:1760px) {
}
@media screen and (max-width:1440px) {
}
@media screen and (max-width:1200px) {
}
@media screen and (max-width:1000px) {
	.i_link ul li {
		width: 19%;
	}
	.i_link ul li:nth-child(6n+0) {
		margin-right: 1.1%;
	}
	.i_link ul li:nth-child(5n+0) {
		margin-right: 0;
	}
}
@media screen and (max-width:960px) {
}
@media screen and (max-width:830px) {
	/*轮显*/

	.flash_div {
		display: block;
	}
	.i_link ul li {
		width: 24%;
	}
	.i_link ul li:nth-child(5n+0) {
		margin-right: 1.1%;
	}
	.i_link ul li:nth-child(4n+0) {
		margin-right: 0;
	}
}
@media screen and (max-width: 780px) {
	.nproduct_list2 ul li {
		width: 49%;
	}
	.nproduct_list2 ul li:nth-child(3n+0) {
		margin-right: 1%;
	}
	.nproduct_list2 ul li:nth-child(2n+0) {
		margin-right: 0;
	}
}
@media screen and (max-width: 640px) {
	.nproduct_list2 ul li p {
		font-size: 13px;
	}
	.i_link ul li {
		width: 32.5%;
	}
	.i_link ul li:nth-child(4n+0) {
		margin-right: 1.1%;
	}
	.i_link ul li:nth-child(3n+0) {
		margin-right: 0;
	}
}
@media screen and (max-width: 480px) {
	.nproduct_list2 ul li p {
		font-size: 12px;
	}
}
@media screen and (max-width:360px) {
}
/* 制作工艺图片设计效果样式 */
.craft-section {
  width: 100%;
  background-color: #082259;
  padding: 60px 0;
  margin: 0 auto;
  overflow: hidden;
}

.craft-item {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
}

.craft-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.craft-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7) contrast(1.1);
}

.craft-item:hover .craft-image img {
  transform: scale(1.1);
  filter: brightness(0.5) contrast(1.2);
}

.craft-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.craft-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.craft-item:hover .craft-text::before {
  opacity: 1;
}

.craft-text h3 {
  font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s ease 0.2s forwards;
  line-height: 1.2;
}

.craft-desc {
  color: #f0f0f0;
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s ease 0.4s forwards;
  line-height: 1.4;
}

.craft-content {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  max-width: 80%;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s ease 0.6s forwards;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* 添加装饰性边框 */
.craft-item::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.craft-item:hover::after {
  opacity: 1;
}

@keyframes slideUpFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .craft-item {
    height: 500px;
  }
  
  .craft-text h3 {
    font-size: 32px;
  }
  
  .craft-desc {
    font-size: 18px;
  }
  
  .craft-content {
    font-size: 15px;
    -webkit-line-clamp: 5;
  }
}

@media (max-width: 768px) {
  .craft-item {
    height: 450px;
  }
  
  .craft-text {
    padding: 40px 30px;
  }
  
  .craft-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .craft-desc {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .craft-content {
    font-size: 14px;
    -webkit-line-clamp: 4;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .craft-item {
    height: 400px;
  }
  
  .craft-text {
    padding: 30px 20px;
  }
  
  .craft-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  
  .craft-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .craft-content {
    font-size: 13px;
    -webkit-line-clamp: 3;
    max-width: 95%;
  }
}
