/* --- 全局变量 --- */



:root {
    /* 色彩 */
    --bg-mint: #eef7f2;
    --accent-orange: #ffd8b0; 
    --text-main: #3d4240;     
    --text-muted: #8e9495;
    --container-white:#f8fcfb;
    
    /* 字体族分配 */
    --font-heading: 'Lora', serif;       /* 感性/优雅 */
    --font-body: 'Mulish', sans-serif;   /* 理性/易读 */
    --font-ui: 'Quicksand', sans-serif;  /* 趣味/互动 */

    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- 2. 基础设置 --- */
html {
    scroll-behavior: smooth;
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--bg-mint);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;    
 
    




}



/* --- 3. 导航栏 (Quicksand) --- */
.top-nav {
    position: absolute;
    pointer-events: auto;
    top: 12px;
    right: 52px;
    z-index: 20;
}


.nav-link {
    display: inline-flex;  
    align-items: center;  
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: var(--text-main);
    margin-left: 28px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-muted);
}

.nav-icon {
    width: 56px;         
    height: 56px;        
    margin-right: 12px;   
    object-fit: contain;  
}

.scroll {
    position: absolute;
    bottom: 30px;     
    left: 50%;        
    transform: translateX(-50%); 
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-muted);
    opacity:0.5;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.scroll:hover {
    color: var(--text-body);
}









/* --- 文件夹标签导航 (更扁平、真实的文件夹风格) --- */
.folder-tabs {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 100;
    align-items: flex-end; /* 靠右对齐 */
}

.tab-item {
    background: var(--accent-orange);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-main);
    text-decoration: none;
    
    /* 核心形状修改：左侧是大圆角，右侧完全直角 */
    padding: 12px 25px 12px 20px;
    margin-bottom: 6px; 
    border-radius: 12px 0 0 12px; 
    
    /* 扁平化处理：去掉重阴影，改用细微的描边或同色系深色投影 */
    box-shadow: -3px 0 0 rgba(0,0,0,0.05); 
    border: 2px solid var(--text-main); /* 增加粗线条，更有插画感 */
    border-right: none; /* 右侧开口，接缝更真实 */

    transition: all 0.4s var(--ease-elastic);
    transform: translateX(20px); /* 初始露出一小截 */
    position: relative;
}

/* 悬停时的扁平交互 */
.tab-item:hover {
    transform: translateX(5px); /* 弹出来，但保留一点接缝感 */
    padding-left: 30px; /* 增加左侧内边距，视觉上更有“拉开”的感觉 */
}

/* 装饰：模拟文件夹上方的小圆点或小装饰 */
.tab-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-main);
    border-radius: 50%;
    opacity: 0.3;
}

/* 让不同标签颜色微调，增加层次感（可选） */
.tab-item:nth-child(even) {
    background: #fdf2d0; /* 比柠檬黄更浅一点的米色 */
}


/* --- 4. 布局容器 --- */
.cover-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 12px;
   
}

.hero-container {
    background: var(--container-white);
    width: 100%;
    max-width: 600px;
    padding: 60px 40px; /* 稍微增加内边距，更有呼吸感 */
    
    /* 1. 核心形状：将极大的圆角调小到 30px-40px，更像文件夹纸张 */
    border-radius: 40px; 
    
    /* 2. 扁平插画风格核心：2px 实线黑边 */
    border: 2px solid var(--text-main);
    
    /* 3. 放弃柔和阴影，改为 8px 的偏移硬影 */
    box-shadow: 8px 8px 0px rgba(0,0,0,0.05);
    
    /* 4. 去掉 rgba 透明背景，使用纯色以突出“纸张”实体感 */
    
    text-align: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    transition: all 0.4s var(--ease-elastic);
}

/* 5. 悬停效果：向上浮起，并让阴影加深/变大 */
.hero-container:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0px var(--accent-orange); 
}

/* 6. 可选：给 Container 增加一个类似文件夹的“订书针”或“索引小圆点”装饰 */
.hero-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 10px;
}




h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: 10px;
    width: 100%; height: 16px;
    background-color: var(--accent-orange);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.highlight:hover::after {
    opacity: 1;              
    transform: scale(1.1, 1.2);  

}

/* Quicksand: 活泼的副标题 */
.subtitle {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Mulish: 易读的正文 */
.intro-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-main);
    opacity: 0.9;
    margin: 0 auto 1rem auto;
}

