/* 统一css默认样式 */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}


.banxin {
	width: 1200px;
	margin: 0 auto;
}

/* 导航栏 */

body{
	background-color: #323232;
}
nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #000;
	height:105px;
	padding: 0 50px;position: relative;z-index: 999;
}

nav h1 {
	color: #fff;
}

nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul li a {
	display: inline-block;
	width: 170px;
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}

nav ul li a:hover {
	color: #000000;
}


nav ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
}

nav li {
  float: left;
}

nav li a, .dropbtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  text-decoration: none;
}

nav li a:hover, .dropdown:hover .dropbtn {
  background-color:  rgb(236, 236, 236);
}


nav li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.searchIpt{
	width: 320px;
	height: 40px;
	border: 1px solid #ccc;
	padding-left: 15px;
	outline: none;
	margin-left: 5%;
	border-right: none;
}
.searchBtn{
	border: 1px solid #ccc;
	outline: none;
	width: 60px;
	height: 40px;
	background-color: #fff;
	color: #000000;
}

.banner {
	height: 460px;
}

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

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
}


/* 通用标题样式 */

.tit {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	margin: 25px auto;
	/* border: #fff 1px solid; */
	/* width: 150px; */
	text-align: center;
	line-height: 40px;
}


.one .one-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	background-color: #f1f1f1;
}

/* .one-item {
	width: 24%;
	height: 260px;
}
.one-item:hover {
	cursor: pointer;
	outline: #fff 1px solid;
}
.one-item:hover p{
	color: #fff;
	font-weight: 700;
}
.one-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.one-item p {
	font-size: 16px;
	text-align: center;
	color: #333;
	line-height: 40px;
} */


.one-item {
	display: flex;
	align-items: center;
	width: 33%;
	padding: 20px;
}

.oneimg {
	width: 80px;
	height: 80px;
	background-color: #4CAF50;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transform: rotate(45deg);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-inner {
	transform: rotate(-45deg);
	color: white;
	font-size: 36px;
	font-weight: bold;
}

.content {
	flex: 1;
}

.title {
	color: #4CAF50;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.description {
	color: #232323;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.read-more {
	background-color: black;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
}

.read-more:hover {
	opacity: 0.9;
}


.heng{
	padding:40px 0;
	display: flex;
	justify-content: space-between;
}

.about-container {
	position: relative;
	width: 32%;
	height: 150px;
	/* margin-left:40px; */
}

.arrow-shape {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #FFEB3B;
	clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-title {
	color: white;
	font-size: 42px;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
	line-height: 1;
}

.about-subtitle {
	color: white;
	font-size: 14px;
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Optional background elements */
.bg-blur {
	position: absolute;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(20px);
	z-index: -1;
}

.bg-blur:nth-child(1) {
	top: -50px;
	right: -50px;
}

.bg-blur:nth-child(2) {
	bottom: -30px;
	left: -30px;
	width: 150px;
	height: 150px;
}


.two{
	height: 320px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px auto;
}

.t-left{
	width: 48%;
	height: 100%;
}
.t-right{
	padding: 20px 0;
	width: 49%;
	height: 100%;
	font-size: 16px;
	text-align: left;
	color: #ffffff;
	text-indent: 2em;
	line-height: 30px;
}
.t-left img{
	width: 100%;
	height: 100%;
}



.footer {
	background-color: #000;
	color: #fff;
	padding: 40px 0 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
	padding: 0 15px;
}

.footer-column h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer-column p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.social-icons a {
	color: #fff;
	font-size: 20px;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #4CAF50;
}

.footer-bottom {
	background-color: #222;
	padding: 20px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-bottom-left {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom-left p {
	color: #aaa;
	font-size: 12px;
}

.admin-btn {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 8px 20px;
	font-size: 12px;
	cursor: pointer;
	text-transform: uppercase;
	border-radius: 3px;
}

.admin-btn:hover {
	opacity: 0.9;
}

@media (max-width: 768px) {
	.footer-column {
		flex: 100%;
		margin-bottom: 20px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	
	.footer-bottom-left {
		justify-content: center;
	}
}

/* 登录 */

.loginBtn{
	height: 40px;
	background-color: #000;
	color: #000;
	font-size: 15px;
	border:1px solid #fff;
	padding: 0 20px;
	margin-left: 20px;
}




/* 工艺特点 */
.boxs{
	margin-bottom: 20px;
}
.boxs .banxin{
	line-height: 30px;
	font-size: 15px;
}

.yl-img{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.yl-img img{
	width: 24%;
	height: 240px;
}

.mySwiperP img{height: 240px;}

.imgmu img{
	width: 240px;
	height: 240px;
	border-radius: 50%;
	margin-left: 40px;
}

.ling{
	margin-bottom: 20px;
}

.ling img{
	transform: skew(-15deg) !important;
}

.timg{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.timg img{
	width: 49%;
	height: 300px;
}
.ccrlist {
	flex-wrap: wrap;
}
.ccrlist .one-item{
	height: 320px;
	margin-bottom: 20px;
}
.ccrlist p{
	padding: 0 10px;
	line-height: 28px;
	font-size: 14px;
	overflow: hidden; 
	display: -webkit-box; 
	 -webkit-box-orient: vertical; 
	-webkit-line-clamp: 4; 
	text-overflow: ellipsis; 
	text-align: left;
}


.boxs img:hover{
	cursor: pointer;
	filter: grayscale(1);
}


/* 友情链接 */

.links{
	margin: 25px auto;
	border: 1px dashed #ffffff;
	padding: 10px;
}

.links p{
	font-size: 15px;
	color: #333;
	margin-right: 30px;
}


.links p a{
	font-size: 15px;
	color: #00aaff;
	margin-right: 40px;
}

.links p a:hover{
	text-decoration: underline;
}

/* 响应式代码 1200px 以下*/
@media screen and (max-width: 1200px) {
	.banxin{
		width: 100%;
	}
}