@charset "utf-8";
/* CSS Document */

/* 顶部横幅 */
.top-banner {
	position: relative;
	width: 100%;
	height: 9.2rem;
	overflow: hidden;
	background: #fdfdfd;
}

.banner-bg {
	position: absolute;
	top: -0;
	left: 0;
	width: 100%;
	height: 5.32rem;
	background: #eaeced;
	opacity:1;
	
}
.logo{
    position: absolute;
    left: .38rem;
    top: .38rem;
    width: 2.12rem;

}


.banner-content {
	position: absolute;
	top: 1.88rem;
	left: 0.36rem;
	width: 6.98rem;
}

.contact-btn {
	position: absolute;
	top: 0.52rem;
	right: 0.59rem;
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.28rem;
	color: #606266;
	letter-spacing: 0.026rem;
	text-transform: uppercase;
}

/* 通用区块样式 */
.section-header {
	text-align: center;
	margin-bottom: 0.6rem;
}

.section-header h2 {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: bold;
	font-size: 0.48rem;
	line-height: 0.88rem;
	color: #212121;
	margin-bottom: 0.2rem;
}

.section-header p {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.28rem;
	line-height: 0.39rem;
	color: #606266;
	text-align: center;
	padding: 0 0rem;
}

/* 服务项目 */
.service-section {
	padding: 0.8rem 0 0.8rem;
	background: #f6f6f6;
}

.service-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 0.32rem;
	padding: 0 0.32rem;
}

.service-item {
	background: white;
	border: 1px solid white;
	border-radius: 0.24rem;
	height: 3.54rem;
	padding: 0.32rem;
	position: relative;
	overflow: hidden;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%), 
					  linear-gradient(215.3462149887592deg, rgba(255, 200, 208, 0.6) 38.378%, rgba(255, 255, 255, 1) 19.853%);
}

.service-icon {
	position: relative;
	width: 1.12rem;
	height: 1.12rem;
	margin-bottom: 0.36rem;
}

.icon-bg {
	position: absolute;
	top: 0.32rem;
	left: 0.32rem;
	width: 0.68rem;
	height: 0.68rem;
	background: rgba(255, 200, 208, 0.6);
	backdrop-filter: blur(0.048rem);
	-webkit-backdrop-filter: blur(0.048rem);
	border: 1px solid white;
	border-radius: 0.08rem;
}

.service-icon img {
	width: 100%;
    height: 100%;
	object-fit: contain;
}

.service-item h3 {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: 500;
	font-size: 0.36rem;
	line-height: 0.4rem;
	color: black;
	margin-bottom: 0.16rem;
}

.service-item p {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.24rem;
	line-height: 0.4rem;
	color: #6b6a6a;
}

/* 合作企业 */
.partners-section {
	padding: 0.48rem 0;
	background: white;
	overflow: hidden;
}