/* --- 6. 交互组件 (Quicksand) --- */
/* 1. 基础按钮设置 */
.cta-button {
    /* 保留你的原始字体和颜色变量 */
    font-family: var(--font-ui, sans-serif);
    background-color: var(--accent-orange, #ff8c00); /* 加上兜底颜色防止消失 */
    color: var(--text-main, #ffffff);
    
    /* 关键：必须是 inline-block 或 block */
    display: inline-block;
    padding: 16px 48px;
    border-radius: 100px; 
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    
    /* 动画与裁剪 */
    transition: all 0.3s var(--ease-elastic, ease);
    position: relative; /* 必须：给图片层做参考 */
    overflow: hidden;   /* 必须：隐藏流出的图片 */
    z-index: 1;         /* 开启层级上下文 */
    
    box-shadow: 0 8px 0px rgba(0,0,0,0.05); 
}

/* 2. 图片/滑动层 */
.cta-button::after {
    content: "";
    position: absolute;
    width: 50px; 
    height: 50px;
    
    /* 2. 垂直居中 */
    top: 50%;
    transform: translateY(-50%); 
    
    /* 3. 初始位置：在按钮左侧外面 */
    left: -50px;
    /* 图片设置 */
    background: url('assets/blankbird.png') no-repeat center;
    background-size: cover; 
    
    transition: left 2s ease-in-out;
    z-index: -1; /* 放在文字下方，这样不会遮挡文字 */
}

/* 3. 鼠标滑动触发 */
.cta-button:hover::after {
    left: 150%; /* 划向右侧外 */
}

/* 4. 原有的交互效果保持不变 */
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 180, 120, 0.2);
}

.cta-button:active {
    transform: translateY(1px) scale(0.96);
}
/* --- 7. 微动画 (呼吸感插画) --- */
.bouncing_robin {
    /* 1. 尺寸与背景设置 */
    width: 52px; 
    height: 52px;
    background-image: url('./assets/robin1.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    z-index: 20;

    /* 2. 视觉表现：增加透明度 */
    opacity: 0.9; 
    border-radius: 0;

    /* 3. 交互控制：鼠标点击不高亮且穿透 */
    pointer-events: auto;
    user-select: none;

    /* 4. 定位 */
    position: absolute;
    top: 40px;
    left: 50%;

    
    /* 5. 动画：使用更柔和的呼吸感 */
    animation: gentle-breath 2s infinite ease-in-out;
}

/* 呼吸动画：整合了水平居中与垂直位移 */
@keyframes gentle-breath {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.05); /* 向上轻微浮动并放大 */
    }
}

.bouncing_robin:hover {
    filter: drop-shadow(0 0 8px var(--accent-orange)) brightness(1.1);
    animation-play-state: paused; /* 鼠标移上去时小鸟停止呼吸，方便点击 */

    

}


/* --- 背景装饰层容器 --- */
.illustration-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; 
    pointer-events: auto;


    padding: 4vh 4vw; 
    box-sizing: border-box;

  
    display: grid;

    grid-template-columns: repeat(8, 1fr); 
 
    grid-template-rows: repeat(4, 1fr); 

  
    justify-items: center;
    align-items: center;
    overflow: hidden;
}

/* --- 插画图片样式 --- */
.illustration-bg img {

    width: min(8vw, 64px); 
    height: auto;
    opacity: 0.8; 
    z-index: 2; 

    user-select: none;
 
    animation: floating-updown 5s infinite ease-in-out;
    cursor: pointer; 
    transition: transform 0.5s ease, opacity 0.6s ease;}

.illustration-bg img:active {
    transform: scale(0.9); 
}



/* --- 6. 制造错落感的 5 组延迟 --- */
.illustration-bg img:nth-child(5n+1) { animation-delay: 0s; }
.illustration-bg img:nth-child(5n+2) { animation-delay: 1.2s; }
.illustration-bg img:nth-child(5n+3) { animation-delay: 2.4s; }
.illustration-bg img:nth-child(5n+4) { animation-delay: 0.6s; }
.illustration-bg img:nth-child(5n+5) { animation-delay: 1.8s; }

/* --- 7. 纯上下位移呼吸动画 --- */
@keyframes floating-updown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        /* 向上漂浮的幅度也随网页大小微调 */
        transform: translateY(-0.5vh); 
        opacity: 0.4;
    }
}

/* --- 11. Hero Grid Layout --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    width: 90%;
    z-index: 10;
}

/* Photo Styling */
.hero-photo-area {
    display: flex;
    justify-content: flex-end;
}

.photo-wrapper {
    position: relative;
    width: 90%;
    max-height: 500px;
    aspect-ratio: 4 / 5;
    transition: transform 0.4s var(--ease-elastic);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 1. 统一圆角，增加 2px 粗黑边 */
    border-radius: 30px; 
    border: 2px solid var(--text-main);
    position: relative;
    z-index: 2;
    /* 2. 放弃柔和阴影，改用硬朗的扁平投影 */
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
}

/* The "orange" deco - 现在改造成叠纸风格 */
.photo-deco-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-orange);
    top: 15px;
    left: -15px; 
    
    /* 3. 装饰层也加上黑边，取消透明度(opacity: 1)，使其更有实体感 */
    border: 2px solid var(--text-main);
    border-radius: 30px;
    z-index: 1;
    opacity: 1; 
    
    transition: all 0.5s var(--ease-elastic);
}

