:root {
    --zelda-gold: #ff9e16;
    --zelda-emerald: #1e6f5c;
    --zelda-sapphire: #289672;
    --zelda-onyx: #0a2e2a;
    --zelda-cream: #f8f5e4;
    --zelda-parchment: #f5f0d7;
    --zelda-ink: #2a211c;
    --zelda-blue: #1890ff;
    --zelda-blue-hover: #40a9ff;
    --zelda-blue-active: #096dd9;
    --zelda-background: #ffffff;
    --zelda-background-module: #fafafa;
    /*--zelda-blue-outline: rgb(24, 144, 255);*/
/*    blendent*/
    --night-backgroud-nav: #F9F7F7;
    --night-backgroud-content: #F9F7F7;
    --night-lightgold: #112D4E;
    --night-lightgold-active: #222831;
    --night-backgroud-card: #F5F2F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    /*background: linear-gradient(135deg, #0a2e2a 0%, #1a4a3f 30%, #2d6b5d 70%, #3a8d7a 100%);*/
    /*color: var(--zelda-cream);*/
    line-height: 1.5715;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: var(--night-backgroud-content);
}

body::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image:*/
    /*    radial-gradient(circle at 20% 80%, rgba(233, 182, 77, 0.1) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 80% 20%, rgba(41, 128, 185, 0.08) 0%, transparent 50%);*/
    /*z-index: -1;*/
}

/* 顶部导航栏 - 全新设计 */
.navbar-zelda {
    background: var(--night-backgroud-nav) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 182, 77, 0.3);
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.2rem 0rem;
    height: 57px; /* 固定导航栏高度 */
}

/*!* 过渡动画 *!*/
/*.fade-in {*/
/*    animation: fadeIn 0.3s ease;*/
/*}*/

/*.fade-out {*/
/*    animation: fadeOut 0.3s ease;*/
/*}*/

/*@keyframes fadeIn {*/
/*    from { opacity: 0; }*/
/*    to { opacity: 1; }*/
/*}*/

/*@keyframes fadeOut {*/
/*    from { opacity: 1; }*/
/*    to { opacity: 0; }*/
/*}*/

.search-full-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1050;
    display: none;
    align-items: center;
}

.search-box .input-group {
    height: 40px; /* 固定搜索框高度 */
}

.navbar-brand {
    font-weight: 500;
    /*font-size: 1.1rem;*/
    color: var(--night-lightgold) !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);*/
}

.navbar-brand i {
    margin-right: 0.75rem;
    color: var(--night-lightgold);
    /*filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));*/
}

.nav-link {
    color: rgba(248, 245, 228, 0.9) !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--zelda-gold);
    transition: width 0.3s ease;
}

.nav-link.active {
    color: var(--zelda-gold) !important;
}

.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--zelda-gold) !important;
}

.nav-link:hover::after {
    width: 70%;
}

/* 主要内容区域 */
.main-content {
    background: var(--night-backgroud-content);
    margin-top: 57px;
    padding: 0;
}

/* 搜索栏 - 全新设计 */
.search-container {
    /*margin-bottom: 2rem;*/
}

.search-box {
    /*position: relative;*/
    width: 95%;
    /*margin: 0 auto;*/
}

#cancelSearch {
    border: 1px solid lightgray;
    color: lightgray;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius:  0 8px 8px 0;
}
#cancelSearch:hover {
    border: 1px solid var(--zelda-blue-hover);
    background: none;
}

.search-input {
    border-radius: 8px;
    border: 1px solid rgba(233, 182, 77, 0.3);
    /*background: rgba(10, 46, 42, 0.7);*/
    /*backdrop-filter: blur(10px);*/
    /*padding: 0.5rem 1rem 0.5rem 2.5rem;*/
    /*width: 100%;*/
    font-size: 0.7rem;
    /*color: var(--zelda-cream);*/
    /*transition: all 0.3s ease;*/
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);*/
}

.search-input::placeholder {
    color: lightgray;
}

