* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('2025-05-07_11-17-54.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, #00b8ff, #00ff88);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.cta-button a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.features {
    padding: 100px 0;
    background: #0f0f0f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.feature-card h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.feature-card p {
    color: #888;
}

.robot-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.robot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.robot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.robot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1));
    animation: pulse 3s infinite;
}

.robot-image {
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.robot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drone-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.drone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 161, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0, 255, 136, 0.02) 0px, rgba(0, 255, 136, 0.02) 1px, transparent 1px, transparent 10px);
    animation: backgroundPulse 8s infinite;
}

.ufo-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0, 255, 136, 0.2),
        rgba(0, 255, 136, 0.1),
        transparent);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation: beamPulse 3s infinite;
    filter: blur(10px);
}

.ufo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.ufo-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.ufo-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 20s;
}

.ufo-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.ufo-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    animation-duration: 10s;
}

.ufo-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ufo-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: lightPulse 2s infinite;
}

.drone-container {
    height: 600px;
    position: relative;
    margin: 40px 0;
    perspective: 1000px;
}

.drone-path {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: rotatePath 20s linear infinite;
}

.drone-path::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 161, 255, 0.3);
    border-radius: 50%;
    transform: rotate(45deg);
}

.drone-path::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    transform: rotate(90deg);
    animation: pathGlow 4s infinite;
}

.drone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 255, 136, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: cardShine 3s infinite;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.stat-value {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drone-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    font-size: 0.9rem;
    white-space: nowrap;
    animation: infoPulse 2s infinite;
    backdrop-filter: blur(5px);
}

.drone-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: infoShine 2s infinite;
}

.drone-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.control-button {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.control-button:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.drone-status {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    animation: statusPulse 2s infinite;
}

.status-text {
    color: #00ff88;
    font-size: 0.9rem;
}

.drone-data {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.data-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-label {
    color: #888;
}

.data-value {
    color: #00ff88;
    font-weight: bold;
}

.data-progress {
    width: 100px;
    height: 4px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    animation: progressFill 2s infinite;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes cardShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

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

@keyframes statusPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes pathGlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.drone-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleFloat 3s infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
    100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88; }
    to { text-shadow: 0 0 20px #00a1ff, 0 0 30px #00a1ff; }
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 161, 255, 0.1) 0%, transparent 50%);
    animation: contactGlow 10s infinite;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 255, 136, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: contactShine 3s infinite;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.contact-item h4 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 255, 136, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: formShine 3s infinite;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #00ff88;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

@keyframes contactGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes contactShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes formShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

/* 量子医疗模块样式 */
.quantum-medical {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.quantum-medical::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 161, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0, 255, 136, 0.02) 0px, rgba(0, 255, 136, 0.02) 1px, transparent 1px, transparent 10px);
    animation: quantumPulse 10s infinite;
}

.quantum-core {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.quantum-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: spherePulse 4s infinite;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.quantum-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.quantum-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.quantum-ring:nth-child(1) { 
    width: 100%; 
    height: 100%; 
    animation-duration: 20s;
    transform: rotateX(60deg);
}

.quantum-ring:nth-child(2) { 
    width: 80%; 
    height: 80%; 
    animation-duration: 15s; 
    animation-direction: reverse;
    transform: rotateY(60deg);
}

.quantum-ring:nth-child(3) { 
    width: 60%; 
    height: 60%; 
    animation-duration: 10s;
    transform: rotateZ(60deg);
}

.quantum-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.quantum-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quantum-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 255, 136, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: cardShine 3s infinite;
}

.quantum-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.quantum-stats {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.quantum-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.quantum-stat:last-child {
    margin-bottom: 0;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

.stat-value {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1rem;
}

.quantum-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    width: 0%;
    transition: width 0.3s ease;
}

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleFloat 3s infinite;
}

@keyframes quantumPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
    100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

/* 全息诊断模块样式 */
.holographic-diagnosis {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.holographic-diagnosis::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 161, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0, 255, 136, 0.02) 0px, rgba(0, 255, 136, 0.02) 1px, transparent 1px, transparent 10px);
    animation: hologramBackground 10s infinite;
}

