/* 全局样式 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #252525;
    --accent-color: #9370ff;
    --text-color: #e0e0e0;
    --light-text: #ffffff;
    --domestic-tag: #ff6b6b;
    --foreign-tag: #70a1ff;
    --card-bg: rgba(40, 40, 40, 0.7);
    --gradient-start: #1a1a1a;
    --gradient-end: #2d2d3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3 {
    font-weight: 600;
    color: var(--light-text);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 导航栏样式 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--light-text);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

/* 首屏区域样式 */
.hero {
    height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: -50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9));
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(147, 112, 255, 0.3);
}

.cta-button:hover {
    background-color: #8560e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(147, 112, 255, 0.5);
}

/* 大语言模型展示区样式 */
.models-section {
    background-color: transparent;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.models-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(147, 112, 255, 0.1), transparent 60%);
    z-index: -1;
}

.models-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 30px;
    overflow-x: auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
}

.models-container::-webkit-scrollbar {
    height: 8px;
}

.models-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.models-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.model-card {
    flex: 0 0 400px;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.model-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.model-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-text);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.domestic {
    background-color: var(--domestic-tag);
}

.foreign {
    background-color: var(--foreign-tag);
}

.model-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.model-card:hover .model-logo {
    transform: scale(1.1);
}

.model-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.model-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 15px;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.model-card:hover h3 {
    transform: translateY(5px);
}

.discover-more {
    text-align: center;
    margin-top: 50px;
}

.discover-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--light-text);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discover-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.discover-btn:hover {
    background-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(147, 112, 255, 0.4);
    transform: translateY(-3px);
}

.discover-btn:hover::before {
    left: 100%;
}

/* 博主推荐区样式 */
.bloggers-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bloggers-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(147, 112, 255, 0.1), transparent 60%);
    z-index: -1;
}

.bloggers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 30px;
}

.blogger-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.blogger-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blogger-photo {
    height: 250px;
    overflow: hidden;
}

.blogger-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.blogger-card:hover .blogger-photo img {
    transform: scale(1.05);
    filter: brightness(1);
}

.blogger-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: var(--light-text);
}

/* 页脚联系信息样式 */
.footer {
    background-color: rgba(20, 20, 20, 0.8);
    color: var(--text-color);
    padding: 60px 0 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .models-container {
        padding: 20px;
    }
    
    .model-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .bloggers-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .model-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .bloggers-container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
    
    .model-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .model-card {
        flex: 0 0 260px;
    }
} 