/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fff;
    --secondary-color: #1d1d1f;
    --bg-color: #ffffff;
    --text-color: #fff;
    --light-text: #fff;
    --border-color: #d2d2d7;
    --border-gradient: linear-gradient(180deg, #0CEFFF 0%, #FD9BFF 100%);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'SF Pro Display', 'SF Pro Text', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #143B99 0%, #2FB4DC 100%);
    color: var(--text-color);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    font-size: 17px;
    overflow-x: auto;
    min-height: 100vh;
}
.tp-2{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 540px;
    z-index: 1;
}
.tp-1{
    position: fixed;
    top: 0;
    right:0;
    width: 908px;
    height: 840px;
    z-index: 1;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

/* 头部样式 */
header {
    padding: 16px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

#logo {
    width: 196px;
    height: 56px;

}

h1 {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 600;
}

/* 主内容样式 */
main {
    padding-top: 80px;
    position: relative;
    z-index: 2;
}
.yezi{
    position: absolute;
    width: 273px;
    height: 56px;
    border-radius: 28px 0 28px 0;
    font-family: PingFang SC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    top: -28px;
    left: -2px;
    z-index: 2;
    background: linear-gradient(90deg, #8FCCFF 0%, #DCA1E8 100%);

}
.yezi2{
    position: absolute;
    width: 273px;
    height: 56px;
    border-radius: 28px 0 28px 0;
    font-family: PingFang SC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    top: -28px;
    left: -2px;
    z-index: 2;
    background: linear-gradient(90deg, #4594F4 0%, #80E1E4 100%);


}
.hero {
    height: 100vh;
    background-color: #fbfbfd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner {
    text-align: center;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h2 {
    position: relative;
    overflow: hidden;
    border-right: 2px solid var(--border-gradient);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end) infinite,
               blink-caret .75s step-end infinite;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    width: 0;
}

@keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    100% { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--border-gradient) }
}

.banner p {
    font-size: 24px;
    line-height: 1.33341;
    letter-spacing: 0.009em;
    color: var(--light-text);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 48px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.08;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    font-size: 24px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 120px 0 120px;
    margin-top: 180px;
}

.card {
    background-color: #f5f5f7;
    border-radius: 14px;
    padding: 40px!important;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: var(--transition);

    position: relative;
    border: none;
    height: 100%;
    border: 2px solid transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--border-gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.card-icon img {
    width: 100%;
    height: auto;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.003em;
}

.meta {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 12px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
    color:#9BFCFF;
    margin-top: 10px;
}

.arrow-link span:first-child {
    margin-right: 8px;
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.arrow-link:hover .arrow {
    transform: translateX(5px);
}

/* 页面特定样式 */
.page-header {
    text-align: center;
    margin: 60px 0;
}

.sub-title {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
}

.qr-code {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.qr-image {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    background-color: white;
    padding: 20px;
    transition: var(--transition);
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.description {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    border: 2px solid transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
}

.description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--border-gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.description p {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    color: var(--text-color);
}

.description p:last-child {
    margin-bottom: 0;
}

.video-container {
    max-width: 800px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    transition: var(--transition);
    position: relative;
}


.video-container:hover {
    transform: scale(1.02) translateZ(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.manual-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    background-color: #f5f5f7;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: none;
    position: relative;
}

.manual-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--border-gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.manual-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
}

.manual-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border-gradient);
}

.manual-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 7px;
    top: 21px;
    bottom: -20px;
    width: 2px;
    background: var(--border-gradient);
}

.manual-item:last-child {
    margin-bottom: 0;
}

h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.manual-item p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--light-text);
}

.back-link {
    text-align: center;
    margin: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: black;
    text-decoration: none;
    border-radius: 980px;
    transition: var(--transition);
    font-weight: 500;
    border: none;
    font-size: 17px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}





.btn:hover:before {
    opacity: 1;
}

/* 社交媒体链接 */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.social-link {
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
    background: var(--border-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 100%;
    color:#fff;
    position: relative;
    z-index: 3;
}

.fas{
    color:#000;
}
/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* 图片轮播样式 */
.image-carousel {
    display: flex;
    width: 100%;
    height: 240px;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}



/* 响应式设计 */
@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        padding: 60px 40px;
    }

    h1 {
        font-size: 28px;
    }

    .logo {
        justify-content: flex-start;
    }

    header {
        padding: 20px 0;
    }

    .manual-item {
        padding-left: 40px;
    }

    .manual-item:before {
        width: 20px;
        height: 20px;
    }

    .manual-item:not(:last-child):after {
        left: 9px;
        top: 30px;
    }
}

@media (min-width: 992px) {
    .banner h2 {
        font-size: 56px;
    }

    .banner p {
        font-size: 28px;
    }

    .card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .card-icon {
        margin-right: 40px;
        margin-bottom: 0;
    }

    .description p {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .banner h2 {
        font-size: 32px;
    }

    .banner p {
        font-size: 19px;
    }

    .description, .manual-content {
        padding: 30px 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .description p {
        font-size: 17px;
    }

    .hero {
        height: 80vh;
    }
}

.ai-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #001433 0%, #000510 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

#networkCanvas {
    width: 100%;
    height: 100%;
}

.retail-icons {
    position: absolute;
    display: flex;
    gap: 40px;
    z-index: 2;
}

.retail-icons i {
    font-size: 32px;
    color: #fff;
    opacity: 0;
    animation: iconFloat 1.5s ease-in-out infinite, 
               fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.5s);
}