.search-input:focus {
    /*outline: none;*/
    border: 1px solid var(--zelda-blue-hover);
    box-shadow:
        0 0 0  rgba(0, 0, 0, 0.2);
    /*background: rgba(10, 46, 42, 0.85);*/
}

.search-icon {
    /*position: absolute;*/
    /*left: 1.5rem;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    color: var(--zelda-gold);
    font-size: 1rem;
}

/* 分类筛选 - 全新设计 */
.category-filter {
    display: flex;
    overflow-x: auto;
    /*margin-bottom: 0.5rem;*/
    padding: 0 0.5rem;
    -webkit-overflow-scrolling: touch;
    box-shadow:
            inset 10px 0 8px -8px rgba(0, 0, 0, .08),
            inset -10px 0 8px -8px rgba(0, 0, 0, .08);
}

.category-filter::-webkit-scrollbar {
    height: 3px;
}

.category-filter::-webkit-scrollbar-track {
    background: rgba(10, 46, 42, 0.3);
    border-radius: 2px;
}

.category-filter::-webkit-scrollbar-thumb {
    background: var(--night-lightgold-active);
    border-radius: 2px;
}

.ant-alert-content {
    background: white;
    margin: 5px auto;
    width: 98%;
    padding: 0.3rem 0 0.3rem 1.5rem;
    border-radius: 10px;
}

.alert-close-btn {
	color: gray;
	position: absolute;
	right: 1rem;
    font-size: 1rem;
}

.category-btn {
    flex: 0 0 auto;
    padding: 1rem 0.8rem;
    line-height: 1.5715;
    /*border-radius: 50px;*/
    border: none;
    /*border-bottom: 2px solid rgba(233, 182, 77, 0.3);*/
    background: var(--night-backgroud);
    color: var(--zelda-onyx);
    font-size: 0.8rem;
    /*font-weight: 400;*/
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

.category-btn:hover {
    transform: translateY(-1px);
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);*/
    /*border-color: var(--zelda-gold);*/
}

.category-btn.active {
    /*background: var(--zelda-background-module);*/
    color: var(--zelda-blue);
    border: none;
    border-bottom: 2px solid var(--zelda-blue-active);
    /*box-shadow:*/
    /*    0 4px 20px rgba(233, 182, 77, 0.2),*/
    /*    inset 0 1px 1px rgba(255, 255, 255, 0.1);*/
}

/* 蓝图网格 */
.blueprints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin: 0.4rem 1rem 2rem 1rem;
}

/* 蓝图卡片 - 全新设计 */
.blueprint-card {
    /*background: rgba(10, 46, 42, 0.7);*/
    /*backdrop-filter: blur(10px);*/
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    /*border: 1px solid rgba(233, 182, 77, 0.2);*/
    position: relative;
    /*width: 50%;*/
    display: flex;
    flex-direction: column;
}

.blueprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--zelda-gold),
        transparent
    );
    opacity: 0.5;
}

.blueprint-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    border-color: rgba(233, 182, 77, 0.5);
}

