/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    overflow-x: hidden;
    position: relative;
}

/* 全局科技感覆盖层 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(100, 255, 218, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(240, 147, 251, 0.03) 0%, transparent 40%),
        linear-gradient(45deg, transparent 49%, rgba(100, 255, 218, 0.01) 50%, transparent 51%);
    animation: backgroundPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -2;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}



/* 光效效果 */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(100, 255, 218, 0.03) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(240, 147, 251, 0.03) 60deg, transparent 120deg);
    animation: lightRotate 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes lightRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #64ffda, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #64ffda;
    background: rgba(100, 255, 218, 0.1);
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #64ffda, #667eea);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.login-btn {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.login-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.login-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #64ffda, #667eea);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 主页横幅样式 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        transform: translateX(-5px) translateY(-5px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(5px) translateY(5px);
        opacity: 1;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 100px 20px 50px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #64ffda, #f8bbd9, #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    letter-spacing: 2px;
}

.hero h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textScan 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes textScan {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 20s linear infinite, pulse 4s ease-in-out infinite;
    filter: blur(1px);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    border-radius: 50%;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 科技感动态元素 */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), rgba(102, 126, 234, 0.1));
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    animation: floatAround 15s ease-in-out infinite;
}

.elem-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.elem-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.elem-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.elem-4 {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.elem-5 {
    width: 50px;
    height: 50px;
    top: 15%;
    right: 30%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* 新增科技网格效果 */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.grid-line-2 {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1.5s;
}

.grid-line-3 {
    top: 0;
    left: 70%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    animation-delay: 3s;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

/* 数字雨效果 */
.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.rain-drop {
    position: absolute;
    color: rgba(100, 255, 218, 0.6);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    animation: digitalFall 8s linear infinite;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}

.rain-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.rain-2 {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.rain-3 {
    left: 45%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.rain-4 {
    left: 65%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.rain-5 {
    left: 85%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes digitalFall {
    0% {
        top: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

/* 通用区块样式 */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 关于我们样式 */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.about .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.about-content {
    position: relative;
    z-index: 2;
}

/* 关于我们卡片网格 */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #64ffda 0%, 
        #667eea 25%, 
        #f093fb 50%, 
        #64ffda 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: aboutCardGlow 5s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.about-card:hover::after {
    opacity: 1;
}

@keyframes aboutCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.about-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.4);
}

/* 卡片图标样式 */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #f093fb, #764ba2);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .card-icon::before {
    opacity: 1;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

/* 卡片标题样式 */
.about-card h3 {
    font-size: 1.4rem;
    color: #64ffda;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.about-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}

/* 卡片内容样式 */
.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    transition: all 0.3s ease;
    flex-grow: 1;
    font-size: 0.95rem;
}

.about-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* 不同卡片的特殊装饰 */
.mission-card {
    border-left: 4px solid #64ffda;
}

.vision-card {
    border-left: 4px solid #667eea;
}

.values-card {
    border-left: 4px solid #f093fb;
}

.culture-card {
    border-left: 4px solid #64ffda;
}

.innovation-card {
    border-left: 4px solid #667eea;
}

.future-card {
    border-left: 4px solid #f093fb;
}



.stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(102, 126, 234, 0.1),
        rgba(240, 147, 251, 0.1)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #64ffda 0%, 
        #667eea 25%, 
        #f093fb 50%, 
        #64ffda 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: statBorderGlow 4s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

@keyframes statBorderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05) rotateY(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.stat-item:nth-child(even):hover {
    transform: translateY(-15px) scale(1.05) rotateY(-5deg);
}

.stat-item h4 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #64ffda, #667eea, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.4);
    transition: all 0.4s ease;
    letter-spacing: 1px;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-item:hover h4 {
    transform: scale(1.15);
    filter: brightness(1.3) saturate(1.2);
    text-shadow: 0 0 40px rgba(100, 255, 218, 0.6);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    position: relative;
}

.stat-item p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64ffda, #f093fb);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.stat-item:hover p {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.stat-item:hover p::after {
    width: 60%;
}

/* 方块卡片特殊装饰效果 */
.stat-item:before {
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.1), 
        rgba(102, 126, 234, 0.1),
        rgba(240, 147, 251, 0.1)
    );
}

/* 为每个统计卡片添加独特的装饰角标 */
.stat-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #64ffda;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    animation: cornerPulse 2s ease-in-out infinite;
}

.stat-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #667eea;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.8));
    animation: cornerPulse 2.5s ease-in-out infinite;
}

.stat-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: #f093fb;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.8);
    animation: cornerPulse 3s ease-in-out infinite;
}

