/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding-bottom: 60px; /* 为底部导航栏留出空间 */
    max-width: 100%;
    overflow-x: hidden;
}

/* 标题栏样式 */
header {
    background-color: #1890ff;
    color: white;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

header h1 {
    font-size: 1.4rem;
    font-weight: 500;
}

/* 搜索框样式 */
.search-container {
    position: relative;
    margin: 10px 0 5px;
    width: 100%;
}

.search-container input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    max-width: 100%;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-container i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

/* 搜索图标样式优化 */
.search-container .fa-search {
    cursor: pointer;
    padding: 8px;
    color: #333;
    transition: color 0.3s, transform 0.2s;
}

.search-container .fa-search:hover {
    color: #1890ff;
    transform: scale(1.1);
}

.search-container .fa-search:active {
    transform: scale(0.95);
}

/* 过滤标签样式 */
.filter-tabs {
    display: flex;
    background-color: white;
    padding: 10px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 8px 15px;
    margin-right: 10px;
    border: none;
    background: none;
    color: #666;
    font-size: 0.9rem;
    border-radius: 15px;
    cursor: pointer;
}

.tab-btn.active {
    background-color: #1890ff;
    color: white;
}

/* 任务卡片容器样式 */
.task-container {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 任务卡片样式 */
.task-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
    height: 90px; /* 减小卡片高度 */
    width: 100%;
    max-width: 100%;
}

/* 图片容器和模拟标签样式 */
.image-container {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.task-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.task-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.simulation-label {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 0 0 4px 0;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.task-content {
    padding: 6px; /* 减小内部间距 */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* 防止flex子项溢出 */
    width: calc(100% - 90px); /* 减去图片宽度 */
}

.task-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px; /* 减小标题下方间距 */
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-info {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 2px; /* 减小时间信息下方间距 */
}

.task-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0; /* 移除顶部边距，让其紧接时间信息 */
    width: 100%;
}

.task-guarantee {
    font-size: 0.8rem;
    color: #1890ff;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* 扩大占位空间 */
}

.fee-rate {
    color: #999;
}

/* 隐藏原有的task-content中的价格显示 */
.task-content .task-price {
    display: none;
}

/* 保留原始的task-price样式供其他地方使用 */
.task-price {
    color: #ff4d4f;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* 价格和数量组合显示 */
.task-price-count {
    position: absolute;
    bottom: 8px;  /* 整体位置上移 */
    right: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px 5px;
    border-radius: 4px;
    z-index: 2;
}

/* 价格值样式 */
.task-price-value {
    color: #ff4d4f;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* 数量标签样式 */
.task-count-label {
    font-size: 0.85rem;  /* 增大字体大小 */
    color: #999;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 3px;  /* 增加底部间距，让数量标签更靠上 */
    margin-top: -2px;    /* 添加负的顶部边距，进一步调整位置 */
}

.task-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    font-size: 0.7rem;
    color: white;
    border-bottom-left-radius: 8px;
}

.task-tag.sell {
    background-color: #1890ff;
}

.task-tag.rent {
    background-color: #52c41a;
}

.task-tag.buy {
    background-color: #fa8c16;
}

.task-tag.rent2 {
    background-color: #722ed1;
}

.task-tag.auction {
    background-color: #f5222d;
}

/* 发布按钮样式 */
.publish-btn {
    position: fixed;
    bottom: 35px; /* 调整位置使其更靠近导航栏 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #1890ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* 改为圆形 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
    z-index: 101; /* 确保在导航栏之上 */
    font-size: 1rem;
    font-weight: 500;
}

.publish-btn i {
    display: none; /* 隐藏加号图标 */
}

/* 底部导航栏样式 */
.nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: white;
    border-top: 1px solid #eee;
    padding: 8px 0;
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    color: #999;
    font-size: 0.8rem;
}

.nav-item.active {
    color: #1890ff;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

/* 我的页面样式 */
.user-info {
    background-color: #1890ff;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    color: white;
}

.avatar {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.avatar i {
    font-size: 2rem;
}

.user-details h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-details p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.orders-section {
    background-color: white;
    margin: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.order-tabs {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    overflow-x: auto;
}

.my-tasks {
    padding: 15px;
}

/* 发布页面样式 */
.publish-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.publish-header h1 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}

.back-btn {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
}

/* 发布页头部的返回按钮样式 */
.publish-header .back-btn {
    position: absolute;
    left: 15px;
    font-size: 0.9rem;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: none;
}

.publish-header .back-btn i {
    font-size: 0.9rem;
}

/* 详情页头部的返回按钮样式 */
.detail-header .back-btn {
    position: absolute;
    left: 15px;
    font-size: 0.9rem; /* 减小字体大小 */
    padding: 0; /* 移除内边距 */
    width: auto; /* 自动宽度 */
    height: auto; /* 自动高度 */
}

.detail-header .back-btn i {
    font-size: 0.9rem; /* 图标大小也减小 */
}

.publish-form {
    padding: 15px;
}

.task-type-selector {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.task-type-selector label {
    flex: 1;
}

.task-type-selector input[type="radio"] {
    display: none;
}

.task-type-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #f0f0f0;
    color: #666;
}

.task-type-selector input[type="radio"]:checked + .task-type-btn {
    background-color: #1890ff;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.tags {
    display: flex;
}

.tag {
    margin-right: 15px;
}

.tag input[type="radio"] {
    display: none;
}

.tag span {
    display: block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #666;
}

.tag input[type="radio"]:checked + span {
    background-color: #1890ff;
    color: white;
}

.guarantee-switch {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #1890ff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.image-preview {
    margin-top: 10px;
    height: 150px;
    border: 1px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

/* 任务管理按钮样式 */
.manage-btn {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background-color: #ff4d4f;
    color: white;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    cursor: pointer;
}

/* 不同类型任务的背景色 */
.placeholder-sell {
    background-color: #1890ff;
}

.placeholder-rent {
    background-color: #52c41a;
}

.placeholder-buy {
    background-color: #fa8c16;
}

.placeholder-rent2 {
    background-color: #722ed1;
}

.placeholder-auction {
    background-color: #f5222d;
}

/* 搜索输入框容器 */
.search-input-container {
    position: relative;
    width: 100%;
}

.search-input-container input {
    width: 100%;
    padding-right: 36px; /* 为搜索图标留出空间 */
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-hint {
    font-size: 0.8rem;
    color: #999;
    font-weight: normal;
}

/* 确保datalist显示正确 */
input::-webkit-calendar-picker-indicator {
    opacity: 0;
}

/* 搜索结果高亮样式 */
datalist option:hover,
datalist option:focus {
    color: #fff;
    background-color: #1890ff;
    outline: 0;
}

/* 任务卡片上的物品数量标签 */
.task-count {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

/* 详情页样式 */
.detail-container {
    padding: 15px;
}

.detail-image-container {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.detail-title-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-title-container h2 {
    font-size: 1.5rem;
    font-weight: 500;
    flex: 1;
}

.detail-tag {
    padding: 4px 8px;
    font-size: 0.8rem;
    color: white;
    border-radius: 4px;
    margin-left: 10px;
}

.detail-tag.sell {
    background-color: #1890ff;
}

.detail-tag.rent {
    background-color: #52c41a;
}

.detail-tag.buy {
    background-color: #fa8c16;
}

.detail-tag.rent2 {
    background-color: #722ed1;
}

.detail-tag.auction {
    background-color: #f5222d;
}

.detail-count-info {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.task-list {
    margin-top: 15px;
}

.task-list-item {
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.task-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.task-list-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ff4d4f;
}

.task-list-user {
    font-size: 0.9rem;
    color: #999;
}

.task-list-description {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
}

.task-list-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-list-contact-info {
    font-size: 0.9rem;
    color: #666;
}

.task-list-time {
    font-size: 0.8rem;
    color: #999;
}

/* 任务列表项样式更新 */
.task-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.task-list-time {
    font-size: 0.8rem;
    color: #999;
}

/* 购买按钮样式 */
.buy-btn {
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #ff7875;
}

/* 确认模态框样式 */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.confirm-modal.active {
    opacity: 1;
}

.confirm-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.confirm-modal.active .confirm-container {
    transform: translateY(0);
}

.confirm-container h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
}

.warning-text {
    color: #ff4d4f;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}

.tip-text {
    color: #666;
    font-size: 0.85rem;
    margin: 10px 0;
    text-align: center;
}

.confirm-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.confirm-item span:first-child {
    color: #666;
}

.confirm-item span:last-child {
    font-weight: 500;
}

.confirm-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cancel-btn, .back-btn {
    padding: 8px 0;
    width: 45%;
    border: 1px solid #d9d9d9;
    background-color: white;
    color: #666;
    border-radius: 4px;
}

/* 确保这个样式只应用于模态框内的按钮 */
.confirm-modal .cancel-btn, 
.confirm-modal .back-btn {
    padding: 8px 0;
    width: 45%;
    border: 1px solid #d9d9d9;
    background-color: white;
    color: #666;
    border-radius: 4px;
    position: static; /* 覆盖绝对定位 */
    font-size: 0.9rem; /* 统一字体大小 */
    left: auto; /* 覆盖左定位 */
}

.confirm-btn, .view-order-btn {
    padding: 8px 0;
    width: 45%;
    border: none;
    background-color: #1890ff;
    color: white;
    border-radius: 4px;
}

/* 订单卡片样式 */
.order-card {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.order-title {
    font-weight: 500;
    font-size: 1rem;
}

.order-status {
    font-size: 0.9rem;
}

.order-status.pending {
    color: #fa8c16;
}

.order-status.completed {
    color: #52c41a;
}

.order-info {
    margin-bottom: 10px;
}

.order-info div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.order-info span:first-child {
    color: #666;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
}

.confirm-order-btn {
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 0.9rem;
}

/* 标签页样式 */
.tabs-container {
    background-color: #fff;
    margin-bottom: 15px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    cursor: pointer;
}

.tab-item.active {
    color: #1890ff;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #1890ff;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 评分系统样式 */
.rating-container {
    margin: 15px 0;
    text-align: center;
}

.rating-stars {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    margin-bottom: 5px;
}

.rating-stars .star {
    margin: 0 3px;
    transition: color 0.2s;
}

.rating-stars .star:hover {
    color: #FFD700;
}

.rating-stars .star.selected {
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    height: 20px;
    margin-bottom: 10px;
}

.rating-comment {
    margin-bottom: 15px;
}

.rating-comment textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    resize: none;
}

/* 担保员等级标识 */
.guarantor-level {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: white;
    margin-left: 5px;
}

.guarantor-level-1 {
    background-color: #8c8c8c;
}

.guarantor-level-2 {
    background-color: #52c41a;
}

.guarantor-level-3 {
    background-color: #1890ff;
}

.guarantor-level-4 {
    background-color: #722ed1;
}

.guarantor-level-5 {
    background-color: #fa8c16;
}

.guarantor-level-6 {
    background-color: #f5222d;
    background-image: linear-gradient(45deg, #f5222d, #fa8c16);
}

.guarantor-level-7 {
    background-color: #9c27b0; /* 紫色背景 */
    color: white;
    font-weight: bold;
    border: 2px solid #7b1fa2; /* 深紫色边框 */
    box-shadow: 0 0 5px rgba(156, 39, 176, 0.7);
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* 中介在线状态样式 */
.online-status {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    margin-left: 10px;
    padding: 1px 5px;
    border-radius: 10px;
}

.online-status i {
    font-size: 8px;
    margin-right: 3px;
}

.online-status.online {
    color: #52c41a;
    background-color: rgba(82, 196, 26, 0.1);
}

.online-status.offline {
    color: #bfbfbf;
    background-color: rgba(0, 0, 0, 0.05);
}

/* 拍卖设置样式 */
.auction-settings {
    background-color: #fff8f8;
    border-radius: 8px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ffccc7;
}

.auction-settings .form-group {
    margin-bottom: 10px;
}

.auction-settings .form-group:last-child {
    margin-bottom: 0;
}

.auction-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
}

.auction-time {
    font-size: 0.8rem;
    color: #f5222d;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.auction-time i {
    margin-right: 3px;
}

.auction-price {
    color: #f5222d;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.auction-price:last-child {
    margin-bottom: 0;
}

.bid-btn {
    background-color: #f5222d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* 拍卖标签容器样式 */
.auction-tag-container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.auction-tag-price {
    color: #f5222d;
    padding: 3px 8px;
    font-size: 0.7rem;
    margin-top: 3px;
    text-align: right;
    font-weight: 500;
}

/* 调整拍卖标签在容器中的样式 */
.auction-tag-container .task-tag {
    position: relative;
    margin-bottom: 3px;
}

/* 搜索结果提示样式 */
.search-result {
    padding: 8px 15px;
    background-color: rgba(24, 144, 255, 0.1);
    color: #1890ff;
    text-align: center;
    margin: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 