/* 4. 悬停动效：像抽出来的卡片一样错开 */
.photo-wrapper:hover .photo-deco-blob {
    transform: translate(-15px, 15px) rotate(-5deg);
    background-color: var(--accent-orange); /* 悬停时变色，增加惊喜感 */
}

.photo-wrapper:hover .hero-photo {
    transform: translate(5px, -5px); /* 照片往反方向轻微移动 */
}

/* 5. 可选装饰：给照片角落加一个“贴纸”感的小标签 */
.photo-wrapper::after {
    content: 'Robin';
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--text-main);
    color: white;
    padding: 4px 12px;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 12px;
    border-radius: 8px;
    z-index: 3;
    transform: rotate(5deg);
}





/* --- 8. Resume Section 布局 --- */
.resume-section {
    background-color: var(--container-white);
    min-height: 100vh;
    padding: 120px 5vw;
    position: relative;
    z-index: 10; 
    border-radius: 60px 60px 0 0; 
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
    border: 2px solid var(--text-main);
    z-index: 100;
    
}

.resume-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 80px;
}

/* --- 9. 侧边栏样式  --- */
.res-label {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 20px;
    border-bottom: 4px solid var(--bg-mint);
    padding-bottom: 8px;
    display: inline-block;
}

.res-group { margin-bottom: 50px; }
.res-time { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; color: var(--text-muted); }
.res-bold { font-family: var(--font-heading); font-size: 1.2rem; margin: 5px 0; }
.res-sub { font-family: var(--font-body); color: var(--text-muted); font-size: 0.95rem; }


/* 技能云 */
.skill-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-cloud span {
    background: var(--bg-mint);
    border: 1px solid #DEF3E7;
    font-family: var(--font-heading);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
}


.res-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
}

.timeline {
    border-left: 2px solid var(--bg-mint);
    padding-left: 32px;
    position: relative;
}

.time-block { position: relative; margin-bottom: 50px; }
.time-block .dot {
    position: absolute; left: -40px; top: 4px;
    width: 20px; height: 20px;
    background: var(--accent-orange);
    border: 4px solid var(--container-white);
    border-radius: 50%;
}

.res-desc { line-height: 1.7; font-family: var(--font-body);color: var(--text-main); opacity: 0.85; margin-top: 10px; }



.footer {
    padding: 60px 0;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--text-muted);
    
    /* 核心改动：使用 flex 让文字和图标垂直居中 */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* 图标和文字的间距 */
}

.footer-icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    fill: currentColor; /* 让图标颜色随文字颜色变化 */
}
/* --- 12. 社交媒体按钮 (Pills) --- */
.social-links {
    display: flex;
    flex-wrap: wrap; /* 手机端自动换行 */
    gap: 16px;
    margin-top: 28px;
    /* 如果在 Hero Container 内，取消注释下面这行来左对齐 */
    /* justify-content: flex-start; */
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--text-main);
    border-radius: 50px; /* 彻底的胶囊形状 */
    
    /* 字体设置 */
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.05em;
    
    /* 动画 */
    transition: all 0.4s var(--ease-elastic);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 按钮左侧的小图标或缩写 */
.pill-icon {
    margin-right: 8px;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* 悬停效果：背景变色，向上轻微浮动 */
.pill:hover {
    color: var(--text-main);
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 216, 176, 0.4); /* 使用柠檬黄的阴影 */
}

.pill:hover .pill-icon {
    opacity: 1;
}

/* 点击时的反馈 */
.pill:active {
    transform: translateY(-1px) scale(0.97);
}



.bio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    margin: 0px 0;
    font-family: var(--font-body);

}
.card h3 {
    font-family: var(--font-ui);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* --- 13. 纯 CSS 泡泡背景 --- */
.bubble-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1; /* 确保在背景色之上，内容之下 */
    pointer-events: none; /* 整体穿透，不影响页面滚动 */
}

.bubble {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 5px #d5eadd; /* 增加柠檬黄的柔光 */
    pointer-events: auto; /* 允许泡泡接收点击 */
    cursor: pointer;
    transition: opacity 0.3s ease;
    
    /* 默认运行动画 */
    animation: float-bubble 15s linear infinite alternate;
}

/* --- 实现点击静止：利用 :focus --- */
/* 为了让 div 能接收 focus，HTML 中需要加 tabindex="0" (见下方说明) */
.bubble:focus {
    animation-play-state: paused !important;
    opacity: 0.8;
    outline: none; /* 去掉默认的蓝色外框 */
    border: 1px solid var(--accent-orange); /* 增加一个细边框（使用你的主题深灰色） */
    transform: scale(1.1); /* 轻微放大 */
    box-shadow: 0 0 5px rgba(255, 216, 176, 0.6); /* 增加柠檬黄的柔光 */
}