.stat-item:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border: 2px solid #64ffda;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
    animation: cornerPulse 2.2s ease-in-out infinite;
}

.stat-item:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #f093fb);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.8));
    animation: cornerPulse 2.8s ease-in-out infinite;
}

.stat-item:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 2px;
    background: #64ffda;
    border-radius: 1px;
    box-shadow: 
        0 0 15px rgba(100, 255, 218, 0.8),
        0 4px 0 0 #64ffda,
        0 8px 0 0 #64ffda;
    animation: cornerPulse 3.2s ease-in-out infinite;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ================================
   团队页面样式
   ================================ */

/* 页面头部样式 */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #64ffda, #f8bbd9, #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.header-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.header-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 团队主要部分样式 */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-section .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* 团队网格 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* 团队卡片样式 */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #64ffda 0%, 
        #667eea 25%, 
        #f093fb 50%, 
        #64ffda 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: teamCardGlow 5s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.team-card:hover::after {
    opacity: 1;
}

@keyframes teamCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

/* 成员头像样式 */
.member-avatar {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #667eea, #f093fb, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .avatar-placeholder::before {
    opacity: 1;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.member-badge {
    background: linear-gradient(135deg, #64ffda, #667eea);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .member-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
}

/* 成员信息样式 */
.member-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.team-card:hover .member-info h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}

.member-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.member-experience {
    color: rgba(100, 255, 218, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.member-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.achievement {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.achievement:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.05);
}

/* 联系方式样式 */
.member-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
}

.contact-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64ffda;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: #64ffda;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(100, 255, 218, 0.3);
}

/* 不同职位的特殊样式 */
.ceo-card {
    border-left: 4px solid #FFD700;
}

.cto-card {
    border-left: 4px solid #64ffda;
}

.cfo-card {
    border-left: 4px solid #667eea;
}

.cmo-card {
    border-left: 4px solid #f093fb;
}

.chro-card {
    border-left: 4px solid #64ffda;
}

.coo-card {
    border-left: 4px solid #667eea;
}

.cso-card {
    border-left: 4px solid #f093fb;
}

.cio-card {
    border-left: 4px solid #64ffda;
}

/* 团队文化样式 */
.team-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.team-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(100, 255, 218, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(240, 147, 251, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.team-culture .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.team-culture .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.culture-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.culture-card:hover::before {
    opacity: 1;
}

.culture-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.culture-card:hover .culture-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.culture-card h3 {
    font-size: 1.3rem;
    color: #64ffda;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.culture-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.culture-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.culture-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .header-stat {
        min-width: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .member-achievements {
        justify-content: center;
    }
}

/* 方块卡片网格效果 */
.stat-item:hover {
    position: relative;
}

.stat-item:hover::before {
    background: 
        linear-gradient(135deg, rgba(100, 255, 218, 0.15), rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15)),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
}



/* 业务范围样式 */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 12s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent, rgba(100, 255, 218, 0.03), transparent),
        linear-gradient(-45deg, transparent, rgba(240, 147, 251, 0.03), transparent);
    animation: scanlines 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(20px) scale(1.1);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

.services .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    border-radius: 22px;
    opacity: 0;
    z-index: -2;
    animation: gradientBorder 3s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* 新增全息投影效果 */
