

/* 轮播图样式 */
.carousel {
    height: 300px;
    position: relative;
    margin-top: 130px;
    overflow: hidden;
    transform: translateZ(0);
}

.carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.95);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 15s linear;
}

.slide.active img {
    transform: scale(1);
}

/* 公司简介 */
.about {
    /* position: relative; */
    padding: 0px 20px;
    /* background: linear-gradient(160deg, #0a0a2a 0%, #00001a 100%); */
    transform: translateZ(0);
    margin-top: -100px;
    margin-bottom: 400px;
    
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
    cursor: pointer;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.about-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

/* .about-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 25%,
        rgba(0, 247, 255, 0.1) 50%,
        transparent 75%);
    animation: gridFlow 4s infinite linear;
}

@keyframes gridFlow {
    100% {
        transform: rotate(360deg);
    }
} */

.about-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    mix-blend-mode: luminosity;
    transition: all 0.5s;
}

.about-item:hover img {
    mix-blend-mode: normal;
    transform: scale(1.05);
}

.about-item h3 {
    margin: 20px 0 15px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.about-item p {
    color: #ddd;
    line-height: 1.8;
    font-size: 0.95em;
}

/* 指示点样式 */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--glow-effect);
}

.dot.active {
    background: var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* 左右箭头 */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    user-select: none;
    z-index: 2;
    transition: all 0.3s;
    display: none;
}

.arrow:hover {
    background: rgba(0, 247, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
  
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* 装饰线条 */
.deco-line {
    position: fixed;
    background: var(--primary-color);
    box-shadow: var(--glow-effect);
    pointer-events: none;
}

.horizontal-line {
    width: 100%;
    height: 1px;
    top: 100px;
}

.vertical-line {
    width: 1px;
    height: 100%;
    top: 0;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav {
        display: none;
    }

    .carousel {
        height: 400px;
        margin-top: 80px;
    }

    .arrow {
        font-size: 30px;
        padding: 10px;
    }
}

.footer {
    background: linear-gradient(160deg, #00001a 0%, #0a0a2a 100%);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--primary-color) 50%,
            transparent 100%);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #ddd;
    transition: all 0.3s;
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 12px;
    flex-shrink: 0;
}


.news{
    padding: 0 20px;
    background: linear-gradient(45deg, #0a0a1a, #000022);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    padding-bottom: 300px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--glow-effect);
}

.deco-line {
    /* width: 100%; */
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
    box-shadow: var(--glow-effect);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(0, 247, 255, 0.05) 50%,
            transparent 60%);
    animation: gridFlow 6s infinite linear;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 247, 255, 0.2);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    backdrop-filter: blur(5px);
}

.news-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.card-content p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s;
}

.news-link:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.news-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .card-content p {
        min-height: auto;
    }
}
.company-container {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 2rem;
    /* background: rgba(255, 255, 255, 0.03);; */
    border-radius: 16px;
    /* box-shadow: 0 12px 24px rgba(0,0,0,0.08); */
    font-family: '微软雅黑', 'PingFang SC', sans-serif;
}

.company-header {
    /* border-bottom: 2px solid #f0f2f5; */
    
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.company-header h1 {
    color: var(--primary-color);
    font-size: 2.6rem;
    text-align: center;
    margin: 0 0 1rem 0;
}

.company-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #fff;
    font-size: 1.05rem;
}

.company-meta em {
    color: #e63946;
    font-style: normal;
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.section-title {
    color: #2a4d8e;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    background: #f8f9fe;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tech-base, .main-business {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    /* border: 1px solid #e6ecf5; */
    border-radius: 12px;
}

.product-showcase {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 14px;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    /* border: 1px solid rgba(0, 247, 255, 0.2); */
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.app-brand {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-brand h2 {
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

.version {
    color: #fff;
    font-size: 1.2rem;
}

.platform-tag {
    background: #2a4d8e;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
}

.feature-list {
    columns: 2;
    list-style: none;
    padding: 0;
    gap: 1.5rem;
}

.feature-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2a4d8e;
    border-radius: 6px;
    break-inside: avoid;
}

.value-proposition {
    grid-column: 1 / -1;
    background: #f8f9fe;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.cooperation-call {
    grid-column: 1 / -1;
    background: #2a4d8e;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.vision-statement {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin: 1.5rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        columns: 1;
    }
    
    .company-meta {
        flex-direction: column;
        align-items: center;
    }
}
.launch-announcement {
    max-width: 1230px;
    background: linear-gradient(135deg, #2a4d8e 0%, #1a3353 100%);
    border-radius: 16px;
    margin: 20px auto;
    padding: 2.5rem;
   
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e63946;
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.launch-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.calendar-icon {
    font-size: 1.8rem;
}

.launch-title {
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.launch-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: #e63946;
}

.version {
    font-size: 0.8em;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    background: #e63946;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7em;
    margin-left: 1rem;
    vertical-align: middle;
}

.benefits {
    columns: 2;
    list-style: none;
    padding: 0;
    gap: 2rem;
    margin: 2rem 0;
}

.benefits li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    break-inside: avoid;
}

.call-to-action {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.emphasize {
    font-size: 1.4em;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.remind-button {
    background: #e63946;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.remind-button:hover {
    background: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,57,70,0.3);
}

@media (max-width: 768px) {
    .benefits {
        columns: 1;
    }
    
    .launch-title {
        font-size: 1.8rem;
    }
}