 .gallery-container {
 	max-width: 1400px;
 	margin: 0 auto;
 	padding: 0 15px;
 }

 .gallery-grid {
 	display: grid;
 	grid-template-columns: repeat(3, 1fr);
 	gap: 30px;
 }

 .gallery-item {
 	position: relative;
 	padding-bottom: 56.25%;
 	overflow: hidden;
 	cursor: pointer;
 	border-radius: 4px;
 	transition: transform 0.3s;
 }

 .gallery-item:hover {
 	transform: scale(1.02);
 }

 .gallery-item img {
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 }

 .lightbox {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background: rgba(0, 0, 0, 0.9);
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	z-index: 1000;
 	opacity: 0;
 	pointer-events: none;
 	transition: opacity 0.3s;
 }

 .lightbox.active {
 	opacity: 1;
 	pointer-events: all;
 }

 .lightbox-content {
 	position: relative;
 	width: 90%;
 	height: 90%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 }

 .lightbox-img {
 	max-width: 100%;
 	max-height: 100%;
 	display: block;
 	transition: transform 0.3s;
 }

 .lightbox-nav {
 	position: absolute;
 	top: 50%;
 	transform: translatey(-50%);
 	width: 100%;
 	display: flex;
 	justify-content: space-between;
 	padding: 0 20px;
 }

 .nav-btn {
 	background: rgba(255, 255, 255, 0.5);
 	border: none;
 	width: 50px;
 	height: 50px;
 	border-radius: 50%;
 	font-size: 24px;
 	color: white;
 	cursor: pointer;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	transition: background 0.3s;
 	z-index: 1001;
 }

 .nav-btn:hover {
 	background: rgba(255, 255, 255, 0.8);
 }

 .close-btn {
 	position: absolute;
 	top: 20px;
 	right: 20px;
 	background: none;
 	border: none;
 	color: white;
 	font-size: 30px;
 	cursor: pointer;
 	z-index: 1001;
 }

 .img-counter {
 	position: absolute;
 	bottom: 20px;
 	left: 50%;
 	transform: translatex(-50%);
 	color: white;
 	font-size: 16px;
 	background: rgba(0, 0, 0, 0.5);
 	padding: 5px 15px;
 	border-radius: 20px;
 	z-index: 1001;
 }

 .titcon {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 	max-width: 1400px;
 	margin: 50px auto 40px;
 }

 .titleft-column {
 	display: flex;
 	align-items: center;
 }

 .titleft-column img {
 	max-height: 50px;
 	/* 根据实际图片调整 */
 }

 /* 分页样式 */
 .pagination {
 	display: flex;
 	justify-content: center;
 	gap: 8px;
 	margin-top: 100px;
 }

 .pagination button {
 	padding: 8px 16px;
 	border: 1px solid #ddd;
 	background: white;
 	cursor: pointer;
 	border-radius: 4px;
 	transition: all 0.3s;
 }

 .pagination button:hover:not(:disabled) {
 	background: #7a0000;
 	color: white;
 	border-color: #7a0000;
 }

 .pagination button.active {
 	background: #7a0000;
 	color: white;
 	border-color: #7a0000;
 }

 .pagination button:disabled {
 	opacity: 0.5;
 	cursor: not-allowed;
 }

 @media (max-width: 768px) {
 	.gallery-grid {
 		grid-template-columns: repeat(2, 1fr);
 		gap: 15px;
 	}

 	.titcon {
 		margin: 40px auto 30px;
 		padding: 0 20px;
 	}

 	.titleft-column img {
 		max-height: 25px;
 	}

 	.lightbox-nav {
 		display: none;
 	}

 	.nav-btn {
 		width: 40px;
 		height: 40px;
 		font-size: 20px;
 	}
 }