.service-card:nth-child(odd):hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:nth-child(even):hover {
    transform: translateY(-20px) rotateX(-5deg) rotateY(5deg) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 卡片内部光束效果 */
.service-card:hover {
    position: relative;
}

.service-card:hover::before {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15)),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0, -200% 0;
    }
    100% {
        background-position: 200% 0, 200% 0;
    }
}

@keyframes gradientBorder {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}



.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #f093fb, #764ba2);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-card:hover li {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.service-card:hover li::before {
    color: #f093fb;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

/* 用户评价预览样式 */
.reviews-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.reviews-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(100, 255, 218, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: reviewsBg 15s ease-in-out infinite;
}

@keyframes reviewsBg {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

.reviews-preview .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.reviews-preview .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #64ffda, #667eea, #f093fb, #64ffda);
    background-size: 300% 300%;
    border-radius: 21px;
    opacity: 0;
    z-index: -2;
    animation: reviewGradient 4s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.review-card:hover::after {
    opacity: 1;
}

@keyframes reviewGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(100, 255, 218, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    transition: color 0.3s ease;
}

.review-card:hover .review-content p {
    color: rgba(255, 255, 255, 0.95);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: #64ffda;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.review-card:hover .author-info h4 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.review-card:hover .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

.rating {
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .rating {
    color: #f093fb;
    text-shadow: 0 0 15px rgba(240, 147, 251, 0.5);
    transform: scale(1.1);
}

.view-all-reviews {
    text-align: center;
}

/* 联系我们样式 */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: contactBg 20s ease-in-out infinite;
}

@keyframes contactBg {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.contact .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    color: #64ffda;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    padding: 12px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.5);
    color: #fff;
}

.contact-item h4 {
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover h4 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* 页脚样式 */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e91e63;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e91e63;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* 登录注册页面样式 */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    z-index: 2;
}

.auth-tabs {
    display: flex;
    background: #f8f9fa;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn.active {
    background: white;
    color: #e91e63;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-form {
    padding: 2rem;
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.auth-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.auth-form .form-group:hover {
    transform: translateY(-2px);
}

.auth-form .form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05), 
        rgba(233, 30, 99, 0.05)
    );
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.auth-form .form-group:hover::before {
    opacity: 1;
}

.auth-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.auth-form .form-group input,
.auth-form .form-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    position: relative;
    z-index: 2;
}

.auth-form .form-group input::placeholder {
    color: #999;
    font-size: 0.95rem;
    opacity: 1;
}

.auth-form .form-group select {
    color: #666;
    cursor: pointer;
}

.auth-form .form-group select option {
    color: #333;
    background: #fff;
    padding: 8px;
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fafbff;
    transform: translateY(-1px);
}

.auth-form .form-group:focus-within i {
    color: #667eea;
    transform: translateY(-50%) scale(1.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 3;
    padding: 5px;
    border-radius: 4px;
    font-size: 1rem;
}

.password-toggle:hover {
    color: #e91e63;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: #e91e63;
    border-color: #e91e63;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.forgot-password {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c2185b;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.social-login {
    text-align: center;
    margin-top: 1.5rem;
}

.social-login p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.wechat:hover {
    border-color: #07c160;
    color: #07c160;
}

.qq:hover {
    border-color: #12b7f5;
    color: #12b7f5;
}

.verification-code {
    display: flex;
    gap: 1rem;
}

.verification-code .form-group {
    flex: 1;
}

.code-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 120px;
}

.code-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.terms-link,
.privacy-link {
    color: #e91e63;
    text-decoration: none;
}

.terms-link:hover,
.privacy-link:hover {
    text-decoration: underline;
}

.auth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #e91e63;
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 评价页面样式 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.review-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.rating-distribution {
    padding: 60px 0;
}

