/* 搜索区域 */
.royal-search-banner {
    max-height: 40rem;
}

.royal-search-g {
    padding: 4rem 0;
    background: #f3f3f3;
    min-height: 80rem;
}

/* 搜索头部 */
.royal-search-header {
    overflow: hidden;
    margin-bottom: 4rem;
}

.royal-search-header .royal-form {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0.2rem 0.4rem 1rem rgba(0, 0, 0, 0.02);
}

.royal-search-header .royal-form-group {
    position: relative;
    margin: 0;
}

.royal-search-header .royal-form button {
    position: absolute;
    right: 0;
    top: 0;
}

/* 搜索了局 */
.royal-search-results {
    background: #fff;
    border-radius: 0.5rem;
    padding: 4rem;
    box-shadow: 0.2rem 0.4rem 1rem rgba(0, 0, 0, 0.05);
}

.royal-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #e6e6e6;
    margin-bottom: 2rem;
}

/* 高亮形状 */
.royal-result-title .highlight,
.royal-result-excerpt .highlight {
    color: red;
    font-weight: 600;
    background: #e6e6e6;
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
    display: inline-block;
}

.royal-results-count {
    color: #666;
    font-size: 1.4rem;
}

.royal-results-count strong {
    color: red;
    font-size: 2rem;
}

/* 了局列表 */
.royal-results-list {
    overflow: hidden;
    padding: 1rem 0;
}

.royal-results-list li {
    padding: 1rem;
}

.royal-result-item {
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    border: 0.1rem solid #e6e6e6;
    overflow: hidden;
}

.royal-result-item:hover {
    background: #fff;
    border-color: #e6e6e6;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
    transform: translateX(0.5rem);
}

/* 缩略图 */
.royal-result-thumb {
    overflow: hidden;
}

.royal-result-thumb .royal-thumb-wrapper {
    padding-bottom: 100%;
}

/* 了局信息 */
.royal-result-info {
    overflow: hidden;
}

.royal-result-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.royal-result-excerpt {
    color: #666;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.royal-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.royal-result-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: #666;
}

.royal-result-meta-item i {
    font-size: 1.2rem;
}

.royal-result-meta-item.price {
    color: red;
    font-weight: 500;
}

/* 空状态 */
.royal-no-results,
.royal-search-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.royal-no-results i,
.royal-search-empty i {
    font-size: 8rem;
    color: #666;
    margin-bottom: 2rem;
}

.royal-no-results h3,
.royal-search-empty h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.royal-no-results p,
.royal-search-empty p {
    color: #666;
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.royal-search-suggestions {
    max-width: 40rem;
    margin: 0 auto;
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.royal-search-suggestions h4 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.royal-search-suggestions ul {
    margin: 0;
    padding-left: 2rem;
}

.royal-search-suggestions li {
    color: #666;
    font-size: 1.4rem;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .royal-search-g {
        padding: 2rem 0;
    }

    .royal-search-header {
        margin-bottom: 2rem;
    }

    .royal-search-header .royal-form {
        padding: 2rem;
    }

    .royal-search-results {
        padding: 1rem;
    }

    .royal-results-list li {
        padding: 0.5rem;
    }
}<!--耗时1784282105.3193秒-->