* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: url('dqjk3qvzz6_1630496453799_n1d7abjt78.jpeg') no-repeat center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* 背景黑色蒙层 */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.dashboard {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* 世界地图容器 - 欧亚非 */
.world-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    z-index: 1;
}

/* 世界地图容器 - 美洲 */
.america-map-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    z-index: 1;
}

/* 3D模型容器 */
.model-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 10;
    pointer-events: none;
}

/* ==================== 视频背景层 ==================== */
.video-background-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;  /* 隔离混合模式，不影响其他元素 */
    mix-blend-mode: screen;
    
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(100%) grayscale(70%) hue-rotate(205deg) saturate(280%) contrast(105%);
}

/* ==================== 左下角时段对话率信息框 ==================== */
.time-rate-panel {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 470px;
    height: 280px;
    z-index: 50;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: panelBreathe 5s ease-in-out infinite;
}

@keyframes panelBreathe {
    0%, 100% {
        opacity: 0.7;
        filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    }
    50% {
        opacity: 1;
        filter: brightness(120%) grayscale(40%) hue-rotate(180deg);
    }
}

.panel-content {
    position: relative;
    padding: 30px 25px 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
    color: #fde2c5;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    text-indent: 2em;
    padding-right: 0;
}

/* 发光下划线 */
.panel-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdda9a 50%, transparent 100%);
    box-shadow: 0 0 10px #fdda9a, 0 0 20px #fdda9a, 0 0 30px #6b5095;
}

/* 右边三角箭头装饰 */
.panel-title::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fdda9a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px #fdda9a);
    animation: arrowLoop 2s linear infinite;
}

@keyframes arrowLoop {
    0% {
        right: 40px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        right: 10px;
        opacity: 0;
    }
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90%;
    align-self: center;
    margin-top: 10px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-item .label {
    width: 45px;
    font-size: 14px;
    color: #fff3bf;
    text-align: right;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fdda9a 0%, #6b5095 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
}

/* 进度条呼吸灯效果 - 光带从左往右移动 */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: progressShine 4s ease-in-out infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* 第一个进度条 - 晚上 */
.progress-item:nth-child(1) .progress-fill {
    background: linear-gradient(90deg, #66cfd5 0%, #4aa8ae 100%);
}

.progress-item:nth-child(1) .value {
    color: #66cfd5;
}

/* 第二个进度条 - 凌晨 */
.progress-item:nth-child(2) .progress-fill {
    background: linear-gradient(90deg, #a97ddf 0%, #8b5fc7 100%);
}

.progress-item:nth-child(2) .value {
    color: #a97ddf;
}

/* 第三个进度条 - 上午 */
.progress-item:nth-child(3) .progress-fill {
    background: linear-gradient(90deg, #e2b274 0%, #c9945a 100%);
}

.progress-item:nth-child(3) .value {
    color: #e2b274;
}

/* 第四个进度条 - 中午 */
.progress-item:nth-child(4) .progress-fill {
    background: linear-gradient(90deg, #d662dd 0%, #b845be 100%);
}

.progress-item:nth-child(4) .value {
    color: #d662dd;
}

.progress-item .value {
    width: 40px;
    font-size: 13px;
    color: #fde2c5;
    text-align: right;
    font-weight: bold;
}

/* ==================== 右上角情感表情包展示框 ==================== */
.emotion-emoji-panel {
    position: absolute;
    right: 20px;
    top: 130px;
    width: 470px;
    height: 280px;
    z-index: 50;
}

.panel-bg-emoji {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    z-index: -1;
}

.panel-bg-emoji img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: panelBreathe 5s ease-in-out infinite;
}

.panel-content-emoji {
    position: relative;
    padding: 30px 25px 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-title-emoji {
    font-size: 18px;
    font-weight: bold;
    color: #fde2c5;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    text-indent: 2em;
    padding-right: 0;
}

/* 发光下划线 */
.panel-title-emoji::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdda9a 50%, transparent 100%);
    box-shadow: 0 0 10px #fdda9a, 0 0 20px #fdda9a, 0 0 30px #6b5095;
}

/* 右边三角箭头装饰 */
.panel-title-emoji::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fdda9a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px #fdda9a);
    animation: arrowLoop 2s linear infinite;
}

/* Emoji 容器 */
.emoji-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex: 1;
}

/* Emoji 组（每个表情+标签一组） */
.emoji-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Emoji 项 */
.emoji-item {
    font-size: 60px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: emojiPop 0.5s ease-out;
    transition: transform 0.3s ease;
}

.emoji-item:hover {
    transform: scale(1.2);
}

@keyframes emojiPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Emoji 标签 */
.emoji-label {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    animation: labelFade 0.5s ease-out;
}

@keyframes labelFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 数据统计样式 */
.emotion-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 5px;
    padding-top: 5px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 30px;
    position: relative;
}

