body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.slide {
    position: relative;
    height: 66vh;
    width: 100%;
    background-size: 100% 100%;
    background-position: center;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.nav-scrolled {
    background-color: rgba(22, 93, 255, 0.95) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-cta {
    background-color: #165DFF;
    color: white;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #1248cc;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slideshow-container {
    position: relative;
    height: 66vh;
    overflow: hidden;
}


/* 搜索框容器 */
.search-container {
    position: relative;
    width: 70%;
    max-width: 700px;
    margin: 30px auto;
}



/* 搜索输入框 */
.search-box {
    width: 100%;
    height: 56px;
    border-radius: 28px;
    padding: 16px 20px 16px 56px;
    font-size: 16px;
    color: #333333;
    background-color: white;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


.search-box::placeholder {
    color: #999999;
}

/* 搜索图标 */
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}

/* 搜索按钮 */
.search-button {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 44px;
    padding: 0 24px;
    border-radius: 22px;
    background-color: #FF7D00;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background-color: #e67300;
}
.camera-icon{
    right: 6rem
}
/* 下拉检索框 */
.search-dropdown {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    max-height: 60vh;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 24px;
}

.search-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.leftGlass{margin-top: 68px;}
@media (max-width: 768px) {
    .search-container {
        width: 90%;
    }
    .search-box {
        width: 100%;
        height: 36px;
        border-radius: 28px;
        padding: 16px 20px 16px 56px;
        font-size: 16px;
        color: #333333;
        background-color: white;
        border: 1px solid #e5e7eb;
        outline: none;
        transition: all 0.3s ease;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    .search-button {
        font-size: 0.8rem;
        position: absolute;
        right: 6px;
        top: 6px;
        height: 24px;
        padding: 0 12px;
        border-radius: 22px;
        background-color: #FF7D00;
        color: white;
        font-weight: 300;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .camera-icon{
        right: 4rem
    }
    .search-box::placeholder {
        font-size: 0.8rem;
        color: #999999;
    }
    .leftGlass{margin-top: 0px;}
}
/* 区域标题 */
.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 16px;
}

/* 标签容器 */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

/* 热门标签 */
.hot-tag {
    background-color: #FF7D00;
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hot-tag:hover, .hot-tag.active {
    transform: scale(1.05);
}

/* 分类标签 */
.category-tag {
    background-color: white;
    color: #555555;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-tag:hover, .category-tag.active {
    background-color: #FF7D00;
    color: white;
    border-color: #FF7D00;
    transform: scale(1.05);
}

/* 自定义滚动条 */
.search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-dropdown::-webkit-scrollbar-track {
    background: #F0F0F0;
    border-radius: 8px;
}

.search-dropdown::-webkit-scrollbar-thumb {
    background: #FF7D00;
    border-radius: 8px;
}

.search-dropdown::-webkit-scrollbar-thumb:hover {
    background: #e67300;
}

/* 滚动条仅在悬停时显示 */
.search-dropdown {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FF7D00 #F0F0F0;
}

.search-dropdown:not(:hover)::-webkit-scrollbar-thumb {
    background: transparent;
}

.search-tag {
    display: inline-block;
    padding: 3px 6px;
    background-color: #f1f5f9;
    border-radius: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}


.holiday-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 200px;
}

.holiday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}




.holiday-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}



.holiday-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.holiday-content {
    position: relative;
    z-index: 3;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}


.series-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 200px;
}
.series-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.titles-content {
    position: relative;
    z-index: 3;
    color: white;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
<!--
精选模板

-->
.filter-tag {
    display: inline-block;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    margin-right: 16px;
}

.filter-tag:last-child {
    margin-right: 0;
}





.waterfall-container {
    position: relative;
    width: 100%;
}

.waterfall-column {
    display: inline-block;
    vertical-align: top;
    width: calc(16.55% - 12px);
    margin-right: 16px;
}

.waterfall-column:last-child {
    margin-right: 0;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}




.card-hover {
    transition: all 0.3s ease;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* 正方形图片区域：使用padding-top创建1:1宽高比 */
    padding-top: 100%;
    background-color: #f5f5f5; /* 添加背景色填充空白区域 */
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px; /* 上下边距8px */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    /* 图片自适应完整显示 */
    object-fit: contain;
    object-position: center;
}

.card-image:hover img {
    transform: scale(1.05);
}

/* 标题单行显示 */
.card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorite-btn {
    margin-left: 0.5rem;
    flex-shrink: 0;
}



@media (max-width: 1023px) {
    .waterfall-column {
        width: calc(33.33% - 10.66px);
    }
}

@media (max-width: 767px) {
    .waterfall-column {
        width: calc(50% - 8px);
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tags {
        margin-top: 1rem;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        white-space: nowrap;
    }

    .slide-content {
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        padding: 0 20px;
        z-index: 2;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    .slide-content h3{font-size: 1.2rem;margin-top: 0px;margin-bottom: 0px;}
    .slide-content p{font-size: 1rem;margin-top: 0px;margin-bottom: 0px;}
    .slide-content .py-3{padding:0.3rem 1rem;margin-top:6rem;}


    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    .btn-primary {
        background-color: #165DFF;
        color: white;
        transition: all 0.3s ease;
        font-size: 0.8rem;
    }

    .btn-primary:hover {
        transform: scale(1.05);
        background-color: #1248cc;
    }
    .card-hover {
        transition: all 0.3s ease;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    .series-card {
        transition: all 0.3s ease;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        min-height: 100px;
    }
    .slide {
        position: relative;
        height: 30vh;
        width: 100%;
        background-size: 100% 100%;
        background-position: center;
        transition: opacity 0.5s ease;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
    }
}
