body,html{
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
    font-size: 15px;
    height: 100%;
}

ul,li{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{
    color: #333;
    text-decoration: none;
}

#app{
    height: 100vh;
    background: url('../img/bg.png') no-repeat center/cover;
    display: flex;
}

.app-content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px 0 rgb(128 129 130 / 30%);
}

.main{
    width: 800px;
    height: calc(100vh - 60px);
    min-height: 540px;
    max-height: 760px;
    background: #edf1f6;
    box-sizing: border-box;
    border-radius: 6px;
    margin-bottom: 38px;
    overflow: hidden;
}
.attach-left{
    width: 200px;
    height: calc(100vh - 60px);
    min-height: 540px;
    max-height: 760px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #FFFFFF;
    margin-bottom: 38px;
    border-right: 1px solid #eeeeee;
}
.attach-left .sidebar-close{
    display: none;
}
.attach-left .sidebar-close img{
    display: block;
    width: 30px;
    height: 30px;
}

.header{
    height: 60px;
    padding: 0 15px;
    box-sizing: border-box;
    box-shadow: inset 0 -1px 0 0 #eaeff6;
    z-index: 999;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.login-container{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
}
.login-container .userName{
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #ffa500;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container .userName img{
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
.login-container .downPic{
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
}
.login-container:hover .pulldown-container{
    display: block;
}
.login-container .pulldown-container{
    display: none;
    position: absolute;
    top: 60px;
    right: -15px;
    width: 140px;
    background-color: #ffffff;
    box-shadow:0 0 4px #ccc;
    z-index: 98;
}
.pulldownMenu{
    padding: 0 10px;
}
.pulldownMenu .menu-item{
    display: block;
    line-height: 50px;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
}
.pulldownMenu .menu-item:hover{
    color: #3d79ff;
    user-select: none;
}
.pulldownMenu .menu-item:last-child{
    border-bottom: none;
}
.main-content{
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
}

.main-chat{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main-side{
    width: 380px;
    border-left: 1px solid #eaeff6;
    display: flex;
    flex-direction: column;
}

/*
 * 布局
 */
.header-left{
    height: 20px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: #000000;
    margin-left: 5px;
    font-size: 15px;
    font-weight: bolder;
    flex: 1;
}
.header h3{
    font-size: 20px;
    font-weight: bold;
    color: #28303d;
    margin: 0;
    line-height: 20px;
}
.header small{
    color: #666666;
    margin-left: 5px;
    font-size: 12px;
}
.header .switch{
    display: flex;
    margin-right: 30px;
    gap: 10px;
}
.header .switch .switch-item{
    display: block;
    width: 90px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 4px;
    background-color: #003366;
    color: #FFFFFF;
    font-size: 15px;
}
.btn-warning{
    background-color: #FF9014 !important;
}
.btn-primary{
    background-color: #4099EF !important;
}
.btn-success{
    background-color: #0bb20c !important;
}
.btn-danger{
    background-color: #de002d !important;
}
.btn-info{
    background-color: #909399 !important;
}
.chat-toolbar{
    height: 120px;
    background-color: #fff;
    display: flex;
    flex-flow: row nowrap;
}

.chat-toolbar textarea{
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
    margin: 16px 0;
    outline: none;
    border: 0;
    resize: none;
    font-size: 14px;
    color: rgba(0,0,0,.65);
    line-height: 1.5;
    caret-color: #3d79ff;
    font-family: inherit;
}

.chat-toolbar button {
    outline: none;
    font-size: 14px;
    background-color: #003366;
    color: #fff;
    height: 36px;
    margin: 16px 16px 0;
    border: 0;
    text-align: center;
    letter-spacing: 2px;
    width: 80px;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-toolbar button img {
    display: block;
    width: 28px;
    height: 28px;
}

.chat-scroll{
    flex: 1;
    overflow: hidden;
    background-color: #edf1f6;
    position: relative;
}

.recordRightSide{
    height: 240px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.frequentQuery{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
}
.frequentQuery .question{
    width: 100%;
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
}
.frequentQuery .question .questionScroll{
    width: 100%;
    height: 100%;
    overflow: auto;
}
.frequentQuery .question .question-list{
    min-height: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}
.frequentQuery .question .question-list .question-item{
    display: flex;
    align-items: center;
    line-height: 28px;
    padding: 7px 0;
    border-bottom: 1px solid #e3e0f0;
    cursor: pointer;
    height: 70px;
    box-sizing: border-box;
}
.frequentQuery .question .question-list .question-item:hover{
    background-color: #f6f7f9;
    transition: all ease 0.5s;
}
.question-list .question-item .question-order{
    width: 15%;
    padding: 0 10px;
    box-sizing: border-box;
}
.question-list .question-item .question-text{
    width: 65%;
    padding: 0 20px;
    box-sizing: border-box;
}
.question-list .question-item .qBtn{
    width: 20%;
    text-align: center;
    color: #3c79b5;
    display: grid;
    place-items: center;
}
.question-item .qBtn .btn-detail{
    width: 60px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    font-size: 12px;
    color: #FFFFFF;
    background-color: #00aa00;
    border-radius: 4px;
}
.question-item .qBtn .btn-detail.unsolved{
    color: #FFFFFF;
    background-color: #c23c41;
}
.grid-center{
    height: 100%;
    display: grid;
    place-items: center;
}
.font-18{
    font-size: 18px;
}
.lunch-container{
    width: 100%;
    height: 100px;
    display: grid;
    place-items: center;
}
.lunch-container .btn-lunch{
    background-color: #3379b7;
    color: #FFFFFF;
    padding: 0 12px;
    border-radius: 4px;
    height: 34px;
    line-height: 34px;
    cursor: pointer;
}

.frequentQuery .frequentQuery-above,
.recordRightSide .recordRightSide-above{
    height: 48px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frequentQuery .frequentQuery-above .frequentQuery-above-title,
.recordRightSide .recordRightSide-above .recordRightSide-above-title{
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #28303d;
    letter-spacing: .64px;
    font-family: 'PingFang-SC-Bold';
}
.frequentQuery .frequentQuery-above .more{
    color: #3d79ff;
    cursor: pointer;
}
.frequentQuery-below .QueryCard{
    display: flex;
    flex-flow: row wrap;
}

.frequentQuery-below .QueryCard .QueryCard-item{
    display: block;
    width: calc(33.333333%);
    text-align: center;
    min-height: 84px;
    display: flex;
    flex-flow: column nowrap;
    margin: 8px 0;
}

.frequentQuery-below .QueryCard .QueryCard-item .QueryCard-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.frequentQuery-below .QueryCard .QueryCard-item .QueryCard-img img{
    display: block;
    width: 40px;
    height: 40px;
}

.frequentQuery-below .QueryCard .QueryCard-item .QueryCard-name{
    margin-top: 8px;
    font-family: "PingFang-Regular";
    font-size: 14px;
    color: #28303d;
    letter-spacing: .5px;
    text-align: center;
}

.recordRightSide .recordRightSide-below{
    flex: 1;
    overflow: hidden auto;
}

.record-list .record-item{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 20px;
    box-shadow: inset 0 -1px 0 0 #eaeff6;
    box-sizing: border-box;
    cursor: pointer;
}

.record-list .record-item img{
    display: block;
    width: 14px;
    height: 14px;
}

.record-list .record-item .title{
    color: #28303d;
    font-size: 14px;
    cursor: pointer;
    display: block;
    width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 20px;
    box-sizing: border-box;
}

.record-list .record-item:hover{
    background-color: #f6f7f9;
    transition: all ease 0.5s;
}

.record-list .record-item .second{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.record-list .record-item .second button{
    display: block;
    border: none;
    width: 60px;
    height: 30px;
    border-radius: 4px;
    font-size: 13px;
    display: grid;
    place-items: center;
}
.btn-danger{
    background-color: #c23c41;
    color: #FFFFFF;
}

/*
 * 滚动条样式
 */
::-webkit-scrollbar{
    width: 3px;
    background-color: transparent;
    border-radius: 6%;
}

::-webkit-scrollbar-thumb{
    background-color: rgba(35, 47, 73, 0.5);
    width: 6px;
    border-radius: 3px;
}

/*
 * 会话
 */
.chat-scroll-behavior{
    width: 100%;
    height: 100%;
    overflow: hidden auto;
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: 20px 24px 0;
}

.chatlayout{
    padding-bottom: 16px;
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
}

.chatlayout-right{
    justify-content: flex-end;
}

.chatlayout-right .avatar{
    order: 2;
}
.chatlayout-right .onLeft{
    order: 1;
    text-align: right;
}

.chatlayout-left{
    justify-content: flex-start;
}

.chatlayout-center{
    justify-content: center;
}
.chatlayout .avatar img{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #FFF;
    box-sizing: border-box;
}
.chatlayout .roleName{
    font-size: 15px;
    color: #666666;
    line-height: 20px;
    margin: 5px 0;
}
.chatlayout .chatrole[role=user]{
    background: #3d79ff;
    color: #fff;
    border-radius: 10px 0 10px 10px/10px 0 10px 10px;
    padding: 14px 12px;
    max-width: 400px;
    position: relative;
    white-space: normal;
    word-break: break-all;
    text-align: left;
}

.chatlayout .chatrole[role=assistant]{
    background: #fff;
    box-shadow: 0 3px 8px 0 rgba(61, 121, 255, .06);
    border-radius: 8px;
    white-space: normal;
    overflow: hidden;
    max-width: 400px;
    word-break: break-all;
}

.chatlayout .chatrole[role=time]{
    font-size: 12px;
    color: #6e7b8f;
    background: #d8dfe6;
    border-radius: 24px;
    padding: 8px 16px;
    text-align: center;
    user-select: none;
    display: flex;
    gap: 5px;
}

.chatlayout .chatrole .title{
    font-size: 16px;
    padding: 13px 18px;
    border-bottom: 1px solid #f8f8f8;
}

.chatlayout .chatrole .content{
    padding: 10px 18px;
    line-height: 1.5;
}

.chatlayout .prompt{
    background: #fff;
    box-shadow: 0 3px 8px 0 rgba(61, 121, 255, .06);
    border-radius: 8px;
    white-space: normal;
    overflow: hidden;
    width: 400px;
    padding: 0 15px;
    box-sizing: border-box;
}

.chatlayout .prompt ul{
    padding: 12px 0;
    margin-left: 75px;
}

.chatlayout .prompt ul li{
    height: 40px;
    line-height: 20px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 -1px 0 0 #eaeff6;
    cursor: pointer;
}

.chatlayout .prompt ul li span{
    font-size: 14px;
}

.chatlayout .prompt ul li:last-child{
    box-shadow: none;
}

.chatlayout .prompt ul li:hover{
    color: #3d79ff;
    transition: color ease 0.5s;
}

.mobile-chat-toolbar{
    display: none;
    height: 56px;
    padding: 0 20px;
    align-items: center;
    background: #edf1f6;
}

.mobile-chat-toolbar input{
    display: block;
    height: 40px;
    border: none;
    box-shadow: 0 0 1px #ccc;
    border-radius: 20px 0 0 20px;
    padding: 0 15px;
    flex: 1;
    width: 100%;
    outline: none;
}

.mobile-chat-toolbar button{
    display: block;
    height: 40px;
    background-color: #003366;
    color: #FFFFFF;
    border: none;
    border-radius: 0 20px 20px 0;
    width: 60px;
}

.mobile-chat-toolbar input:focus ~ .navigator{
    width: 0;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    transition: all ease 0.5s;
}

.navigator{
    margin-left: 20px;
    font-size: 14px;
    width: 30px;
    height: 30px;
    transition: width ease 0.2s;
}

.navigator img{
    display: block;
    width: 30px;
    height: 30px;
}

@keyframes slideUp {
    0%{
        transform: translateY(100px);
        opacity: 0.4;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
.sideBarScroll{
    width: 100%;
    overflow: auto;
    border-bottom: 1px solid #eee;
}
.sideBarScroll .sideBarNav{
    height: 60px;
    display: flex;
    justify-content: space-around;
}
.sideBarScroll .sideBarNav .nav-item{
    display: inline-block;
    line-height: 30px;
    padding: 15px;
    cursor: pointer;
}
.sideBarScroll .sideBarNav .nav-item.active{
    color: #de0000;
    border-bottom: 2px solid #de0000;
}
.quesHeader{
    width: 100%;
    height: 50px;
    background-color: #ececed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quesHeader .q-order{
    width: 15%;
    box-sizing: border-box;
    padding: 0 10px;
}
.quesHeader .q-detail{
    width: 65%;
    box-sizing: border-box;
    padding: 0 20px;
}
.quesHeader .q-btn{
    width: 20%;
    text-align: center;
}
.login-box{
    width: 420px;
    background-color: #ffffff;
    box-shadow: 0 0 4px #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 40px 20px;
    height: auto;
}
.login-box .login-title{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.login-box .subtitle{
    font-size: 13px;
    color: #666666;
    text-align: center;
}
.login-box form{
    display: block;
    width: 100%;
    padding: 20px 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.login-box .login-btn-box{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.login-box .login-btn-box a{
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    background-color: #de0000;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
}
.login-box .reg{
    text-align: center;
    font-size: 14px;
    height: 40px;
    margin-top: 10px;
    line-height: 40px;
    color: #666666;
}
.login-box .reg a{
    color: #003366;
}
.btn-warning{
    background-color: #ffaa00 !important;
    color: #ffffff;
}
.form-item{
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.form-item input{
    display: block;
    width: 100%;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 10px;
    background-color: #ffffff;
    outline: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-item input:focus{
    border-color: #2962ff;
}
.form-item .yzm,
.form-item .countdown{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 10px;
    line-height: 40px;
    background-color: #009efb;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}
.form-item .countdown{
    background-color: #5a6268;
    cursor: default;
    min-width: 90px;
    padding: 0;
    text-align: center;
    display: none;
}
.chat-scroll-custom{
    height: calc(100% - 50px);
}
.askObject{
    width: 100%;
    min-height: 60px;
    background-color: #ffffff;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: #333333;
    margin-bottom: 10px;
}
.askObject .askAttr{
    width: 14%;
    text-align: right;
    margin-right: 2%;
    color: #000000;
}
.askObject .askVal{
    width: 80%;
}

.askObject .askVal .item{
    border: 1px solid #777;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 15px;
    user-select: none;
    cursor: pointer;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.askObject .askVal .item.active{
    color: #de0000;
    border-color: #de0000;
}
input[name=consult-title]{
    display: block;
    width: 100%;
    height: 34px;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    border-radius: 4px;
    padding-left: 10px;
}
input[name=consult-title]:focus{
    outline-color: #128bff;
}
textarea[name=consult-content]{
    display: block;
    width: 100%;
    height: 200px;
    resize: none;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 28px;
    font-size: 15px;
    padding: 5px 10px;
}
textarea[name=consult-content]:focus{
    outline-color: #128bff;
}

.chat-toolbar button.colored{
    background-color: #003366;
    cursor: pointer;
}
.support .chat-toolbar{
    height: unset;
}
.support .chat-toolbar button{
    margin-left: unset;
}
.support .chat-scroll{
    overflow: auto;
}
.someButton{
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: #AAAAAA;
    border-bottom: 1px solid #ccc;
    gap: 15px;
}
.btn-link{
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
    border-radius: 15px;
}
.btn-border{
    border: 1px solid #AAAAAA;
}
.hotPage{
    flex: 1;
    overflow: auto;
}
.back-nav{
    width: 100%;
    height: 60px;
    display: grid;
    grid: auto / 60px 1fr 60px;
    place-items: center;
    gap: 10px;
    border-bottom: 1px solid #CCCCCC;
}
.back-nav .return{
    display: flex;
    align-items: center;
    color: #1bb6f3;
    cursor: pointer;
}
.back-nav .return img{
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 3px;
}
.back-nav .page-title{
    font-size: 20px;
    font-weight: normal;
    text-align: center;
}
.consult-box{
    width: 100%;
    min-height: 200px;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
}
.consult-box .consult-item{
    margin-bottom: 10px;
    color: #333333;
}
.consult-box .consult-item .chatrole{
    background-color: #f6d2b7;
    width: max-content;
}
.canScroll{
    overflow: auto;
}
.hot-detail .askVal{
    width: 100%;
}
.hot-detail .askVal .consult-box{
    border: none;
}
.hot-detail .askVal .consult-item{
    border-bottom: 1px solid #CCCCCC;
}
.hot-detail .askVal .consult-item:last-child{
    border-bottom: none;
}
.consult-title{
    color: #333333;
    text-align: center;
    font-size: 17px;
}
.manpower-detail .askVal{
    width: 100%;
}
.mb-20{ margin-bottom: 20px; }
.waiting{
    display: block;
    width: 30px;
    height: 30px;
}
.desktop-hidden.desktop-hidden{
    display: none;
}
.downPic{
    visibility: hidden;
}
.pulldown-container{
    visibility: hidden;
}
.login-container.logged .downPic, .login-container.logged .pulldown-container{
    visibility: visible;
}
.hide.hide.hide{
    display: none;
}
.options-school{
    position: relative;
}
.options-school .tip{
    color: #de002d;
    font-size: 12px;
    line-height: 28px;
    position: absolute;
}
.border-dotted{
    border: 1px dashed #cccccc;
    padding: 10px;
    width: calc(100% - 40px);
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 4px;
}
.border-dotted .info-list{
    width: 100%;
}
.border-dotted .info-list .info-item{
    display: flex;
    align-items: center;
    line-height: 40px;
    display: none;
}
.border-dotted .info-list .info-item .attr{
    width: 20%;
    text-align: center;
}
.border-dotted .info-list .info-item .val{
    flex: 1;
    overflow: hidden;
}
.display-none{
    display: none;
}
.hot-title{
    text-align: center;
    font-size: 17px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}
.hot-content{
    font-size: 15px;
}
.w-100.w-100.w-100{ width: 100%; max-width: unset; }
.logo{
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.logo img{
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.logo .name{
    color: #000000;
    margin-left: 5px;
    font-size: 18px;
    font-weight: bolder;
    flex: 1;
}
.chat-record{
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    height: 480px;
    overflow-y: auto;
}
.chat-record .title-bar{
    font-size: 15px;
    color: #777777;
    margin-bottom: 3px;
}
.chat-list .chat-item{
    height: 46px;
    display: flex;
    align-items: center;
    line-height: 20px;
    cursor: pointer;
}
.chat-list .chat-item:hover{
    background-color: #eaf0fa;
}
.chat-list .chat-item .icon img{
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 10px 0 3px;
    border-radius: 50%;
}
.chat-list .chat-item .collect img{
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.chat-list .chat-item .collect .active-img{
    display: none;
}
.chat-list .chat-item .collect.active .active-img{
    display: block;
}
.chat-list .chat-item .collect.active .default-img{
    display: none;
}
.chat-list .chat-item .text{
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}
.express{
    width: calc(100% - 10px);
    margin-left: 5px;
    border-top: 1px solid #cccccc;
}
.express .express-item{
    display: flex;
    align-items: center;
    height: 40px;
    cursor: pointer;
}
.express .express-item .icon{
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 10px;
    color: #000000;
}
.sidebar{
    display: none;
}
.sidebar img{
    display: block;
    width: 30px;
    height: 30px;
}
.modal{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 999;
}

.widgets {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.widgets .widget-item {
    border-left: 1px solid #cccccc;
    padding-left: 10px;
}

.widgets .widget-item:first-child {
    border-left: none;
    padding-left: 0;
}

.widgets .widget-item:nth-child(2) {
    border-left: none;
    padding-left: 0;
}

.widgets .widget-item .inner {
    display: flex;
    gap: 3px;
    align-items: center;
    color: #777777;
    font-size: 12px;
    cursor: pointer;
}

.widgets .widget-item.created,
.widgets .widget-item.copy {
    display: none;
}

.widgets .widget-item img {
    display: block;
    width: 16px;
    height: 16px;
}

.copy_success_box {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.copy_success_box .copy_success_card {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 10px 20px;
    box-shadow: 0 0 4px #cccccc;
    border-radius: 25px;
    font-size: 14px;
}

.copy_success_box img {
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

/*
 * 移动端
 */
@media screen and (max-width: 768px) {
    .desktop-hidden.desktop-hidden{
        display: block;
    }
    .main-side{
        display: none;
    }

    .main{
        height: 100vh;
        margin: 0;
        max-height: unset;
        padding-left: 0;
        padding-right: 0;
    }

    .chat-scroll-behavior{
        padding: 20px 15px 0;
    }

    .chatlayout .prompt ul li{
        padding: 5px 0;
    }

    .chat-toolbar{
        height: 67px;
        display: none;
    }

    .chat-toolbar textarea{
        line-height: 35px;
    }

    .mobile-chat-toolbar{
        display: flex;
        padding: 0 10px;
    }

    .main-side{
        justify-content: flex-end;
        background-color: #0004;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
    }

    .main-side.show{
        display: flex;
    }

    .main-side .frequentQuery{
        display: none;
    }
    .main-side .sideBarScroll{
        background-color: #ffffff;
        border-radius: 10px 10px 0 0;
    }
    .main-side .recordRightSide{
        max-height: 70vh;
        background-color: #fff;
        animation: slideUp 0.2s ease;
    }

    .login-box{
        width: calc(100% - 30px);
        padding: 30px 15px;
    }
    .chat-scroll-custom{
        height: calc(100% - 50px);
        /*padding-bottom: 50px;*/
        box-sizing: border-box;
    }
    .askObject{
        min-height: 80px;
        flex-wrap: wrap;
        background-color: transparent;
    }
    .askObject .askVal{
        gap: 10px;
    }
    .header .switch{
        display: none;
    }
    .someButton{
        background-color: transparent;
        min-height: 50px;
        height: 50px;
        flex-wrap: wrap;
        position: absolute;
        bottom: 0;
    }
    .askObject{
        display: flex;
        flex-wrap: wrap;
    }
    .askObject .askAttr{
        width: 100%;
        text-align: left;
        margin-right: 2%;
    }
    .askObject .askVal{
        width: 100%;
    }
    .mb-mb-10{
        margin-bottom: 10px;
    }
    .support .chat-toolbar{
        display: flex;
    }
    .login-container:hover .pulldown-container{
        display: block;
    }
    .border-dotted .info-list .info-item .attr{
        width: 25%;
        text-align: left;
    }
    .consult-box{
        padding: 10px 0;
    }
    .attach-left{
        box-shadow: 0 0 4px #cccccc;
        max-height: unset;
        height: 100vh;
        margin: 0;
        display: block;
        z-index: 9999;
        position: absolute;
        left: -201px;
        transition: all ease 0.5s;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .attach-left.show{
        left: 0px;
        transition: all ease 0.5s;
    }
    .sidebar{
        display: block;
    }
    .header-left{
        border-left: 1px solid #cccccc;
        padding-left: 10px;
    }
    .attach-left .sidebar-close{
        display: block;
    }
}