.stat-label {
    font-size: 13px;
    color: #ccc;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #ff9f43;
    text-shadow: 0 0 10px rgba(255, 159, 67, 0.5);
}

/* ==================== 右边中间热门机型展示图信息框 ==================== */
.hot-models-panel {
    position: absolute;
    right: 20px;
    top: 430px;
    width: 470px;
    height: 200px;
    z-index: 50;
}

.panel-bg-hot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.panel-bg-hot img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: panelBreathe 5s ease-in-out infinite;
}

.panel-content-hot {
    position: relative;
    padding: 30px 25px 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-title-hot {
    font-size: 18px;
    font-weight: bold;
    color: #fde2c5;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    text-indent: 2em;
    padding-right: 0;
}

/* 发光下划线 */
.panel-title-hot::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdda9a 50%, transparent 100%);
    box-shadow: 0 0 10px #fdda9a, 0 0 20px #fdda9a, 0 0 30px #6b5095;
}

/* 右边三角箭头装饰 */
.panel-title-hot::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fdda9a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px #fdda9a);
    animation: arrowLoop 2s linear infinite;
}

.models-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

.model-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.model-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.model-name {
    font-size: 13px;
    color: #fff3bf;
    text-align: center;
    white-space: nowrap;
}

/* ==================== 右下角气泡式对话热门标签信息框 ==================== */
.chat-tags-panel {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 380px;
    z-index: 50;
    border: 1px solid #442858;
    border-radius: 0 10px 0 0;
    background: rgba(33, 19, 52, 0.85);
    overflow: hidden;
    animation: tagsPanelBreathe 4s ease-in-out infinite;
}

@keyframes tagsPanelBreathe {
    0%, 100% {
        box-shadow: 0 0 10px rgba(68, 40, 88, 0.3), inset 0 0 20px rgba(97, 42, 74, 0.1);
        border-color: rgba(68, 40, 88, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(68, 40, 88, 0.6), inset 0 0 40px rgba(97, 42, 74, 0.2);
        border-color: rgba(68, 40, 88, 1);
    }
}

/* ==================== 右边居中3D模型展示区 ==================== */
.models-3d-panel {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-40%);
    width: 470px;
    height: 320px;
    z-index: 50;
}

.panel-bg-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: -1;
}

.panel-bg-3d img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: panelBreathe 5s ease-in-out infinite;
}

.panel-content-3d {
    position: relative;
    padding: 30px 25px 20px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-title-3d {
    font-size: 18px;
    font-weight: bold;
    color: #fde2c5;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    text-indent: 2em;
    padding-right: 0;
}

/* 发光下划线 */
.panel-title-3d::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdda9a 50%, transparent 100%);
    box-shadow: 0 0 10px #fdda9a, 0 0 20px #fdda9a, 0 0 30px #6b5095;
}

/* 右边三角箭头装饰 */
.panel-title-3d::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fdda9a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px #fdda9a);
    animation: arrowLoop 2s linear infinite;
}

.models-image-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
    height: 120px;
    flex-shrink: 0;
}

.model-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hot-model-image {
    max-width: 100%;
    max-height: 120px;
}

.model-sales {
    font-size: 13px;
    color: #ff9f43;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 159, 67, 0.5);
}

.sales-number {
    display: inline-block;
    min-width: 50px;
    font-variant-numeric: tabular-nums;
}

.sales-chart {
    width: 90%;
    height: 100px;
    margin-top: 45px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== 右下角时段对话率信息框（无进度条版） ==================== */
.time-rate-panel-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 470px;
    height: 280px;
    z-index: 50;
}

.panel-bg-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.panel-bg-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: panelBreathe 5s ease-in-out infinite;
}