.blueprint-image-container {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.blueprint-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blueprint-card:hover .blueprint-image {
    transform: scale(1.1);
}

.blueprint-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: linear-gradient(to top, rgba(10, 46, 42, 0.9), transparent);*/
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blueprint-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(233, 182, 77, 0.9);
    color: var(--zelda-onyx);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blueprint-content {
    padding: 0.5rem;
    background: #ffffff;
}

.blueprint-title {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0;
    /*color: var(--night-lightgold);*/
    line-height: 1.5715;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;     /* 垂直居中 */
    justify-content: left; /* 水平居中 */
    color: #60bde8;
    white-space: nowrap;
}

.blueprint-description {
    /*color: rgba(248, 245, 228, 0.8);*/
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blueprint-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(233, 182, 77, 0.2);
}

.blueprint-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.blueprint-footnote {
    border-top: 1px solid lightgray;
    padding: 0 0.5rem 0 0.5rem;
    background: #f6f6f6;
    /*color: #8B8B8C;*/
    margin-top: auto;
}

.stat-item {
    /*color: #609966;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 0.5rem;*/
    /*color: var(--night-lightgold);*/
    /*font-weight: 600;*/
}

.stat-item i {
    /*color: #609966;*/
}

.carousel-item img {
    max-height: 300px;
}

.keyword-btn {
    background: #EAEAEA;
    color: #FF2E63;
    /*align-items: center;*/
    border-radius: 20px;
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
    margin-top: 2px;
}

.card-version {
    color: #609966;
}

.card-visits {
    /*color: #2196f3cc;*/
    color: #8B8B8C;
    /*color: #9DC08B;*/
}

.blueprint-keyword {

}

.blueprint-keyword>button:nth-child(1) {
    /*max-width: 25%;*/
    align-items: center;
    margin-left: 0.2rem;
    /*margin-top: 0.3rem;*/
}

.blueprint-keyword>button:nth-child(2) {
    /*max-width: 25%;*/
    /*align-items: center;*/
    /*margin-left: 0.2rem;*/
    /*margin-top: 0.3rem;*/
}

.save-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--zelda-gold);
    /*background: transparent;*/
    /*color: var(--zelda-gold);*/
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-btn:hover {
    background: var(--zelda-gold);
    color: var(--zelda-onyx);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 182, 77, 0.3);
}

/* 加载动画 */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(233, 182, 77, 0.1);
    border-radius: 50%;
    border-top-color: var(--zelda-gold);
    border-right-color: var(--zelda-emerald);
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    box-shadow: 0 0 20px rgba(233, 182, 77, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--night-backgroud-nav);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(233, 182, 77, 0.2);
    margin: 2rem 0;
}

.empty-state i {
    font-size: 5rem;
    color: rgba(233, 182, 77, 0.5);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.empty-state h3 {
    color: gray;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.empty-state p {
    color: rgba(248, 245, 228, 0.7);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* 模态框样式 - 全新设计 */
.modal-zelda .modal-content {
    border-radius: 24px;
    /*background: rgba(10, 46, 42, 0.95);*/
    backdrop-filter: blur(20px);
    border: 1px solid rgba(233, 182, 77, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow-x: hidden;
}

.modal-zelda .modal-header {
    /*background: linear-gradient(135deg, var(--zelda-emerald) 0%, var(--zelda-onyx) 100%);*/
    /*color: var(--zelda-cream);*/
    color: black;
    border-radius: 24px 24px 0 0;
    /*padding: 1.75rem;*/
    /*padding: 1.75rem 1rem 0.5rem 1rem;*/
    /*padding-left: 0;*/
    /*padding-right: 0;*/
    border-bottom: 1px solid rgba(233, 182, 77, 0.3);
}

.modal-zelda .modal-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: black;
    /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);*/
}

.modal-nav {
    height: 5vh;
}


/*.frosted-glass {*/
/*    background-color: rgba(255, 255, 255, 0.2); !* 半透明白色 *!*/
/*    backdrop-filter: blur(10px); !* 磨砂效果 *!*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.3); !* 可选：上边框，增强层次感 *!*/
/*}*/

/* 增强模态框内Carousel的切换按钮 */
.modal .carousel-control-prev,
.modal .carousel-control-next {
  width: 50px; /* 增大按钮尺寸 */
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6); /* 深色半透明背景，增强对比 */
  border-radius: 50%; /* 圆形按钮 */
  top: 50%;
  transform: translateY(-50%);
  /*border: 2px solid rgba(255, 255, 255, 0.9); !* 白色边框，使其从背景中分离 *!*/
  opacity: 1; /* 确保按钮始终可见，而非默认的悬停才显示 */
  backdrop-filter: blur(5px); /* 背景模糊效果，进一步突出按钮 */
  -webkit-backdrop-filter: blur(5px); /* Safari支持 */
  transition: all 0.3s ease; /* 为所有变化添加平滑过渡 */
}

.modal .carousel-control-prev {
  left: 15px;
}
.modal .carousel-control-next {
  right: 15px;
}

/* 增强图标本身的样式 */
.modal .carousel-control-prev-icon,
.modal .carousel-control-next-icon {
  width: 30px; /* 增大图标尺寸 */
  height: 30px;
  background-size: 100% 100%;
  filter: brightness(0) invert(1); /* 确保图标为纯白色，更醒目 */
}

/* 重要的悬停状态效果 */
.modal .carousel-control-prev:hover,
.modal .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* 悬停时背景更深 */
  transform: translateY(-50%) scale(1.1); /* 悬停时轻微放大 */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* 悬停时添加发光效果 */
}

