
.search-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #f5f6fc;
}

.search-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    /*height : auto;*/
    min-height: 100px;
    margin: 0 auto;
    /*padding: 10px 0;*/
    /*border: 1px solid #f1132d;*/
}

.search-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    /*padding: 50px 0;*/
}


.search-left {
    flex: 0 0 60%; /* 占据 60% 宽度 */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-right {
    flex: 0 0 40%; /* 占据 40% 宽度 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-image {
    width: 100%;
    height: auto;
    /*border-radius: 8px;*/
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}

.search-box-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /*gap: 30px;*/
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 2px solid #0067ff;
    /*border-radius: 4px 0 0 4px;*/
    font-size: 14px;
    outline: none;
}

.search-btn {
    background-color: #0067ff;
    color: white;
    padding: 10px 10px;
    /*border: none;*/
    border: 1px solid #0067ff;
    /*border-radius: 0 4px 4px 0;*/
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #2980b9;
}

.hot-tags {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.hot-tags .tag-item {
    margin-left: 15px;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.hot-tags .tag-item:hover {
    color: #2980b9;
}

/**/

/*.deepseek-container {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    background-color: #f5f6fc;*/
/*}*/

/*.deepseek-content {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    !*align-items: center;*!*/
/*    !*justify-content: center;*!*/
/*    width: 100%;*/
/*    max-width: 1600px;*/
/*    height: 100%;*/
/*    !*height : auto;*!*/
/*    min-height: 100px;*/
/*    margin: 0 auto;*/
/*    padding: 50px 0;*/
/*    border: 1px solid #f1132d;*/
/*}*/


/* deepseek 智能问答样式 */
.deepseek-container {
    /*margin: 40px 0;*/
    padding: 20px;
    /*background: linear-gradient(135deg, #4a86ff, #007aff);*/
    background-color: #f5f6fc;
    /*border-radius: 12px;*/
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    color: white;
}

.deepseek-content {
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.deepseek-header {
    padding: 16px 20px;
    background: #6f99f4;
    color: white;
    font-size: 18px;
    font-weight: bold;
    /*text-align: center;*/
}

.deepseek-input-wrapper {
    /*margin: 30px;*/
    background-color: #6f99f4; /*  */
    /*background-color: #ef3309; !*  *!*/
    /*border-radius: 10px;*/
    padding: 0 30px 30px 30px;
}

.deepseek-input-area {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    /*margin:  30px;*/
    border-radius: 10px;
    background-color: #fff; /*  */

}

.input-container {
    display: flex;
    align-items: center;
     padding: 0 20px;
    gap: 10px;
    width: 100%;
    border: 1px solid #0067ff;
    border-radius: 15px;
}


.deepseek-input {
    width: 100%;
    height: 100px;
    padding: 12px;
    /*border: 1px solid #0067ff;*/
    border: none;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
    outline: none;
}

/*.deepseek-input:focus {*/
/*    border-color: #007aff;*/
/*    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);*/
/*}*/

.deepseek-model-info {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 8px;*/
    /*font-size: 12px;*/
    /*color: #666;*/
    /*margin-top: 10px;*/
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.model-icon {
    font-size: 14px;
}

.model-name {
    font-weight: 500;
}

.deepseek-send-btn {
    background: #007aff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    margin-top: 0;
    white-space: nowrap;
}

.deepseek-send-btn:hover {
    background: #0056b3;
}

.deepseek-tags {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.tag {
    font-size: 12px;
    color: #666;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.deepseek-response-area {
    padding: 20px;
    min-height: 80px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 10px;
    line-height: 1.6;
    word-wrap: break-word;
    color: #666;
}

.deepseek-response-area  p {
   padding: 10px;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    color: #666;
    font-size: 18px;
    white-space: pre-wrap;

}

/*  */
.chat-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.user-message {
    background-color: #e3f2fd;
}

.ai-message {
    background-color: #f5f5f5;
}

.message-header {
    margin-bottom: 5px;
}

.message-content {
    line-height: 1.5;
}

/**/
.markdown-content {
    line-height: 1.6;
    white-space: pre-wrap;
}

.markdown-content code {
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
}

.markdown-content strong {
    color: #333;
}

.chat-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
}

.user-message {
    background-color: #e3f2fd;
}

.ai-message {
    background-color: #f5f5f5;
    padding: 30px;
}

.message-header {
    margin-bottom: 10px;
    font-size: 14px;
}

.message-content {
    font-size: 16px;
}

/**/