.tabbar-container[data-v-8602baf5] {
    position:absolute;
    bottom:0;
    width:100%;
    height:50px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    background-color:#eee7;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    color:#2c2c2c;
    z-index:99
}
.tabbar-container .link[data-v-8602baf5] {
    height:100%;
    font-size:12px;
    padding:3px 0
}
.tabbar-container .link figure[data-v-8602baf5] {
    height:100%;
    text-align:center;
    overflow:hidden
}
.tabbar-container .link figure img[data-v-8602baf5] {
    height:60%;
    pointer-events:none;
    padding-bottom:0
}
.tabbar-container .link figure figcaption[data-v-8602baf5] {
    padding-top:0;
    transform:scale(.6) translateY(-10px);
    text-align:center
}
.active[data-v-8602baf5] {
    color:#16afa2
}
.home-container[data-v-944b53a5] {
    height:100%
}
.home-container .container[data-v-944b53a5] {
    height:calc(100% - 52px);
    padding-bottom: 50px;
}
.home-container .container_index[data-v-944b53a5] {
    height:calc(100% - 257px);
    margin: 0 3%;
    background-color:#eee;
    border-radius:4px;
}
.q_tips{
    overflow: scroll;
}
.q_tips::-webkit-scrollbar {
    display:none
}
.q_tips p{
    padding: 16px 3%;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    gap:10px;
    white-space: nowrap;
    width: fit-content;
    min-width: 100%;
}
.q_tips a{
    color: #fff;
    display: block;
    border-radius: 20px;
    background-color: #16afa2;
    padding: 6px 12px;
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
}

.chat_h_tips{
    display: flex;
    padding: 0 3%;
    justify-content: space-between;
    align-items: center;
    height: 42px;
    margin-bottom: 6px;
}
.h_tips{
    display: flex;
    align-items: center;
}
.h_tips img{
    width: 16px;
    margin-top: 4px;
    margin-right: 4px;
}
.h_tips_r{
    cursor: pointer;
}
.h_tips.h_tips_r img{
    margin-right: 0;
    margin-left: 4px;
}
.h_times p{
    color:#16afa2;
    margin-right: 2px;
}

.send_box{
    height: 50px;
    display: flex;
    padding: 0 3%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
}
#ask_question{
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    line-height: 36px;
    text-indent: 10px;
    margin-top: 5px;
    margin-left: 2%;
    width: 96%;
}
#ask_question::placeholder{
    color: #999;
}
.send_box span{
    border-radius: 4px;
    cursor: pointer;
}
.send_box .clean_send{
    padding: 7px 18px;
    background-color: #eee;
    color:#666;
    border: 1px solid #ddd;
}
.send_box .send{
    padding: 8px 0;
    background-color: #16afa2;
    color: #fff;
    flex-grow: 1;
    margin-left: 10px;
}

/*QA*/
.qa-container{
    /*overflow: scroll;*/
}
.qa-window {
    margin: 0 3.5%;
    height: calc(100% - 150px);
    overflow-y: scroll;
    scroll-behavior: smooth;
}
.qa-window::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
    background: #fff;
}
.qa_box{
    margin-bottom:12px;
    transition: .2s;
    overflow: hidden;
    max-height: 22px;
}
.qa_box.on{
    max-height: 9999px;
}
.qa_title{
    display: flex;
    justify-content: space-between;
    color: #16afa2;
    align-items: center;
    font-size: 15px;
}
.qa_title img{
    height: 8px;
    transition: .1s;
}
.on .qa_title img{
    transform: rotate(180deg);
}
.qa_time{
    font-size: 13px;
    color: #aaa;
    padding: 6px 0;
}
.qa_like{
    display: flex;
    justify-content: space-between;
    color: #aaa;
    align-items: center;
    font-size: 13px;
    padding: 6px 0 10px;
    border-bottom: 1px solid #eee;
}
.qa_like img{
    height: 18px;
    width: 20px;
    cursor: pointer;
}
.qa_answer{
    word-break: break-all;
    white-space: pre-wrap;
    color: #333;
    text-align: justify;
}
.load_more{
    text-align: center;
    color: #999;
    padding-bottom: 16px;
}