.rating-distribution h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.rating-bars {
    max-width: 600px;
    margin: 0 auto;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-label {
    min-width: 40px;
    font-weight: 500;
    color: #333;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rating-count {
    min-width: 50px;
    text-align: right;
    color: #666;
    font-weight: 500;
}

.review-filters {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.sort-options {
    text-align: center;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.reviews-list {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    gap: 2rem;
}

.review-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    gap: 1rem;
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    margin-bottom: 0.25rem;
    color: #333;
}

.user-type {
    color: #e91e63;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-weight: bold;
    color: #333;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-images {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.review-images img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-images img:hover {
    transform: scale(1.05);
}

.review-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.review-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.helpful-btn.active {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.write-review-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.floating-btn {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

/* 新增进入动画类 */
.animate-element {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* 3D卡片效果增强 */
.service-card,
.review-card,
.stat-item,
.contact-item {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

/* 光标跟踪光效 */
#cursor-glow {
    position: fixed;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

/* 高级科技感效果 */
@keyframes dataFlow {
    0% {
        transform: translateX(-100%) scaleY(1);
    }
    50% {
        transform: translateX(50%) scaleY(1.2);
    }
    100% {
        transform: translateX(200%) scaleY(1);
    }
}

/* 数据流动效 */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.8), transparent);
    animation: dataFlow 4s ease-in-out infinite;
    z-index: 1;
}

.hero::before {
    animation: gradientShift 8s ease-in-out infinite alternate, backgroundPulse 15s ease-in-out infinite;
}

/* 科技感表单效果 */
.form-group {
    position: relative;
    overflow: hidden;
}

.form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.form-group:focus-within::before {
    left: 100%;
}

/* 高级动画组合 */
@keyframes complexFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(1deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg) scale(0.98);
    }
}

.floating-element {
    animation: complexFloat 8s ease-in-out infinite;
}

.floating-element:nth-child(even) {
    animation-direction: reverse;
    animation-duration: 10s;
}

/* 特殊的粒子效果 */
.tech-elements::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 15px, rgba(100, 255, 218, 0.4), transparent),
        radial-gradient(1px 1px at 45px 85px, rgba(240, 147, 251, 0.3), transparent),
        radial-gradient(1px 1px at 85px 45px, rgba(102, 126, 234, 0.4), transparent);
    background-size: 120px 120px;
    animation: particleShift 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleShift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-120px, -120px);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-card {
        padding: 2rem;
        min-height: 240px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }
    
    /* 手机端关于我们卡片特殊处理 */
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-card {
        padding: 1.8rem;
        min-height: 220px;
    }
    
    .about-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* 移动端隐藏过多特效以提升性能 */
    .about-card::after {
        display: none;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
        min-height: 120px;
    }
    
    .stat-item h4 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.8rem 1rem;
        min-height: 110px;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* 手机端方块卡片特殊处理 */
    .stat-item:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .stat-item h4 {
        font-size: 1.8rem;
    }
    
    /* 移动端隐藏过多特效以提升性能 */
    .stat-item::after {
        display: none;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Auth 页面响应式 */
    .auth-container {
        max-width: 90%;
        margin: 0 10px;
    }
    
    .verification-code {
        flex-direction: column;
        gap: 1rem;
    }
    
    .code-btn {
        width: 100%;
    }
    
    /* 评价页面响应式 */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .write-review-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .review-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .auth-form {
        padding: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .rating-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .rating-label,
    .rating-count {
        min-width: auto;
    }

    .review-item {
        padding: 1.5rem;
    }

    .floating-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* ==================== 团队页面样式 ==================== */

/* 团队页面头部 */
.team-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.team-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: teamHeaderBg 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes teamHeaderBg {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #64ffda, #f8bbd9, #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.team-header p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.header-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.header-stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 团队卡片网格 */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.team-section .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    gap: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #64ffda 0%, 
        #667eea 25%, 
        #f093fb 50%, 
        #64ffda 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: teamCardGlow 6s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.team-card:hover::after {
    opacity: 1;
}

@keyframes teamCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.4);
}

/* 成员头像区域 */
.member-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #f093fb, #764ba2);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .avatar-placeholder::before {
    opacity: 1;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.member-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #64ffda, #667eea);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(100, 255, 218, 0.6);
    }
}

/* 成员信息区域 */
.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .member-info h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}

