/* markdown样式 */
.mdcontent {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    word-spacing: 0;
    letter-spacing: 0;
    word-break: break-word;
    word-wrap: break-word;
    text-align: left;
    font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.mdcontent p {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0;
    line-height: 26px;
    color: black;
}

.mdcontent h1,
.mdcontent h2,
.mdcontent h3,
.mdcontent h4,
.mdcontent h5,
.mdcontent h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0;
    font-weight: bold;
    color: black;
}

.mdcontent h1 {
    font-size: 24px;
}

.mdcontent h2 {
    font-size: 22px;
}

.mdcontent h3 {
    font-size: 20px;
}

.mdcontent h4 {
    font-size: 18px;
}

.mdcontent h5 {
    font-size: 16px;
}

.mdcontent h6 {
    font-size: 16px;
}

.mdcontent ul,
.mdcontent ol {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 25px;
    color: black;
}

.mdcontent ul {
    list-style-type: disc;
}

.mdcontent ul ul {
    list-style-type: square;
}

.mdcontent ol {
    list-style-type: decimal;
}

.mdcontent li section {
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 26px;
    text-align: left;
    font-weight: 500;
}

/*引用*/
.mdcontent blockquote {
    display: block;
    font-size: 0.9em;
    overflow: auto;
    overflow-scrolling: touch;
    border-left: 3px solid rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.05);
    color: #6a737d;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.mdcontent blockquote p {
    margin: 0;
    color: black;
    line-height: 26px;
}

.mdcontent a {
    text-decoration: none;
    color: #1e6bb8;
    word-wrap: break-word;
    font-weight: bold;
    border-bottom: 1px solid #1e6bb8;
}

.mdcontent strong {
    font-weight: bold;
    color: black;
}

/*斜体*/
.mdcontent em {
    font-style: italic;
    color: black;
}

/*加粗斜体*/
.mdcontent em strong {
    font-weight: bold;
    color: black;
}

/*删除线*/
.mdcontent del {
    font-style: italic;
    color: black;
}

/*分隔线*/
.mdcontent hr {
    height: 1px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    border-top: 1px solid black;
}

/*行内代码*/
.mdcontent p code,
.mdcontent li code {
    font-size: 14px;
    word-wrap: break-word;
    padding: 2px 4px;
    border-radius: 4px;
    margin: 0 2px;
    color: #1e6bb8;
    background-color: rgba(27, 31, 35, .05);
    font-family: Operator Mono, Consolas, Monaco, Menlo, monospace;
    word-break: break-all;
}

