/* 快速入口 */
.quick-access {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 80px 0;
}

.access-item {
	text-align: center;
	padding: 40px 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	color: #0000005e;
}

.access-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	color: #e7c02e75;
}

.access-item i {
	font-size: 48px;
	margin-bottom: 20px;
}

.access-item h3 {
	/*font-family: 'Playfair Display', serif;*/
	font-size: 24px;
	margin-bottom: 10px;
	color: #333;
	text-transform: capitalize;
}

.access-item p {
	color: #666;
}

@media (max-width: 1139px) {
	.quick-access {
		width: 100%;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 0;
	}
}

@media (max-width: 666px) {
	.access-item {
		padding: 20px 10px;
	}

	.quick-access {
		width: 100%;
		grid-template-columns: 1fr 1fr;
		margin: 20px 0;
	}
}

@media (max-width: 768px) {
	.access-item i {
		font-size: 33px;
	}

	.access-item h3 {
		font-size: 20px;
	}

	.access-item p {
		font-size: 14.4px;
	}
}


/* 精彩展览模块 */
#past-exhibitions .section-title {
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	font-size: 2.3rem;
	color: #333;
	margin-bottom: 0;
	border: none;
}

#past-exhibitions .exhibiton-title-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #CECECE;
}

.past-exhibitions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1rem;
	margin: 2.5rem 0.2rem 0 0.2rem;
}

.past-exhibition-img-wrap {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.past-exhibition-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.past-exhibition-card:hover .past-exhibition-img-wrap img {
	transform: scale(1.08);
}

.past-exhibition-mask {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(34, 34, 34, 0.78);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-100%);
	transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.past-exhibition-card:hover .past-exhibition-mask {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.past-exhibition-mask .mask-content {
	text-align: left;
}

.past-exhibition-mask h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	justify-content: center;
	text-align: center;
}

.past-exhibition-mask p {
	font-size: 1rem;
	color: #f5f5f5;
	line-height: 1.7;
}

.exhibitions-more-btn {
	background: #000;
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
	border: 1px solid;
	border-radius: 2px;
	padding: 0.8rem 2.2rem 0.8rem 1.5rem;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
	margin-left: 1.5rem;
	position: relative;
}

.exhibitions-more-btn::after {
	font-family: 'Font Awesome 5 Free'; 
	content: '\f061';
	display: inline-block;
	margin-left: 0.3em;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	top: 1px;
	font-weight: 900;
}

.exhibitions-more-btn:hover::after {
	transform: translateX(8px);
}

@media (max-width: 1061px) {
	.past-exhibitions-grid {
		grid-template-columns: repeat(auto-fit, minmax(251px, 1fr));
	}

	.past-exhibition-img-wrap {
		height: 160px;
	}

	.past-exhibition-mask h3 {
		font-size: 1.1rem;
	}

	.past-exhibition-mask p {
		font-size: 0.9rem;
	}
}

@media (max-width: 801px) {
	.past-exhibition-img-wrap {
		height: 200px;
	}

	.past-exhibition-mask h3 {
		font-size: 1.2rem;
	}

	.past-exhibition-mask p {
		font-size: 1rem;
	}
}

@media (max-width: 620px) {
	.past-exhibitions-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.past-exhibition-img-wrap {
		height: 160px;
	}

	.past-exhibition-mask h3 {
		font-size: 1rem;
	}

	.past-exhibition-mask p {
		font-size: 0.8rem;
	}
}

@media (max-width: 512px) {
	.past-exhibitions-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	#past-exhibitions .section-title {
		font-size: 32px;
	}

	.exhibitions-more-btn {
		padding: 0.5rem 1.6rem 0.5rem 1rem;
	}
}

@media (max-width: 472px) {
	.past-exhibition-img-wrap {
		height: 130px;
	}
}

@media (max-width: 372px) {
	.past-exhibitions-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	#past-exhibitions .section-title {
		font-size: 25px;
	}

	.exhibitions-more-btn {
		font-size: 13px;
	}

	.past-exhibition-mask h3 {
		font-size: 0.8rem;
	}
}

.inner {
	background: url(../images/photo1.jpg) center center / cover no-repeat;
	width: 100%;
	height: 60vh;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
}

@media screen and (max-width: 768px) {
	.inner {
		background: url(../images/photo1.jpg) center center / cover no-repeat;
		display: block;
		width: 100%;
		height: 30vh;
		background-size: 100%;
	}
}

/* 产品展示 */
#product {
	background-color: #f8f8f8;
	padding: 30px 0;
}

/* 页面标题 */
.page-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #000;
}

