/* 搜索框容器 - 相对定位便于按钮定位 */
.jdjs_app {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;}

/* 搜索输入框样式 */
.jdjs_app .qwss {
    width: 100%;
    height: 46px;
    padding: 0 120px 0 15px; /* 右侧留出按钮空间 */
    border: 2px solid #7BA7AB;
    border-radius: 30px; /* 胶囊形状 */
    background: #F9F0DA;
    color: #5a5a5a;
    font-size: 16px;
    font-family: "Microsoft YaHei", sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    outline: none;}

/* 输入框聚焦效果 */
.jdjs_app .qwss:focus {
    border-color: #4a9fa6;
    box-shadow: 0 0 12px rgba(74, 159, 166, 0.3);
    background: #fff;}

/* 搜索按钮样式 */
.jdjs_app .tj {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 40px;
    width: 100px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #4a9fa6, #3a8a90);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;}

/* 按钮悬停效果 */
.jdjs_app .tj:hover {
    background: linear-gradient(to right, #3a8a90, #2a7a80);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(58, 138, 144, 0.4);}

/* 按钮点击效果 */
.jdjs_app .tj:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(58, 138, 144, 0.4);}

/* 响应式设计：小屏幕调整 */
@media (max-width: 600px) {
    .jdjs_app .qwss {
        height: 42px;
        padding-right: 90px;
        font-size: 14px;}
    .jdjs_app .tj {
        width: 80px;
        height: 36px;
        font-size: 14px;}
}
a{word-break: break-word;}
