﻿/* 全体样式 */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #0f1535 60%, #1ec6e6 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
        .hidden-garbage {
            display: none !important;
            visibility: hidden !important;
            position: absolute !important;
            top: -9999px !important;
            left: -9999px !important;
        }
/* 容器样式 */
.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 机器人图像样式 */
.robot-img {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-img img {
    animation: ai-float 2.2s ease-in-out infinite alternate;
}

/* 标题样式 */
.title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffa200;
    text-align: left;
    width: 100%;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
    text-align: left;
    width: 100%;
    line-height: 1.2;
}

/* 卡片样式 */
.card {
    background: rgba(20, 30, 60, 0.95);
    border-radius: 18px;
    padding: 20px 18px;
    margin-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* 结果框样式 */
.result-box {
    background: linear-gradient(135deg, #18213c 60%, #1ec6e6 100%);
    border-radius: 12px;
    padding: 64px 18px;
    max-width: 340px;
    margin: 60px auto;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* 精度和描述样式 */
.accuracy {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.accuracy .percent {
    color: #ffa200;
    font-weight: bold;
    font-size: 1.3rem;
}

.desc {
    font-size: 1rem;
    color: #b8c6e0;
    margin-bottom: 6px;
}

.desc .highlight {
    color: #ffa200;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* 输入组样式 */
.input-group {
    width: 100%;
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: none;
    background: #232b45;
    color: #b8c6e0;
    font-size: 1rem;
    outline: none;
    margin-bottom: 0;
    box-sizing: border-box;
}

/* 按钮样式 */
.btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 24px;
    background: linear-gradient(90deg, #1ec6e6 0%, #25a4e9 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(30, 198, 230, 0.18);
    animation: btn-breath 1.8s ease-in-out infinite;
}

/* 聊天按钮样式 */
#chat-btn {
    animation: breath 1.6s ease-in-out infinite;
    background: #15a223;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* 动画定义 */
@keyframes ai-float {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 2px 8px #ffa20044);
    }
    50% {
        transform: translateY(-12px) scale(1.04);
        filter: drop-shadow(0 8px 18px #ffa20066);
    }
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 2px 8px #ffa20044);
    }
}

@keyframes btn-breath {
    0% {
        box-shadow: 0 2px 16px 0 rgba(30, 198, 230, 0.25),
                    0 2px 8px rgba(30, 198, 230, 0.18);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 32px 0 rgba(30, 198, 230, 0.38),
                    0 2px 16px rgba(30, 198, 230, 0.22);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 2px 16px 0 rgba(30, 198, 230, 0.25),
                    0 2px 8px rgba(30, 198, 230, 0.18);
        transform: scale(1);
    }
}

@keyframes breath {
    0% {
        box-shadow: 0 2px 12px 0 #15a22333;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px 0 #15a22355;
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 2px 12px 0 #15a22333;
        transform: scale(1);
    }
}

/* 模态框样式 */
.ai-modal {
    display: none;
    position: fixed;
    top: 200px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
}

.pro-box {
    background: rgb(5 16 26);
    border-radius: 12px;
    padding: 32px 18px;
    max-width: 340px;
    margin: 60px auto;
}

.progress-box .item {
    margin-bottom: 16px;
}

.i-title {
    font-size: 15px;
}

.layui-progress {
    background: #eee;
    border-radius: 8px;
    height: 16px;
}

.layui-progress-bar {
    background: #00dcf4;
    height: 100%;
    border-radius: 8px;
}

.result-con .con {
    font-size: 15px;
    margin-bottom: 18px;
}

#tips-code {
    color: #15a223;
}

/* 页脚样式 */
.footer {
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0 auto;
    padding: 0 16px 24px 16px;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.92rem;
    color: #b8c6e0;
}

.footer div {
    margin-bottom: 6px;
}

.footer a {
    color: #3eeaff;
    text-decoration: underline;
    margin: 0 8px;
}

/* Cookie提示样式 */
#cookie-banner {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    background: rgba(20, 30, 60, 0.98);
    color: rgb(255, 255, 255);
    padding: 14px 12px;
    font-size: 0.98rem;
    box-shadow: rgba(0, 0, 0, 0.13) 0px -2px 12px;
}

#cookie-banner span {
    flex: 1;
}

#cookie-accept {
    margin-left: 18px;
    padding: 7px 18px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #1ec6e6 0%, #3eeaff 100%);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* 第三方样式 */
.FotorFrame {
    position: fixed !important;
}

.weui-desktop-online-faq__wrp {
    top: 304px !important;
    bottom: unset !important;
}

.weui-desktop-online-faq__wrp .weui-desktop-online-faq__switch {
    width: 38px !important;
}

/* 响应式样式 */
@media (max-width: 480px) {
    .container {
        padding: 18px 4px 0 4px;
    }

    .robot-img {
        width: 120px;
        height: 120px;
    }

    .title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0;
    }

    .subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
}
