/* 摘要 */
#catalogBox .catalogNav {
    font-size: 18px;
    font-weight: 600;
    color: #f1dab0;
    padding: 0 0 5px 0;
}

#catalogBox a {
    font-size: 14px;
    color: #FAFAFA;
}

#catalogBox a:hover {
    color: #1779f1;
    transition: .2s;
}

/* 详情 */
#contentBox {
    height: 108vh;
    min-height: 108vh;
    max-height: 108vh;
    overflow-y: scroll;
    white-space: pre-line;
    line-height: 30px;
    color: #FAFAFA;
    padding: 20px;
    box-sizing: border-box;
}

#contentBox::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
    border: 2px solid #f1dab0;
}

#contentBox::-webkit-scrollbar-thumb {
    width: 4px;
    border-radius: 10px;
    background-color: #f1dab0;
}

#contentBox .box_h2 {
    width: 60%;
    height: 60px;
    margin: 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../picture/community/border.png) no-repeat;
    background-size: 100% 100%;
}

#contentBox b {
    font-size: 14px;
    font-weight: 500;
    color: #5f9cef;
}

#contentBox a {
    font-size: 14px;
    color: #1779f1;
    text-decoration: underline;
}

#contentBox a:first-child {
    padding-top: 10px;
}

#contentBox a:hover {
    color: #f1dab0;
}

/* 图片 */
#contentBox img {
    max-width: 50%;
    height: auto;
    margin: 10px 25%;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

/* 图片左对齐 */
#contentBox .img_left img {
    margin: 10px 0;
}

/* 第一张图片和最后一张图片圆角 */
#contentBox .img_radius_first_last img:first-child {
    border-radius: 10px 10px 0 0;
}

#contentBox .img_radius_first_last img:last-child {
    border-radius: 0 0 10px 10px;
}

/* 图片占全屏100% */
#contentBox .img_full img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* 图片占全屏90% */
#contentBox .img_full90 img {
    min-width: 90%;
    max-width: 90%;
    width: 90%;
    height: auto;
}

/* 图片占全屏90%时居中 */
#contentBox .img_full90_center img {
    margin: 0 5%;
}

/* 图片占全屏80% */
#contentBox .img_full80 img {
    min-width: 80%;
    max-width: 80%;
    width: 80%;
    height: auto;
}

/* 图片占全屏80%时居中 */
#contentBox .img_full80_center img {
    margin: 0 10%;
}

/* 图片占全屏70% */
#contentBox .img_full70 img {
    min-width: 70%;
    max-width: 70%;
    width: 70%;
    height: auto;
    border-radius: 0 0 10px 10px;
    margin: 0 15%;
    padding-bottom: 15px;
}

/* 图片占全屏60%-90%时间距向下15px */
#contentBox .img_padding img {
    padding-bottom: 15px;
}

/* 图片无间距、无圆角、居中对齐 */
#contentBox .img_noPadding img {
    margin-bottom: 0;
    border-radius: 0;
}

/* pdf展示样式 */
#contentBox embed {
    width: 100%;
    height: 115vh;
}

#contentBox h1 {
    color: #FAFAFA;
    line-height: 40px;
}

#contentBox .box_h2 h2 {
    font-size: 18px;
    color: #76b2cb;
    padding-top: 16px;
}

#contentBox h3 {
    color: #FAFAFA;
    line-height: 40px;
}

#contentBox h4 {
    color: #FAFAFA;
    line-height: 40px;
    font-size: 20px;
}

#contentBox h5 {
    color: #FAFAFA;
    line-height: 40px;
}

#contentBox h6 {
    color: #FAFAFA;
    line-height: 40px;
}