﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-weight: 500;
}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}

a:hover {
	color: #006bb7;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	height: 100px;
	background-color: #000;
	transition: all 0.3s ease;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 100px;
}

/* PC端导航样式 */
.nav-pc {
	display: flex;
}

.nav-item {
	position: relative;
	margin-left: 45px;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #2e4e9e;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2e4e9e;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #2e4e9e;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

.nav-mobile-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	padding-right: 50px;
	position: relative;
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.banner {
	margin-top: 100px;
}

.fp_box_1 {
	padding: 80px 0;
	background: url(../images/bg1.jpg) no-repeat;
	background-size: 100% 100%;
}

@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
	}

	.nav-item {
		margin-left: 20px;
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
	}

	.nav-item {
		margin-left: 15px;
	}

	.nav-link {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-container {
		padding: 10px 15px;
	}

	.logo img {
		height: 40px;
	}
}



/* 轮播区域样式 */


.section_title {
	text-align: center;
	font-size: 36px;
	color: #d4a574;
	font-weight: 400;
	margin-bottom: 60px;
	letter-spacing: 2px;
}

.fp_box_1 .swiper-wrap {
	position: relative;
}

.fp_box_1 .swiper-container {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 100px;
	position: relative;
}

.fp_box_1 .swiper-slide {
	width: 800px;
	height: 500px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	position: relative;
}