/* 保存按钮样式 */
.save-btn-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.save-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    background-color: var(--success-color);
    transform: scale(1.1);
}

.btn-close {
    /*filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);*/
    /*opacity: 0.8;*/
    color: black;
    font-weight: 600;
}

.modal-zelda .modal-body {
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    max-height: 70vh;
    overflow-y: auto;
    /*color: var(--zelda-cream);*/
}

.modal-zelda .modal-footer {
    border-top: 1px solid rgba(233, 182, 77, 0.2);
    /*padding: 1.5rem 2rem;*/
    /*background: rgba(10, 46, 42, 0.8);*/
}

.blueprint-detail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.75rem;
    border: 2px solid rgba(233, 182, 77, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blueprint-description {
    font-size: 1rem;
}

.materials-list {
    /*margin: 2rem 0;*/
}

.material-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(233, 182, 77, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(233, 182, 77, 0.2);
    transition: all 0.3s ease;
}

.material-item:hover {
    background: rgba(233, 182, 77, 0.15);
    transform: translateX(5px);
}

.material-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--zelda-emerald) 0%, var(--zelda-sapphire) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    color: var(--zelda-cream);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.material-info {
    flex: 1;
}

.material-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    /*color: var(--zelda-cream);*/
}

.material-quantity {
    /*color: rgba(233, 182, 77, 0.9);*/
    font-size: 0.75rem;
    font-weight: 600;
}

.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    margin-bottom: 1.75rem;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 23px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom,
        rgba(233, 182, 77, 0.5),
        transparent
    );
}

.step-number {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zelda-emerald) 0%, var(--zelda-sapphire) 100%);
    color: var(--zelda-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--zelda-gold);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--zelda-gold);
    font-size: 1.1rem;
}

.step-description {
    /*color: rgba(248, 245, 228, 0.85);*/
    font-size: 1rem;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .blueprints-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .main-content {
        /*padding: 0rem 0.75rem 1.5rem;*/
        padding: 0;
    }

    #blueprintModal {
        overflow-x: hidden !important;
    }

    .modal-zelda .modal-dialog {
        margin: 0.75rem;
    }

    .welcome-title {
        font-size: 1.7rem;
    }

    .blueprint-content {
        padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    }
    .blueprint-title {
        font-size: 1.2rem;
        color: #60bde8;
    }

    .carousel-item img {
        max-height: 250px;
    }

}

@media (min-width: 577px) and (max-width: 768px) {
    .blueprints-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*!* 滚动条美化 *!*/
/*::-webkit-scrollbar {*/
/*    width: 8px;*/
/*}*/

/*::-webkit-scrollbar-track {*/
/*    background: rgba(10, 46, 42, 0.3);*/
/*    border-radius: 4px;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
/*    background: linear-gradient(to bottom, var(--zelda-gold), var(--zelda-emerald));*/
/*    border-radius: 4px;*/
/*}*/

/*::-webkit-scrollbar-thumb:hover {*/
/*    background: linear-gradient(to bottom, var(--zelda-gold), var(--zelda-sapphire));*/
/*}*/

/* 淡入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-header,
.search-box,
.category-filter,
.blueprint-card {
    animation: fadeInUp 0.6s ease forwards;
    background: #ffffff;
}


/*.blueprint-card:nth-child(2) { animation-delay: 0.1s; }*/
/*.blueprint-card:nth-child(3) { animation-delay: 0.2s; }*/
/*.blueprint-card:nth-child(4) { animation-delay: 0.3s; }*/
/*.blueprint-card:nth-child(5) { animation-delay: 0.4s; }*/
/*.blueprint-card:nth-child(6) { animation-delay: 0.5s; }*/