.partners-grid {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.partner-row {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.partner-track {
	display: flex;
	gap: 0.2rem;
	width: max-content;
}

/* 向左滚动动画 */
.scroll-left .partner-track {
	animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* 向右滚动动画 */
.scroll-right .partner-track {
	animation: scrollRight 30s linear infinite;
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

/* 鼠标悬停暂停动画 */
.partner-row:hover .partner-track {
	animation-play-state: paused;
}

.partner-item {
	width: 2.18rem;
	height: 0.9rem;
	background: white;
	border-radius: 0.08rem;
	border: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


.partner-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
    transform: scale(1.1);
}

/* 团队展示 */
.team-section {
	padding: 0.48rem 0;
	background: #f6f6f6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 0.2rem;
	padding: 0 0.32rem;
}

.team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.member-avatar {
	width: 0.96rem;
	height: 0.96rem;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 0.1rem;
	position: relative;
}

.member-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member p {
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.24rem;
    line-height: 0.4rem;
    color: #999;
    text-align: center;
}

/* 项目案例 */
.cases-section {
	padding: 0.48rem 0.32rem;
	background: white;
}

.cases-grid {
	display: flex;
	flex-direction: column;
	gap: 0.16rem;
	margin-bottom: 0.3rem;
}

.case-item {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	border-radius: 0.12rem;
}

.case-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.12rem;
}

/* 加载提示 */
.loading-indicator {
	text-align: center;
	padding: 0.4rem 0;
}

.loading-spinner {
	width: 0.4rem;
	height: 0.4rem;
	border: 0.04rem solid #f3f3f3;
	border-top: 0.04rem solid #e41736;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 0.15rem;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-indicator p,
.load-complete p {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-size: 0.14rem;
	color: #999;
	margin: 0;
}

.load-complete {
	text-align: center;
	padding: 0.3rem 0;
}

/* 底部联系 */
.bottom-contact {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 7.5rem;
	height: 1.7rem;
	background: white;
	padding: 0.32rem;
	box-shadow: 0 -0.08rem 0.08rem 0 rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-btn-large {
	background: #e41736;
	color: white;
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: bold;
	font-size: 0.32rem;
	line-height: 1;
	padding: 0.3rem 2.44rem;
	border-radius: 0.48rem;
	text-align: center;
}

/* 联系我们弹窗 */
.contact-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.contact-modal.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.modal-content {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 7.5rem;
	max-height: 90vh;
	background: #f0f0f0;
	border-radius: 0.2rem 0.2rem 0 0;
	overflow: hidden;
	animation: slideUpFromBottom 0.3s ease;
}

@keyframes slideUpFromBottom {
	from { 
		transform: translate(-50%, 100%);
	}
	to { 
		transform: translate(-50%, 0);
	}
}

.modal-close {
	position: absolute;
	top: 0.15rem;
	right: 0.2rem;
	width: 0.4rem;
	height: 0.4rem;
	font-size: 0.5rem;
	line-height: 0.4rem;
	text-align: center;
	color: #666;
	cursor: pointer;
	z-index: 10;
	font-weight: 300;
	transition: color 0.2s;
}

.modal-close:hover {
	color: #333;
}

.modal-body {
	padding: 0.5rem 0.3rem 0.4rem;
	background: #f0f0f0;
	overflow-y: auto;
	max-height: 85vh;
}

.modal-intro {
	text-align: center;
	margin-bottom: 0.4rem;
	padding: 0 0.3rem;
}

.modal-intro p {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.28rem;
	line-height: 1.6;
	color: #666;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0 0;
}

.contact-card {
	position: relative;
	background: white;
	border-radius: 0.16rem;
	padding: 0.45rem 0.35rem 0.35rem;
	box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
}

.card-tag {
	position: absolute;
	top: -0.15rem;
	left: 0.35rem;
	background: #e41736;
	color: white;
	padding: 0.08rem 0.16rem;
	border-radius: 0.06rem;
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: 500;
	font-size: 0.22rem;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 0.06rem;
}

.card-tag img {
	width: 0.22rem;
	height: 0.22rem;
	object-fit: contain;
}

.card-info {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	margin-top: 0.1rem;
}

.info-row {
	display: flex;
	align-items: flex-start;
	gap: 0.15rem;
}

.info-icon {
	width: 0.32rem;
	height: 0.32rem;
	flex-shrink: 0;
	margin-top: 0.02rem;
}

.info-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.info-content {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	flex: 1;
	position: relative;
}

.info-label {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: bold;
	font-size: 0.28rem;
	line-height: 1.5;
	color: #333;
	min-width: 0.56rem;
}

.info-value {
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.28rem;
	line-height: 1.5;
	color: #333;
	flex: 1;
}

.info-note {
	margin-left: 0.15rem;
	font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
	font-weight: normal;
	font-size: 0.2rem;
	color: #e41736;
	white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 750px) {
	.top-banner {
		height: 9.2rem;
	}
	
	.service-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.32rem;
	}
	
	.team-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.2rem;
	}
}