/* --- 模拟随机感：为每个泡泡设置不同的尺寸、位置和延迟 --- */
/* Bubble 1: Top-Left, now much larger */
.b1 { 
    width: 140px; 
    height: 140px; 
    left: 30%; /* Near the left edge */
    top: 15%; 
    animation-delay: -2s; 
}

/* Bubble 2: Largest, slightly lower, more to the center-left */
.b2 { 
    width: 100px; 
    height: 100px; 
    left: 20%; /* Shifted towards center-left */
    top: 10%; 
    animation-delay: -5s; 
    animation-duration: 18s; /* Slower because it's massive */
}

/* Bubble 3: Smaller, highest up, near the edge */
.b3 { 
    width: 80px; 
    height: 80px; 
    left: 10%; /* Very close to left edge */
    top: 10%; 
    animation-delay: -1s; 
}

/* Bubble 4: Mid-sized, lower down, slightly more to the center */
.b4 { 
    width: 170px; 
    height: 170px; 
    left: 5%; /* Further towards the center-left */
    top: 25%; 
    animation-delay: -8s; 
    animation-duration: 20s; 
}

/* Bubble 5: Small, lowest one on the left */
.b5 { 
    width: 100px; 
    height: 100px; 
    left: 5%; /* Concentrated on far-left */
    top: 50%; 
    animation-delay: -3s; 
}

/* Bubble 6: Mid-sized, in the middle of the left column */
.b6 { 
    width: 110px; 
    height: 110px; 
    left: 10%; /* Overlapping slightly with others for a natural feel */
    top: 30%; 
    animation-delay: -12s; 
}
/* 飘动动画轨迹 */
@keyframes float-bubble {
    0% { transform: translate(0, 0); }
    50% { transform: translate(40px, -60px); }
    100% { transform: translate(-20px, -120px); }
}




/* --- 作品展示布局 --- */
.content-wrapper {
    padding-top: 120px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-header { text-align: center; margin-bottom: 80px; }

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 100px;
}

.work-item {
    background: var(--container-white);
    border-radius: 20px; /* 改：更硬朗的圆角，插画风通常不用极大的圆角 */
    
    /* 关键修改：增加厚重的黑边 */
    border: 2px solid var(--text-main); /* 使用纯黑边框 */

    /* 关键修改：放弃柔和阴影，改用硬朗的扁平插画投影 */
    box-shadow: 8px 8px 0px rgba(0,0,0,0.05);

    overflow: hidden;
    transition: transform 0.2s ease; /* 增加平滑感 */

}

/* 大型卡片保持 span 2 */
.work-item.large { grid-column: span 2;
}

/* 悬停效果：增加点击感 */
.work-item:hover { 
    transform: translate(-2px, -2px); /* 向上向左微移 */
    box-shadow: 10px 10px 0px var(--accent-orange); /* 投影变大 */
}


/* --- 2. 图片占位符 (Work Img Placeholder) --- */
.work-img-placeholder {
    width: 100%; 
    height: auto;
    min-height: 200px;
    background: var(--container-white);
    display: flex; 
    align-items: center; 
    font-family: var(--font-heading);
    color: var(--text-muted);
    border-bottom: 2px solid var(--text-main)

}

.work-img-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* --- 3. 信息区域 (Work Info) --- */
.work-info { 
    padding: 24px; 
    /* 字号和字体保持不变 */
    font-family: var(--font-body); 
    font-size: 1rem; 
    color: var(--text-body);
}

/* 这里的颜色、字号不修改 */
.work-info h3 { 
    padding: 4px 12px;
    background: var(--text-main); /* 黑色背景 */
    color: var(--container-white);    /* 白色文字 (为了在黑底上能看清) */
    border-radius: 8px; /* 小圆角 */
    display: inline-block;
    font-family: var(--font-ui); 
    margin: 0 0 10px 0; 
    font-size: 1rem; 
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
    text-transform: uppercase; /* 强制大写 */



}



/* --- 1. 基础容器 (保持原样) --- */
.side-illustrations-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; 
    z-index: 5; 
}

/* --- 2. 包装器基础样式 --- */
.illustration-wrapper {
    position: absolute;
    width: 100px; 
    height: auto;
    pointer-events: auto; 
    /* 这里的 transition 负责鼠标移开后平滑恢复原状 */
    transition: transform 0.5s var(--ease-elastic); 
}

/* --- 3. 悬停触发扭动 (核心修改) --- */
.illustration-wrapper:hover {
    /* wiggle-animation: 动画名
       0.8s: 扭动速度
       infinite: 鼠标不移开就一直扭
       var(--ease-elastic): 延续你的弹性曲线
    */
    animation: wiggle-animation 0.8s var(--ease-elastic) infinite;
    z-index: 10; /* 悬停时稍微提升层级，防止被遮挡 */
}