.panel-content-right {
    position: relative;
    padding: 30px 25px 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-title-right {
    font-size: 18px;
    font-weight: bold;
    color: #fde2c5;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    text-indent: 2em;
    padding-right: 0;
}

/* 发光下划线 */
.panel-title-right::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdda9a 50%, transparent 100%);
    box-shadow: 0 0 10px #fdda9a, 0 0 20px #fdda9a, 0 0 30px #6b5095;
}

/* 右边三角箭头装饰 */
.panel-title-right::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fdda9a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 0 5px #fdda9a);
    animation: arrowLoop 2s linear infinite;
}

/* 气泡区域 */
.bubble-area {
    position: relative;
}

/* 悬浮气泡基础样式 */
.bubble-float {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: bubbleFloat 3s ease-in-out infinite;
}

/* 气泡1 - 故事 */
.bubble-1 {
    width: 110px;
    height: 110px;
    left: 15%;
    top: 50%;
    animation-delay: 0s;
}

/* 气泡2 - 天气 */
.bubble-2 {
    width: 90px;
    height: 90px;
    right: 5%;
    top: 54%;
    animation-delay: 0.5s;
}

/* 气泡3 - 笑话 */
.bubble-3 {
    width: 85px;
    height: 85px;
    left: 35%;
    top: 40%;
    animation-delay: 1s;
}

/* 气泡4 - 音乐 */
.bubble-4 {
    width: 100px;
    height: 100px;
    right: 25%;
    top: 54%;
    animation-delay: 1.5s;
}

/* 气泡5 - 跳舞 */
.bubble-5 {
    width: 95px;
    height: 95px;
    left: 55%;
    top: 25%;
    animation-delay: 2s;
}

.bubble-img {
    width: 100%;
    height: 100%;
}

/* 气泡1 - 故事 - 青色 */
.bubble-1 .bubble-img {
    filter: brightness(130%) contrast(110%) grayscale(20%) hue-rotate(170deg) drop-shadow(0 0 15px rgba(102, 207, 213, 0.6));
}

/* 气泡2 - 天气 - 紫色 */
.bubble-2 .bubble-img {
    filter: brightness(130%) contrast(110%) grayscale(20%) hue-rotate(270deg) drop-shadow(0 0 15px rgba(169, 125, 223, 0.6));
}

/* 气泡3 - 笑话 - 橙色 */
.bubble-3 .bubble-img {
    filter: brightness(130%) contrast(110%) grayscale(20%) hue-rotate(30deg) drop-shadow(0 0 15px rgba(255, 159, 67, 0.6));
}

/* 气泡4 - 音乐 - 粉色 */
.bubble-4 .bubble-img {
    filter: brightness(130%) contrast(110%) grayscale(20%) hue-rotate(300deg) drop-shadow(0 0 15px rgba(214, 98, 221, 0.6));
}

/* 气泡5 - 跳舞 - 蓝色 */
.bubble-5 .bubble-img {
    filter: brightness(130%) contrast(110%) grayscale(20%) hue-rotate(200deg) drop-shadow(0 0 15px rgba(116, 185, 255, 0.6));
}

.bubble-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 159, 67, 0.5);
    pointer-events: none;
    white-space: nowrap;
}

/* 大气泡文字 */
.bubble-1 .bubble-text {
    font-size: 18px;
}

/* 中等气泡文字 */
.bubble-2 .bubble-text,
.bubble-4 .bubble-text {
    font-size: 15px;
}

/* 小气泡文字 */
.bubble-3 .bubble-text,
.bubble-5 .bubble-text {
    font-size: 13px;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.data-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
    align-self: center;
    margin-top: 15px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
}

.data-label {
    font-size: 15px;
    color: #fff3bf;
}

.data-value {
    font-size: 15px;
    font-weight: bold;
    color: #66cfd5;
}

/* 数据项颜色 */
.data-item:nth-child(1) .data-value {
    color: #66cfd5;
}

.data-item:nth-child(2) .data-value {
    color: #a97ddf;
}

.data-item:nth-child(3) .data-value {
    color: #e2b274;
}

.data-item:nth-child(4) .data-value {
    color: #d662dd;
}

/* 标题样式 */
.tags-header {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #612a4a 0%, rgba(97, 42, 74, 0) 100%);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, #713c56 0%, rgba(113, 60, 86, 0) 100%);
    border-image-slice: 1;
    position: relative;
}

/* 内容区域 */
.tags-content {
    padding: 20px;
}