.hologram-container {
    position: relative;
    height: 600px;
    margin: 40px 0;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.scan-data {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    font-family: monospace;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.scan-data-item {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scan-data-label {
    color: #888;
}

.scan-data-value {
    color: #00ff88;
}

.scan-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    width: 0%;
    transition: width 0.3s ease;
}

.scan-status {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.scan-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.scan-button {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.scan-button:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.hologram-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 600px;
}

.hologram-features {
    margin-top: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-item h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes hologramBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes hologramRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes hologramPulse {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(1); }
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hologram {
        width: 200px;
        height: 200px;
    }

    .hologram-content {
        width: 90%;
    }
}

/* 智能纳米机器人模块样式 */
.nanobot-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.nanobot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.nanobot-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.nanobot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: cardShine 3s infinite;
}

.nanobot-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.nanobot-visualization {
    position: relative;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.nanobot-data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00ff88, transparent);
    animation: dataFlow 2s linear infinite;
}

.data-stream:nth-child(1) { left: 20%; animation-delay: 0s; }
.data-stream:nth-child(2) { left: 50%; animation-delay: 0.5s; }
.data-stream:nth-child(3) { left: 80%; animation-delay: 1s; }

.nanobot-status {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.status-text {
    color: #00ff88;
    font-size: 0.9rem;
}

.nanobot-metrics {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.metric {
    margin-bottom: 10px;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric-label {
    color: #888;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.metric-value {
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: bold;
    float: right;
}

.metric-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    width: 0%;
    transition: width 0.3s ease;
}

@keyframes dataFlow {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.nav-link.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* 导航栏下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
    border-left: 3px solid #00ff88;
    padding-left: 25px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
    }

    .dropdown-content a {
        padding: 10px 15px;
    }
}

/* 页脚样式 */
.footer {
    background: #0a0a0a;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 161, 255, 0.1) 0%, transparent 50%);
    animation: footerGlow 10s infinite;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.friend-links {
    margin-top: 10px;
}

.friend-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.friend-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.friend-link:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

.friend-link img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.friend-link:hover img {
    transform: scale(1.1);
    border-color: #00ff88;
}

.friend-link span {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.friend-link:hover span {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #888;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

@media (max-width: 768px) {
    .friend-links-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #888;
}

/* 友情链接图标样式 */
.friend-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.friend-link:hover .friend-icon {
    transform: scale(1.1);
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}
.footer-bottom a {
    text-align: center;
    margin-top: 40px;
    color: #888;
}
.footer-bottom a:hover {
    transform: scale(1.1);
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}



s1 {
    font-size: 35px;
    color: slategrey;
    display: block;
    text-align: justify;
    /* margin-bottom: 15px; */
  }
  
  .exx span,culture-item span {
    display: block;
    color: #d1cfcf;
    font-size: small;
    text-align: justify;
  }
  
  .ex strong,culture-item strong {
    color: black;
    font-size: small;
    text-align: justify;
  }
  #s2{
    font-size: medium;
    color: #cf9202;

  }




      /* Glowing buttons and important elements */
      .cta-button, .control-button, .scan-button {
        box-shadow: 0 0 20px #00ffea, 0 0 40px #00ff88;
        background: linear-gradient(90deg, #00ffea 0%, #00ff88 100%);
        color: #111;
        border: none;
        border-radius: 30px;
        transition: box-shadow 0.3s, transform 0.3s;
      }
      .cta-button:hover, .control-button:hover, .scan-button:hover {
        box-shadow: 0 0 40px #00ffea, 0 0 80px #00ff88;
        transform: scale(1.05);
      }

      /* Glassmorphism cards */
      .feature-card, .robot-card, .quantum-card, .nanobot-card {
        background: rgba(20, 40, 60, 0.5);
        backdrop-filter: blur(8px);
        border-radius: 20px;
        border: 1px solid rgba(0,255,200,0.2);
        box-shadow: 0 4px 32px rgba(0,255,200,0.1);
      }

      /* Detail animations */
      .feature-icon, .robot-image img, .quantum-sphere, .nanobot-visualization {
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }
    