/*图片*/
.mdcontent img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/*图片*/
.mdcontent figure {
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*图片描述文字*/
.mdcontent figcaption {
    margin-top: 5px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/*表格容器 */
.mdcontent .table-container {
    overflow-x: auto;
}

/*表格*/
.mdcontent table {
    display: table;
    text-align: left;
}

.mdcontent tbody {
    border: 0;
}

.mdcontent table tr {
    border: 0;
    border-top: 1px solid #ccc;
    background-color: white;
}

.mdcontent table tr:nth-child(2n) {
    background-color: #F8F8F8;
}

.mdcontent table tr th,
.mdcontent table tr td {
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-align: left;
}

.mdcontent table tr th {
    font-weight: bold;
    background-color: #f0f0f0;
}

/* 表格最小列宽4个汉字 */
.mdcontent table tr th:nth-of-type(n),
.mdcontent table tr td:nth-of-type(n) {
    min-width: 85px;
}

/* 解决公式问题 */
.mdcontent .block-equation {
    display: block;
    text-align: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.mdcontent .block-equation svg {
    max-width: 300% !important;
    -webkit-overflow-scrolling: touch;
}

.mdcontent figure a {
    border: none;
}

.mdcontent figure a img {
    margin: 0px;
}

.mdcontent figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 图片链接嵌套 */
.mdcontent figure a {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 图片链接嵌套，图片解释 */
.mdcontent figure a + figcaption {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -35px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    line-height: 35px;
    z-index: 20;
}

/* 代码样式 */
.mdcontent .hljs {
    display: block;
    overflow-x: auto;
    padding: 16px;
    color: #383a42;
    background: #fafafa;
    white-space: pre-wrap;
}

.mdcontent .hljs-comment,
.mdcontent .hljs-quote {
    color: #a0a1a7;
    font-style: italic;
}

.mdcontent .hljs-doctag,
.mdcontent .hljs-keyword,
.mdcontent .hljs-formula {
    color: #a626a4;
}

.mdcontent .hljs-section,
.mdcontent .hljs-name,
.mdcontent .hljs-selector-tag,
.mdcontent .hljs-deletion,
.mdcontent .hljs-subst {
    color: #e45649;
}

.mdcontent .hljs-literal {
    color: #0184bb;
}

.mdcontent .hljs-string,
.mdcontent .hljs-regexp,
.mdcontent .hljs-addition,
.mdcontent .hljs-attribute,
.mdcontent .hljs-meta-string {
    color: #50a14f;
}

.mdcontent .hljs-built_in,
.mdcontent .hljs-class .hljs-title {
    color: #c18401;
}

.mdcontent .hljs-attr,
.mdcontent .hljs-variable,
.mdcontent .hljs-template-variable,
.mdcontent .hljs-type,
.mdcontent .hljs-selector-class,
.mdcontent .hljs-selector-attr,
.mdcontent .hljs-selector-pseudo,
.mdcontent .hljs-number {
    color: #986801;
}

.mdcontent .hljs-symbol,
.mdcontent .hljs-bullet,
.mdcontent .hljs-link,
.mdcontent .hljs-meta,
.mdcontent .hljs-selector-id,
.mdcontent .hljs-title {
    color: #4078f2;
}

.mdcontent .hljs-emphasis {
    font-style: italic;
}

.mdcontent .hljs-strong {
    font-weight: bold;
}

.mdcontent .hljs-link {
    text-decoration: underline;
}

.mdcontent pre code {
    padding-top: 15px;
    background: #fafafa;
    border-radius: 5px;
}

.mdcontent pre:before {
    content: '';
    display: block;
    background: url('/addons/Wenda/images/code-badge.png');
    height: 30px;
    width: 100%;
    background-size: 40px;
    background-repeat: no-repeat;
    background-color: #fafafa;
    margin-bottom: -7px;
    border-radius: 5px;
    background-position: 10px 10px;
}

.mdcontent pre {
    border-radius: 5px;
}

/* 插件样式开始 */

.question-box {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 50px;
}

.question-box .question-box-left {
    width: 900px;
    height: auto;
    float: left;
    background-color: white;
    padding: 0 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 0px rgba(229, 229, 229, 1);
}

.question-box .question-box-left .pagination-box {
    width: 100%;
    height: auto;
    float: left;
}

.question-box .question-box-left .pagination-box .pagination {
    margin-bottom: 0;
}

.question-box .question-box-left .question-item {
    display: flex;
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid rgba(204, 204, 204, 1);;
}

.question-box .question-box-left .question-item.last {
    border-bottom: 0;
}

.question-box .question-box-left .question-item .answer-count, .question-box .question-box-left .question-item .view-times {
    width: 80px;
    height: auto;
    text-align: center;
    padding-top: 6px;
}

.question-box .question-box-left .question-item .answer-count .value, .question-box .question-box-left .question-item .view-times .value {
    font-size: 20px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 20px;
    margin-bottom: 12px;
}

.question-box .question-box-left .question-item .answer-count .label-text, .question-box .question-box-left .question-item .view-times .label-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    line-height: 14px;
}


.question-box .question-box-left .question-item .question-info {
    flex: 1;
    height: auto;
}

.question-box .question-box-left .question-item .question-info .question-title {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    margin-bottom: 20px;
}

.question-box .question-box-left .question-item .question-info .extra-info {
    width: 100%;
    height: auto;
    float: left;
}

.question-box .question-box-left .question-item .question-info .extra-info .category-name {
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    font-size: 10px;
    font-weight: 400;
    color: white;
    line-height: 10px;
    padding: 6px 8px;
    background-color: rgba(102, 102, 102, .4);
    border-radius: 4px;
    margin-right: 20px;
}

.question-box .question-box-left .question-item .question-info .extra-info > .date {
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    line-height: 16px;
    margin-top: 3px;
}

.question-box .question-box-left .question-item .question-info .extra-info > .status {
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    font-weight: 400;
    color: rgba(0, 0, 0, .5);
    margin-top: 3px;
    margin-left: 10px;
    background-color: rgba(11, 118, 222, 1);
    color: white;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    padding: 2px;
}

.question-box .question-box-left .question-item .question-info .extra-info > .credit1 {
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    font-weight: 400;
    color: rgba(0, 0, 0, .5);
    margin-top: 3px;
    margin-left: 10px;
    background-color: #ffc107;
    color: #212529;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    padding: 2px;
}

.question-box .question-box-right {
    width: 270px;
    margin-left: 30px;
    float: left;
}

.question-box .question-box-right .option-box {
    width: 100%;
    height: auto;
    float: left;
}

.question-box .question-box-right .option-box .create-question-button {
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgba(11, 118, 222, 1);
    box-shadow: 0px 4px 8px 0px rgba(229, 229, 229, 1);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
}

.question-box .question-box-right .option-box .create-question-button:hover {
    background-color: rgba(11, 118, 222, .9);
}

.question-box .question-box-right > .my-info {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(11, 118, 222, .3);
    border-radius: 5px;
}

.question-box .question-box-right > .my-info > .my-info-item {
    flex: 1;
}

.question-box .question-box-right > .my-info > .my-info-item > .label {
    width: 100%;
    height: 50px;
    float: left;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    color: rgba(0, 0, 0, .6);
}

.question-box .question-box-right > .my-info > .my-info-item > .value {
    width: 100%;
    height: 50px;
    float: left;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    color: #333;
    font-weight: 800;
}

.question-box .question-box-right .rec-courses-box, .question-info-box .right-box .rec-courses-box {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 15px;
    margin-bottom: 15px;
}

.question-box .question-box-right .rec-courses-box .rec-course-item, .question-info-box .right-box .rec-courses-box .rec-course-item {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
}

.question-box .question-box-right .rec-courses-box .rec-course-item:hover, .question-info-box .right-box .rec-courses-box .rec-course-item:hover {
    box-shadow: 0px 4px 8px 0px rgba(229, 229, 229, 1);
}

.question-box .question-box-right .rec-courses-box .rec-course-item .thumb, .question-info-box .right-box .rec-courses-box .rec-course-item .thumb {
    width: 100%;
    height: auto;
    float: left;
}

.question-box .question-box-right .rec-courses-box .rec-course-item .thumb img, .question-info-box .right-box .rec-courses-box .rec-course-item .thumb img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.question-box .question-box-right .rec-courses-box .rec-course-item .title, .question-info-box .right-box .rec-courses-box .rec-course-item .title {
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    line-height: 15px;
    text-shadow: 0px 4px 8px rgba(229, 229, 229, 1);
    padding: 10px 14px;
}

.question-box .question-box-right .rec-courses-box .rec-course-item .info, .question-info-box .right-box .rec-courses-box .rec-course-item .info {
    width: 100%;
    height: 42px;
    float: left;
    padding: 5px 10px 15px 15px;
}

.question-box .question-box-right .rec-courses-box .rec-course-item .info .videos-count, .question-info-box .right-box .rec-courses-box .rec-course-item .info .videos-count {
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    line-height: 14px;
    margin-top: 4px;
}

.question-box .question-box-right .rec-courses-box .rec-course-item .info .category-name, .question-info-box .right-box .rec-courses-box .rec-course-item .info .category-name {
    display: inline-block;
    width: auto;
    height: auto;
    float: right;
    background: rgba(102, 102, 102, .4);
    border-radius: 4px;
    padding: 6px 8px;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    color: white;
    line-height: 10px;
}

/* 创建问题界面 */

.question-create-box {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 10px;
    margin-bottom: 50px;
}

.question-create-box .left {
    width: 100%;
    height: auto;
    float: left;
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(229, 229, 229, 1);
}

/* 问题详情 */
.question-body {
    width: 100%;
    height: auto;
    float: left;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(229, 229, 229, 1);
    border-radius: 8px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.question-body .title {
    width: 100%;
    height: auto;
    float: left;
    font-size: 20px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 20px;
    margin-bottom: 10px;
}

.question-body .info {
    width: 100%;
    height: auto;
    float: left;
    font-size: 12px;
    color: #93999f;
    line-height: 18px;
    margin-bottom: 30px;
}

.question-body .info a {
    color: #93999f;
}

.question-body .info a:hover {
    color: #333333;
}

.question-body .content {
    width: 100%;
    height: auto;
    float: left;
    color: rgba(51, 51, 51, 1);
}

.question-body .content img {
    max-width: 100% !important;
}

.question-info-box {
    width: 100%;
    height: auto;
    float: left;
}

.question-info-box > .left {
    width: 900px;
    height: auto;
    float: left;
}

.question-info-box > .left > .number-text {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 50px;
    line-height: 20px;
}

.question-info-box > .left > .number-text > .label-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    margin-right: 5px;
}

.question-info-box > .left > .number-text > .value {
    font-size: 20px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 20px;
}

.question-info-box > .right-box {
    width: 270px;
    height: auto;
    float: left;
    margin-left: 30px;
}

.question-info-box > .right-box > .question-extra-info-box {
    width: 100%;
    height: auto;
    float: left;
}

.question-info-box > .right-box > .question-extra-info-box > .option {
    width: 100%;
    height: auto;
    float: left;
}

.question-info-box > .right-box > .question-extra-info-box > .option > .create-answer-button {
    display: block;
    text-align: center;
    width: 100%;
    height: 60px;
    background-color: rgba(11, 118, 222, 1);
    box-shadow: 0 4px 8px 0 rgba(229, 229, 229, 1);
    border-radius: 6px;
    line-height: 60px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 30px;
}

.question-info-box > .right-box > .question-extra-info-box > .option > .create-answer-button:hover {
    color: white;
    background-color: rgba(11, 118, 222, .9);
}

/* 问题详情页的回答列表样式 */
.question-info-box > .left > .question-reply-box {
    width: 100%;
    height: auto;
    float: left;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box {
    display: block;
    width: 100%;
    height: auto;
    float: left;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    padding: 30px 30px 0 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(229, 229, 229, 1);
    margin-bottom: 30px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 229, 229, 1);
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .correct-answer {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-top-right-radius: 8px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .correct-answer span {
    position: absolute;
    top: -8px;
    right: -30px;
    width: 90px;
    height: 45px;
    background: #0B76DE;
    transform: rotate(45deg);
    font-size: 12px;
    color: #fff;
    line-height: 24px;
    font-weight: 700;
    box-sizing: border-box;
    padding-top: 20px;
    text-align: center;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .user-avatar {
    width: 90px;
    height: 70px;
    float: left;
    padding-right: 20px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .user-avatar > img {
    border-radius: 50%;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content {
    flex: 1;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .nickname {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 14px;
    margin-bottom: 15px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .nickname > small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    line-height: 12px;
    margin-left: 10px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .content {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 15px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .content > img {
    max-width: 100%;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .info {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    line-height: 14px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .answer-item-box > .answer-content > .info a {
    margin-right: 20px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box {
    width: 100%;
    height: auto;
    float: left;
    padding-top: 30px;
    padding-left: 90px;
    margin-bottom: 0;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 30px;
    display: flex;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .user-avatar {
    width: 50px;
    height: 40px;
    padding-right: 10px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .user-avatar img {
    border-radius: 50%;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content {
    flex: 1;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .nickname {
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
    color: #999999;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .nickname b {
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .nickname small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    line-height: 12px;
    margin-left: 10px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .content {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .content img {
    max-width: 100% !important;
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .info {
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
}

.question-info-box > .left > .question-reply-box > .question-reply-items-box > .answer-item > .comment-box > .comment-item > .wenda-comment-content > .info a {
    color: rgba(153, 153, 153, 1);
}


/* 问题详情页回复框样式 */
.question-reply-input-box {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
}

.question-reply-input-box .input-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 666px;
    margin-top: -350px;
    margin-left: -333px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
}