/* --- 4. 定位 (保持原样，可根据需要微调) --- */
.illustration-wrapper.left-1 { left: 5%; top: 35%; }
.illustration-wrapper.left-2 { left: 3%; top: 60%; }
.illustration-wrapper.left-3 { left: 5%; top: 85%; }
.illustration-wrapper.right-1 { right: 3%; top: 30%; }
.illustration-wrapper.right-2 { right: 5%; top: 50%; }
.illustration-wrapper.right-3 { right: 3%; top: 80%; }

.illustration-item {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

/* --- 5. 动画定义 (微调了最后的状态以确保循环平滑) --- */
@keyframes wiggle-animation {
    0%   { transform: rotate(0deg) scale(1.1); }
    25%  { transform: rotate(-10deg) scale(1.15); }
    50%  { transform: rotate(10deg) scale(1.1); }
    75%  { transform: rotate(-5deg) scale(1.15); }
    100% { transform: rotate(0deg) scale(1.1); }
}


/* --- 布局通用 --- */
.page-section {
    padding: 60px 80px;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
}



.rounded-img {
    width: 100%;
    border-radius: 40px;
    background: var(--container-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    aspect-ratio: 2.5/1; /* 锁定 4K 窄长比例，防止布局跳动 */
    object-fit: cover; /* 自动等比缩放并填充，防止图片被拉伸变形 */
    object-position: center; 
    overflow: hidden;
}




/* 第三部分 & 第四部分 特殊布局 */
.large-display { 
    text-align: center;
    
}


.complex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    margin: 0 auto;
    width: 100%;
}


.audio-card {
    background:var(--container-white);
    border: 2px solid var(--text-main);
    border-radius: 16px;
    padding: 12px 18px; /* 稍微压缩 padding 以适配 60px 高度 */
    position: relative;
    margin: 40px 0 20px;
    height: 72px; /* 建议放宽到 70px，给进度条留出呼吸感 */
    box-shadow: 6px 6px 0px rgba(0,0,0,0.05);
    transition: all 0.2s var(--ease-elastic);
}

.audio-tag {
    /* 核心定位：依然悬浮在左上角 */
    position: absolute;
    top: -24px; /* 向上偏移，露出半个头 */
    left: 20px;
    
    /* 视觉风格：保持文件夹标签感 */
    background: var(--accent-orange);
    border: 2px solid var(--text-main);
    border-bottom: 4px solid var(--container-white);
    border-radius: 8px 8px 0 0;
    
    /* 文本风格 */
    padding: 2px 12px;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-ui);
    white-space: nowrap;
    
}

.audio-info {
    display: flex;
    /* 核心修改：将对齐方式改为 flex-end */
    justify-content: flex-end; 
    align-items: center;
    margin-bottom: 8px;
}


.audio-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: var(--font-ui);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
}