/* 标签项 */
.tag-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(68, 40, 88, 0.3);
    border-radius: 6px;
    border-left: 3px solid #d662dd;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(68, 40, 88, 0.5);
    transform: translateX(5px);
}

.tag-item:last-child {
    margin-bottom: 0;
}

.tag-name {
    font-size: 15px;
    color: #efc9b4;
    font-weight: 500;
}

.tag-count {
    font-size: 14px;
    color: #d662dd;
    font-weight: bold;
}

/* 标题样式 */
.radar-header {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #612a4a 0%, rgba(97, 42, 74, 0) 100%);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, #713c56 0%, rgba(113, 60, 86, 0) 100%);
    border-image-slice: 1;
    position: relative;
}

/* 内容区域 */
.radar-content {
    padding: 20px;
    height: 320px;
}

/* 雷达图容器 */
.radar-chart {
    width: 100%;
    height: 100%;
}

/* 折线装饰 */
.corner-line {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

/* 左上角折线 */
.top-left-line {
    top: 0;
    left: 0;
    border-top: 2px solid #efc9b4;
    border-left: 2px solid #efc9b4;
    border-radius: 2px 0 0 0;
}

/* 右下角折线 */
.bottom-right-line {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #efc9b4;
    border-right: 2px solid #efc9b4;
    border-radius: 0 0 2px 0;
}

/* ==================== 顶部标题样式 ==================== */
.header-viewport {
    position: absolute;
    top: -10px;
    /* left: 52px; */
    width: 1839px;
    height: 248px;
    z-index: 100;
    pointer-events: none;
}

.header-main-group {
    position: absolute;
    top: 10px;
    left: -52px;
    width: 1839px;
    height: 248px;
}

.header-inner-container {
    position: absolute;
    width: 1839px;
    height: 248px;
    left: 52px;
    top: -10px;
}

.header-absolute-box {
    position: absolute;
    width: 1839px;
    height: 248px;
    left: 0;
    top: 0;
}

/* 背景层 */
.bg-layer {
    position: absolute;
    pointer-events: none;
}

.bg-layer img {
    display: block;
    height: 100%;
    mix-blend-mode: normal;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
}

.bg-layer-1 {
    width: 1364px;
    height: 139px;
    left: 278px;
    top: 35px;
    opacity: 0.683133;
    animation: breatheDecor 3s ease-in-out infinite;
}

.bg-layer-2 {
    width: 1001px;
    height: 117px;
    left: 459px;
    top: 49px;
    opacity: 0.683133;
    animation: breatheDecor 3s ease-in-out infinite;
}

.bg-layer-3 {
    width: 689px;
    height: 101px;
    left: 615px;
    top: 72px;
    opacity: 0.683133;
    animation: breatheDecor 3s ease-in-out infinite;
}

/* 顶部拱形装饰 */
.top-arch-decor {
    position: absolute;
    width: 419px;
    height: 165px;
    left: 750px;
    top: 73px;
    opacity: 0.547333;
    transform: rotateX(180deg);
}

.top-arch-decor img {
    display: block;
    height: 100%;
    filter: hue-rotate(180deg);
}

/* 中央主标题 */
.header-center-title {
    position: absolute;
    width: 270px;
    height: 70px;
    left: 825px;
    /* top: 70px; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 1em;
}
/* 中央副标题 */
.header-center-subtitle {
    position: absolute;
    width: 270px;
    height: 70px;
    left: 825px;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 0.8em;
}

/* 副标题底线图片 */
.header-center-subtitle::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 90px;
    background: url('image/16jdie67ef_1652238024454_zmn4oqkc1w.png') no-repeat center center;
    background-size: contain;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    animation: subtitleLineBreathe 3s ease-in-out infinite;
}

@keyframes subtitleLineBreathe {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
    }
    50% {
        opacity: 1;
        filter: brightness(130%) grayscale(40%) hue-rotate(180deg);
    }
}
.main-title {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 4px;
    white-space: nowrap;
    pointer-events: auto;
    background: linear-gradient(to bottom, #fde2c5 0%, #edc19c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(253, 226, 197, 0.6));
    animation: titleBreathe 2s ease-in-out infinite;
}
.main-subtitle {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    white-space: nowrap;
    pointer-events: auto;
    background: linear-gradient(to bottom, #fde2c5 0%, #edc19c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(253, 226, 197, 0.6));
}
@keyframes titleBreathe {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(253, 226, 197, 0.4));
        opacity: 0.85;
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(253, 226, 197, 0.8));
        opacity: 1;
    }
}

