/* 重置样式和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0f;
    /* background-image: url('./static/Website.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    overflow-x: hidden;
}

.getinBtn {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    width: 303px;
    height: 74px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
}


.getinBtn:hover {
    transform: translateX(-50%) scale(1.05);
}

.mask {
    z-index: 99999999;
    position: absolute;
    bottom: 2%;
    right: 0%;
    width: 176px;
    height: 65px;
    background-color: #000;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 渐变文字效果 */
.gradient-text {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary.small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    border-color: #7C3AED;
    background: rgba(124, 58, 237, 0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline.large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7C3AED;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* 英雄区域样式 */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 100vh;
    /* background:
        radial-gradient(ellipse at top, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%); */
    background-image: url('./static/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translate(-50%);
    width: 113%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 100px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-buttons img {
    cursor: pointer;
    width: 45%;
    height: 60px;
    object-fit: contain;
}

/* 统计数据样式 */
.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* 特性标签样式 */
.features-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 英雄图像样式 */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    position: relative;
    width: 500px;
    height: 600px;
}

.main-character {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* 产品展示区域样式 */
.products {
    min-height: 100vh;
    /* padding: 100px 0; */
    /* background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%); */
    /* background-image: url('./static/Section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.products-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 52px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 40px;
}

.product-showcase {
    display: flex;
    gap: 30px;
    align-items: start;
}

.product-showcase img {
    width: 33%;
    height: 100%;
    object-fit: cover;
}

.product-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 58px;
}

.product-buttons img {
    width: 20%;
}


.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card.featured {
    position: relative;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-tag {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.card-buttons {
    display: flex;
    gap: 15px;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-grid .product-card img {
    height: 200px;
}

/* 定制数字人区域样式 */
.customize {
    position: relative;
    /* padding: 100px 0 130px 0; */
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
}

.customize-container {
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
    backdrop-filter: blur(50px);
    background: linear-gradient(180.00deg, rgba(255, 255, 255, 0.08), rgba(217, 217, 217, 0.04) 100%), ;
}

.customize-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.customize-image {
    position: relative;
    height: 500px;
}

.customize-image img {
    position: absolute;
    top: -80px;
    width: 100%;
    height: 116%;
    object-fit: cover;
}

.neon-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #7C3AED, #EC4899, #F59E0B);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

.customize-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.customize-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 1);
}

.customize-banner {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translate(-50%);
    width: 113%;
}

/* 应用展示区域样式 */
.applications {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0f 100%);
}

.features-tags.bottom {
    justify-content: center;
    margin-bottom: 40px;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.app-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.category-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn.active,
.category-btn:hover {
    color: white;
    border-color: #7C3AED;
    background: rgba(124, 58, 237, 0.2);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: #7C3AED;
}

.model-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.model-info {
    padding: 20px;
}

.model-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.model-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 用户评价区域样式 */
.testimonials {
    position: relative;
    padding: 130px 0 60px 0;
    /* background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%); */
}

.testimonials-banner {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translate(-50%);
    width: 113%;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
    backdrop-filter: blur(50px);
    background: linear-gradient(180.00deg, rgba(255, 255, 255, 0.08), rgba(217, 217, 217, 0.04) 100%), ;
    position: relative;
    padding: 30px;
    margin-top: 40px;
}

.testimonial-tags {
    display: flex;
    gap: 17px;
    position: absolute;
    top: -40px;
    right: 40px;
}

.testimonial-tags img {
    width: 41.25px;
    height: 78.55px;
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.stripe {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 20px;
}

.testimonial-author span:not(.verified span) {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.verified {
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.verified img {
    width: 24.77px;
    height: 23.7px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #7C3AED;
}

.solutions-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 合作伙伴区域样式 */
.partners {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
}

.features-tags.final {
    justify-content: center;
    margin-bottom: 60px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.partner-logos img:hover {
    opacity: 1;
}

/* 页脚样式 */
.footer {
    /* background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%); */
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-contact {
    display: flex;
    gap: 60px;
}

.footer-contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-form input {
    padding: 9px 12px;
    border: none;
    width: 100%;
    background: rgba(37, 32, 60, 1);
}

.footer-contact-form button {
    color: #fff;
    cursor: pointer;
    padding: 9px 12px;
    border: none;
    background: rgba(37, 32, 60, 1);
    width: 30%;
}

/* 品牌区域 */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* 链接区域 */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.link-group h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: #7C3AED;
    transform: translateX(5px);
}

/* 合作伙伴区域 */
.footer-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners img {
    height: 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-partners img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* 底部信息 */
.footer-bottom {
    display: flex;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon img {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.copyright {
    margin-left: 29px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats {
        justify-content: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .customize-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-categories {
        flex-wrap: wrap;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-partners {
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }

    .partner-logos {
        gap: 30px;
    }
}