/* --- 自定义 UI 核心逻辑 --- */
.custom-player-ui {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

/* 播放按钮：保持贴纸感 */
.play-pause-btn {
    width: 32px;
    height: 32px;
    background: var(--accent-orange); /* 使用你提到的薄荷绿 */
    border: 2px solid var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    padding: 0;
    z-index: 100;
}
.play-pause-btn:active { transform: scale(0.9); }
.play-pause-btn svg { width: 18px; fill: var(--text-main); }

.manga-progress-wrapper {
    flex: 1;
    height: 10px;
    background:var(--container-white);
    border: 2px solid var(--text-main);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.manga-progress-fill {
    width: 0%; /* JS 动态更新 */
    height: 100%;
    background: var(--accent-orange);
    border-right: 2px solid var(--text-main);
}

.time-display {
    font-size: 0.875rem;
    font-weight: 800;
    font-family: var(--font-ui);
    color: var(--text-muted);
    min-width: 35px;
}

.audio-card:hover {
    transform: translate(-1px, -1px); /* 向上向左微移 */
    box-shadow: 10px 10px 0px var(--accent-orange); /* 投影变大 */
}


.banner-box {
  /* 1. 尺寸与比例控制 */
  width: 100%;
  aspect-ratio: 4/ 1; /* 锁定 4K 窄长比例，防止布局跳动 */
  border-radius: 20px;
  
  /* 2. 背景图核心设置 */
  background-repeat: no-repeat;
  background-position: center center; /* 确保窄长图在缩放时中心对齐 */
  background-size: cover; /* 核心：自动撑满容器并保持比例裁剪 */
  
  /* 3. 性能优化：针对大图的背景附件 */
  background-attachment: scroll; 
  
  /* 4. 4K 视觉优化 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;

  margin:20px ;
  
}
.banner-box img {
  width: 100%;
  height: 100%;
  
  /* 核心属性 */
  object-fit: cover; /* 自动等比缩放并填充，防止图片被拉伸变形 */
  object-position: center; 
  opacity:0.9
}


.video {
    
    /* 2. 确保容器占满网格分配给它的空间 */
    width: 100%;
    height: 100%;
    
    /* 3. 保持定位和溢出隐藏，确保贴纸和圆角正常 */
    position: relative;
    display: flex; /* 这里用 flex 是为了让视频在格子内居中 */
    justify-content: center;
    align-items: center;
}

/* 视频容器 */
.sticker-video {
    position: relative;
    cursor: pointer;
    border: 2px solid var(--text-main);
    border-radius: 20px;
    overflow: hidden;
    background: var(--container-white);
    box-shadow: 12px 12px 0px rgba(0,0,0,0.05);
}

.video-content {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* 核心：浮动贴纸按钮 */
.mini-play-sticker {
    position: absolute;
    bottom: 20px;   /* 改为右下角悬浮，不遮挡画面中心 */
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border: 2px solid var(--text-main);
    border-radius: 15px; /* 方圆贴纸风格 */
    box-shadow: 4px 4px 0px var(--text-main); /* 较小的硬阴影 */
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    
    transition: all 0.2s var(--ease-elastic);
    pointer-events: none; /* 确保点击事件直接穿透到 video 容器 */
    z-index: 10;
}

/* 交互状态：当视频播放时，贴纸缩小隐藏 */
.sticker-video.is-playing .mini-play-sticker {
    opacity: 0;
    transform: scale(0) rotate(-20deg);
}

/* Hover 效果：贴纸抖动提示 */
.sticker-video:hover .mini-play-sticker {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-orange);
}



.fixed-illustration {
    position: fixed; /* 1. 核心属性：使元素相对于浏览器窗口固定 */
    right: 20px;     /* 2. 距离窗口右侧 20px（可根据需要调整） */
    bottom: 0px;    /* 3. 距离窗口底部 20px（可根据需要调整） */
    
    /* 其他辅助设置 */
    z-index: 100;    /* 确保它在页面所有内容之上 */
    cursor: pointer;  /* 如果是点击项（如客服），可以加上手型 */
    
    /* 如果你想限制容器的大小，可以加上这两个 */
    max-width: 150px; /* 限制最大宽度，防止插画太大 */
}

/* 方式 A：处理内部的 <img> 标签，使其保持比例自适应 */
.fixed-illustration img {
    width: 100%;
    height: auto;
    display: block;   /* 消除图片底部的微小空隙 */
}

.fixed-illustration:hover {
  
    animation: wiggle-animation 0.8s var(--ease-elastic) infinite;
}


/* --- 目录页容器 --- */
.directory-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}



.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: flex-start;
}

/* --- 核心：文件夹卡片样式 --- */
.dir-card {
    position: relative;
    background: var(--container-white);
    border: 2px solid var(--text-main);
    border-radius: 0 20px 20px 20px; /* 左上角直角，配合 Tab 效果 */
    padding: 30px 20px;
    transition: all 0.5s var(--ease-elastic);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.2);
    margin-top: 1.25rem;
    
    /* 入场动画 */
    opacity: 0;
    transform: translateY(40px);
    animation: cardEntrance 0.8s var(--ease-elastic) forwards;
    animation-delay: var(--delay);
}

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

/* 顶部的文件夹索引头 (Tab) */
.card-tab {
    position: absolute;
    top: -34px; /* 露在外面 */
    left: -2px; /* 边缘对齐 */
    background: inherit;
    border: 2px solid var(--text-main);
    border-bottom: none; /* 与主体融合 */
    padding: 4px 15px;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 0.875rem;
    border-radius: 12px 12px 0 0;
    color: var(--text-main);
    z-index: 1;
}

/* 装饰小贴士 (Badge) */
.card-badge {
    position: absolute;
    top: 15px; right: 15px;
    font-family: var(--font-ui);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-main);
    opacity: 0.1; /* 隐约背景感 */
}

/* --- 互动效果 --- */
.dir-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* 悬停时投影变色，对应卡片主题 */
    box-shadow: 12px 12px 0px var(--accent-orange);
}

.card-logo img {
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-elastic);
}

.dir-card:hover .card-logo img {
    transform: rotate(-10deg) scale(1.1);
}

.card-name {
    font-family: var(--font-ui);
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--text-main);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- 列表链接逻辑 --- */
.project-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.project-list li { margin-bottom: 5px; }

.project-list a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-list a:hover {
    background: var(--bg-mint);
    color: var(--text-muted); /* 文字变灰，保持前文逻辑 */
    transform: translateX(8px);
}



.photography-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}


.hero-photos-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

/* 核心：照片相框样式 */
.photo-frame-large {
    background: #fff;
    border: 2px solid var(--text-main); /* 粗黑边 */
    border-radius: 20px;
    padding: 15px;
    position: relative;
    
    /* 初始硬投影：像一张厚纸板贴在墙上 */
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
    
    /* 入场动画 */
    opacity: 0;
    transform: translateY(30px);
    animation: frameEntrance 0.8s var(--ease-elastic) forwards;
    animation-delay: var(--delay);
    transition: all 0.4s var(--ease-elastic);
}

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