/* 侧边装饰组 */
.side-decor {
    position: absolute;
    width: 682px;
    height: 66px;
    top: 0;
}

.side-decor.mirrored {
    transform: rotateY(180deg);
    transform-origin: center center;
}

.right-decor {
    left: 1078px;
}

.left-decor {
    left: 160px;
}

.decor-top-bar {
    position: absolute;
    width: 270px;
    height: 37px;
    left: 412px;
    top: 0;
}

.decor-top-bar img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
}

.decor-main-panel {
    position: absolute;
    width: 355px;
    height: 66px;
    left: 170px;
    top: 0;
}

.decor-main-panel img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
}

.decor-sub-bar {
    position: absolute;
    width: 170px;
    height: 22px;
    left: 300px;
    top: 0;
}

.decor-sub-bar img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%);
}

.decor-light-effect {
    position: absolute;
    width: 251px;
    height: 64px;
    left: 265px;
    top: 0;
    opacity: 0.547333;
}

.decor-light-effect img {
    display: block;
    height: 100%;
    filter: brightness(150%) grayscale(40%) hue-rotate(180deg) saturate(120%);
}

.decor-base {
    position: absolute;
    width: 375px;
    height: 50px;
    left: 0;
    top: 0;
}

.decor-base img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
}

/* 滑动线条 */
.slide-lines {
    position: absolute;
    width: 27px;
    height: 9px;
    left: 253px;
    top: 24px;
}

.slide-line {
    position: absolute;
    width: 27px;
    height: 9px;
    left: 0;
    top: 0;
}

.slide-line img {
    display: block;
    height: 100%;
    filter: brightness(140%) grayscale(40%) hue-rotate(180deg);
}

.slide-line.line-1 {
    opacity: 0.742;
    animation: slideLine1 2s ease-in-out infinite alternate;
}

.slide-line.line-2 {
    opacity: 0;
    animation: slideLine2 2s ease-in-out infinite alternate;
}

@keyframes slideLine1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(14.84px); }
}

@keyframes slideLine2 {
    0% { opacity: 0; transform: translateX(0); }
    100% { opacity: 0.742; transform: translateX(42px); }
}

/* 标题托盘组 */
.title-tray-group {
    position: absolute;
    width: 770px;
    height: 165px;
    left: 575px;
    top: -10px;
}

.title-tray-base {
    position: absolute;
    width: 770px;
    height: 103px;
    left: 0;
    top: 10px;
}

.title-tray-base img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%) hue-rotate(190deg);
}

.title-tray-glow {
    position: absolute;
    width: 770px;
    height: 103px;
    left: 0;
    top: 10px;
    opacity: 0.637867;
}

.title-tray-glow img {
    display: block;
    height: 100%;
    filter: brightness(110%) grayscale(40%) hue-rotate(180deg);
}

.title-tray-decor {
    position: absolute;
    width: 511px;
    height: 165px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    animation: breatheDecor 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.title-tray-decor img {
    display: block;
    height: 100%;
    filter: brightness(113%) hue-rotate(180deg);
}

@keyframes breatheDecor {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* 呼吸灯圆点 */
.breathe-dots {
    position: absolute;
    width: 62px;
    height: 14px;
    top: 72px;
}

.breathe-dots.mirrored {
    transform: rotateY(180deg);
    transform-origin: center center;
}

.right-dots {
    left: 1152px;
}

.left-dots {
    left: 705px;
}

.dot {
    position: absolute;
    width: 25px;
    height: 14px;
}

.dot img {
    display: block;
    height: 100%;
    filter: brightness(140%) grayscale(40%) hue-rotate(180deg);
}

.dot-1 {
    left: 37px;
    opacity: 1;
    animation: breathe1 2s ease-in-out infinite;
}

.dot-2 {
    left: 19px;
    opacity: 0.798667;
    animation: breathe2 2s ease-in-out infinite 0.3s;
}

.dot-3 {
    left: 0;
    opacity: 0.547333;
    animation: breathe3 2s ease-in-out infinite 0.6s;
}

@keyframes breathe1 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes breathe2 {
    0%, 100% { opacity: 0.798667; }
    50% { opacity: 0.4; }
}

@keyframes breathe3 {
    0%, 100% { opacity: 0.547333; }
    50% { opacity: 0.25; }
}

