/* 京东搜索推广样式 */
.jd-search-form {
    float: right;
    margin-top: 2px;
    margin-left: 20px;
    position: relative;
}

.jd-search-input {
    width: 200px;
    height: 36px;
    line-height: 36px;
    padding: 0 36px 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    font-size: 13px;
    color: #333;
    background: #fff;
    outline: none;
    transition: all 0.3s;
}

.jd-search-input:focus {
    border-color: #e4393c;
    box-shadow: 0 0 5px rgba(228, 57, 60, 0.2);
}

.jd-search-btn {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 32px;
    height: 32px;
    border: none;
    background: #e4393c;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.jd-search-btn:hover {
    background: #c81623;
}