.fp_box_1 .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fp_box_1 .swiper-slide .slide-title {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	color: #333;
	padding: 12px 40px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fp_box_1 .swiper-slide-active .slide-title {
	opacity: 1;
	color: #fff;
}

.fp_box_1 .swiper-button-prev,
.fp_box_1 .swiper-button-next {
	width: 50px;
	height: 50px;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	margin-top: -25px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.fp_box_1 .swiper-button-prev {
	left: 20px;
}

.fp_box_1 .swiper-button-next {
	right: 20px;
}

.fp_box_1 .swiper-button-prev span,
.fp_box_1 .swiper-button-next span {
	font-size: 40px;
	color: #fff;
	line-height: 1;
	font-weight: 300;
}

.fp_box_1 .swiper-button-prev::after,
.fp_box_1 .swiper-button-next::after {
	content: '';
}

.fp_box_1 .swiper-pagination {
	bottom: 30px;
}

.fp_box_1 .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #999;
	opacity: 1;
}

.fp_box_1 .swiper-pagination-bullet-active {
	background: #d4a574;
	width: 30px;
	border-radius: 5px;
}

/* 响应式 */
@media only screen and (max-width: 1400px) {
	.fp_box_1 .swiper-slide {
		width: 700px;
		height: 450px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_1 .swiper-slide {
		width: 600px;
		height: 400px;
	}
}

@media only screen and (max-width: 1024px) {
	.fp_box_1 .swiper-slide {
		width: 500px;
		height: 350px;
	}
}

@media only screen and (max-width: 768px) {
	.fp_box_1 {
		padding: 60px 0;
	}

	.section_title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.fp_box_1 .swiper-container {
		padding-top: 30px;
		padding-bottom: 80px;
	}

	.fp_box_1 .swiper-slide {
		width: 400px;
		height: 280px;
	}

	.fp_box_1 .swiper-slide .slide-title {
		font-size: 16px;
		padding: 10px 30px;
		bottom: 30px;
	}

	.fp_box_1 .swiper-button-prev,
	.fp_box_1 .swiper-button-next {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}

	.fp_box_1 .swiper-button-prev span,
	.fp_box_1 .swiper-button-next span {
		font-size: 32px;
	}
}

@media only screen and (max-width: 640px) {
	.fp_box_1 .swiper-slide {
		width: 350px;
		height: 240px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_1 {
		padding: 40px 0;
	}

	.section_title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.fp_box_1 .swiper-container {
		padding-top: 20px;
		padding-bottom: 60px;
	}

	.fp_box_1 .swiper-slide {
		width: 280px;
		height: 200px;
	}

	.fp_box_1 .swiper-slide .slide-title {
		font-size: 14px;
		padding: 8px 25px;
		bottom: 20px;
	}

	.fp_box_1 .swiper-button-prev,
	.fp_box_1 .swiper-button-next {
		width: 35px;
		height: 35px;
		margin-top: -17px;
	}

	.fp_box_1 .swiper-button-prev {
		left: 10px;
	}

	.fp_box_1 .swiper-button-next {
		right: 10px;
	}

	.fp_box_1 .swiper-button-prev span,
	.fp_box_1 .swiper-button-next span {
		font-size: 28px;
	}

	.fp_box_1 .swiper-pagination {
		bottom: 20px;
	}
}

@media only screen and (max-width: 375px) {
	.fp_box_1 .swiper-slide {
		width: 240px;
		height: 170px;
	}

	.fp_box_1 .swiper-slide .slide-title {
		font-size: 13px;
		padding: 6px 20px;
		bottom: 15px;
	}

	.fp_box_1 .swiper-button-prev,
	.fp_box_1 .swiper-button-next {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		border-width: 1px;
	}

	.fp_box_1 .swiper-button-prev span,
	.fp_box_1 .swiper-button-next span {
		font-size: 24px;
	}
}


/* fp_box_2 样式 */
.fp_box_2 {
	padding: 80px 0;
	background-color: rgba(22, 23, 25, 1);
	color: #fff;
}

.main_title {
	text-align: center;
	font-size: 32px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 50px;
	letter-spacing: 1px;
}

.brand_tags {
	display: flex;
	justify-content: space-between;
	gap: 0;
	margin-bottom: 60px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50px;
	padding: 0;
	overflow: hidden;
}

.brand_tag {
	flex: 1;
	text-align: center;
	padding: 20px 30px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	cursor: pointer;
}

.brand_tag:last-child {
	border-right: none;
}

.brand_tag:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.about_content {
	overflow: hidden;
}

.about_left {
	float: left;
	width: 50%;
	padding-right: 15px;
	background-color: rgba(28, 29, 31, 1);
	padding: 40px;
	border-radius: 10px;
	box-sizing: border-box;
}

.about_subtitle {
	font-size: 14px;
	color: #d4a574;
	font-weight: 400;
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.about_title {
	font-size: 28px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 30px;
	line-height: 1.5;
}

.about_text {
	color: rgba(255, 255, 255, 0.6);
	line-height: 2;
	font-size: 15px;
	margin-bottom: 35px;
}

.about_text p {
	margin-bottom: 20px;
}

.learn_more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.learn_more:hover {
	color: #d4a574;
	gap: 12px;
}

.about_right {
	float: right;
	width: 50%;
}

.about_right img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

/* 响应式 */
@media only screen and (max-width: 1024px) {
	.about_content {
		gap: 30px;
	}

	.about_left {
		padding: 40px;
	}

	.about_right {
		max-width: 450px;
	}
}

@media only screen and (max-width: 768px) {
	.fp_box_2 {
		padding: 60px 0;
	}

	.main_title {
		font-size: 26px;
		margin-bottom: 35px;
	}

	.brand_tags {
		flex-wrap: wrap;
		border-radius: 20px;
		margin-bottom: 40px;
	}

	.brand_tag {
		flex: 1 1 45%;
		padding: 15px 20px;
		font-size: 14px;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.brand_tag:nth-child(2n) {
		border-right: none;
	}

	.brand_tag:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.about_content {
		overflow: visible;
	}

	.about_left {
		float: none;
		width: 100%;
		padding: 35px;
		margin-bottom: 30px;
	}

	.about_title {
		font-size: 22px;
	}

	.about_text {
		font-size: 13px;
		line-height: 1.9;
	}

	.about_right {
		float: none;
		width: 100%;
		padding-left: 0;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_2 {
		padding: 40px 0;
	}

	.main_title {
		font-size: 20px;
		margin-bottom: 25px;
		padding: 0 15px;
	}

	.brand_tags {
		flex-direction: column;
		border-radius: 15px;
		margin-bottom: 30px;
	}

	.brand_tag {
		flex: 1 1 100%;
		padding: 15px 20px;
		font-size: 13px;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.brand_tag:last-child {
		border-bottom: none;
	}

	.about_left {
		float: none;
		width: 100%;
		padding: 25px;
		margin-bottom: 20px;
	}

	.about_subtitle {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.about_title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.about_text {
		font-size: 13px;
		line-height: 1.8;
		margin-bottom: 30px;
	}

	.about_text p {
		margin-bottom: 15px;
	}

	.learn_more {
		font-size: 13px;
	}

	.about_right {
		float: none;
		width: 100%;
		padding-left: 0;
	}
}

/* fp_box_3 样式 */
.fp_box_3 {
	padding: 80px 0;
	background: #000;
	color: #fff;
}

.service_header {
	text-align: center;
	margin-bottom: 60px;
}

.service_subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.service_title {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
	letter-spacing: 1px;
}

.service_list {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.service_item {
	flex: 1;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
	padding: 0 30px;
}

.service_item:nth-child(2) {
	background-color: rgba(255, 255, 255, 0.2);
}

.service_card {}

.service_card_header {
	padding: 30px 0px;
	text-align: center;
}

.service_card_title {
	font-size: 26px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 12px;
}

.service_card_subtitle {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 1.5px;
}

.service_card_img {
	width: 100%;
	height: 240px;
	overflow: hidden;
	margin: 0 -30px;
	width: calc(100% + 60px);
}

.service_card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service_item:hover .service_card_img img {
	transform: scale(1.1);
}

.service_card_desc {
	padding: 30px 0;
	font-size: 16px;
	line-height: 2.2;
	color: rgba(255, 255, 255, 0.6);
}

.service_card_btn {
	display: inline-block;
	margin-bottom: 40px;
	padding: 12px 35px;
	background: rgba(212, 165, 116, 0.9);
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.service_card_btn:hover {
	background: rgba(212, 165, 116, 1);
	color: #fff;
	transform: translateX(5px);
}

/* 响应式 */
@media only screen and (max-width: 1024px) {
	.service_list {
		gap: 20px;
	}

	.service_card_img {
		height: 200px;
	}
}

@media only screen and (max-width: 768px) {
	.fp_box_3 {
		padding: 60px 0;
	}

	.service_header {
		margin-bottom: 40px;
	}

	.service_title {
		font-size: 26px;
	}

	.service_list {
		flex-direction: column;
		gap: 30px;
	}

	.service_card_img {
		height: 250px;
	}

	.header {
		height: 60px;
	}

	.banner {
		margin-top: 60px;
	}

	.about-page-banner {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_3 {
		padding: 40px 0;
	}

	.service_header {
		margin-bottom: 30px;
	}

	.service_subtitle {
		font-size: 12px;
	}

	.service_title {
		font-size: 22px;
	}

	.service_item {
		padding: 0 20px;
	}

	.service_card_header {
		padding: 30px 0 20px;
	}

	.service_card_title {
		font-size: 22px;
	}

	.service_card_subtitle {
		font-size: 12px;
	}

	.service_card_img {
		height: 200px;
		margin: 0 -20px;
		width: calc(100% + 40px);
	}

	.service_card_desc {
		padding: 25px 0;
		font-size: 13px;
		line-height: 2;
	}

	.service_card_btn {
		margin-bottom: 30px;
		padding: 10px 30px;
		font-size: 14px;
	}
}

/* fp_box_4 样式 */
.fp_box_4 {
	padding: 80px 0;
	background: url(../images/bg2.png);
	color: #fff;
}

.case_header {
	text-align: center;
	margin-bottom: 60px;
}

.case_subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.case_title {
	font-size: 32px;
	color: #d4a574;
	font-weight: 400;
	letter-spacing: 1px;
}

.case_item {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-bottom: 0;
	overflow: hidden;
	min-height: 500px;
}

.case_item:last-child {
	margin-bottom: 0;
}

.case_img {
	flex: 0 0 70%;
	position: relative;
	overflow: hidden;
}

.case_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.case_item:hover .case_img img {
	transform: scale(1.05);
}

.case_content {
	flex: 0 0 30%;
	padding: 80px 60px;
	background-color: rgb(73, 73, 73);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.case_item_reverse {
	flex-direction: row-reverse;
}

.case_name {
	font-size: 42px;
	color: #d4a574;
	font-weight: 300;
	margin-bottom: 30px;
	line-height: 1.3;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 30px;
}

.case_subtitle_en {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
	margin-bottom: 25px;
	display: none;
}

.case_desc {
	font-size: 16px;
	line-height: 2.2;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 40px;
}

.case_tags {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 50px;
}

.case_btn {
	display: inline-block;
	padding: 15px 50px;
	background: rgba(212, 165, 116, 1);
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.case_btn:hover {
	background: rgba(212, 165, 116, 0.85);
	color: #fff;
}

/* 响应式 */
@media only screen and (max-width: 1024px) {
	.case_content {
		padding: 40px 50px;
	}

	.case_name {
		font-size: 40px;
	}
}

@media only screen and (max-width: 768px) {
	.fp_box_4 {
		padding: 60px 0;
	}

	.case_header {
		margin-bottom: 40px;
	}

	.case_title {
		font-size: 26px;
	}

	.case_item {
		flex-direction: column !important;
		margin-bottom: 40px;
	}

	.case_img {
		flex: 0 0 auto;
		width: 100%;
		height: 300px;
	}

	.case_content {
		flex: 0 0 auto;
		width: 100%;
		padding: 35px 30px;
	}

	.case_name {
		font-size: 36px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_4 {
		padding: 40px 0;
	}

	.case_header {
		margin-bottom: 30px;
	}

	.case_subtitle {
		font-size: 12px;
	}

	.case_title {
		font-size: 22px;
	}

	.case_item {
		margin-bottom: 30px;
	}

	.case_img {
		height: 250px;
	}

	.case_content {
		padding: 30px 25px;
	}

	.case_name {
		font-size: 32px;
		margin-bottom: 12px;
	}

	.case_subtitle_en {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.case_desc {
		font-size: 13px;
		line-height: 1.9;
		margin-bottom: 15px;
	}

	.case_tags {
		font-size: 12px;
		margin-bottom: 25px;
	}

	.case_btn {
		padding: 9px 25px;
		font-size: 13px;
	}
}

/* fp_box_5 样式 */
.fp_box_5 {
	padding: 80px 0 20px 0;
	background: #000;
	color: #fff;
}

.news_header {
	text-align: center;
	margin-bottom: 60px;
}

.news_subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.news_title {
	font-size: 32px;
	color: #d4a574;
	font-weight: 400;
	letter-spacing: 1px;
}

.news_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.news_item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.news_item:hover {
	background: rgba(255, 255, 255, 0.08);
}

.news_img {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 180px;
	overflow: hidden;
	transition: left 0.5s ease;
	z-index: 1;
}

.news_item:hover .news_img {
	left: 0;
}

.news_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news_content {
	padding: 40px 30px;
	position: relative;
	z-index: 2;
	min-height: 350px;
}

.news_date {
	font-size: 50px;
	color: #fff;
	font-weight: 300;
	margin-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 60px;
}

.news_title_text {
	    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 27px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_desc {
	font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式 */
@media only screen and (max-width: 1200px) {
	.news_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}

@media only screen and (max-width: 768px) {
	.fp_box_5 {
		padding: 60px 0;
	}

	.news_header {
		margin-bottom: 40px;
	}

	.news_title {
		font-size: 26px;
	}

	.news_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.news_img {
		left: 0;
		position: relative;
		height: 180px;
	}

	.news_content {
		padding: 30px 25px;
		min-height: auto;
	}

	.news_date {
		font-size: 32px;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}

	.news_title_text {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.news_desc {
		font-size: 13px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_5 {
		padding: 40px 0;
	}

	.news_header {
		margin-bottom: 30px;
	}

	.news_subtitle {
		font-size: 12px;
	}

	.news_title {
		font-size: 22px;
	}

	.news_list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.news_img {
		height: 200px;
	}

	.news_content {
		padding: 25px 20px;
	}

	.news_date {
		font-size: 30px;
		margin-bottom: 18px;
		padding-bottom: 15px;
	}

	.news_title_text {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.news_desc {
		font-size: 13px;
	}
}

/* footer 样式 */
.footer {
	padding: 80px 0;
	background: #3a3a3a;
	    background-color: rgb(40, 43, 48);
}

.footer_content {
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.footer_left {
	flex: 0 0 25%;
}

.footer_logo {
	height: 80px;
	display: block;
}

.footer_copyright {
	font-size: 12px;
	line-height: 1.8;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.5);
}

.footer_info {
	font-size: 11px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.4);
}

.footer_center {
	flex: 1;
	padding-left: 40px;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	padding-right: 40px;
}

.footer_contact_item {
	font-size: 14px;
	line-height: 2.2;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.75);
}

.footer_right {
	flex: 0 0 auto;
}

.footer_qrcode_list {
	display: flex;
	gap: 20px;
}

.footer_qrcode_item {
	text-align: center;
}

.footer_qrcode_item img {
	width: 90px;
	height: 90px;
	border-radius: 5px;
	margin-bottom: 8px;
	display: block;
}

.footer_qrcode_item p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	white-space: nowrap;
}

/* 响应式 */
@media only screen and (max-width: 1024px) {
	.footer_content {
		gap: 40px;
	}
	
	.footer_qrcode_item img {
		width: 80px;
		height: 80px;
	}
}

@media only screen and (max-width: 768px) {
	.footer {
		padding: 40px 0;
	}
	
	.footer_content {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer_left {
		flex: 0 0 auto;
		width: 100%;
	}
	
	.footer_center {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		border-left: none;
		border-right: none;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding-top: 25px;
		padding-bottom: 25px;
	}
	
	.footer_right {
		width: 100%;
	}
	
	.footer_logo {
		height: 50px;
		margin-bottom: 20px;
	}
	
	.footer_qrcode_list {
		justify-content: flex-start;
		gap: 25px;
	}
	
	.footer_qrcode_item img {
		width: 90px;
		height: 90px;
	}
}

@media only screen and (max-width: 480px) {
	.footer {
		padding: 30px 0;
	}
	
	.footer_content {
		gap: 25px;
	}
	
	.footer_logo {
		height: 45px;
	}
	
	.footer_copyright {
		font-size: 11px;
	}
	
	.footer_info {
		font-size: 10px;
	}
	
	.footer_contact_item {
		font-size: 13px;
		line-height: 2;
	}
	
	.footer_qrcode_list {
		gap: 20px;
	}
	
	.footer_qrcode_item img {
		width: 85px;
		height: 85px;
	}
	
	.footer_qrcode_item p {
		font-size: 11px;
	}
}

/* 关于我们页 — 顶部横幅 */
.about-page-banner {
	position: relative;
	margin-top: 100px;
	min-height: 320px;;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: url(../images/download.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.about-page-banner.about-page-banner_two {
	background: url(../images/download11.jpg) no-repeat center center;
	background-size: cover;
}
.about-page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 25, 40, 0.35);
	pointer-events: none;
	z-index: 0;
}

.about-page-banner__inner {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 72px 24px 48px;
	box-sizing: border-box;
}

.about-page-banner__title {
	margin: 0 0 20px;
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
}

.about-page-banner__tagline {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	line-height: 1.6;
	opacity: 0.95;
}

.about-page-banner__nav {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: nowrap;
	width: 100%;
	min-height: 72px;
	padding: 0 16px;
	background: transparent;
	box-sizing: border-box;
}

.about-page-banner__nav-item {
	position: relative;
	z-index: 0;
	isolation: isolate;
	flex: 0 0 220px;
	width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 12px;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
	overflow: hidden;
	background: rgba(51, 51, 51, 1);
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	transition: border-color 0.25s ease;
}

.about-page-banner__nav-item:last-child {
	border-right: none;
}

.about-page-banner__nav-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #c89b48;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
	pointer-events: none;
}

.about-page-banner__nav-item:hover::before,
.about-page-banner__nav-item:focus-visible::before {
	transform: scaleX(1);
}

.about-page-banner__nav-item:hover,
.about-page-banner__nav-item:focus-visible {
	border-top-color: #fff;
	border-left-color: #fff;
	color: #fff;
	outline: none;
}

.about-page-banner__nav-item:focus-visible {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 1400px) {
	.about-page-banner {
		min-height: 480px;
	}

	.about-page-banner__inner {
		padding: 64px 20px 40px;
	}

	.about-page-banner__title {
		font-size: 44px;
		margin-bottom: 18px;
	}

	.about-page-banner__tagline {
		font-size: 19px;
	}

	.about-page-banner__nav {
		min-height: 68px;
	}

	.about-page-banner__nav-item {
		font-size: 17px;
		padding: 14px 10px;
	}
}

@media only screen and (max-width: 1200px) {
	.about-page-banner {
		min-height: 440px;
	}

	.about-page-banner__title {
		font-size: 36px;
		margin-bottom: 16px;
	}

	.about-page-banner__tagline {
		font-size: 17px;
	}

	.about-page-banner__nav {
		min-height: 64px;
	}

	.about-page-banner__nav-item {
		font-size: 16px;
	}
}

@media only screen and (max-width: 940px) and (min-width: 751px) {
	.about-page-banner__nav {
		flex-wrap: wrap;
		row-gap: 0;
	}

	.about-page-banner__nav-item:nth-child(2) {
		border-right: none;
	}

	.about-page-banner__nav-item:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media only screen and (max-width: 750px) {
	.about-page-banner {
		min-height: 360px;
		margin-top: 60px;
	}

	.about-page-banner__inner {
		padding: 40px 16px 28px;
	}

	.about-page-banner__title {
		font-size: 30px;
		margin-bottom: 12px;
	}

	.about-page-banner__tagline {
		font-size: 15px;
		padding: 0 8px;
	}

	.about-page-banner__nav {
		flex-wrap: wrap;
		min-height: auto;
		padding: 0 10px;
	}

	.about-page-banner__nav-item {
		flex: 1 1 50%;
		width: auto;
		max-width: none;
		min-height: 48px;
		font-size: 14px;
		padding: 12px 8px;
		border-top: 1px solid transparent;
		border-left: 1px solid transparent;
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.about-page-banner__nav-item:nth-child(2n) {
		border-right: none;
	}

	.about-page-banner__nav-item:nth-child(n + 3) {
		border-bottom: none;
	}
}

/* 关于我们页 — 资质荣誉 */
.fp_box_5 {
	padding: 92px 0 110px;
	background: #4b4b4b;
}

.about-honors {
	color: #fff;
}

.about-honors__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.42);
	margin-bottom: 42px;
}

.about-honors__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.about-honors__header {
	text-align: center;
	margin-bottom: 46px;
}

.about-honors__en {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.78);
}

.about-honors__title {
	margin: 0;
	font-size: 44px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.about-honors__line {
	display: block;
	width: 42px;
	height: 3px;
	margin: 20px auto 0;
	background: #c8a24d;
}

.about-honors__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 24px;
}

.about-honors__card {
	background: #efefef;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-honors__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.about-honors__image-wrap {
	background: #fff;
	aspect-ratio: 1.28 / 1;
	padding: 6px;
	overflow: hidden;
}

.about-honors__image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-honors__name {
	margin: 0;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #666;
	text-align: center;
	background: #efefef;
}

@media only screen and (max-width: 1400px) {
	.fp_box_5 {
		padding: 84px 0 96px;
	}

	.about-honors__en {
		font-size: 22px;
	}

	.about-honors__title {
		font-size: 40px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_5 {
		padding: 74px 0 88px;
	}

	.about-honors__header {
		margin-bottom: 38px;
	}

	.about-honors__en {
		font-size: 20px;
	}

	.about-honors__title {
		font-size: 34px;
	}

	.about-honors__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		padding: 54px 0 64px;
	}

	.about-honors__breadcrumb {
		margin-bottom: 28px;
		font-size: 11px;
		gap: 6px;
	}

	.about-honors__header {
		margin-bottom: 28px;
	}

	.about-honors__en {
		font-size: 15px;
		margin-bottom: 6px;
	}

	.about-honors__title {
		font-size: 28px;
	}

	.about-honors__line {
		width: 34px;
		margin-top: 14px;
	}

	.about-honors__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.about-honors__image-wrap {
		padding: 4px;
	}

	.about-honors__name {
		min-height: 50px;
		padding: 10px 8px;
		font-size: 13px;
		line-height: 1.5;
	}
}

body.about-honors-lightbox-open {
	overflow: hidden;
}

.about-honors-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	background: rgba(12, 12, 14, 0.9);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about-honors-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.about-honors-lightbox__dialog {
	position: relative;
	width: min(100%, 1280px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

.about-honors-lightbox__close {
	position: absolute;
	top: 18px;
	right: 22px;
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.about-honors-lightbox__main {
	width: 100%;
	height: min(68vh, 760px);
	padding: 0 72px;
	box-sizing: border-box;
}

.about-honors-lightbox__main-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-honors-lightbox__main-slide img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	background: #fff;
}

.about-honors-lightbox__arrow {
	position: absolute;
	top: 50%;
	width: 54px;
	height: 54px;
	margin-top: -27px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
	z-index: 2;
}

.about-honors-lightbox__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin: -6px 0 0 -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.about-honors-lightbox__arrow--prev {
	left: 0;
}

.about-honors-lightbox__arrow--prev::before {
	margin-left: -2px;
	transform: rotate(-135deg);
}

.about-honors-lightbox__arrow--next {
	right: 0;
}

.about-honors-lightbox__thumbs {
	width: min(100%, 620px);
	padding: 0 8px 6px;
	box-sizing: border-box;
}

.about-honors-lightbox__thumb-slide {
	height: 72px;
	width: 100%;
	border: 2px solid transparent;
	overflow: hidden;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.14);
	opacity: 0.55;
	box-sizing: border-box;
	transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.about-honors-lightbox__thumb-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-honors-lightbox__thumb-slide:hover {
	opacity: 0.82;
}

.about-honors-lightbox__thumb-slide.is-current {
	border-color: #fff;
	opacity: 1;
	transform: translateY(-2px);
}

@media only screen and (max-width: 1200px) {
	.about-honors-lightbox {
		padding: 24px;
	}

	.about-honors-lightbox__main {
		height: min(62vh, 620px);
		padding: 0 56px;
	}
}

@media only screen and (max-width: 750px) {
	.about-honors-lightbox {
		padding: 16px 10px 20px;
	}

	.about-honors-lightbox__dialog {
		gap: 14px;
	}

	.about-honors-lightbox__close {
		top: 8px;
		right: 8px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.about-honors-lightbox__main {
		height: 52vh;
		padding: 0 34px;
	}

	.about-honors-lightbox__arrow {
		width: 34px;
		height: 34px;
		margin-top: -17px;
	}

	.about-honors-lightbox__arrow::before {
		width: 10px;
		height: 10px;
		margin: -5px 0 0 -4px;
	}

	.about-honors-lightbox__thumbs {
		width: 100%;
		padding: 0 24px 4px;
	}

	.about-honors-lightbox__thumb-slide {
		height: 54px;
	}
}

/* 详情页 — 产品图文 */
.fp_box_6 {
	padding: 48px 0 20px;
	background: rgba(28, 29, 31, 1);
	color: rgba(255, 255, 255, 0.82);
}

.detail-page__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 36px;
}

.detail-page__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.detail-page__breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.detail-page__layout {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 48px;
}

.detail-page__gallery {
	flex: 0 1 38%;
	min-width: 0;
	max-width: 580px;
}

.detail-page__content {
	flex: 1 1 0;
	min-width: 0;
}

.detail-gallery__top {
	position: relative;
	width: 100%;
}

.detail-gallery__main-wrap {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.25);
	min-width: 0;
}

.detail-gallery__zoom-preview {
	position: absolute;
	left: calc(100% + 12px);
	top: 0;
	width: 100%;
	height: clamp(220px, 32vw, 420px);
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.45);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 8;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.detail-gallery__zoom-preview.is-active {
	opacity: 1;
	visibility: visible;
}

.detail-gallery__zoom-preview-inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.detail-gallery__zoom-preview-img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	max-width: none;
	width: auto;
	height: auto;
	will-change: transform, width, height;
}

.detail-gallery__lens {
	position: absolute;
	display: none;
	z-index: 2;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.22);
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.detail-gallery__lens.is-on {
	display: block;
}

.detail-gallery__main {
	position: relative;
	width: 100%;
	height: clamp(220px, 32vw, 420px);
	padding: 0;
	box-sizing: border-box;
}

.detail-gallery__main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.detail-gallery__thumbs-row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-top: 14px;
	box-sizing: border-box;
}

.detail-gallery__arrow {
	position: relative;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	z-index: 2;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
	color: inherit;
}

.detail-gallery__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 44%;
	width: 11px;
	height: 11px;
	margin: -5px 0 0 -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.detail-gallery__arrow--prev::before {
	margin-left: -2px;
	transform: rotate(-135deg);
}

.detail-gallery__zoom {
	position: absolute;
    right: 0;
    bottom: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.95);
	color: #1c1d1f;
	cursor: pointer;
	box-sizing: border-box;
}

.detail-gallery__zoom-icon {
	display: block;
}

.detail-gallery__zoom:hover {
	background: #fff;
}

.detail-gallery__thumbs {
	flex: 1 1 0;
	min-width: 0;
	width: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.detail-gallery__thumb-slide {
	height: 68px;
	border: 2px solid rgba(255, 255, 255, 0.28);
	overflow: hidden;
	cursor: pointer;
	box-sizing: border-box;
	opacity: 0.75;
	transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.detail-gallery__thumb-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detail-gallery__thumb-slide:hover {
	opacity: 0.95;
}

.detail-gallery__thumb-slide.is-current {
	border-color: #c53030;
	opacity: 1;
	transform: translateY(-2px);
}

.detail-page__title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 16px;
	font-size: clamp(26px, 3.2vw, 36px);
	font-weight: 600;
	line-height: 1.2;
	color: #d4a574;
}

.detail-page__title-bar {
	display: block;
	width: 4px;
	height: 1.1em;
	flex-shrink: 0;
	background: #d4a574;
	border-radius: 1px;
}

.detail-page__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin-bottom: 20px;
}

.detail-page__meta {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.6;
}

.detail-page__meta-label {
	color: #d4a574;
	margin-right: 8px;
}

.detail-page__meta-value {
	color: rgba(255, 255, 255, 0.92);
}

.detail-page__section-title {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 600;
	color: #d4a574;
}

.detail-page__detail-block {
	margin-top: 56px;
}

.detail-page__section-title--detail {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 30px;
	font-weight: 500;
	color: #f3f3f3;
}

.detail-page__section-title-bar {
	display: block;
	width: 3px;
	height: 24px;
	flex-shrink: 0;
	background: #d4a574;
	border-radius: 2px;
}

.detail-page__detail-divider {
	height: 1px;
	margin-bottom: 28px;
	background: rgba(255, 255, 255, 0.32);
}

.detail-page__detail-content p {
	margin: 0;
	font-size: 16px;
	line-height: 2.2;
	color: rgba(255, 255, 255, 0.82);
}

.fp_box_7{
	padding-bottom: 30px;
}

.fp_box_8 {
	padding: 36px 0 56px;
	
}
.fp_box_9{
	padding-bottom: 50px;
}
.fp_box_9 h3{
	color: #fff;
	text-align: left;
}
.fp_box_9 ul{
	margin-left: -15px;
	margin-right: -15px;
}
.fp_box_9 ul li div{
	position: relative;
	width: 100%;
	height: 350px;
}
.fp_box_9 ul li div p{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	text-align: center;
	line-height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	line-height: 50px;
	margin-bottom: 0;
}
.fp_box_9 ul li div:hover{
	display: flex;
	
}
.fp_box_9 ul li div:hover p{
	height: 100%;
	line-height: 350px;
}
.detail-message {
	padding: 0 34px;
	background: #fff;
	padding: 50px 35px;
}

.detail-message__title {
	margin: 0 0 28px;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	color: #2d2d2d;
}

.detail-message__form {
	margin: 0;
}

.detail-message__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
	margin-bottom: 14px;
}

.detail-message__field {
	margin: 0;
}

.detail-message__field input,
.detail-message__field textarea {
	display: block;
	width: 100%;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	background: #fff;
	box-sizing: border-box;
	font-size: 14px;
	color: #333;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-message__field input {
	height: 42px;
	line-height: 42px;
}

.detail-message__field textarea {
	height: 94px;
	padding-top: 12px;
	padding-bottom: 12px;
	line-height: 1.8;
	resize: none;
}

.detail-message__field input::placeholder,
.detail-message__field textarea::placeholder {
	color: #9a9a9a;
}

.detail-message__field input:focus,
.detail-message__field textarea:focus {
	border-color: #b7b7b7;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.03);
}

.detail-message__field--textarea {
	margin-bottom: 22px;
}

.detail-message__actions {
	text-align: center;
}

.detail-message__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	height: 38px;
	padding: 0 28px;
	border: 0;
	border-radius: 3px;
	background: #3a3a3a;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.detail-message__submit:hover {
	background: #2d2d2d;
	transform: translateY(-1px);
}

.detail-page__keywords {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	margin-top: 56px;
}

.detail-page__keywords-label {
	flex-shrink: 0;
	font-size: 14px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.52);
}

.detail-page__keywords-text {
	margin: 0;
	font-size: 14px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.42);
}

.detail-page__desc {
	margin-bottom: 32px;
}

.detail-page__desc p {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.68);
}

.detail-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.detail-page__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	padding: 12px 22px;
	border-radius: 6px;
	background: #c89b48;
	color: #fff !important;
	font-size: 14px;
	text-decoration: none !important;
	transition: background 0.25s ease, transform 0.2s ease;
}

.detail-page__btn:hover {
	background: #d4a574;
	color: #fff !important;
	transform: translateY(-1px);
}
.fp_box_9 ul li{
	width: 25%;
	float: left;
	padding: 0 10px;
}
.fp_box_9 ul li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

	
@media only screen and (max-width: 991px) {
	.detail-page__layout {
		flex-direction: column;
		gap: 36px;
	}

	.detail-page__gallery {
		flex: none;
		width: 100%;
		max-width: none;
	}

	.detail-gallery__zoom-preview {
		display: none;
	}

	.detail-gallery__main {
		height: clamp(240px, 58vw, 400px);
	}

	.detail-gallery__thumb-slide {
		height: 56px;
	}

	.detail-message {
		padding:  20px;
	}

	.detail-message__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

@media only screen and (max-width: 575px) {
	.fp_box_6 {
		padding: 32px 0 64px;
	}

	.fp_box_8 {
		padding: 28px 0 42px;
	}

	.detail-page__breadcrumb {
		margin-bottom: 24px;
		font-size: 11px;
	}

	.detail-gallery__main {
		height: min(52vw, 280px);
		min-height: 200px;
	}

	.detail-gallery__thumbs-row {
		gap: 8px;
		margin-top: 10px;
	}

	.detail-gallery__arrow {
		width: 36px;
		height: 36px;
	}

	.detail-gallery__arrow::before {
		width: 9px;
		height: 9px;
		margin: -4px 0 0 -3px;
	}

	.detail-gallery__thumb-slide {
		height: 48px;
	}

	.detail-page__detail-block {
		margin-top: 34px;
	}

	.detail-page__section-title--detail {
		margin-bottom: 14px;
		font-size: 17px;
	}

	.detail-page__detail-divider {
		margin-bottom: 18px;
	}

	.detail-page__detail-content p {
		font-size: 13px;
		line-height: 2;
	}

	.detail-page__keywords {
		flex-direction: column;
		gap: 6px;
		margin-top: 24px;
	}

	.detail-message__title {
		margin-bottom: 22px;
		font-size: 20px;
	}

	.detail-message__field input {
		height: 40px;
		line-height: 40px;
	}

	.detail-message__field textarea {
		height: 88px;
	}

	.detail-message__field--textarea {
		margin-bottom: 18px;
	}

	.detail-page__actions {
		flex-direction: column;
	}

	.detail-page__btn {
		width: 100%;
	}
	.detail-page__layout {
		display: block;
		flex-direction: row;
		align-items: flex-start;
		gap: 1;
	}
	.fp_box_9 ul li {
		width: 100%;
		float: left;
		padding: 0 10px;
	}
	.detail-page__content{
		margin-top: 30px;
	}
}
.about-honors-video {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .about-honors-video.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .about-honors-video__dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: 100%;
  }

  .about-honors-video__player {
    display: block;
    width: 100%;
    max-height: calc(100vh - 80px);
    background: #000;
    border-radius: 10px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  }

  .about-honors-video__close {
    position: absolute;
    top: 22px;
    right: 26px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
  }

  .about-honors-video__close:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  @media only screen and (max-width: 750px) {
    .about-honors-video {
      padding: 56px 16px 24px;
    }

    .about-honors-video__player {
      max-height: calc(100vh - 100px);
      border-radius: 8px;
    }

    .about-honors-video__close {
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 24px;
    }
  }