.member-title {
    font-size: 1rem;
    color: #f093fb;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-experience {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.member-description {
    flex: 1;
    margin-bottom: 1rem;
}

.member-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.team-card:hover .member-description p {
    color: rgba(255, 255, 255, 0.95);
}

.member-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.achievement {
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    color: #64ffda;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-card:hover .achievement {
    background: rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
    transform: translateY(-1px);
}

.member-contact {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.contact-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.4);
    color: #64ffda;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

/* 团队文化区域 */
.team-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.team-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(240, 147, 251, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.team-culture .section-header h2 {
    color: #fff;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.team-culture .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.culture-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(240, 147, 251, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(240, 147, 251, 0.1);
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(240, 147, 251, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(100, 255, 218, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.culture-card:hover::before {
    opacity: 1;
}

.culture-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #f093fb 0%, 
        #667eea 25%, 
        #64ffda 50%, 
        #f093fb 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: cultureCardGlow 5s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.culture-card:hover::after {
    opacity: 1;
}

@keyframes cultureCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.culture-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(240, 147, 251, 0.4);
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
    flex-shrink: 0;
}

.culture-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f093fb, #64ffda, #667eea);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-card:hover .culture-icon::before {
    opacity: 1;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(240, 147, 251, 0.6);
}

.culture-card h3 {
    font-size: 1.3rem;
    color: #f093fb;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    transition: all 0.3s ease;
}

.culture-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(240, 147, 251, 0.5);
    transform: translateY(-2px);
}

.culture-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.culture-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* 团队页面响应式设计 */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .member-avatar {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .header-stat {
        min-width: 200px;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-header h1 {
        font-size: 2.5rem;
    }
    
    .team-header p {
        font-size: 1.1rem;
    }
    
    .header-stats {
        gap: 1rem;
    }
    
    .header-stat {
        min-width: 150px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .team-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-title {
        font-size: 0.9rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .culture-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .culture-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    /* 移动端隐藏过多特效 */
    .team-card::after,
    .culture-card::after {
        display: none;
    }
}

/* ================================
   主页团队部分样式
   ================================ */

/* 团队统计数据 */
.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0 4rem;
    position: relative;
    z-index: 2;
}

.team-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 150px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.team-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.team-stat-item:hover::before {
    opacity: 1;
}

.team-stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.team-stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    transition: all 0.3s ease;
}

.team-stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.8);
}

.team-stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 领导团队网格 */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

/* 领导者卡片样式 */
.leader-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #64ffda 0%, 
        #667eea 25%, 
        #f093fb 50%, 
        #64ffda 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 17px;
    opacity: 0;
    z-index: -2;
    animation: leaderCardGlow 5s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.leader-card:hover::after {
    opacity: 1;
}

@keyframes leaderCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.leader-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.4);
}

/* 领导者头像样式 */
.leader-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.leader-avatar .avatar-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.leader-card:hover .leader-avatar .avatar-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.leader-badge {
    background: linear-gradient(135deg, #64ffda, #667eea);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.leader-card:hover .leader-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
}

/* 领导者信息样式 */
.leader-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leader-info h3 {
    font-size: 1.3rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.leader-card:hover .leader-info h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}

.leader-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.leader-experience {
    color: rgba(100, 255, 218, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.leader-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.leader-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.leader-achievements .achievement {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.leader-achievements .achievement:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.05);
}

/* 团队文化部分 */
.team-culture-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.team-culture-section .section-header h3 {
    font-size: 2rem;
    color: #64ffda;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.team-culture-section .section-header p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-value {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.culture-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.08), 
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.culture-value:hover::before {
    opacity: 1;
}

.culture-value:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.culture-value:hover .culture-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.culture-value h4 {
    font-size: 1.1rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.culture-value:hover h4 {
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.culture-value p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.culture-value:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* 主页团队部分响应式设计 */
@media (max-width: 768px) {
    .team-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .team-stat-item {
        min-width: 200px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .culture-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leader-card {
        min-height: auto;
        padding: 1.5rem;
    }
}