.photo-frame-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--text-main); /* 图片自身也有黑边 */
}

/* 大图 Hover 效果 */
.photo-frame-large:hover {
    transform: translateY(-10px) rotate(2deg); /* 向上跳并轻微倾斜 */
    box-shadow: 15px 15px 0px var(--accent-orange); /* 阴影变橙色 */
}

/* 相框上的索引标签 (Tab) */
.frame-label {
    position: absolute;
    background: var(--text-main);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    z-index: 3;
}

/* 标签位置调整 */
.label-top-left .frame-label { top: -15px; left: 20px; }
.label-top-right .frame-label { top: -15px; right: 20px; }


/* --- 占位图通用样式 --- */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
}


/* --- 滚动容器：核心逻辑 --- */
.photo-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 60px 20px; /* 留足高度给 Hover 的卡片弹跳 */
    /* 隐藏丑陋的默认滚动条，使用自定义样式 */
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) transparent;
}



/* --- 网格布局控制 --- */
.photo-grid-horizontal {
    display: grid;
    grid-template-rows: repeat(2, auto);
    /* 每一列固定宽度，向右自动增加 */
    grid-auto-flow: column; 
    grid-auto-columns: 640px; 
    gap: 30px;

}



/* --- 单个缩略图卡片 --- */
.thumb-card {
    background: #fff;
    border: 2px solid var(--text-main);
    border-radius: 15px;
    padding: 10px;
    padding-bottom: 20px; /* 留白更多，模仿拍立得相纸 */
    position: relative;
    transition: all 0.4s var(--ease-elastic);
    
    /* 初始硬投影：颜色极淡防止闪烁 */
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
    
    /* 入场动画 */
    opacity: 0;
    transform: scale(0.9);
    animation: thumbPop 0.6s var(--ease-elastic) forwards;
    animation-delay: var(--delay);
}

@keyframes thumbPop {
    to { opacity: 1; transform: scale(1); }
}

.thumb-frame {
    width: 100%;
    overflow: hidden;
    border: 2px solid var(--text-main);
    border-radius: 8px;
    margin-bottom: 12px;
}

.thumb-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* --- Hover 动效：放大 + 橙色投影 --- */
.thumb-card:hover {
    z-index: 10;
    /* 整体放大 1.1 倍，向上跳 10px */
    transform: scale(1.1) translateY(-10px) rotate(2deg);
    /* 投影变成明显的橙色硬阴影 */
    box-shadow: 12px 12px 0px var(--accent-orange);
    border-color: var(--text-main);
}

/* 如果想让图片在卡片内部也有点缩放 */
.thumb-card:hover img {
    transform: scale(1.1);
}

.thumb-caption {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-main);
    /* 模拟手写感 */
    letter-spacing: -0.5px;
}



/* --- 1. 外部大框容器 --- */
.sticker-album-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 40px 40px;
    background: var(--container-white);
    border: 2px solid var(--text-main);
    border-radius: 40px;
    box-shadow: 12px 12px 0px rgba(0,0,0,0.05);
}

.album-title {
    font-family: var(--font-ui);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 40px;
    margin-left: 32px;
    text-align: left;
    color: var(--text-main);
}

.album-tag {
    position: absolute;
    top: -16px;
    left: 32px;
    background: var(--text-main);
    font-family: var(--font-ui);
    color: white;
    padding: 5px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 800;
}

/* --- 2. 2x8 网格控制 --- */
.sticker-grid-2x8 {
    display: grid;
    /* 强制 8 列布局 */
    grid-template-columns: repeat(8, 1fr);
    /* 设定两行的高度 */
    grid-template-rows: repeat(2, 120px);
    gap: 12px;
    justify-items: center;
    align-items: start;
}

/* --- 3. 贴纸项目 (图片本身没有边框) --- */
.sticker-item {
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: all 0.4s var(--ease-elastic);

    /* 2. ✅ 添加：背景图片设置 (核心修改) */
    background-size: cover;      /* 确保图片完全填满 90x90 的区域，可能会裁切 */
    background-position: center; /* 确保图片居中显示 */
    background-repeat: no-repeat;
    
    /* 3. ✅ 添加：视觉兜底 (可选但推荐) */
    border-radius: 8px;           

    /* 4. 保留：原本的过渡和动画 */
    transition: all 0.4s var(--ease-elastic);
    
    /* 入场动画：一个个弹出来 */
    opacity: 0;
    transform: scale(0.5);
    animation: stickerPop 0.6s var(--ease-elastic) forwards;
    animation-delay: var(--delay);
}

@keyframes stickerPop {
    to { opacity: 1; transform: scale(1); }
}

