body {
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}
.search-wrapper {
    max-width: 700px;
    margin: 20px auto;
}
.search-form {
    display: flex;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.search-input {
    flex: 1;
    padding: 0 15px;
    border: 1px solid #ff4400;
    border-right: none;
    outline: none;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
}
.search-btn {
    min-width: 80px;
    background-color: #ff4400;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}
.search-btn:hover {
    background-color: #f53f00;
}
.keyword-category {
    margin: 25px 0;
}
.category-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    border-left: 3px solid #ff4400;
    padding-left: 8px;
}
.keyword-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.keyword-btn {
    padding: 6px 14px;
    background-color: #fff;
    border: 1px solid #ff4400;
    color: #ff4400;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.keyword-btn:hover {
    background-color: #ff4400;
    color: #fff;
}
.btn-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 10px;
    box-sizing: border-box;
}
.app-btn {
    display: inline-block;
    background-color: #e6f7ff;
    color: #1890ff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.app-btn:hover {
    background-color: #bae7ff;
    color: #096dd9;
}