@import url('style.css');

@import url('responsive.css');/* 首页导航增强 */.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(64, 196, 192, 0.1);
	padding: 15px 40px;
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(64, 196, 192, 0.1);
}

.nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	color: #40C4C0;
	text-decoration: none;
	font-family: "PingFangSC-Medium", sans-serif;
	font-size: 16px;
	transition: all 0.3s ease;
	padding: 8px 16px;
	border-radius: 8px;
}

.nav-link:hover {
	background: rgba(64, 196, 192, 0.1);
	transform: translateY(-2px);
}

.nav-link.active {
	background: rgba(64, 196, 192, 0.2);
	font-family: "PingFangSC-Semibold", sans-serif;
}


@media (prefers-reduced-motion: reduce) {
    .fadeIn,
    .title .gradient-text {
        transition: none !important;
        animation: none !important;
    }
    
    .fadeIn {
        opacity: 1 !important;
        transform: none !important;
    }
}

/*使用fadeIn JS控制动画顺序 */
.title, .subtitle, .apply-card, .apply-button {
    animation: none !important;
}

/* 确保所有fadeIn元素的初始状态一致 */
.title.fadeIn, .subtitle.fadeIn, .apply-card.fadeIn {
    opacity: 0;
    transform: translateY(20px);
}

.fadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fadeIn.active {
    opacity: 1;
    transform: translateY(0);
}

/* 标题渐变文本与fadeIn效果协同 */
.title .gradient-text {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.title.fadeIn.active .gradient-text {
    opacity: 1;
}

/* 悬浮按钮样式 */
.floating-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.experience-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #40C4C0;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(64, 196, 192, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: "PingFangSC-Medium", sans-serif;
}

.experience-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(64, 196, 192, 0.5);
    background-color: #36aaa6;
}

/* 功能矩阵样式 */
.feature-matrix {
    position: fixed;
    right: 30px;
    bottom: 100px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(64, 196, 192, 0.2);
    padding: 20px;
    z-index: 999;
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    width: 500px;
}

.feature-matrix.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.feature-card {
    background-color: rgba(237, 250, 250, 0.9);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background-color: rgba(225, 245, 245, 1);
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(64, 196, 192, 0.2);
}

.feature-icon {
    background-color: rgba(64, 196, 192, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #40C4C0;
    font-family: "PingFangSC-Medium", sans-serif;
}

.feature-card p {
    margin: 0;
    font-size: 12px;
    color: #40C4C0;
    line-height: 1.4;
}





/* 信息模态框样式 */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.info-modal.active {
    opacity: 1;
}

.info-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 252, 0.98) 100%);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(64, 196, 192, 0.2);
    border: 1px solid rgba(64, 196, 192, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.info-modal.active .info-modal-content {
    transform: scale(1);
}

.close-info-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #40C4C0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-info-modal:hover {
    color: #36aaa6;
    transform: scale(1.1);
}

.info-modal h2 {
    color: #40C4C0;
    margin-bottom: 15px;
    font-size: 28px;
    font-family: "PingFangSC-Semibold", sans-serif;
    border-bottom: 2px solid rgba(64, 196, 192, 0.2);
    padding-bottom: 15px;
}

.modal-subtitle {
    font-size: 18px;
    color: #40C4C0;
    margin-bottom: 25px;
    font-family: "PingFangSC-Medium", sans-serif;
    text-align: center;
    background: rgba(64, 196, 192, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.modal-body {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body strong {
    color: #40C4C0;
    font-family: "PingFangSC-Medium", sans-serif;
}

.highlight-text {
    background: linear-gradient(135deg, #40C4C0, #36aaa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "PingFangSC-Medium", sans-serif;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border: 2px solid rgba(64, 196, 192, 0.2);
    border-radius: 10px;
}

/* 技术特性卡片 */
.tech-feature {
    background: rgba(64, 196, 192, 0.05);
    border-left: 4px solid #40C4C0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.tech-feature h4 {
    color: #40C4C0;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: "PingFangSC-Medium", sans-serif;
}

/* 产品理念项目 */
.concept-item {
    background: rgba(237, 250, 250, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #40C4C0;
}

.concept-item h4 {
    color: #40C4C0;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: "PingFangSC-Medium", sans-serif;
}

/* 应用场景项目 */
.scenario-item {
    background: rgba(237, 250, 250, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #40C4C0;
}

.scenario-item h4 {
    color: #40C4C0;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: "PingFangSC-Medium", sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .info-modal h2 {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
    
    .modal-body {
        font-size: 14px;
    }
}

 