.sticker-content {
    width: 100%;
    height: 100%;
    display: flex;
 

    border: none; 
    transition: all 0.3s var(--ease-elastic);
}


.sticker-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

/* --- 4. Hover 动效：赋予插画灵魂 --- */
.sticker-item:hover {
    transform: scale(1.2) translateY(-10px) rotate(5deg);
}

.sticker-item:hover .sticker-content {
    /* Hover 时才弹出橙色硬投影，增加“贴纸被撕起”的视觉感 */
    box-shadow: 8px 8px 0px var(--accent-orange);
    /* 如果你想在 Hover 时加边框可以取消下面注释 */
    /* border: 2px solid var(--text-main); */
}


.work-showcase {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

/* --- 陈列柜容器 --- */
.display-case, .video-showcase {
    background: var(--container-white);
    border: 2px solid var(--text-main);
    border-radius: 30px;
    margin-bottom: 80px;
    position: relative;
    padding: 30px;
    
    /* 初始硬投影 */
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
    
    /* 入场动画 */
    opacity: 0;
    transform: translateY(40px);
    animation: casePop 0.8s var(--ease-elastic) forwards;
    animation-delay: var(--delay);
    transition: all 0.4s var(--ease-elastic);
}

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

/* 标签贴纸 */
.case-tag {
    position: absolute;
    top: -16px; left: 32px;
    background: var(--text-main);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 0.875rem;
}

/* --- 3D 视图窗口 --- */
.model-viewport {
    width: 100%;
    height: 450px;
    background:var(--container-white); /* 浅灰色背景模拟展台 */
    border: 2px solid var(--text-main);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

model-viewer {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
}






/* =========================
   Responsive System
========================= */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {

    /* Layout */
    .page-section,
    .directory-section,
    .photography-section,
    .resume-section {
        padding: 50px 40px;
    }

    /* Grid */
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .complex-grid {
        grid-template-columns: 1fr;
    }

    .bio-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-photo-area {
        justify-content: center;
    }

    .hero-container {
        text-align: center;
    }

    .hero-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Photo horizontal scroll */
    .photo-grid-horizontal {
        grid-auto-columns: 420px;
    }

    /* Illustration 控制 */
    .fixed-illustration {
        right: 20px;
        bottom: 20px;
        width: 180px;
    }

    .side-illustrations-container {
        left: 10px;
    }
}


/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {

    /* Layout */
    .page-section,
    .directory-section,
    .photography-section,
    .resume-section {
        padding: 40px 20px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Grid 全部单列 */
    .card-container,
    .complex-grid,
    .hero-photos-grid,
    .bio-cards {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero-section {
        flex-direction: column;
        gap: 20px;
    }

    /* Resume */
    .resume-card {
        padding: 16px;
    }

    /* Sticker / video */
    .sticker-video,
    .sticker-video-alt {
        border-radius: 16px;
    }

    /* Photo scroll */
    .photo-grid-horizontal {
        grid-auto-columns: 280px;
        gap: 16px;
    }

    /* 装饰背景：保留，但淡化 */
    .illustration-bg {
        opacity: 0.25;
        overflow: hidden;
    }

    .illustration-bg img {
        transform: scale(0.75);
        animation-duration: 6s;
    }

    /* 右下插画：保留，但缩小、不挡点击 */
    .fixed-illustration {
        right: 8px;
        bottom: 8px;
        max-width: 72px;
        opacity: 0.65;
        z-index: 20;
        pointer-events: none;
    }

    /* 右侧文件夹标签：改小，弱化 */
    .folder-tabs {
        right: 0;
        top: auto;
        bottom: 20px;
        transform: none;
        gap: 4px;
        z-index: 30;
    }

    .tab-item {
        font-size: 0.72rem;
        padding: 8px 12px 8px 10px;
        margin-bottom: 4px;
        transform: translateX(8px);
        opacity: 0.85;
    }

    .tab-item:hover {
        transform: translateX(8px);
        padding-left: 10px;
    }

    /* 侧边装饰：缩小并禁止点击 */
    .side-illustrations-container {
        transform: scale(0.7);
        transform-origin: left center;
        opacity: 0.5;
        pointer-events: none;
    }

    /* 视频贴纸：缩小 */
    .mini-play-sticker {
        width: 38px;
        height: 38px;
        bottom: 12px;
        right: 12px;
        border-radius: 12px;
        font-size: 1rem;
    }



}


/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {

    /* Typography */
    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.9rem;
    }

    /* Button */
    .btn,
    .resume-button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Cards */
    .card,
    .resume-card,
    .project-card {
        padding: 14px;
        border-radius: 10px;
    }

    /* Photo */
    .photo-grid-horizontal {
        grid-auto-columns: 220px;
    }

    /* Sticker */
    .mini-play-sticker {
        width: 40px;
        height: 40px;
    }
}