.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(32, 224, 255, 0.2) 50%, 
        transparent 100%);
    background-size: 100% 20px;
    animation: dataStream 1s linear infinite;
}

.loading-text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.text-animate {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(32, 224, 255, 0.5);
    opacity: 0;
    animation: textReveal 1s ease forwards;
    animation-delay: 1s;
}

.sub-text {
    display: block;
    font-size: 24px;
    color: #20E0FF;
    margin-top: 10px;
    opacity: 0;
    animation: textReveal 1s ease forwards;
    animation-delay: 1.5s;
}

.skip-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #20E0FF;
    color: #20E0FF;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.skip-button:hover {
    background: #20E0FF;
    color: #000;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes dataStream {
    0% { background-position: 0 0; }
    100% { background-position: 0 20px; }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 更新飘屏消息容器样式 */
.floating-messages {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.message {
    position: absolute;
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 24px 16px 56px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(12, 239, 255, 0.08);
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    max-width: 320px;
    line-height: 1.5;
    transform-origin: center;
    z-index: 2;
}

.message-decor {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 62px;
    pointer-events: none;
}

.message-hex {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.message-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0CEFFF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.message-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #143B99;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.message.ai .message-icon {
    background: linear-gradient(135deg, #0CEFFF, #76C6FF);
    color: #fff;
}

.message-metric {
    position: absolute;
    right: -6px;
    top: -6px;
    width: 12px;
    height: 12px;
}

.metric-dot {
    display: block;
    width: 100%;
    height: 100%;
    background: #0CEFFF;
    border-radius: 50%;
    animation: metricPulse 1.5s infinite;
}

.message.show {
    animation: messageAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(12, 239, 255, 0.4);
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(12, 239, 255, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(12, 239, 255, 0);
    }
}

@keyframes metricPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes messageAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 更新圆形动画容器样式 */
.circle-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 100;
}

.circle-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(12, 239, 255, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    border: 2px solid rgba(12, 239, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.circle-center::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 250%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(12, 239, 255, 0.2) 90deg,
        transparent 180deg
    );
    animation: rotateGradient 8s linear infinite;
}

.circle-center::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    border: 1px solid rgba(12, 239, 255, 0.3);
}

.rotating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateSimple 15s linear infinite;
}

.icon-item {
    position: absolute;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #143B99;
    box-shadow: 0 0 20px rgba(12, 239, 255, 0.3);
    border: 2px solid rgba(12, 239, 255, 0.5);
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(12, 239, 255, 0.5);
}

.center-text, .sub-center-text {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

.center-text {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(12, 239, 255, 0.8);
}

.center-text.show {
    animation: textFadeIn 0.8s forwards;
}

.sub-center-text {
    font-size: 20px;
    color: #0CEFFF;
    margin-top: 12px;
}

.sub-center-text.show {
    animation: textFadeIn 0.8s forwards 0.5s;
}

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

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

@keyframes textFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 更新背景样式 */
.ai-loading-container {
    background: radial-gradient(circle at center, #001433 0%, #000510 100%);
}

/* 添加扫描线效果 */
.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(12, 239, 255, 0.5),
        transparent
    );
    animation: scanLine 2s linear infinite;
}

/* 更新数字雨样式 */
.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.12; 
}

/* 添加科技感装饰元素 */
.tech-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(12, 239, 255, 0.3);
    border-radius: 50%;
}

.tech-circle-1 {
    width: 500px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotateTechCircle 20s linear infinite;
}

.tech-circle-2 {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: rotateTechCircle 15s linear infinite reverse;
}

.data-flow {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(12, 239, 255, 0.5),
        transparent
    );
    animation: dataFlowAnimation 2s linear infinite;
    opacity: 0.3;
}

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

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

/* 更新消息动画样式 */
.message {
    position: absolute;
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 24px 16px 56px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(12, 239, 255, 0.08);
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    max-width: 320px;
    line-height: 1.5;
    transform-origin: center;
    z-index: 2;
}

/* 定义多种出现动画 */
@keyframes slideFromLeft {
    0% { transform: translateX(-100px) scale(0.8); opacity: 0; }
    60% { transform: translateX(10px) scale(1.05); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideFromRight {
    0% { transform: translateX(100px) scale(0.8); opacity: 0; }
    60% { transform: translateX(-10px) scale(1.05); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes popUp {
    0% { transform: scale(0.3); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInRotate {
    0% { transform: rotate(-10deg) scale(0.8); opacity: 0; }
    100% { transform: rotate(0) scale(1); opacity: 1; }
}

/* 定义多种消失动画 */
@keyframes fadeOutZoom {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.6); opacity: 0; }
}

@keyframes fadeOutSpin {
    0% { transform: rotate(0) scale(1); opacity: 1; }
    100% { transform: rotate(90deg) scale(0.5); opacity: 0; }
}

@keyframes slideOutUp {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) scale(0.8); opacity: 0; }
}

@keyframes dissolve {
    0% { transform: scale(1); opacity: 1; filter: blur(0); }
    100% { transform: scale(0.9); opacity: 0; filter: blur(10px); }
} 