/* 暗黑简洁主题 - 搜索首页模板样式（极简扁平设计） */

.search-container {
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
    background: #1f2833; /* 白色背景，与外围一致 */
    position: relative;
    overflow: visible;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.date-display {
    font-size: 14px;
    color: #a0a8b0;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.daily-quote {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 20px 30px;
    background: #1f2833;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid #2a3441;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: quoteFadeIn 1s ease-out;
}

.daily-quote-label {
    font-size: 14px;
    color: #a0a8b0;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.daily-quote-text {
    font-size: 18px;
    color: #CCCCCC;
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-content {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-title {
    font-size: 48px;
    font-weight: 700;
    color: #CCCCCC;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.search-description {
    font-size: 18px;
    color: #a0a8b0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.search-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-search-input {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: 2px solid #2a3441;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #1f2833;
    box-sizing: border-box;
    color: #CCCCCC;
}

.search-search-input::placeholder {
    color: #a0a8b0;
}

.search-search-input:focus {
    outline: none;
    border-color: #5dade2;
    background: #2a3441;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.search-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #5dade2;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-search-btn:hover {
    background: #4a9bc7;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.search-download-btn-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-download-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #5dade2;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.search-download-btn:hover {
    background: #4a9bc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.search-carousel-section {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
}

.search-carousel-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #1f2833;
    aspect-ratio: 1400 / 450;
    border: 1px solid #2a3441;
}

.search-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.search-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.search-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}

.search-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.search-carousel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 30px;
    color: white;
    z-index: 2;
}

.search-carousel-slide-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-carousel-slide-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.search-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #2a3441;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-carousel-btn:hover {
    background: #1f2833;
    border-color: #5dade2;
    transform: translateY(-50%) scale(1.1);
}

.search-carousel-btn.prev {
    left: 20px;
}

.search-carousel-btn.next {
    right: 20px;
}

.search-carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: #CCCCCC;
}

.search-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.search-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-carousel-indicator.active {
    background: #5dade2;
    border-color: #5dade2;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .search-container {
        padding: 30px 20px 40px 20px;
    }
    
    .date-display {
        font-size: 12px;
        margin-bottom: 8px;
        padding: 0 20px;
    }
    
    .daily-quote {
        padding: 16px 20px;
        margin-bottom: 30px;
    }
    
    .daily-quote-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .daily-quote-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .search-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .search-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .search-search-input {
        padding: 14px 55px 14px 20px;
        font-size: 14px;
    }
    
    .search-search-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .search-download-btn-wrapper {
        margin: 40px auto 0;
    }
    
    .search-download-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .search-carousel-section {
        margin: 25px auto 0;
        padding: 0 10px;
    }
    
    .search-carousel-container {
        height: 200px;
        min-height: 200px;
    }
    
    .search-carousel-slide-title {
        font-size: 18px;
    }
    
    .search-carousel-slide-desc {
        font-size: 12px;
    }
    
    .search-carousel-slide-content {
        padding: 20px;
    }
    
    .search-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .search-carousel-btn.prev {
        left: 10px;
    }
    
    .search-carousel-btn.next {
        right: 10px;
    }
}


}

