.search-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    text-align: center;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '|';
    position: absolute;
    right: -10px;
    top: 0;
    color: #16b777;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.search-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: #16b777;
    box-shadow: 0 0 0 3px rgba(22, 183, 119, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 40px;
    background: #16b777;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #14a66c;
    box-shadow: 0 4px 12px rgba(22, 183, 119, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

.search-icon {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-box {
        padding: 40px 15px;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 0px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 30px;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .search-container {
        max-width: 100%;
        padding: 0 10px;
        gap: 8px;
    }
    
    .search-input {
        height: 44px;
        font-size: 14px;
        padding: 0 16px;
        width: 100%;
    }
    
    .search-btn {
        height: 44px;
        padding: 0 16px;
        min-width: 44px;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .search-btn span:not(.search-icon) {
        display: none;
    }
    
    .search-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .search-input {
        height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }
    
    .search-btn {
        height: 40px;
        min-width: 40px;
    }
    
    .search-icon {
        font-size: 14px;
    }
    
    .search-container {
        gap: 6px;
        padding: 0 8px;
    }
}

.music-list-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.list-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.keyword {
    font-weight: 700;
    color: #16b777;
}

.result-count {
    background: #f5f5f5;
    padding: 4px 11px;
    border-radius: 11px;
    font-size: 12.6px;
    color: #666;
}

.list-content {
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
}

.list-section {
    border-bottom: 1px solid #e0e0e0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 15px;
    background: #f5f5f5;
    font-size: 14.4px;
    font-weight: 500;
    color: #333;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-operation {
    color: #666;
}

.song-list {
    background: #fff;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.song-item:hover {
    background-color: #f9f9f9;
}

/* 播放中的歌曲高亮显示 */
.song-item.playing {
    background-color: #e8f5e9;
    border-left: 4px solid #16b777;
}

.song-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.song-name {
    font-size: 13.5px;
    color: #333;
    font-weight: 500;
}

.song-artist {
    font-size: 12.6px;
    color: #999;
}

.song-operation {
    font-size: 12.6px;
}

.operation-link {
    color: #16b777;
    text-decoration: none;
    transition: color 0.3s;
}

.operation-link:hover {
    color: #14a66c;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-container {
        padding: 0 20px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .search-btn {
        padding: 0 20px;
    }
    
    .search-text {
        display: none;
    }
    
    .music-list-container {
        margin: 22.5px auto;
        padding: 0 11.25px;
    }
    
    .list-header {
        align-items: flex-start;
        gap: 7.5px;
    }
    
    .list-title {
        font-size: 15px;
    }
    
    .result-count {
        font-size: 10.5px;
        padding: 3px 9px;
        border-radius: 9px;
    }
    
    .section-header {
        padding: 9px 11.25px;
        font-size: 12.6px;
    }
    
    .song-item {
        padding: 9px 11.25px;
    }
    
    .song-name {
        font-size: 12.6px;
    }
    
    .song-artist {
        font-size: 10.8px;
    }
    
    .song-operation {
        font-size: 10.8px;
    }
}