/* 分类筛选栏 */
.category-filter {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.filter-btn {
	background: transparent;
	color: #000;
	border: 1px solid #555;
	padding: 12px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.filter-btn:hover {
	background: #444;
	color: #fff;
}

.filter-btn.active {
	background: #2c2c2c;
	color: #fff;
	border-color: #fff;
}

/* 产品网格 */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0 auto;
}

.product-card {
	overflow: hidden;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.product-card img {
	width: 100%;
	height: auto;
	display: block;
}

.product-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-title {
	padding: 15px;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

/* 产品图片容器 */
.product-images-container {
	display: flex;
	flex-direction: column;
	/* gap: 2px; */
	gap: 20px;
}

.product-image-item {
	width: 100%;
	aspect-ratio: 1;
	position: relative;
	/* margin-bottom: 5px; */
}

.product-image-item img {
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 3px;
}

.product-image-item:hover img {
	transform: translateY(-5px);
}

.product-more a {
	background-color: #000;
	border-radius: 5px;
	width: 100%;
	border: solid #f8f8f8 1px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: inline-block;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin-top: 15px;
	font-size: 14px;
	transition: all 0.3s ease;
	font-weight: bold;
}

.product-more a:hover {
	background-color: #f8f8f8;
	color: #000;
	border: solid #000 1px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}

	.category-filter {
		gap: 10px;
	}

	.filter-btn {
		padding: 10px 10px;
		font-size: 13px;
	}

	.products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 7px;
	}

	.product-images-container {
		gap: 7px;
	}

	.product-image-item:hover img {
		transform: translateY(-3px);
	}
}

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

	.page-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.category-filter {
		justify-content: center;
	}

	.products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 5px;
	}

	.product-images-container {
		gap: 5px;
	}

	.product-image-item:hover img {
		transform: translateY(-1px);
	}
}

#service {
	background-color: #f8f8f8;
	padding-top: 30px;
	padding-bottom: 30px;
}

.service {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(345px, 2fr));
	margin-top: 1.5rem;
}

.service .service-content .service-card {
	padding: 30px 0 30px 0;
	height: 100%;
	transition: 0.4s;
	cursor: default;
	background-color: #274053;
	color: #fff;
	-webkit-transition: all 0.45s ease-in-out;
	-moz-transition: all 0.45s ease-in-out;
	-o-transition: all 0.45s ease-in-out;
	-ms-transition: all 0.45s ease-in-out;
	transition: all 0.45s ease-in-out;
	position: relative;
	z-index: 1;
	cursor: default;
}

.service-card i {
	width: 100%;
	text-align: center;
	font-size: 50px;
}

.service-card h4 {
	font-weight: 700;
	text-align: center;
	width: 100%;
	display: block;
	font-size: 22px;
	padding: 10px 0;
}

.service-card p {
	font-size: 13px;
	line-height: 24px;
	text-align: center;
	display: block;
	margin: 0;
	padding: 0 30px 0 30px;
}

.service .service-content:nth-child(2n) .service-card {
	background-color: #65bb9c;
	color: #000;
}

.service .service-content:nth-child(2n) .service-card:after {
	background-color: #274053;
}

.service-card::after {
	background-color: #65bb9c;
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	-moz-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	z-index: -1;
}

.service-card:hover:after {
	-moz-transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
}

.service .service-content .service-card:hover {
	color: #000;
}

.service .service-content:nth-child(2n) .service-card:hover {
	color: #fff;
}

@media (max-width: 1084px) {
	.service {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 853px) {
	.service {
		grid-template-columns: repeat(auto-fit, minmax(407px, 2fr));
	}
}

@media (max-width: 462px) {
	.service {
		grid-template-columns: repeat(auto-fit, minmax(391px, 2fr));
	}
}

@media (max-width: 422px) {
	.service {
		grid-template-columns: repeat(auto-fit, minmax(197px, 1fr));
	}
}

@media (max-width: 386px) {
	.service {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}


/* 关于我们模块样式 */
.about-grid {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	background: none;
}

.about-left {
	text-align: left;
	width: 50%;
}

.about-title {
	font-size: 2rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 1.5rem;
}

.about-desc {
	font-size: 0.9rem;
	color: #444;
	margin-bottom: 1rem;
	line-height: 2;
	text-align: justify;
}

.about-stats {
	display: flex;
	gap: 3rem;
	margin-top: 2.5rem;
}

.about-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-stat-num {
	font-size: 2.2rem;
	font-weight: 600;
	color: #8B6F47;
	margin-bottom: 0.2rem;
}

.about-stat-label {
	font-size: 1rem;
	color: #888;
}

.about-right {
	display: flex;
	align-items: center;
	width: 70%;
}

.about-img {
	width: 100%;
}

.about-section-btn {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

/* 按钮样式 */
.btn-primary {
	background: #000;
	color: #fff;
	border: none;
	padding: 12px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	/* margin-bottom: 20px; */
	border-radius: 25px;
	min-width: 160px;
	text-align: center;
}

.btn-primary:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px #9a9a9a;
}

@media (max-width: 1180px) {
	.about-left {
		width: 30%;
	}

	.about-right {
		width: 75%;
	}
}

@media (max-width: 1100px) {
	.about-title {
		text-align: center;
	}

	.about-grid {
		display: block;
	}

	.about-left {
		width: 95%;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.about-right {
		width: 95%;
		margin: 0 auto;
	}
}

@media (max-width: 395px) {
	.about-stats {
		gap: 1rem;
	}

	.about-stat-num {
		font-size: 2rem;
	}

	.about-stat-label {
		font-size: 1rem;
	}
}



.about-carousel {
	position: relative;
	width: 100%;
	height: 100%;
}


.about-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s;
}

.about-carousel-btn:hover {
	background: rgba(0, 0, 0, 0.6);
}

.about-carousel-btn.prev {
	left: 10px;
}

.about-carousel-btn.next {
	right: 10px;
}