/* 只保留Amaze UI无法实现的自定义样式 */
body {
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	overflow-x: hidden;
}

/* 顶部导航 */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 5%;
	z-index: 1000;
	transition: 0.3s ease;
}

.navbar.scrolled {
	background: rgba(0, 0, 0, 0.9);
	padding: 15px 5%;
	backdrop-filter: blur(10px);
}

.logo {
	color: white;
	font-size: 4rem;
	font-weight: bold;
	text-decoration: none;
}

a.logo:hover {
	color: #ffc107;
}

.logo img {
	width: 7rem;
	margin-right: 1.5rem;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	transition: 0.3s;
}

.nav-links a:hover {
	color: #ffc107;
}

.menu-toggle {
	display: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

/* 幻灯片 */
.slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	color: white;
	max-width: 600px;
}

.slide-content h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 幻灯片视频样式 */
.media-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 确保视频在所有幻灯片中正确显示 */
.slide .media-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner1 .slide-content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%);
	max-width: none;
}

.banner1 .slide-content h2 {
	font-size: 5.5rem;
	text-shadow: 2px 2px 4px #00008B;
}

.banner1 .slide-content .english {
	font-size: 2.28rem;
	text-shadow: 2px 2px 4px #00008B;
}

.banner1 .slide-content .chinese {
	font-size: 2.5rem;
	text-shadow: 2px 2px 4px #00008B;
}









/* 自定义按钮样式 - 覆盖Amaze UI */
.btn-custom {
	border-radius: 30px !important;
}

/* 板块样式 */
section {
	padding: 100px 5%;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 4rem;
	color: #333;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #ffc107;
}

/* 集团介绍 */
.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-text h3 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	color: #333;
}

.about-text p {
	line-height: 1.8;
	color: #666;
	margin-bottom: 10px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	height: 486px;
	background: #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.features {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 50px;
}

.feature {
	flex: 1;
	min-width: 250px;
	text-align: center;
	padding: 30px 20px;
	background: #f9f9f9;
	border-radius: 10px;
	transition: 0.3s;
}

.feature:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
	font-size: 4rem;
	color: #ffc107;
	margin-bottom: 20px;
}

.feature h4 {
	font-size: 2.2rem;
	margin-bottom: 15px;
	margin-top: 0;
	color: #333;
}

.feature p {
	color: #666;
	line-height: 1.6;
}

/* 荣誉资质 */
.honors-section {
	margin-top: 50px;
	clear: both;
}

.honors-section h3 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	color: #333;
}

.honors-section p {
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
}

/* 荣誉资质图片网格 */
.honors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.honor-img {
	height: 300px;
	background: #eee;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s;
}

.honor-img:hover {
	transform: scale(1.05);
}

.honor-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 产品中心 */
.products {
	background: #f5f5f5;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
	height: 250px;
	background: #ddd;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-info {
	padding: 25px;
}

.product-info h3 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #333;
}

.product-info p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 新闻中心 */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.news-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-img {
	height: 200px;
	background: #ddd;
}

.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-content {
	padding: 25px;
}

.news-date {
	color: #ffc107;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.news-content h3 {
	font-size: 2.3rem;
	margin-bottom: 15px;
	margin-top: 0;
	color: #333;
}

.news-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 诚聘英才 */
.careers {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/1080?random=5');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
}

.careers .section-title h2 {
	color: white;
}

.positions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}

.position {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 30px;
	width: 300px;
	backdrop-filter: blur(10px);
}

.position h3 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.position ul {
	list-style: none;
	text-align: left;
	margin: 20px 0;
	padding-left: 0;
}

.position ul li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.position ul li:last-child {
	border-bottom: none;
}

/* 联系我们 */
.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info h3 {
	font-size: 2.8rem;
	margin-bottom: 30px;
	color: #333;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.contact-detail i {
	font-size: 1.5rem;
	color: #ffc107;
	margin-right: 15px;
	margin-top: 5px;
}

.contact-text h4 {
	font-size: 1.9rem;
	margin-bottom: 5px;
	color: #333;
}

.contact-text p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.contact-form {
	flex: 1;
	min-width: 300px;
}

.form-group {
	margin-bottom: 20px;
}

/* 页脚 */
footer {
	background: #333;
	color: white;
	padding: 50px 5% 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section {
	flex: 1;
	min-width: 250px;
}

.footer-section h3 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: #ffc107;
}

.footer-section p {
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 20px;
}

.footer-section .am-list {
	margin: 0;
}

.footer-section .am-list>li>a {
	padding: .5rem 0;
	color: #ccc;
}





.footer-section .am-list li {
	background-color: unset;
	border: 0;
}

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #555;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: white;
	margin-right: 10px;
	transition: 0.3s;
}

