/* 左侧问答 */
main {
    margin-bottom: 40px !important;
}
.quest_l {
    width: 78%;
    float: left;
}

.quest_nav {
    padding: 1px 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 10px;
}

.quest_nav .quest_anm {
    margin-bottom: 20px;
    height: 66px;
    border-bottom: 2px solid #dedede;
    position: relative;
    z-index: 3;
}

.quest_nav .quest_anm .quest_po {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    min-height: 66px;
    overflow: hidden;
    transition: all .5s;
}

.quest_po ul {
    float: left;
    width: 825px;
    height: 66px;
    overflow: hidden;
}

.quest_anm>.more {
    position: absolute;
    top: 50%;
    right: 160px;
    transform: translateY(-50%);
    display: inline-block;
    height: 36px;
    line-height: 36px;
    background: #fff;
    font-size: 20px;
    color: #999;
}

.quest_po ul li {
    margin-left: 20px;
    margin-right: 35px;
    padding: 15px 0;
    float: left;
    position: relative;
    line-height: 36px;
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    letter-spacing: .5px;
    cursor: pointer;
}

.quest_po ul li::after {
    display: block;
    content: '';
    height: 4px;
    background: var(--color);
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    opacity: 0;
    transition: all .3s;
    transform: rotateY(90deg);
}

.quest_po ul li.on a {
    color: var(--color);
}

.quest_po ul li.on::after a {
    opacity: 1;
    transform: rotateY(0);
}

.tjtw {
    display: block;
    float: right;
    width: 98px;
    height: 46px;
    line-height: 46px;
    margin: 10px 21px 0 0;
    font-size: 18px;
    color: var(--color);
    text-align: center;
    border: 1px solid var(--color);
    border-radius: 10px;
}

/* 问答列表 */
.question_list {
    padding: 0 20px;
    margin-bottom: 10px;
}
.question_list li {
    margin-top: 20px;
}
.question_list .content:hover .question {
    color: var(--color);
}
.question_list .content .question {
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    font-weight: 600 !important;
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s;
}
.question_list li a i {
    margin-right: 5px;
}
.content .answer {
    margin-top: 10px;
    margin-bottom: 6px;
    max-height: 56px;
    line-height: 28px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}
.content .answer p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.user_row {
    line-height: 60px;
    font-size: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user_row .user {
    min-width: 110px;
    float: left;
    display: flex;
    align-items: center;
}

.user .avatar_img {
    float: left;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    margin-right: 10px;
    -webkit-filter: blur(3px);
}

.user .name {
    float: left;
    font-size: 15px;
    color: #333333;
}

.question_list li>span {
    float: left;
    color: #999;
    font-size: 16px;
}

.question_list .other {
    flex: 1;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #999;
    text-align: right;
}

.question_list .other p {
    display: inline-block;
    min-width: 50px;
    text-align: left;
}

.question_list .content {
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}