/* 弹窗样式 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    background-color: #fff;
    border-radius: 10px;
    width: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.popup-header {
    padding: 12px 16px;
    background-color: #f5f5f5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-header span {
    font-size: 14px;
    color: #000;
    font-weight: normal;
}
.close-btn {
    font-size: 18px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.popup-body {
    padding: 20px;
}
.popup-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}
.input-group {
    margin-bottom: 24px;
}
.input-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper input {
    width: 100%;
    height: 38px;
    padding: 4px 8px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.input-wrapper input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.char-count {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    font-size: 12px;
    color: #999;
}
.popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.popup-footer button {
    padding: 4px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    height: 32px;
    transition: all 0.3s;
}
.btn-cancel {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    color: #666;
}
.btn-cancel:hover {
    color: #40a9ff;
    border-color: #40a9ff;
}
.btn-confirm {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}
.btn-confirm:hover {
    opacity: 0.85;
}
.blacklist-manage-popup{
    width: 1200px;
}
.favorite-manage-popup{
    width: 1200px;
}