.social-links a:hover {
	background: #ffc107;
	transform: translateY(-5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #555;
	color: #aaa;
	font-size: 1.5rem;
}

.footer-bottom a {
	color: #aaa;
}

/* .fpage{
	background-repeat: no-repeat;
	background-image: url(../images/banner/ob2.jpg);
	background-size: contain;
	background-color: #fff;
	background-position: center top;
} */



.ban1-a1 {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.ban1-a2 {
	width: 100%;
	position: relative;
	margin-left: calc(50% - 100%/2);
}

.ban1-a1 {
	transition: 0.5s;
	background-color: #000;;
}

.ban1-a1:hover {
	transform: scale(1.08);
	transition: 0.5s;
}

.ban1-a3 {
	text-align: right;
	font-size: 52px;
	line-height: 52px;
	color: #fff;
	font-weight: bold;
	position: absolute;
	top: 300px;
	right: calc(50% - 67%/2);
}

.ban1-a4 {
	text-align: right;
	font-size: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: lighter;
	position: absolute;
	top: 380px;
	right: calc(50% - 67%/2);
}

.ban1-a5 {
	width: 80px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 450px;
	right: calc(50% - 67%/2);
}

.ban1-a6 {
	text-align: right;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	top: 482px;
	right: calc(50% - 67%/2);
}




/*诚聘英才专题页css */
.careers-section {
	padding: 120px 5% 50px;
}

.position-card {
	background: #f9f9f9;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.position-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.position-title {
	font-size: 2.2rem;
	color: #333;
	margin-top: 0;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.position-location {
	background: #ffc107;
	color: #333;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 1.4rem;
}

.position-details {
	margin: 20px 0;
	padding-left: 20px;
}

.position-details li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.salary-range {
	color: #e74c3c;
	font-weight: bold;
	font-size: 1.6rem;
	margin: 15px 0;
}

.apply-btn {
	margin-top: 20px;
}


.sidebar-widget h3 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.sidebar-widget .am-list li {
	margin-bottom: 0;
	border-top: unset;
	border-bottom: 1px solid #dedede;
}


.benefits-section {
	background: #f5f5f5;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 50px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 30px;
	grid-template-columns: repeat(2, 1fr);
}

.benefit-item {
	text-align: center;
	/* padding: 20px; */
}

.benefit-item i {
	font-size: 5rem;
	color: #ffc107;
	margin-bottom: 15px;
}

/* 修改应聘流程样式，使其不那么紧凑 */
.process-section {
	background: #f5f5f5;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 50px;
}

.process-steps {
	margin-top: 30px;
}

.process-step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px dashed #ddd;
}

.process-step:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.step-number {
	background: #ffc107;
	color: #333;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-right: 20px;
	flex-shrink: 0;
}

.step-content h4 {
	margin-top: 0;
	margin-bottom: 10px;
}

.step-content p {
	margin: 0;
	color: #666;
}

@media (max-width: 768px) {
	.position-title {
		flex-direction: column;
		align-items: flex-start;
	}

	.position-location {
		margin-top: 10px;
	}
}


.flash-container {
	position: absolute;
	top: 25px;
	left: 193px;
	width: 580px;
	height: 550px;
	z-index: 1;
	border-radius: 50%;
	overflow: hidden;
	/* 隐藏圆形外的内容 */
	background: transparent;
}

#flashCanvas {
	display: block;
	width: 100%;
	height: 100%;
	background: transparent;
}










































.fpage {
	padding: 120px 5% 50px;
}

.fpage .section-title {
	display: none;
}










/* 响应式设计 */
@media (max-width: 992px) {
	.section-title h2 {
		font-size: 2rem;
	}

	.slide-content h2 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(0, 0, 0, 0.9);
		flex-direction: column;
		align-items: center;
		padding-top: 50px;
		transition: 0.3s;
	}

	.nav-links.active {
		left: 0;
	}

	.nav-links li {
		margin: 15px 0;
	}

	.slide-content {
		left: 5%;
		right: 5%;
		text-align: center;
	}

	.slide-content h2 {
		font-size: 2rem;
	}

	section {
		padding: 60px 5%;
	}

	.section-title h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	.slide-content h2 {
		font-size: 1.8rem;
	}

	.slide-content p {
		font-size: 1rem;
	}
}

@media (max-width: 490px) {
	.logo {
		font-size: 3rem;
	}
}

@media (max-width: 405px) {
	.fpage {
		padding: 50px 1% 50px;
	}

	.logo {
		font-size: 2.5rem;
	}

	.logo img {
		width: 4rem;
	}

	.ban1-a2 {
		overflow: hidden;
		height: 100vh;
	}

	.ban1-a2 img {
		position: absolute;
		/* 脱离文档流，不被父容器宽度限制 */
		left: 50%;
		/* 相对于父容器左边缘移动 50% */
		transform: translateX(-50%);
	}

	.ban1-a3 {
		top: 350px;
		right: calc(50% - 80%/2);
		left: 30px;
	}

	.ban1-a4 {
		top: 430px;
		right: calc(50% - 80%/2);
		left: 30px;
	}

	.ban1-a5 {
		top: 515px;
		right: calc(50% - 80%/2);
	}

	.ban1-a6 {
		top: 532px;
		right: calc(50% - 80%/2);
		left: 30px;
	}

	.flash-container {
		top: 50px;
		left: 0;
		width: 100%;
		height: 380px;
	}
}