.bzzwdtop {
    width: 100%;
    background-color: #f5f5f5;
    height: 57px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.bzzwdtop .topcont {
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.bzzwdtop .topcont .top_left {
    float: left;
}
.bzzwdtop .topcont .top_left img {
    width: 198px;
    vertical-align: middle;
}
.bzzwdtop .topcont .top_right {
    left: 56%;
    position: relative;
}
.bzzwdtop .topcont .top_rit {
    float: left;
    font-size: 30px;
    color: #4d7ad7;
    letter-spacing: 2px;
    line-height: 100px;
    margin-left: 30px;
}
.bzzwroot {
    width: 100%;
    background: #fff;
    display: flex;
    height: calc(100vh - 90px);
}
.bzzwroot .rootright {
    display: flex;
    flex-direction: column;
    width: calc(100% - 195px);
    height: 100%;
    overflow: hidden;
}
.bzzwroot .rootright .chat-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
    background-color: #f9f9f9;
}
.bzzwroot .rootright .roottit {
    width: 880px;
    margin: 50px auto;
    text-align: center;
    font-size: 16px;
}
.bzzwroot .rootright .roottit h3 {
    font-size: 32px;
    color: #4a6ecc;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 5px;
}
.bzzwroot .rootright .chat-input-area {
    border-top: 1px solid #e5e5e5;
    background-color: white;
}
.bzzwroot .rootright .chat-input-area .input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.bzzwroot .rootright .chat-input-area textarea {
    flex: 1;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #c8c8c8;
    font-size: 16px;
    padding: 20px 20px;
    resize: none;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}
.bzzwroot .rootright .chat-input-area textarea:focus {
    border-color: #436cd5;
}
.bzzwroot .rootright .chat-input-area button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #436cd5;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.bzzwroot .rootright .chat-input-area button:hover {
    background-color: #3a5db0;
}
.bzzwroot .rootright .chat-input-area button:active {
    background-color: #325299;
}
.bzzwroot .rootright .chat-input-area .options {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.bzzwroot .rootright .chat-input-area .options .left-options span {
    margin-right: 15px;
    cursor: pointer;
}
.bzzwroot .rootright .chat-input-area .options .left-options span:hover {
    color: #436cd5;
}
.bzzwroot .rootright .chat-input-area .options .left-options .btn-color{
    color:#436cd5;
}
.bzzwroot .rootright .chat-input-area .options .right-options span {
    margin-left: 15px;
    cursor: pointer;
}
.bzzwroot .rootright .chat-input-area .options .right-options span:hover {
    color: #436cd5;
}
.loading-indicator {
    display: none;
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}
.loading-indicator span {
    animation: loading 1.4s infinite ease-in-out both;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #436cd5;
    margin-right: 4px;
}
.loading-indicator span:nth-child(1) { animation-delay: -0.32s; }
.loading-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes loading {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
.bzzwroot .rootright .chat-input-area  .rootselect {
     height: 100px;
     line-height: 48px;
     background-color: #f6f6f6;
     margin-bottom: 10px;
 }
.bzzwroot .rootright .chat-input-area .rootselect span {
    display: inline-block;
    float: left;
    color: #7f2531;
    margin-left: 30px;
}
.bzzwroot .rootright .chat-input-area  .rootselect ul li {
    float: left;
    margin: 0 15px;
}
.bzzwroot .rootright .chat-input-area .rootselect ul li input {
    margin-right: 5px;
}
.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; /* 阻止点击事件 */
    background-color: #ccc !important; /* 可选：保持背景颜色不变 */
}
.questions-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    overflow-x: hidden;
    padding: 20px 0px
}

.questions-container .questions-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 50px
}

.questions-container .scroll-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-animation: scroll-horizontal linear infinite;
    animation: scroll-horizontal linear infinite;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content
}

.questions-container .scroll-content:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.questions-container .question-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #dbeafe;
    padding: 8px 16px;
    border-radius: 18px;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.questions-container .question-item:hover {
    text-decoration: underline;
    background-color: #bfdbfe
}

@-webkit-keyframes scroll-horizontal {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@keyframes scroll-horizontal {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}